This commit was manufactured by cvs2svn to create tag 'R2_5_0'.
diff --git a/.cvsignore b/.cvsignore
deleted file mode 100644
index 3a4edf6..0000000
--- a/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-.project
diff --git a/_projectCommon.php b/_projectCommon.php
deleted file mode 100644
index 808f6a6..0000000
--- a/_projectCommon.php
+++ /dev/null
@@ -1,116 +0,0 @@
-<?php
-$Nav->setLinkList(null);
-
-$PR = "modeling/mdt";
-$projectName = "MDT";
-$defaultProj = "/uml2";
-
-$isEMFserver = (preg_match("/^emf(?:\.torolab\.ibm\.com)$/", $_SERVER["SERVER_NAME"]));
-$isBuildServer = (preg_match("/^(emft|modeling|build)\.eclipse\.org$/", $_SERVER["SERVER_NAME"])) || $isEMFserver;
-$isBuildDotEclipseServer = $_SERVER["SERVER_NAME"] == "build.eclipse.org";
-$isWWWserver = (preg_match("/^(?:www.|)eclipse.org$/", $_SERVER["SERVER_NAME"]));
-$isEclipseCluster = (preg_match("/^(?:www.||download.|download1.|build.)eclipse.org$/", $_SERVER["SERVER_NAME"]));
-$debug = (isset ($_GET["debug"]) && preg_match("/^\d+$/", $_GET["debug"]) ? $_GET["debug"] : -1);
-$writableRoot = ($isBuildServer ? $_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/" : "/home/data/httpd/writable/www.eclipse.org/");
-$writableBuildRoot = $isBuildDotEclipseServer ? "/opt/public/modeling" : "/home/www-data";
-
-$rooturl = "http://" . $_SERVER["HTTP_HOST"] . "/$PR";
-$downurl = ($isBuildServer ? "" : "http://www.eclipse.org");
-$bugurl = "https://bugs.eclipse.org";
-
-if (isset ($_GET["skin"]) && preg_match("/^(Blue|EclipseStandard|Industrial|Lazarus|Miasma|Modern|OldStyle|Phoenix|PhoenixTest|PlainText|Nova)$/", $_GET["skin"], $regs))
-{
-	$theme = $regs[1];
-}
-else
-{
-	$theme = "Nova";
-}
-
-/* projects/components in cvs */
-/* "proj" => "cvsname" */
-$cvsprojs = array (); /* should always be empty */
-
-/* sub-projects/components in cvs for projects/components above (if any) */
-/* "cvsname" => array("shortname" => "cvsname") */
-$cvscoms = array (
-	"org.eclipse.mdt" => array (
-		"bpmn2" => "org.eclipse.bpmn2",
-		"imm" => "org.eclipse.imm",
-		"mst" => "org.eclipse.mst",
-		"ocl" => "org.eclipse.ocl",
-		"papyrus" => "org.eclipse.papyrus",
-		"sbvr" => "org.eclipse.sbvr",
-		"uml2" => "org.eclipse.uml2",
-		"uml2tools" => "org.eclipse.uml2tools",
-		"xsd" => "org.eclipse.xsd"
-		/* add more here */
-	)
-);
-
-$projects = array (
-	"BPMN2" => "bpmn2",
-	"IMM" => "imm",
-	"MST" => "mst",
-	"OCL" => "ocl",
-	"Papyrus" => "papyrus",
-	"SBVR" => "sbvr",
-	"UML2" => "uml2",
-	"UML2 Tools" => "uml2tools",
-	"XSD" => "xsd"
-);
-$bugcoms = array_flip($projects);
-$bugcoms = preg_replace("/ /", "%20", $bugcoms);
-
-$extraprojects = array(); //components with only downloads, no info yet, "prettyname" => "directory"
-$nodownloads = array("bpmn2","imm","mst","papyrus","sbvr"); //components with only information, no downloads, or no builds available yet, "projectkey"
-$nonewsgroup = array("bpmn2","imm","sbvr"); //components without newsgroup
-$nomailinglist = array(); //components without mailinglist
-$incubating = array("bpmn2","imm","mst","papyrus","sbvr","uml2tools"); // components which are still incubating
-$nomenclature = "Component"; //are we dealing with "components" or "projects"?
-
-include_once $_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/scripts.php";
-
-$regs = null;
-
-$proj = (isset($_GET["project"]) && preg_match("/^(" . join("|", $projects) . ")$/", $_GET["project"], $regs) ? $regs[1] : getProjectFromPath($PR));
-$projct= preg_replace("#^/#", "", $proj);
-
-$buildtypes = array(
-	"R" => "Release",
-	"S" => "Stable",
-	"I" => "Integration",
-	"M" => "Maintenance",
-	"N" => "Nightly"
-);
-
-$Nav->addCustomNav("About This Project", "/projects/project_summary.php?projectid=" . str_replace("/", ".", $PR), "", 1);
-$Nav->addNavSeparator($projectName, "$rooturl/");
-foreach (array_keys(array_diff($projects, $extraprojects)) as $z)
-{
-	$Nav->addCustomNav($z, "$rooturl/?project=$projects[$z]", "_self", 2);
-}
-
-$Nav->addNavSeparator("Downloads", "$downurl/$PR/downloads/?project=$proj");
-$Nav->addCustomNav("Update Manager", "$rooturl/updates/", "_self", 2);
-
-$Nav->addNavSeparator("Documentation", "$rooturl/docs.php?project=$proj");
-$Nav->addCustomNav("FAQ", "$rooturl/faq.php?project=$proj", "_self", 2);
-$Nav->addCustomNav("Plan", "http://www.eclipse.org/projects/project-plan.php?projectid=modeling.mdt", "_self", 2);
-$Nav->addCustomNav("Release Notes", "http://www.eclipse.org/$PR/news/relnotes.php?project=$proj&amp;version=HEAD", "_self", 2);
-$Nav->addCustomNav("Search CVS", "http://www.eclipse.org/$PR/searchcvs.php?q=file%3A+org.eclipse." . strtolower($projectName) . "%2F" . ($proj?"org.eclipse.".$proj."%2F":"") . "+days%3A+7", "_self", 2);
-
-$Nav->addNavSeparator("Community", "http://wiki.eclipse.org/Modeling_Corner");
-$Nav->addCustomNav("Wiki", "http://wiki.eclipse.org/" . ($proj?$projectName . "-" . strtoupper($proj):$projectName), "_self", 2);
-$Nav->addCustomNav("Newsgroups", "$rooturl/newsgroup-mailing-list.php", "_self", 2);
-$Nav->addCustomNav("Modeling Corner", "http://wiki.eclipse.org/Modeling_Corner", "_self", 2);
-$collist = "%26query_format%3Dadvanced&amp;column_changeddate=on&amp;column_bug_severity=on&amp;column_priority=on&amp;column_rep_platform=on&amp;column_bug_status=on&amp;column_product=on&amp;column_component=on&amp;column_version=on&amp;column_target_milestone=on&amp;column_short_short_desc=on&amp;splitheader=0";
-$Nav->addCustomNav("Open Bugs", "$bugurl/bugs/colchange.cgi?rememberedquery=product%3D" . $projectName . (isset ($bugcoms[$proj]) ? "%26component=$bugcoms[$proj]" : "") . "%26bug_status%3DNEW%26bug_status%3DASSIGNED%26bug_status%3DREOPENED%26bug_status%3DRESOLVED%26resolution%3DFIXED%26resolution%3D---%26order%3Dbugs.bug_status%2Cbugs.target_milestone%2Cbugs.bug_id" . $collist, "_self", 2);
-$Nav->addCustomNav("Submit A Bug", "$bugurl/bugs/enter_bug.cgi?product=" . $projectName . (isset ($bugcoms[$proj]) ? "&amp;component=$bugcoms[$proj]" : ""), "_self", 2);
-$Nav->addCustomNav("Contributors", "http://www.eclipse.org/$PR/project-info/team.php", "_self", 2);
-unset ($bugcoms);
-
-$App->AddExtraHtmlHeader("<link rel=\"stylesheet\" type=\"text/css\" href=\"/modeling/includes/common.css\"/>\n");
-addGoogleAnalyticsTrackingCodeToHeader();
-$App->Promotion = TRUE; # set true to enable current eclipse.org site-wide promo
-?>
diff --git a/bpmn2/build/.cvsignore b/bpmn2/build/.cvsignore
deleted file mode 100644
index 79eb93b..0000000
--- a/bpmn2/build/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-.htaccess
\ No newline at end of file
diff --git a/bpmn2/build/_common.php b/bpmn2/build/_common.php
deleted file mode 100644
index 4e7f08b..0000000
--- a/bpmn2/build/_common.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php

-require_once ("../../../includes/buildServer-common.php");

-

-$options = array (

-	"BaseBuilderBranch" => "R35_M5",

-	

-	"BranchAndJDK" => array (

-		"emf.torolab.ibm.com=------------,------------",

-		"0.0.7=HEAD,/opt/sun-java2-5.0",

-		

-		"build.eclipse.org=------------,------------",

-		"0.0.7=HEAD,/opt/public/common/ibm-java2-ppc-50"

-	),

-	

-	"Mapfile_Rule_Default" => 0, // 0: "Use Map, No Tagging=use-false" or 1:"Generate Map, No Tagging=gen-false"

-

-	"EmailDefault" => "Kenn.Hussey@embarcadero.com", // prefil email contact box with comma-sep'd list

-	

-	"Users" => array ("khussey", "khussey", "khussey") /* build user, eclipse cvs user, IES cvs user */

-);

-

-?>

diff --git a/bpmn2/build/clean.php b/bpmn2/build/clean.php
deleted file mode 100755
index e98dbf0..0000000
--- a/bpmn2/build/clean.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/clean-common.php"); ?>
diff --git a/bpmn2/build/index.php b/bpmn2/build/index.php
deleted file mode 100644
index 5367a81..0000000
--- a/bpmn2/build/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/build-common.php"); ?>

diff --git a/bpmn2/build/promo.php b/bpmn2/build/promo.php
deleted file mode 100644
index d95f4ee..0000000
--- a/bpmn2/build/promo.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/promo-common.php"); ?>

diff --git a/bpmn2/eclipse-project-ip-log.csv b/bpmn2/eclipse-project-ip-log.csv
deleted file mode 100644
index 0700b28..0000000
--- a/bpmn2/eclipse-project-ip-log.csv
+++ /dev/null
@@ -1,13 +0,0 @@
-Section 1 (Committers),,,,

-

-dev.eclise.org Login,,,,

-khussey,,,,

-yyang,,,,

-

-Section 2 (Developers),,,,

-

-Component,Bug #,Contributor,Size,Committer

-

-Section 3 (Third Party Software),,,,

-

-Name,Location,License,Usage,

diff --git a/bpmn2/index.php b/bpmn2/index.php
deleted file mode 100644
index 609a42b..0000000
--- a/bpmn2/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: http://www.eclipse.org/modeling/mdt/?project=bpmn2"); ?>

diff --git a/bpmn2/project-info/contributors.html b/bpmn2/project-info/contributors.html
deleted file mode 100644
index c58367a..0000000
--- a/bpmn2/project-info/contributors.html
+++ /dev/null
@@ -1,4 +0,0 @@
-<p>
-  <li>Kenn Hussey</li>
-  <li>Yves Yang</li>
-</p>
\ No newline at end of file
diff --git a/bpmn2/project-info/overview.html b/bpmn2/project-info/overview.html
deleted file mode 100644
index 9f285a0..0000000
--- a/bpmn2/project-info/overview.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<p>
-BPMN2 is an open source component of the Model Development Tools (MDT) subproject to provide a metamodel implementation based on the forthcoming <a href="http://www.omg.org/cgi-bin/doc?bmi/2007-6-5">Business Process Model and Notation (BPMN) 2.0</a> OMG specification.
-</p>
-<p>
-The objectives of the BPMN2 component are to provide
-<ul>
-  <li>an open source "reference" implementation of the BPMN 2.0 specification</li>
-  <li>an EMF-based foundation on which business process modeling tools can be built</li>
-  <li>a basis for integrating and interchanging artifacts between business process modeling tools</li>
-  <li>a forum for engaging the community in validation of the BPMN 2.0 specification</li>
-  <li>an opportunity for increased collaboration between Eclipse and the OMG</li>
-</ul>
-</p>
-<p>
-For more details on BPMN2, see the <a href="http://wiki.eclipse.org/MDT-BPMN2">Wiki</a>.
-</p>
diff --git a/bpmn2/project-info/plan_0_7.xml b/bpmn2/project-info/plan_0_7.xml
deleted file mode 100644
index 694c0db..0000000
--- a/bpmn2/project-info/plan_0_7.xml
+++ /dev/null
@@ -1,128 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
-<?xml-stylesheet type="text/xsl" href="http://www.eclipse.org/projects/project-plan.xsl"?>
-<plan plan-format="1.0" xmlns="http://www.eclipse.org/project/plan" xmlns:html="http://www.w3.org/1999/xhtml" name="Project Name">
-  <release projectid="modeling.mdt" version="0.7.0" />
-  <introduction>
-    <html:div>
-      <html:p>
-This document lays out the feature and API set for the first release of the 
-Eclipse Business Process Model and Notation (MDT BPMN2) Project, version 0.7.0. 
-This project plan inherits from the Modeling Project Plan, which should be 
-referenced when consulting this individual project plan.
-      </html:p>
-      <html:p>
-<html:i><html:b>Note</html:b> that, because the BPMN<html:sup>TM</html:sup> 2.0 
-specification may not have been adopted and/or finalized by June 2009, APIs 
-provided as part of the 0.7.0 release of <html:b>MDT BPMN2</html:b> are to be 
-considered <html:b>provisional</html:b>.</html:i>
-      </html:p>
-    </html:div>
-  </introduction>
-  <release_deliverables>
-    <html:div>
-The release deliverables have the same form as is found in most Eclipse projects, namely:
-        <html:ul>
-        <html:li>MDT BPMN2 source code release, available as versions tagged "R0_7" in the project's CVS repository</html:li>
-        <html:li>MDT BPMN2 SDK (includes runtime, sources, examples, and documentation) (downloadable and update site)</html:li>
-        <html:li>MDT BPMN2 runtime binary distribution (downloadable and update site)</html:li>
-        <html:li>MDT BPMN2 stand-alone binary distribution (downloadable)</html:li>
-        <html:li>MDT BPMN2 tests (downloadable)</html:li>
-      </html:ul>
-    </html:div>
-  </release_deliverables>
-  <release_milestones>
-    <preamble>
-      <html:div>
-Release milestone occurring at roughly 6 week intervals and follow the 
-Platform milestone releases by approximately 1 week; that is, until the final 
-3.5 release of the Platform, upon which MDT BPMN2 and other projects will 
-release simultaneously. As MDT BPMN2 may become a dependency of numerous other 
-projects, MDT BPMN2 will deliver its milestones within one week of the Eclipse 
-Platform. It is anticipated that MDT BPMN2 will synchronize its milestones with 
-the Galileo milestone schedule.
-      </html:div>
-    </preamble>
-    <milestone date="08/13/2008" milestone="M1" />
-    <milestone date="09/24/2008" milestone="M2" />
-    <milestone date="11/05/2008" milestone="M3" />
-    <milestone date="12/17/2008" milestone="M4" />
-    <milestone date="02/03/2009" milestone="M5" />
-    <milestone date="03/16/2009" milestone="M6">
-      <html:div>API Freeze</html:div>
-    </milestone>
-    <milestone date="05/04/2009" milestone="M7">
-      <html:div>Feature Freeze</html:div>
-    </milestone>
-    <milestone date="05/18/2009" milestone="RC1" />
-    <milestone date="05/25/2009" milestone="RC2" />
-    <milestone date="06/01/2009" milestone="RC3" />
-    <milestone date="06/08/2009" milestone="RC4" />
-    <milestone date="06/15/2009" milestone="RC5" />
-    <milestone date="06/28/2009" milestone="0.7.0" />
-    <postamble>
-      <html:div>
-As MDT BPMN2 is a new subproject of MDT, it will not produce maintenance 
-releases to align with the Ganymede SR releases.
-      </html:div>
-    </postamble>
-  </release_milestones>
-  <target_environments>
-    <html:div>
-In order to remain current, each Eclipse release targets reasonably current 
-versions of the underlying operating environments. The Eclipse Business Process 
-Model and Notation (MDT BPMN2) project depends upon on the Platform and other 
-projects, which are mostly "pure" Java<html:sup>TM</html:sup>. The 3.5 release 
-of the Eclipse Platform Project is written and compiled against version 1.4 of 
-the Java Platform APIs, and targeted to run on version 1.4 of the Java Runtime 
-Environment, Standard Edition. MDT BPMN2 will target the same Java version as 
-EMF and UML2, which currently require Java 5. Eclipse Platform SDK 3.5 will be 
-tested and validated on a number of reference platforms. MDT BPMN2 will be 
-tested and validated against a subset of those listed for the platform.
-    </html:div>
-    <internationalization>
-      <html:div>
-The Eclipse Platform is designed as the basis for internationalized products. 
-The user interface elements provided by the Eclipse SDK components, including 
-dialogs and error messages, are externalized. The English strings are provided 
-as the default resource bundles. As a result, the MDT BPMN2 project will 
-provide English strings in its default bundles and be localized to a subset of 
-those locales offered by the Platform. This plan will be updated to indicate 
-which locales will be provided and the time frame for availability.
-      </html:div>
-    </internationalization>
-  </target_environments>
-  <compatibility_with_previous_releases />
-  <themes_and_priorities>
-    <preamble>
-      <html:div>
-A list of project requirements and agreed upon implementation time frames is 
-found in this document. For the milestones listed in this document, a set of 
-overall themes is used to indicate what major set of functionalities is to be 
-concentrated on for each. These themes are presented below, while the 
-requirements document and associated Bugzilla entries are left to those wanting 
-more detailed information on each.
-      </html:div>
-    </preamble>
-    <theme name="Compliance">
-      <description>
-        <html:div>
-As an implementation of the OMG<html:sup>TM</html:sup>'s BPMN 2.0 
-specification, the MDT BPMN2 project will maintain currency with the adopted 
-and finalized specifications, as they become available.
-        </html:div>
-      </description>
-      <committed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;classification=Modeling&amp;product=MDT&amp;component=BPMN2&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;status_whiteboard_type=casesubstring&amp;status_whiteboard=Compliance&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <proposed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;classification=Modeling&amp;product=MDT&amp;component=BPMN2&amp;target_milestone=0.7.0&amp;status_whiteboard_type=casesubstring&amp;status_whiteboard=Compliance&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <deferred bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;classification=Modeling&amp;product=MDT&amp;component=BPMN2&amp;status_whiteboard_type=casesubstring&amp;status_whiteboard=Compliance&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-" />
-    </theme>
-  </themes_and_priorities>
-  <appendix name="Legal Notices">
-    <html:div>
-      <html:ul>
-        <html:li>Java is a trademark or a registered trademark of Sun Microsystems, Inc.</html:li>
-        <html:li>BPMN and OMG are trademarks of the Object Management Group<html:sup>TM</html:sup>, Inc.</html:li>
-        <html:li>All other products or company names are mentioned for identification purposes only, and may be trademarks or service marks of their respective owners.</html:li>
-      </html:ul>
-    </html:div>
-  </appendix>
-</plan>
diff --git a/bpmn2/project-info/project-page-paragraph.html b/bpmn2/project-info/project-page-paragraph.html
deleted file mode 100644
index 87041de..0000000
--- a/bpmn2/project-info/project-page-paragraph.html
+++ /dev/null
@@ -1 +0,0 @@
-<p>BPMN2 is an open source component of the Model Development Tools (MDT) subproject to provide a metamodel implementation based on the forthcoming Business Process Model and Notation (BPMN) 2.0 OMG specification.</p>
\ No newline at end of file
diff --git a/build/.cvsignore b/build/.cvsignore
deleted file mode 100644
index 79eb93b..0000000
--- a/build/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-.htaccess
\ No newline at end of file
diff --git a/build/index.php b/build/index.php
deleted file mode 100644
index 48a1231..0000000
--- a/build/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: /modeling/mdt/uml2/build/"); ?>
\ No newline at end of file
diff --git a/build/log-viewer.php b/build/log-viewer.php
deleted file mode 100644
index 4f8abc1..0000000
--- a/build/log-viewer.php
+++ /dev/null
@@ -1,2 +0,0 @@
-<?php require_once ("../../includes/buildServer-common.php");
-require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/log-viewer-common.php"); ?>
\ No newline at end of file
diff --git a/build/removeRelease.php b/build/removeRelease.php
deleted file mode 100644
index 7eb3940..0000000
--- a/build/removeRelease.php
+++ /dev/null
@@ -1,4 +0,0 @@
-<?php
-require_once ("../../includes/buildServer-common.php");
-require($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/removeRelease-common.php");
-?>
diff --git a/build/sideitems-common.php b/build/sideitems-common.php
deleted file mode 100644
index 5f6d680..0000000
--- a/build/sideitems-common.php
+++ /dev/null
@@ -1,40 +0,0 @@
-<?php

-/* extra sidebar stuff appended at the bottom */

-function sidebar()

-{

-	global $PR, $projct, $isBuildServer;

-

-	if ($isBuildServer)

-	{

-	?>

-	<div class="sideitem">

-		<h6>Actions</h6>

-		<ul>

-		<?php if ($projct == "ocl") { ?>

-			<li>MDT: <a href="/<?php print $PR; ?>/<?php print $projct; ?>/build/">Build</a>,

-				 <a href="/<?php print $PR; ?>/<?php print $projct; ?>/build/clean.php">Clean</a>,

-				 <a href="/<?php print $PR; ?>/<?php print $projct; ?>/build/promo.php">Promote</a></li>

-			<li>QTV: <a href="/modeling/emf/query/build/">Build</a>,

-					 <a href="/modeling/emf/query/build/promo.php">Promote</a></li>

-		<?php } else { ?>

-			<li><a href="/<?php print $PR; ?>/<?php print $projct; ?>/build/">Build</a>,

-					 <a href="/<?php print $PR; ?>/<?php print $projct; ?>/build/promo.php">Promote</a></li>

-		<?php } ?>

-			<li><a href="/<?php print $PR; ?>/downloads/?project=<?php print $projct ? $projct : "uml2"; ?>&amp;showAll=0&amp;showMax=5&amp;sortBy=date">See Recent Builds</a></li>

-		</ul>

-	</div>

-

-	<div class="sideitem">

-		<h6>Info</h6>

-		<ul>

-			<li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?product=MDT&amp;component=<?php echo $projct; ?>&amp;bug_status=ASSIGNED">Assigned Bugs</a></li>

-			<li><a href="https://bugs.eclipse.org/bugs/buglist.cgi?product=MDT&amp;component=<?php echo $projct; ?>&amp;bug_status=RESOLVED&changedin=7">Resolved Bugs This Week</a></li>

-			<li><a href="http://www.eclipse.org/modeling/mdt/searchcvs.php?q=branch%3A+HEAD+days%3A+7">Development This Week</a></li>

-			<li><a href="http://www.eclipse.org/modeling/mdt/searchcvs.php?q=branch%3A+R+days%3A+7">Maintenance This Week</a></li>

-			<!-- <li><a href="http://emf.torolab.ibm.com/<?php print $PR; ?>/downloads/downloads.php">Download Stats</a></li> -->

-		</ul>

-	</div>

-	<?php

-	}

-}

-?>

diff --git a/docs.php b/docs.php
deleted file mode 100644
index 1fcd8f4..0000000
--- a/docs.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-require_once ("../includes/buildServer-common.php");
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon());
-
-if ($proj) { 
-	header("Location: http://wiki.eclipse.org/index.php/MDT-" . strtoupper($proj)); 
-	exit;
-}
-ob_start();
-?>
-<div id="midcolumn">
-
-<h1>Documentation</h1>
-
-<?php 
-
-print doSelectProject($projects, $proj, $nomenclature, "homeitem3col");
-
-?>
-</div>
-<div id="rightcolumn">
-	<div class="sideitem">
-	<h6>See Also</h6>
-	<ul><li><a href="http://wiki.eclipse.org/index.php/MDT">MDT Wiki</a></li>
-	<li><a href="http://www.eclipse.org/modeling/mdt/javadoc/">Javadocs</a></li>
-	</ul>
-	</div>
-</div>
-
-<?php
-
-$html = ob_get_contents();
-ob_end_clean();
-
-$pageTitle = "Eclipse Modeling - MDT - Documentation";
-$pageKeywords = ""; // TODO: add something here
-$pageAuthor = "Neil Skrypuch";
-
-$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
-<!-- $Id: docs.php,v 1.7 2007/04/05 19:13:25 nickb Exp $ -->
diff --git a/docs/plans/default_style.css b/docs/plans/default_style.css
deleted file mode 100644
index e26fec7..0000000
--- a/docs/plans/default_style.css
+++ /dev/null
@@ -1,18 +0,0 @@
-p, table, td, th {  font-family: arial, helvetica, geneva; font-size: 10pt}
-pre {  font-family: "Courier New", Courier, mono; font-size: 10pt}
-h2 { font-family: arial, helvetica, geneva; font-size: 18pt; font-weight: bold ; line-height: 14px}
-code {  font-family: "Courier New", Courier, mono; font-size: 10pt}
-sup {  font-family: arial,helvetica,geneva; font-size: 10px}
-h3 {  font-family: arial, helvetica, geneva; font-size: 14pt; font-weight: bold}
-li {  font-family: arial, helvetica, geneva; font-size: 10pt}
-h1 {  font-family: arial, helvetica, geneva; font-size: 28px; font-weight: bold}
-body {  font-family: arial, helvetica, geneva; font-size: 10pt; clip:   rect(   ); margin-top: 5mm; margin-left: 3mm}
-.indextop { font-size: x-large;; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold}
-.indexsub { font-size: xx-small;; font-family: Arial, Helvetica, sans-serif; color: #8080FF}
-a.bar:link {  text-decoration: none; color: #FFFFFF}
-a.bar:visited {  color: #FFFFFF; text-decoration: none}
-a.bar:hover {  color: #FFFFFF; text-decoration: underline}
-a.bar {  color: #FFFFFF}
-.jump { font-size: smaller;; font-family: Arial, Helvetica, sans-serif; color: #8080FF ; font-style: normal; text-decoration: none}
-.jump:link { font-size: smaller;; font-family: Arial, Helvetica, sans-serif; color: #8080FF; text-decoration: none}
-.jump:hover { font-size: smaller;; font-family: Arial, Helvetica, sans-serif; color: #0000FF; text-decoration: underline; font-style: normal}
diff --git a/docs/plans/mdt_project_plan_1_0.html b/docs/plans/mdt_project_plan_1_0.html
deleted file mode 100644
index dd1baf0..0000000
--- a/docs/plans/mdt_project_plan_1_0.html
+++ /dev/null
@@ -1,1458 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - 1.0 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>125</o:Revision>
-  <o:TotalTime>3705</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2007-07-19T21:02:00Z</o:LastSaved>
-  <o:Pages>2</o:Pages>
-  <o:Words>5025</o:Words>
-  <o:Characters>28644</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>238</o:Lines>
-  <o:Paragraphs>67</o:Paragraphs>
-  <o:CharactersWithSpaces>33602</o:CharactersWithSpaces>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:3174654;
-	mso-list-template-ids:-631848512;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:518347990;
-	mso-list-template-ids:1969545748;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:1020815444;
-	mso-list-template-ids:1064305294;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:1801222523;
-	mso-list-template-ids:2083964204;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1983924606;
-	mso-list-template-ids:1784082268;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="24578"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-1.0 Plan</h1>
-
-<p>Last revised 16:56 EDT July 19, 2007 (<img width=12 height=12
-id="_x0000_i1025" src="../../images/new.gif" border=0> marks interesting
-changes over the <a href="mdt_project_plan_1_0_20070705.html">previous plan
-revision</a>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_OCL__component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2__component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_Tools_">UML2 Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due
-     consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan items
-     may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R0_9&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the OCL component, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 component, available
-     as versions tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools component,
-     available as versions tagged &quot;R0_7&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_3&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 16 – Milestone 3 (1.0 M3) – Stable
-     Build based on Eclipse 3.3 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 4 – Milestone 4 (1.0 M4) – Stable
-     Build based on Eclipse 3.3 M4 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1027"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, February 23 – Milestone 5 (1.0 M5) – Stable
-     Build based on Eclipse 3.3 M5 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1028"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, April 6 – Milestone 6 (1.0 M6) – API Freeze –
-     Stable Build based on Eclipse 3.3 M6 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1029"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, May 18 – Milestone 7 (1.0 RC0) – Stable Build
-     based on Eclipse 3.3 RC0 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1030" src="../../images/ok.gif"></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 0.9 with 0.7</h3>
-
-<p>The EODM 0.9 component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 0.7.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 0.9 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 0.7 as noted in the <i>EODM
-0.9 Migration</i> Guide. Programs that use affected APIs and extension points
-will need to be ported to EODM 0.9 APIs. Downward contract compatibility is not
-supported. Compliance with EODM 0.9 APIs would <b style='mso-bidi-font-weight:
-normal'>not</b> ensure compliance with EODM 0.7 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 0.9 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with EODM 0.7 as noted in the <i>EODM
-0.9 Migration</i> Guide. Downward plug-in compatibility is not supported:
-plug-ins compiled against EODM 0.9 will be unusable with EODM 0.7. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 0.7 APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against EODM 0.9 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 0.9 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 0.7 as noted. This
-means that workspaces and projects created by an Eclipse with EODM 0.7 installed
-<b style='mso-bidi-font-weight:normal'>cannot</b> be successfully opened by an
-Eclipse with EODM 0.9 installed. This includes both hidden metadata, which is
-localized to a particular workspace, as well as metadata files found within a
-workspace project, which may propagate between workspaces via file copying or
-team repositories. User interface session state may be discarded when a
-workspace is upgraded. Downward workspace compatibility is not supported.
-Metadata files created (or overwritten) by the newer version will generally be
-unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of OCL 1.1 with 1.0</h3>
-
-<p>The OCL 1.1 component of Eclipse MDT will be compatible with OCL 1.0, except
-in those areas noted in the OCL 1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.1 will be upwards
-contract-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to OCL 1.1 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with OCL 1.1 APIs would ensure compliance with OCL 1.0 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.1 will be upwards
-binary-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.1 will likely
-be unusable with OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.0 APIs will
-usually compile and run successfully against OCL 1.1 APIs, although this cannot
-be guaranteed. Because OCL 1.1 may exploit new Java language constructs and/or
-aspects of the OCL specification, there is an increased chance of source
-incompatibilities compared to previous OCL releases. In some cases, it may be
-necessary to make minor changes to the source code to disambiguate things like
-imports or overloaded method invocations. Downward source compatibility is not
-supported. If source files use new APIs, they will not be usable with earlier
-versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.1 will be upwards workspace-compatible
-with OCL 1.0 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.0 installed can be successfully opened by an Eclipse with
-OCL 1.1 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.1 with 2.0</h3>
-
-<p>The UML2 2.1 component of Eclipse MDT will be compatible with UML2 2.0,
-except in those areas noted in the<img border=0 width=12 height=12
-id="_x0000_i1057" src="../../images/new.gif"> <a
-href="../../uml2/docs/guides/UML2_2.1_Migration_Guide/guide.html">UML2 2.1
-Migration Guide</a>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.1 will be upwards
-contract-compatible with UML2 2.0 except in those areas noted in the<img
-border=0 width=12 height=12 id="_x0000_i1055" src="../../images/new.gif"> <i><a
-href="../../uml2/docs/guides/UML2_2.1_Migration_Guide/guide.html">UML2 2.1
-Migration<span style='mso-bidi-font-style:normal'> Guide</span></a></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 2.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 2.1 APIs would ensure compliance with UML2
-2.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.1 will be upwards
-binary-compatible with UML2 2.0 except in those areas noted in the<img
-border=0 width=12 height=12 id="_x0000_i1056" src="../../images/new.gif"> <i><a
-href="../../uml2/docs/guides/UML2_2.1_Migration_Guide/guide.html">UML2 2.1
-Migration<span style='mso-bidi-font-style:normal'> Guide</span></a></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.1 will likely be unusable with UML2 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.0 APIs will
-usually compile and run successfully against UML2 2.1 APIs, although this cannot
-be guaranteed. Because UML2 2.1 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous UML2
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.1 will be upwards workspace-compatible
-with UML2 2.0 unless noted. This means that workspaces and projects created by
-an Eclipse with UML2 2.0 installed can be successfully opened by an Eclipse
-with UML2 2.1 installed. This includes both hidden metadata, which is localized
-to a particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.3 with 2.2</h3>
-
-<p>The XSD 2.3 component of Eclipse MDT will be compatible with XSD 2.2, except
-in those areas noted in the XSD 2.3 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.3 will be upwards contract-compatible
-with XSD 2.2 except in those areas noted in the <i>XSD 2.3 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Programs that use affected APIs
-and extension points will need to be ported to XSD 2.3 APIs. Downward contract
-compatibility is not supported. There is no guarantee that compliance with XSD
-2.3 APIs would ensure compliance with XSD 2.2 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.3 will be upwards
-binary-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.3 will likely
-be unusable with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 2.3 APIs, although this cannot
-be guaranteed. Because XSD 2.3 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.3 will be upwards workspace-compatible
-with XSD 2.2 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.2 installed can be successfully opened by an Eclipse with
-XSD 2.3 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1031" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a new API that is
-compliant with the (to be adopted) 5th submission of the ODM specification to
-the OMG. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"><span
-style='mso-bookmark:UML2'>162682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Appealing to a Broader Community]<span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1032" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Dynamic Typing.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for dynamic typing. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162683</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1033" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Parsing and
-Serialization.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162684</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1034" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Reasoning.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for RDF/OWL reasoning. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162685</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1035" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Transformation
-to/from <span class=SpellE>Ecore</span>.</b></span><span style='mso-bidi-font-weight:
-bold'> Provide a mechanism to transform RDF/OWL models to/from <span
-class=SpellE>Ecore</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162686</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1036" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a><a
-name="_OCL__component"></a>OCL component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>OCL is an implementation of the OCL OMG
-standard for EMF-based models. Plan items reflect new features of the OCL
-component, or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1037" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Parsing API.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a public API for parsing OCL
-documents, with the complete context declaration syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1038" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with UML.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for parsing and evaluating
-OCL constraints and expressions on the UML <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1039" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>EMF 2.3 / J2SE 5 Support.</b></span><span
-style='mso-bidi-font-weight:bold'> Adopt EMF 2.3, including regeneration of the
-OCL <span class=SpellE>metamodel</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1040" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Improved Documentation.</b></span><span
-style='mso-bidi-font-weight:bold'> Develop a complete ProgrammerÂ’s Guide for
-the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1041" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>LPG.</b></span><span
-style='mso-bidi-font-weight:bold'> Consume LPG runtime library from the Orbit
-project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1042" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Stand-alone support.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a stand-alone (Eclipse-free) OCL
-build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1043" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>ICU4J.</b><span style='mso-bidi-font-weight:
-bold'> Isolate and minimize dependency on ICU4J; ensure support for the “thin”
-variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]</span><span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1044" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance.</b></span><span
-style='mso-bidi-font-weight:bold'> Maintain currency of the API with the <span
-class=SpellE>OMGÂ’s</span> OCL, ensuring backward API compatibility as much as
-possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>OCL Conformance.</b></span><span
-style='mso-bidi-font-weight:bold'> Validate and document the APIÂ’s conformance
-to the OCL SpecificationÂ’s compliance points. This includes which language capabilities
-are supported and which <span class=SpellE>metamodels</span> (EMOF/<span
-class=SpellE>Ecore</span>, UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2__component"></a>UML2
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 is an EMF-based implementation of the
-UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span> for the Eclipse platform. Plan items
-reflect new features of the UML2 component, or areas where existing features
-will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1045" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.3 / EMF 2.3
-Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.3 (and Eclipse 3.3). Make
-changes as required to align with EMF features and bug fixes, in particular
-support for Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1046"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Improved Documentation.</b></span> Improve documentation by
-updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>, and
-publishing new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Ant Task for <span
-class=SpellE>Ecore</span> Importer<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide an Ant task for the UML <span class=SpellE>Ecore</span> importer,
-similar to those provided for the Rose and <span class=SpellE>Ecore</span>
-importers in EMF. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1047" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Static Profile Definition<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a way to specify
-that a profile definition be generated using EMF. This would allow, among other
-things, support for custom data types and derived stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<span style='mso-bidi-font-style:italic'> <img
-border=0 width=12 height=12 id="_x0000_i1048" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XML Primitive Types<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a model library
-to represent the types defined in the <span class=SpellE>XMLType</span> <span
-class=SpellE>metamodel</span> in EMF; be sure to update <span class=SpellE>Ecore</span>/UML
-converters to make use of this new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1049"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Create Child/Sibling Menu Reorganization<span
-style='mso-bidi-font-weight:bold'>.</span></b> Reorganize the ‘Create Child’
-and ‘Create Sibling’ menus of the UML editor so that the items are grouped by
-feature. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1050"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with OCL.</b></span><span
-style='mso-bidi-font-weight:bold'> Integrate support for parsing and evaluating
-OCL constraints and expressions. Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1051" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Unit Tests.</b></span> Complete the implementation of generated
-unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Validation Rules.</b></span> Complete the generation and
-implementation of validation rules from the UML</span><span style='mso-bookmark:
-UML2'><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=SpellE><b style='mso-bidi-font-weight:normal'>BiDi</b></span><b
-style='mso-bidi-font-weight:normal'> Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better support for <span class=SpellE>BiDi</span>
-languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]</span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_Tools_"></a>UML2 Tools
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set of GMF-based editors for viewing
-and editing UML models. Plan items reflect new features of the UML2 Tools
-component (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1052" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Class Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML class
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state machine
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161572</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Component Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161573</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Activity Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161574</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Import/Export from/to DI.</b><span
-style='mso-bidi-font-weight:bold'> Provide a mechanism whereby UML diagrams can
-be imported/exported from/to a format based on the Diagram Interchange specification.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161575"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161575</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://www.eclipse.org/modeling/mdt/javadoc/?project=xsd&amp;page=org/eclipse/xsd/package-summary.html&amp;anchor=details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1053" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Java SE 5.0 <span class=GramE>Support</span><span
-style='mso-bidi-font-weight:bold'>.</span></b> Exploit new Java language
-constructs; use generics (e.g. <span class=SpellE>EList</span>, <span
-class=SpellE>EMap</span> and implementations); generate and merge Java 5
-constructs; investigate enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<span style='mso-bidi-font-style:italic'> <img
-border=0 width=12 height=12 id="_x0000_i1054" src="../../images/ok.gif"></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XSD2Ecore Enhancements<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Improve ability to record
-complex content models as <span class=SpellE>Ecore</span> annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_0_20060410.html b/docs/plans/mdt_project_plan_1_0_20060410.html
deleted file mode 100644
index 9b0e8ab..0000000
--- a/docs/plans/mdt_project_plan_1_0_20060410.html
+++ /dev/null
@@ -1,1442 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - DRAFT 1.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>115</o:Revision>
-  <o:TotalTime>3626</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2007-04-11T01:32:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>4818</o:Words>
-  <o:Characters>27464</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>228</o:Lines>
-  <o:Paragraphs>64</o:Paragraphs>
-  <o:CharactersWithSpaces>32218</o:CharactersWithSpaces>
-  <o:Version>10.6825</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:385107211;
-	mso-list-template-ids:23464392;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:559097035;
-	mso-list-template-ids:-1980449276;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:1056901044;
-	mso-list-template-ids:-1551056702;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1067220253;
-	mso-list-template-ids:266514820;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:1488744643;
-	mso-list-template-ids:1349001224;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="19458"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-DRAFT 1.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="41" Hour="16">16:41 EDT</st1:time> <st1:date
-Year="2007" Day="10" Month="4">April 10, 2007</st1:date> (<img width=12
-height=12 id="_x0000_i1046" src="../../images/new.gif" border=0> marks
-interesting changes over the <a href="mdt_project_plan_1_0_20070228.html">previous
-plan revision</a>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_OCL__component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2__component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_Tools_">UML2 Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due
-     consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan
-     items may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the OCL component, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 component, available
-     as versions tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools component,
-     available as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_3&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 16 – Milestone 3 (1.0 M3) – Stable
-     Build based on Eclipse 3.3 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1025"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 4 – Milestone 4 (1.0 M4) – Stable
-     Build based on Eclipse 3.3 M4 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, February 23 – Milestone 5 (1.0 M5) – Stable
-     Build based on Eclipse 3.3 M5 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1027"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1040" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Friday, April 6 – Milestone 6 (1.0 M6) – API Freeze – Stable Build
-     based on Eclipse 3.3 M6 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1041" src="../../images/ok.gif"></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, May 18 – Milestone 7 (1.0 RC0) – Stable Build
-     based on Eclipse 3.3 RC0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs and
-error messages, are externalized. The English strings for MDT are provided as
-the default resource bundles. Translations are not provided with this release.
-However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 2.0 with 1.0</h3>
-
-<p>The EODM 2.0 component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Programs that use affected APIs and extension points
-will need to be ported to EODM 2.0 APIs. Downward contract compatibility is not
-supported. Compliance with EODM 2.0 APIs would <b style='mso-bidi-font-weight:
-normal'>not</b> ensure compliance with EODM 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Downward plug-in compatibility is not supported:
-plug-ins compiled against EODM 2.0 will be unusable with EODM 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 1.0 APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against EODM 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 1.0 as noted. This
-means that workspaces and projects created by an Eclipse with EODM 1.0
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with EODM 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of OCL 1.1 with 1.0</h3>
-
-<p>The OCL 1.1 component of Eclipse MDT will be compatible with OCL 1.0, except
-in those areas noted in the OCL 1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.1 will be upwards
-contract-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to OCL 1.1 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with OCL 1.1 APIs would ensure compliance with OCL 1.0 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.1 will be upwards
-binary-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.1 will likely
-be unusable with OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.0 APIs will
-usually compile and run successfully against OCL 1.1 APIs, although this cannot
-be guaranteed. Because OCL 1.1 may exploit new Java language constructs and/or
-aspects of the OCL specification, there is an increased chance of source
-incompatibilities compared to previous OCL releases. In some cases, it may be
-necessary to make minor changes to the source code to disambiguate things like
-imports or overloaded method invocations. Downward source compatibility is not
-supported. If source files use new APIs, they will not be usable with earlier
-versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.1 will be upwards workspace-compatible
-with OCL 1.0 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.0 installed can be successfully opened by an Eclipse with
-OCL 1.1 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.1 with 2.0</h3>
-
-<p>The UML2 2.1 component of Eclipse MDT will be compatible with UML2 2.0,
-except in those areas noted in the UML2 2.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.1 will be upwards contract-compatible
-with UML2 2.0 except in those areas noted in the <i>UML2 2.1 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Programs that use affected APIs
-and extension points will need to be ported to UML2 2.1 APIs. Downward contract
-compatibility is not supported. There is no guarantee that compliance with UML2
-2.1 APIs would ensure compliance with UML2 2.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that maintain
-contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.1 will be upwards
-binary-compatible with UML2 2.0 except in those areas noted in the <i>UML2 2.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 2.1 will likely
-be unusable with UML2 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.0 APIs will
-usually compile and run successfully against UML2 2.1 APIs, although this
-cannot be guaranteed. Because UML2 2.1 may exploit new Java language
-constructs, there is an increased chance of source incompatibilities compared
-to previous UML2 releases. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.1 will be upwards
-workspace-compatible with UML2 2.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 2.0 installed can be successfully
-opened by an Eclipse with UML2 2.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.3 with 2.2</h3>
-
-<p>The XSD 2.3 component of Eclipse MDT will be compatible with XSD 2.2, except
-in those areas noted in the XSD 2.3 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.3 will be upwards
-contract-compatible with XSD 2.2 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.3 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.3 APIs would ensure compliance with XSD 2.2 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.3 will be upwards
-binary-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.3 will likely
-be unusable with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 2.3 APIs, although this cannot
-be guaranteed. Because XSD 2.3 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.3 will be upwards workspace-compatible
-with XSD 2.2 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.2 installed can be successfully opened by an Eclipse with
-XSD 2.3 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1028" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a new API that is
-compliant with the (to be adopted) 5th submission of the ODM specification to
-the OMG. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"><span
-style='mso-bookmark:UML2'>162682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Appealing to a Broader Community]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Dynamic Typing.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for dynamic typing. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162683</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Parsing and
-Serialization.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162684</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Reasoning.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for RDF/OWL reasoning. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162685</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Transformation
-to/from <span class=SpellE>Ecore</span>.</b></span><span style='mso-bidi-font-weight:
-bold'> Provide a mechanism to transform RDF/OWL models to/from <span
-class=SpellE>Ecore</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162686</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a><a
-name="_OCL__component"></a>OCL component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>OCL is an implementation of the OCL OMG
-standard for EMF-based models. Plan items reflect new features of the OCL
-component, or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1029" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Parsing API.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a public API for parsing OCL
-documents, with the complete context declaration syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1030" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with UML.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for parsing and evaluating
-OCL constraints and expressions on the UML <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>EMF 2.3 / J2SE 5 Support.</b></span><span
-style='mso-bidi-font-weight:bold'> Adopt EMF 2.3, including regeneration of the
-OCL <span class=SpellE>metamodel</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1031" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Improved Documentation.</b></span><span
-style='mso-bidi-font-weight:bold'> Develop a complete ProgrammerÂ’s Guide for
-the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>LPG.</b></span><span
-style='mso-bidi-font-weight:bold'> Consume LPG runtime library from the Orbit
-project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1032" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Stand-alone support.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a stand-alone (Eclipse-free) OCL
-build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1033" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>ICU4J.</b><span style='mso-bidi-font-weight:
-bold'> Isolate and minimize dependency on ICU4J; ensure support for the “thin”
-variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]</span><span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1034" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance.</b></span><span
-style='mso-bidi-font-weight:bold'> Maintain currency of the API with the <span
-class=SpellE>OMGÂ’s</span> OCL, ensuring backward API compatibility as much as
-possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>OCL Conformance.</b></span><span
-style='mso-bidi-font-weight:bold'> Validate and document the APIÂ’s conformance
-to the OCL SpecificationÂ’s compliance points. This includes which language
-capabilities are supported and which <span class=SpellE>metamodels</span>
-(EMOF/<span class=SpellE>Ecore</span>, UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2__component"></a>UML2
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 is an EMF-based implementation of the
-UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span> for the Eclipse platform. Plan items reflect
-new features of the UML2 component, or areas where existing features will be
-significantly reworked (<span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1035" src="../../images/ok.gif"> marks completed
-work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.3 / EMF 2.3
-Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.3 (and Eclipse 3.3). Make
-changes as required to align with EMF features and bug fixes, in particular
-support for Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Improved Documentation.</b></span> Improve documentation by
-updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>, and
-publishing new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Ant Task for <span
-class=SpellE>Ecore</span> Importer<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide an Ant task for the UML <span class=SpellE>Ecore</span> importer,
-similar to those provided for the Rose and <span class=SpellE>Ecore</span> importers
-in EMF. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1036" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1044" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Static Profile Definition<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide a way to specify that a profile definition be generated using EMF. This
-would allow, among other things, support for custom data types and derived
-stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<span style='mso-bidi-font-style:italic'> <img
-border=0 width=12 height=12 id="_x0000_i1043" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XML Primitive Types<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a model library
-to represent the types defined in the <span class=SpellE>XMLType</span> <span
-class=SpellE>metamodel</span> in EMF; be sure to update <span class=SpellE>Ecore</span>/UML
-converters to make use of this new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1037"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=SpellE><b style='mso-bidi-font-weight:normal'>BiDi</b></span><b
-style='mso-bidi-font-weight:normal'> Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better support for <span class=SpellE>BiDi</span>
-languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1045" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>Create
-Child/Sibling Menu Reorganization<span style='mso-bidi-font-weight:bold'>.</span></b>
-Reorganize the ‘Create Child’ and ‘Create Sibling’ menus of the UML editor so
-that the items are grouped by feature. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1042"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with OCL.</b></span><span
-style='mso-bidi-font-weight:bold'> Integrate support for parsing and evaluating
-OCL constraints and expressions. Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Unit Tests.</b></span> Complete the implementation of generated
-unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Validation Rules.</b></span> Complete the generation and
-implementation of validation rules from the UML</span><span style='mso-bookmark:
-UML2'><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_Tools_"></a>UML2 Tools component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set of GMF-based editors for
-viewing and editing UML models. Plan items reflect new features of the UML2
-Tools component (<span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1038" src="../../images/ok.gif"> marks completed
-work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Class Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML class
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state
-machine diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161572</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Component Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161573</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Activity Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161574</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Import/Export from/to DI.</b><span
-style='mso-bidi-font-weight:bold'> Provide a mechanism whereby UML diagrams can
-be imported/exported from/to a format based on the Diagram Interchange specification.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161575"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161575</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://download.eclipse.org/tools/emf/xsd/javadoc?org/eclipse/xsd/package-summary.html#details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1039" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Java SE 5.0 <span class=GramE>Support</span><span
-style='mso-bidi-font-weight:bold'>.</span></b> Exploit new Java language
-constructs; use generics (e.g. <span class=SpellE>EList</span>, <span
-class=SpellE>EMap</span> and implementations); generate and merge Java 5 constructs;
-investigate enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XSD2Ecore Enhancements<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Improve ability to record
-complex content models as <span class=SpellE>Ecore</span> annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_0_20061018.html b/docs/plans/mdt_project_plan_1_0_20061018.html
deleted file mode 100644
index 660d5cc..0000000
--- a/docs/plans/mdt_project_plan_1_0_20061018.html
+++ /dev/null
@@ -1,1381 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - DRAFT 1.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>88</o:Revision>
-  <o:TotalTime>3160</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-10-19T01:44:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>4476</o:Words>
-  <o:Characters>25517</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>212</o:Lines>
-  <o:Paragraphs>59</o:Paragraphs>
-  <o:CharactersWithSpaces>29934</o:CharactersWithSpaces>
-  <o:Version>10.6817</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:242615546;
-	mso-list-template-ids:339376676;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:338696525;
-	mso-list-template-ids:-1388785178;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:1113019837;
-	mso-list-template-ids:252184060;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:1959750821;
-	mso-list-template-ids:-2070008336;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:2002542540;
-	mso-list-template-ids:-1676484476;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="8194"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-DRAFT 1.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="45" Hour="21">21:45 EDT</st1:time> <st1:date
-Year="2006" Day="18" Month="10">October 18, 2006</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src="../../images/new.gif" border=0> marks
-interesting changes over the previous plan revision)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite large,
-others, quite small. Some plan items may involve work that is localized to a
-single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due
-     consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan
-     items may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org update
-     site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 OCL subcomponent, available
-     as versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools subcomponent,
-     available as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 UML subcomponent,
-     available as versions tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 UML runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 UML runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R3_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, October 5 - Milestone 2 (1.0 M2) - Stable
-     Build based on Eclipse 3.3 M2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 16 - Milestone 3 (1.0 M3) - Stable
-     Build based on Eclipse 3.3 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 28 - Milestone 4 (1.0 M4) - Stable
-     Build based on Eclipse 3.3 M4<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 3.0<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 2.0 with 1.0</h3>
-
-<p>The EODM 2.0 component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Programs that use affected APIs and extension points
-will need to be ported to EODM 2.0 APIs. Downward contract compatibility is not
-supported. Compliance with EODM 2.0 APIs would <b style='mso-bidi-font-weight:
-normal'>not</b> ensure compliance with EODM 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Downward plug-in compatibility is not supported:
-plug-ins compiled against EODM 2.0 will be unusable with EODM 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 1.0 APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against EODM 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files use
-new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 1.0 as noted. This
-means that workspaces and projects created by an Eclipse with EODM 1.0
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with EODM 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 OCL 1.1 with 1.0</h3>
-
-<p>The UML2 OCL 1.1 subcomponent of Eclipse MDT will be compatible with UML2
-OCL 1.0, except in those areas noted in the UML2 OCL 1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 OCL 1.1 will be upwards
-contract-compatible with UML2 OCL 1.0 except in those areas noted in the <i>UML2
-OCL 1.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 OCL 1.1
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with UML2 OCL 1.1 APIs would ensure compliance with UML2 OCL
-1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 OCL 1.1 will be upwards binary-compatible
-with UML2 OCL 1.0 except in those areas noted in the <i>UML2 OCL 1.1 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in compatibility
-is not supported: plug-ins compiled against UML2 OCL 1.1 will likely be
-unusable with UML2 OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 OCL 1.0 APIs
-will usually compile and run successfully against UML2 OCL 1.1 APIs, although
-this cannot be guaranteed. Because UML2 OCL 1.1 may exploit new Java language
-constructs and/or aspects of the OCL specification, there is an increased
-chance of source incompatibilities compared to previous UML2 OCL releases. In
-some cases, it may be necessary to make minor changes to the source code to
-disambiguate things like imports or overloaded method invocations. Downward
-source compatibility is not supported. If source files use new APIs, they will
-not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 OCL 1.1 will be upwards
-workspace-compatible with UML2 OCL 1.0 unless noted. This means that workspaces
-and projects created by an Eclipse with UML2 OCL 1.0 installed can be successfully
-opened by an Eclipse with UML2 OCL 1.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 UML 2.1 with 2.0</h3>
-
-<p>The UML2 UML 2.1 subcomponent of Eclipse MDT will be compatible with UML2
-UML 2.0, except in those areas noted in the UML2 UML 2.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 UML 2.1 will be upwards
-contract-compatible with UML2 UML 2.0 except in those areas noted in the <i>UML2
-UML 2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 UML
-2.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 UML 2.1 APIs would ensure compliance with
-UML2 UML 2.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 UML 2.1 will be upwards binary-compatible
-with UML2 UML 2.0 except in those areas noted in the <i>UML2 UML 2.1 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in compatibility
-is not supported: plug-ins compiled against UML2 UML 2.1 will likely be
-unusable with UML2 UML 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 UML 2.0 APIs
-will usually compile and run successfully against UML2 UML 2.1 APIs, although
-this cannot be guaranteed. Because UML2 UML 2.1 may exploit new Java language
-constructs, there is an increased chance of source incompatibilities compared
-to previous UML2 UML releases. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 UML 2.1 will be upwards
-workspace-compatible with UML2 UML 2.0 unless noted. This means that workspaces
-and projects created by an Eclipse with UML2 UML 2.0 installed can be
-successfully opened by an Eclipse with UML2 UML 2.1 installed. This includes
-both hidden metadata, which is localized to a particular workspace, as well as
-metadata files found within a workspace project, which may propagate between
-workspaces via file copying or team repositories. User interface session state
-may be discarded when a workspace is upgraded. Downward workspace compatibility
-is not supported. Metadata files created (or overwritten) by the newer version
-will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 3.0 with 2.2</h3>
-
-<p>The XSD 2.0 component of Eclipse MDT will be compatible with XSD 2.2, except
-in those areas noted in the XSD 3.0 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 3.0 will be upwards
-contract-compatible with XSD 2.2 except in those areas noted in the <i>XSD 3.0
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 3.0 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 3.0 APIs would ensure compliance with XSD 2.2 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 3.0 will be upwards
-binary-compatible with XSD 2.2 except in those areas noted in the <i>XSD 3.0
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 3.0 will likely
-be unusable with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 3.0 APIs, although this cannot
-be guaranteed. Because XSD 3.0 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 3.0 will be upwards workspace-compatible
-with XSD 2.2 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.2 installed can be successfully opened by an Eclipse with
-XSD 3.0 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1026" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a new API that is
-compliant with the (to be adopted) 5th submission of the ODM specification to
-the OMG. (?) [Theme: Appealing to a Broader Community]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Dynamic Typing.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for dynamic typing. (?)
-[Theme: </span>Appealing to a Broader Community<span style='mso-bidi-font-weight:
-bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Parsing and
-Serialization.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (?) [Theme: </span>Appealing to
-a Broader Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Reasoning.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for RDF/OWL reasoning. (?)
-[Theme: </span>Appealing to a Broader Community<span style='mso-bidi-font-weight:
-bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Transformation
-to/from <span class=SpellE>Ecore</span>.</b></span><span style='mso-bidi-font-weight:
-bold'> Provide a mechanism to transform RDF/OWL models to/from <span
-class=SpellE>Ecore</span>. (?) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a>UML2
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 provides an implementation of the UML 2
-umbrella of standards defined by the OMG and tools to manipulate models based
-on those standards. Plan items reflect new features of (subcomponents of) the
-UML2 component, or areas where existing features will be significantly reworked
-(<span style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1027" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 OCL subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 OCL is an implementation of the OCL OMG
-standard for EMF-based models.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Parsing API.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a public API for parsing OCL
-documents, with the complete context declaration syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with UML.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for parsing and evaluating
-OCL constraints and expressions on the UML <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>EMF 3.0 / J2SE 5 Support.</b></span><span
-style='mso-bidi-font-weight:bold'> Adopt EMF 3.0, including regeneration of the
-OCL <span class=SpellE>metamodel</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Improved Documentation.</b></span><span
-style='mso-bidi-font-weight:bold'> Develop a complete ProgrammerÂ’s Guide for
-the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>LPG.</b></span><span
-style='mso-bidi-font-weight:bold'> Consume LPG runtime library from the Orbit
-project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance.</b></span><span
-style='mso-bidi-font-weight:bold'> Maintain currency of the API with the <span
-class=SpellE>OMGÂ’s</span> OCL, ensuring backward API compatibility as much as
-possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>OCL Conformance.</b></span><span
-style='mso-bidi-font-weight:bold'> Validate and document the APIÂ’s conformance
-to the OCL SpecificationÂ’s compliance points. This includes which language
-capabilities are supported and which <span class=SpellE>metamodels</span>
-(EMOF/<span class=SpellE>Ecore</span>, UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Stand-alone support.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a stand-alone (Eclipse-free) OCL
-build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>ICU4J.</b><span style='mso-bidi-font-weight:
-bold'> Isolate and minimize dependency on ICU4J; ensure support for the “thin”
-variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 Tools subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set <span class=GramE>of a
-GMF-based editors</span> for viewing and editing UML models.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Class Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML class
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state
-machine diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Component Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Activity Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Import/Export from/to DI.</b><span
-style='mso-bidi-font-weight:bold'> Provide a mechanism whereby UML diagrams can
-be imported/exported from/to a format based on the Diagram Interchange
-specification. (?) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 UML subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 UML is an EMF-based implementation of
-the UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span> for the Eclipse platform.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.3 / EMF 3.0
-Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 3.0 (and Eclipse 3.3). Make changes
-as required to align with EMF features and bug fixes, in particular support for
-Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Improved Documentation.</b></span> Improve documentation by
-updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>, and
-publishing new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Ant Task for <span
-class=SpellE>Ecore</span> Importer<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide an Ant task for the UML <span class=SpellE>Ecore</span> importer,
-similar to those provided for the Rose and <span class=SpellE>Ecore</span>
-importers in EMF. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Static Profile Definition<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a way to specify
-that a profile definition be generated using EMF. This would allow, among other
-things, support for custom data types and derived stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XML Primitive Types<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a model library
-to represent the types defined in the <span class=SpellE>XMLType</span> <span
-class=SpellE>metamodel</span> in EMF; be sure to update <span class=SpellE>Ecore</span>/UML
-converters to make use of this new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=SpellE><b style='mso-bidi-font-weight:normal'>BiDi</b></span><b
-style='mso-bidi-font-weight:normal'> Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better support for <span class=SpellE>BiDi</span>
-languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Create Child/Sibling Menu Reorganization<span
-style='mso-bidi-font-weight:bold'>.</span></b> Reorganize the ‘Create Child’
-and ‘Create Sibling’ menus of the UML editor so that the items are grouped by
-feature. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with OCL.</b></span><span
-style='mso-bidi-font-weight:bold'> Integrate support for parsing and evaluating
-OCL constraints and expressions. Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Unit Tests.</b></span> Complete the implementation of generated
-unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Validation Rules.</b></span> Complete the generation and
-implementation of validation rules from the UML</span><span style='mso-bookmark:
-UML2'><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred Items
-(UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://download.eclipse.org/tools/emf/xsd/javadoc?org/eclipse/xsd/package-summary.html#details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1028" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Java SE 5.0 <span class=GramE>Support</span><span
-style='mso-bidi-font-weight:bold'>.</span></b> Exploit new Java language constructs;
-use generics (e.g. <span class=SpellE>EList</span>, <span class=SpellE>EMap</span>
-and implementations); generate and merge Java 5 constructs; investigate
-enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XSD2Ecore Enhancements<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Improve ability to record
-complex content models as <span class=SpellE>Ecore</span> annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_0_20061019.html b/docs/plans/mdt_project_plan_1_0_20061019.html
deleted file mode 100644
index 723e8c8..0000000
--- a/docs/plans/mdt_project_plan_1_0_20061019.html
+++ /dev/null
@@ -1,1392 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - DRAFT 1.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>90</o:Revision>
-  <o:TotalTime>3166</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-10-19T14:35:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>4569</o:Words>
-  <o:Characters>26045</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>217</o:Lines>
-  <o:Paragraphs>61</o:Paragraphs>
-  <o:CharactersWithSpaces>30553</o:CharactersWithSpaces>
-  <o:Version>10.6817</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:776872047;
-	mso-list-template-ids:416836620;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:1136023621;
-	mso-list-template-ids:666525140;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:1339386365;
-	mso-list-template-ids:-835044638;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:2081704997;
-	mso-list-template-ids:175019298;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:2129355873;
-	mso-list-template-ids:862480008;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="9218"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-DRAFT 1.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="35" Hour="10">10:35 EDT</st1:time> <st1:date
-Year="2006" Day="19" Month="10">October 19, 2006</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src="../../images/new.gif" border=0> marks
-interesting changes over the <a href="mdt_project_plan_1_0_20061018.html">previous
-plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due
-     consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan
-     items may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 OCL subcomponent,
-     available as versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools subcomponent,
-     available as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 UML subcomponent,
-     available as versions tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 UML runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 UML runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R3_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, October 5 - Milestone 2 (1.0 M2) - Stable
-     Build based on Eclipse 3.3 M2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 16 - Milestone 3 (1.0 M3) - Stable
-     Build based on Eclipse 3.3 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 28 - Milestone 4 (1.0 M4) - Stable
-     Build based on Eclipse 3.3 M4<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 3.0<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 2.0 with 1.0</h3>
-
-<p>The EODM 2.0 component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Programs that use affected APIs and extension points
-will need to be ported to EODM 2.0 APIs. Downward contract compatibility is not
-supported. Compliance with EODM 2.0 APIs would <b style='mso-bidi-font-weight:
-normal'>not</b> ensure compliance with EODM 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Downward plug-in compatibility is not supported:
-plug-ins compiled against EODM 2.0 will be unusable with EODM 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 1.0 APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against EODM 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 1.0 as noted. This
-means that workspaces and projects created by an Eclipse with EODM 1.0
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with EODM 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 OCL 1.1 with 1.0</h3>
-
-<p>The UML2 OCL 1.1 subcomponent of Eclipse MDT will be compatible with UML2
-OCL 1.0, except in those areas noted in the UML2 OCL 1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 OCL 1.1 will be upwards
-contract-compatible with UML2 OCL 1.0 except in those areas noted in the <i>UML2
-OCL 1.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 OCL
-1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 OCL 1.1 APIs would ensure compliance with
-UML2 OCL 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 OCL 1.1 will be upwards
-binary-compatible with UML2 OCL 1.0 except in those areas noted in the <i>UML2
-OCL 1.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 OCL 1.1
-will likely be unusable with UML2 OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 OCL 1.0 APIs
-will usually compile and run successfully against UML2 OCL 1.1 APIs, although
-this cannot be guaranteed. Because UML2 OCL 1.1 may exploit new Java language
-constructs and/or aspects of the OCL specification, there is an increased
-chance of source incompatibilities compared to previous UML2 OCL releases. In
-some cases, it may be necessary to make minor changes to the source code to
-disambiguate things like imports or overloaded method invocations. Downward
-source compatibility is not supported. If source files use new APIs, they will
-not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 OCL 1.1 will be upwards workspace-compatible
-with UML2 OCL 1.0 unless noted. This means that workspaces and projects created
-by an Eclipse with UML2 OCL 1.0 installed can be successfully opened by an
-Eclipse with UML2 OCL 1.1 installed. This includes both hidden metadata, which is
-localized to a particular workspace, as well as metadata files found within a
-workspace project, which may propagate between workspaces via file copying or
-team repositories. User interface session state may be discarded when a
-workspace is upgraded. Downward workspace compatibility is not supported.
-Metadata files created (or overwritten) by the newer version will generally be
-unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 UML 2.1 with 2.0</h3>
-
-<p>The UML2 UML 2.1 subcomponent of Eclipse MDT will be compatible with UML2
-UML 2.0, except in those areas noted in the UML2 UML 2.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 UML 2.1 will be upwards
-contract-compatible with UML2 UML 2.0 except in those areas noted in the <i>UML2
-UML 2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 UML
-2.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 UML 2.1 APIs would ensure compliance with
-UML2 UML 2.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 UML 2.1 will be upwards
-binary-compatible with UML2 UML 2.0 except in those areas noted in the <i>UML2
-UML 2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 UML 2.1
-will likely be unusable with UML2 UML 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 UML 2.0 APIs
-will usually compile and run successfully against UML2 UML 2.1 APIs, although this
-cannot be guaranteed. Because UML2 UML 2.1 may exploit new Java language
-constructs, there is an increased chance of source incompatibilities compared
-to previous UML2 UML releases. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 UML 2.1 will be upwards workspace-compatible
-with UML2 UML 2.0 unless noted. This means that workspaces and projects created
-by an Eclipse with UML2 UML 2.0 installed can be successfully opened by an
-Eclipse with UML2 UML 2.1 installed. This includes both hidden metadata, which
-is localized to a particular workspace, as well as metadata files found within
-a workspace project, which may propagate between workspaces via file copying or
-team repositories. User interface session state may be discarded when a
-workspace is upgraded. Downward workspace compatibility is not supported.
-Metadata files created (or overwritten) by the newer version will generally be
-unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 3.0 with 2.2</h3>
-
-<p>The XSD 2.0 component of Eclipse MDT will be compatible with XSD 2.2, except
-in those areas noted in the XSD 3.0 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 3.0 will be upwards
-contract-compatible with XSD 2.2 except in those areas noted in the <i>XSD 3.0
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 3.0 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 3.0 APIs would ensure compliance with XSD 2.2 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 3.0 will be upwards
-binary-compatible with XSD 2.2 except in those areas noted in the <i>XSD 3.0
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 3.0 will likely
-be unusable with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 3.0 APIs, although this cannot
-be guaranteed. Because XSD 3.0 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 3.0 will be upwards workspace-compatible
-with XSD 2.2 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.2 installed can be successfully opened by an Eclipse with
-XSD 3.0 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1026" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a new API that is
-compliant with the (to be adopted) 5th submission of the ODM specification to
-the OMG. (?) [Theme: Appealing to a Broader Community]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Dynamic Typing.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for dynamic typing. (?)
-[Theme: </span>Appealing to a Broader Community<span style='mso-bidi-font-weight:
-bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Parsing and
-Serialization.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (?) [Theme: </span>Appealing to
-a Broader Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Reasoning.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for RDF/OWL reasoning. (?)
-[Theme: </span>Appealing to a Broader Community<span style='mso-bidi-font-weight:
-bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Transformation
-to/from <span class=SpellE>Ecore</span>.</b></span><span style='mso-bidi-font-weight:
-bold'> Provide a mechanism to transform RDF/OWL models to/from <span
-class=SpellE>Ecore</span>. (?) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a>UML2
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 provides an implementation of the UML 2
-umbrella of standards defined by the OMG and tools to manipulate models based
-on those standards. Plan items reflect new features of (subcomponents of) the
-UML2 component, or areas where existing features will be significantly reworked
-(<span style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1027" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 OCL subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 OCL is an implementation of the OCL OMG
-standard for EMF-based models.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed Items
-(UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Parsing API.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a public API for parsing OCL
-documents, with the complete context declaration syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility – Be
-a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with UML.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for parsing and evaluating
-OCL constraints and expressions on the UML <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>EMF 3.0 / J2SE 5 Support.</b></span><span
-style='mso-bidi-font-weight:bold'> Adopt EMF 3.0, including regeneration of the
-OCL <span class=SpellE>metamodel</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Improved Documentation.</b></span><span
-style='mso-bidi-font-weight:bold'> Develop a complete ProgrammerÂ’s Guide for
-the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>LPG.</b></span><span
-style='mso-bidi-font-weight:bold'> Consume LPG runtime library from the Orbit
-project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance.</b></span><span
-style='mso-bidi-font-weight:bold'> Maintain currency of the API with the <span
-class=SpellE>OMGÂ’s</span> OCL, ensuring backward API compatibility as much as
-possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>OCL Conformance.</b></span><span
-style='mso-bidi-font-weight:bold'> Validate and document the APIÂ’s conformance
-to the OCL SpecificationÂ’s compliance points. This includes which language
-capabilities are supported and which <span class=SpellE>metamodels</span>
-(EMOF/<span class=SpellE>Ecore</span>, UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Stand-alone support.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a stand-alone (Eclipse-free) OCL
-build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>ICU4J.</b><span style='mso-bidi-font-weight:
-bold'> Isolate and minimize dependency on ICU4J; ensure support for the “thin”
-variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 Tools subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set <span class=GramE>of a
-GMF-based editors</span> for viewing and editing UML models.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Class Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML class
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]</span><img
-border=0 width=12 height=12 id="_x0000_i1029" src="../../images/new.gif"><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state
-machine diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161572</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]</span><img
-border=0 width=12 height=12 id="_x0000_i1030" src="../../images/new.gif"><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Component Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161573</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]</span><img
-border=0 width=12 height=12 id="_x0000_i1031" src="../../images/new.gif"><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Activity Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161574</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]</span><img
-border=0 width=12 height=12 id="_x0000_i1032" src="../../images/new.gif"><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Import/Export from/to DI.</b><span
-style='mso-bidi-font-weight:bold'> Provide a mechanism whereby UML diagrams can
-be imported/exported from/to a format based on the Diagram Interchange
-specification. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161575"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161575</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]</span><img
-border=0 width=12 height=12 id="_x0000_i1033" src="../../images/new.gif"><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 UML subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 UML is an EMF-based implementation of
-the UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span> for the Eclipse platform.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed Items
-(UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.3 / EMF 3.0
-Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 3.0 (and Eclipse 3.3). Make
-changes as required to align with EMF features and bug fixes, in particular
-support for Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Improved Documentation.</b></span> Improve documentation by
-updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>, and
-publishing new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Ant Task for <span
-class=SpellE>Ecore</span> Importer<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide an Ant task for the UML <span class=SpellE>Ecore</span> importer,
-similar to those provided for the Rose and <span class=SpellE>Ecore</span>
-importers in EMF. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Static Profile Definition<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a way to specify
-that a profile definition be generated using EMF. This would allow, among other
-things, support for custom data types and derived stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XML Primitive Types<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a model library
-to represent the types defined in the <span class=SpellE>XMLType</span> <span
-class=SpellE>metamodel</span> in EMF; be sure to update <span class=SpellE>Ecore</span>/UML
-converters to make use of this new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=SpellE><b style='mso-bidi-font-weight:normal'>BiDi</b></span><b
-style='mso-bidi-font-weight:normal'> Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better support for <span class=SpellE>BiDi</span>
-languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Create Child/Sibling Menu Reorganization<span
-style='mso-bidi-font-weight:bold'>.</span></b> Reorganize the ‘Create Child’
-and ‘Create Sibling’ menus of the UML editor so that the items are grouped by
-feature. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with OCL.</b></span><span
-style='mso-bidi-font-weight:bold'> Integrate support for parsing and evaluating
-OCL constraints and expressions. Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Unit Tests.</b></span> Complete the implementation of generated
-unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Validation Rules.</b></span> Complete the generation and
-implementation of validation rules from the UML</span><span style='mso-bookmark:
-UML2'><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://download.eclipse.org/tools/emf/xsd/javadoc?org/eclipse/xsd/package-summary.html#details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1028" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Java SE 5.0 <span class=GramE>Support</span><span
-style='mso-bidi-font-weight:bold'>.</span></b> Exploit new Java language
-constructs; use generics (e.g. <span class=SpellE>EList</span>, <span
-class=SpellE>EMap</span> and implementations); generate and merge Java 5
-constructs; investigate enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XSD2Ecore Enhancements<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Improve ability to record
-complex content models as <span class=SpellE>Ecore</span> annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_0_20061030.html b/docs/plans/mdt_project_plan_1_0_20061030.html
deleted file mode 100644
index f057374..0000000
--- a/docs/plans/mdt_project_plan_1_0_20061030.html
+++ /dev/null
@@ -1,1387 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - DRAFT 1.0 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>96</o:Revision>
-  <o:TotalTime>3173</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-10-30T20:47:00Z</o:LastSaved>
-  <o:Pages>2</o:Pages>
-  <o:Words>4625</o:Words>
-  <o:Characters>26365</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>219</o:Lines>
-  <o:Paragraphs>61</o:Paragraphs>
-  <o:CharactersWithSpaces>30929</o:CharactersWithSpaces>
-  <o:Version>10.6817</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:38751456;
-	mso-list-template-ids:-702243982;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:230506707;
-	mso-list-template-ids:503491586;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:635792378;
-	mso-list-template-ids:1074320544;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:874462603;
-	mso-list-template-ids:1464472106;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:1866819926;
-	mso-list-template-ids:-1854242372;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="11266"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-DRAFT 1.0 Plan</h1>
-
-<p>Last revised 15:47 EST October 30, 2006 (<img width=12 height=12
-id="_x0000_i1025" src="../../images/new.gif" border=0> marks interesting
-changes over the <a href="mdt_project_plan_1_0_20061019.html">previous plan
-revision</a>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan item
-     is one that we are considering addressing for the release. Although we are
-     actively investigating it, we are not yet in a position to commit to it,
-     or to say that we wonÂ’t be able to address it. After due consideration, a
-     proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan
-     items may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 OCL subcomponent,
-     available as versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools subcomponent,
-     available as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 UML subcomponent,
-     available as versions tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 UML runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 UML runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R3_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 16 - Milestone 3 (1.0 M3) - Stable
-     Build based on Eclipse 3.3 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 28 - Milestone 4 (1.0 M4) - Stable
-     Build based on Eclipse 3.3 M4<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 3.0<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 2.0 with 1.0</h3>
-
-<p>The EODM 2.0 component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Programs that use affected APIs and extension points
-will need to be ported to EODM 2.0 APIs. Downward contract compatibility is not
-supported. Compliance with EODM 2.0 APIs would <b style='mso-bidi-font-weight:
-normal'>not</b> ensure compliance with EODM 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Downward plug-in compatibility is not supported:
-plug-ins compiled against EODM 2.0 will be unusable with EODM 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 1.0 APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against EODM 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 1.0 as noted. This
-means that workspaces and projects created by an Eclipse with EODM 1.0
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with EODM 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 OCL 1.1 with 1.0</h3>
-
-<p>The UML2 OCL 1.1 subcomponent of Eclipse MDT will be compatible with UML2
-OCL 1.0, except in those areas noted in the UML2 OCL 1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 OCL 1.1 will be upwards
-contract-compatible with UML2 OCL 1.0 except in those areas noted in the <i>UML2
-OCL 1.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 OCL
-1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 OCL 1.1 APIs would ensure compliance with
-UML2 OCL 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 OCL 1.1 will be upwards
-binary-compatible with UML2 OCL 1.0 except in those areas noted in the <i>UML2
-OCL 1.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 OCL 1.1
-will likely be unusable with UML2 OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 OCL 1.0 APIs
-will usually compile and run successfully against UML2 OCL 1.1 APIs, although
-this cannot be guaranteed. Because UML2 OCL 1.1 may exploit new Java language
-constructs and/or aspects of the OCL specification, there is an increased
-chance of source incompatibilities compared to previous UML2 OCL releases. In
-some cases, it may be necessary to make minor changes to the source code to
-disambiguate things like imports or overloaded method invocations. Downward
-source compatibility is not supported. If source files use new APIs, they will
-not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 OCL 1.1 will be upwards workspace-compatible
-with UML2 OCL 1.0 unless noted. This means that workspaces and projects created
-by an Eclipse with UML2 OCL 1.0 installed can be successfully opened by an
-Eclipse with UML2 OCL 1.1 installed. This includes both hidden metadata, which is
-localized to a particular workspace, as well as metadata files found within a
-workspace project, which may propagate between workspaces via file copying or
-team repositories. User interface session state may be discarded when a
-workspace is upgraded. Downward workspace compatibility is not supported.
-Metadata files created (or overwritten) by the newer version will generally be
-unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 UML 2.1 with 2.0</h3>
-
-<p>The UML2 UML 2.1 subcomponent of Eclipse MDT will be compatible with UML2
-UML 2.0, except in those areas noted in the UML2 UML 2.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 UML 2.1 will be upwards
-contract-compatible with UML2 UML 2.0 except in those areas noted in the <i>UML2
-UML 2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 UML
-2.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 UML 2.1 APIs would ensure compliance with
-UML2 UML 2.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 UML 2.1 will be upwards
-binary-compatible with UML2 UML 2.0 except in those areas noted in the <i>UML2
-UML 2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 UML 2.1
-will likely be unusable with UML2 UML 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 UML 2.0 APIs
-will usually compile and run successfully against UML2 UML 2.1 APIs, although
-this cannot be guaranteed. Because UML2 UML 2.1 may exploit new Java language
-constructs, there is an increased chance of source incompatibilities compared
-to previous UML2 UML releases. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 UML 2.1 will be upwards
-workspace-compatible with UML2 UML 2.0 unless noted. This means that workspaces
-and projects created by an Eclipse with UML2 UML 2.0 installed can be
-successfully opened by an Eclipse with UML2 UML 2.1 installed. This includes
-both hidden metadata, which is localized to a particular workspace, as well as
-metadata files found within a workspace project, which may propagate between
-workspaces via file copying or team repositories. User interface session state
-may be discarded when a workspace is upgraded. Downward workspace compatibility
-is not supported. Metadata files created (or overwritten) by the newer version
-will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 3.0 with 2.2</h3>
-
-<p>The XSD 2.0 component of Eclipse MDT will be compatible with XSD 2.2, except
-in those areas noted in the XSD 3.0 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 3.0 will be upwards contract-compatible
-with XSD 2.2 except in those areas noted in the <i>XSD 3.0 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Programs that use affected APIs
-and extension points will need to be ported to XSD 3.0 APIs. Downward contract
-compatibility is not supported. There is no guarantee that compliance with XSD
-3.0 APIs would ensure compliance with XSD 2.2 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that maintain
-contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 3.0 will be upwards
-binary-compatible with XSD 2.2 except in those areas noted in the <i>XSD 3.0
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 3.0 will likely
-be unusable with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 3.0 APIs, although this cannot
-be guaranteed. Because XSD 3.0 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files use
-new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 3.0 will be upwards workspace-compatible
-with XSD 2.2 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.2 installed can be successfully opened by an Eclipse with
-XSD 3.0 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team repositories.
-User interface session state may be discarded when a workspace is upgraded.
-Downward workspace compatibility is not supported. Metadata files created (or
-overwritten) by the newer version will generally be unusable with older
-versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1026" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a new API that is
-compliant with the (to be adopted) 5th submission of the ODM specification to
-the OMG. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"><span
-style='mso-bookmark:UML2'>162682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'><img border=0 width=12 height=12 id="_x0000_i1027"
-src="../../images/new.gif">) [Theme: Appealing to a Broader Community]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Dynamic Typing.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for dynamic typing. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162683</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><img
-border=0 width=12 height=12 id="_x0000_i1028" src="../../images/new.gif"><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Parsing and
-Serialization.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162684</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><img
-border=0 width=12 height=12 id="_x0000_i1029" src="../../images/new.gif"><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Reasoning.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for RDF/OWL reasoning. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162685</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><img
-border=0 width=12 height=12 id="_x0000_i1030" src="../../images/new.gif"><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Transformation to/from
-<span class=SpellE>Ecore</span>.</b></span><span style='mso-bidi-font-weight:
-bold'> Provide a mechanism to transform RDF/OWL models to/from <span
-class=SpellE>Ecore</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162686</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><img
-border=0 width=12 height=12 id="_x0000_i1031" src="../../images/new.gif"><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a>UML2
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 provides an implementation of the UML 2
-umbrella of standards defined by the OMG and tools to manipulate models based
-on those standards. Plan items reflect new features of (subcomponents of) the
-UML2 component, or areas where existing features will be significantly reworked
-(<span style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1032" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 OCL subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 OCL is an implementation of the OCL OMG
-standard for EMF-based models.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Parsing API.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a public API for parsing OCL
-documents, with the complete context declaration syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with UML.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for parsing and evaluating
-OCL constraints and expressions on the UML <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>EMF 3.0 / J2SE 5 Support.</b></span><span
-style='mso-bidi-font-weight:bold'> Adopt EMF 3.0, including regeneration of the
-OCL <span class=SpellE>metamodel</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Improved Documentation.</b></span><span
-style='mso-bidi-font-weight:bold'> Develop a complete ProgrammerÂ’s Guide for
-the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>LPG.</b></span><span
-style='mso-bidi-font-weight:bold'> Consume LPG runtime library from the Orbit
-project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance.</b></span><span
-style='mso-bidi-font-weight:bold'> Maintain currency of the API with the <span
-class=SpellE>OMGÂ’s</span> OCL, ensuring backward API compatibility as much as
-possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>OCL Conformance.</b></span><span
-style='mso-bidi-font-weight:bold'> Validate and document the APIÂ’s conformance
-to the OCL SpecificationÂ’s compliance points. This includes which language
-capabilities are supported and which <span class=SpellE>metamodels</span>
-(EMOF/<span class=SpellE>Ecore</span>, UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Stand-alone support.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a stand-alone (Eclipse-free) OCL
-build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>ICU4J.</b><span style='mso-bidi-font-weight:
-bold'> Isolate and minimize dependency on ICU4J; ensure support for the “thin”
-variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 Tools subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set <span class=GramE>of a
-GMF-based editors</span> for viewing and editing UML models.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Class Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML class
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state
-machine diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161572</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Component Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161573</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Activity Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161574</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Import/Export from/to DI.</b><span
-style='mso-bidi-font-weight:bold'> Provide a mechanism whereby UML diagrams can
-be imported/exported from/to a format based on the Diagram Interchange
-specification. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161575"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161575</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 UML subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 UML is an EMF-based implementation of
-the UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span> for the Eclipse platform.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.3 / EMF 3.0
-Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span> Maintain
-release currency concurrent with EMF 3.0 (and Eclipse 3.3). Make changes as
-required to align with EMF features and bug fixes, in particular support for
-Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Improved Documentation.</b></span> Improve documentation by
-updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>, and
-publishing new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Ant Task for <span
-class=SpellE>Ecore</span> Importer<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide an Ant task for the UML <span class=SpellE>Ecore</span> importer,
-similar to those provided for the Rose and <span class=SpellE>Ecore</span>
-importers in EMF. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Static Profile Definition<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a way to specify
-that a profile definition be generated using EMF. This would allow, among other
-things, support for custom data types and derived stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XML Primitive Types<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a model library
-to represent the types defined in the <span class=SpellE>XMLType</span> <span
-class=SpellE>metamodel</span> in EMF; be sure to update <span class=SpellE>Ecore</span>/UML
-converters to make use of this new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=SpellE><b style='mso-bidi-font-weight:normal'>BiDi</b></span><b
-style='mso-bidi-font-weight:normal'> Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better support for <span class=SpellE>BiDi</span>
-languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Create Child/Sibling Menu Reorganization<span
-style='mso-bidi-font-weight:bold'>.</span></b> Reorganize the ‘Create Child’
-and ‘Create Sibling’ menus of the UML editor so that the items are grouped by
-feature. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with OCL.</b></span><span
-style='mso-bidi-font-weight:bold'> Integrate support for parsing and evaluating
-OCL constraints and expressions. Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Unit Tests.</b></span> Complete the implementation of generated
-unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Validation Rules.</b></span> Complete the generation and
-implementation of validation rules from the UML</span><span style='mso-bookmark:
-UML2'><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://download.eclipse.org/tools/emf/xsd/javadoc?org/eclipse/xsd/package-summary.html#details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1033" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Java SE 5.0 <span class=GramE>Support</span><span
-style='mso-bidi-font-weight:bold'>.</span></b> Exploit new Java language
-constructs; use generics (e.g. <span class=SpellE>EList</span>, <span
-class=SpellE>EMap</span> and implementations); generate and merge Java 5
-constructs; investigate enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XSD2Ecore Enhancements<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Improve ability to record
-complex content models as <span class=SpellE>Ecore</span> annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_0_20061103.html b/docs/plans/mdt_project_plan_1_0_20061103.html
deleted file mode 100644
index 4910b8d..0000000
--- a/docs/plans/mdt_project_plan_1_0_20061103.html
+++ /dev/null
@@ -1,1403 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - DRAFT 1.0 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>100</o:Revision>
-  <o:TotalTime>3185</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-11-03T16:13:00Z</o:LastSaved>
-  <o:Pages>2</o:Pages>
-  <o:Words>4645</o:Words>
-  <o:Characters>26483</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>220</o:Lines>
-  <o:Paragraphs>62</o:Paragraphs>
-  <o:CharactersWithSpaces>31066</o:CharactersWithSpaces>
-  <o:Version>10.6817</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:24715721;
-	mso-list-template-ids:-1976955182;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:409425194;
-	mso-list-template-ids:194907556;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:1578787144;
-	mso-list-template-ids:-1845598820;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1708678442;
-	mso-list-template-ids:-610253026;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1990476040;
-	mso-list-template-ids:1881054234;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="13314"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-DRAFT 1.0 Plan</h1>
-
-<p>Last revised 11:13 EST November 3, 2006 (<img width=12 height=12
-id="_x0000_i1025" src="../../images/new.gif" border=0> marks interesting
-changes over the <a href="mdt_project_plan_1_0_20061030.html">previous plan
-revision</a>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan item
-     is one that we are considering addressing for the release. Although we are
-     actively investigating it, we are not yet in a position to commit to it,
-     or to say that we wonÂ’t be able to address it. After due consideration, a
-     proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan
-     items may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 OCL subcomponent,
-     available as versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools subcomponent,
-     available as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 UML subcomponent,
-     available as versions tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 UML runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 UML runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R3_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 16 – Milestone 3 (1.0 M3) – Stable
-     Build based on Eclipse 3.3 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 4 – Milestone 4 (1.0 M4) – Stable
-     Build based on Eclipse 3.3 M4</span><img border=0 width=12 height=12
-     id="_x0000_i1029" src="../../images/new.gif"><span style='font-size:10.0pt;
-     font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, February 23 – Milestone 5 (1.0 M5) – Stable
-     Build based on Eclipse 3.3 M5</span><img border=0 width=12 height=12
-     id="_x0000_i1030" src="../../images/new.gif"><span style='font-size:10.0pt;
-     font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, April 6 – Milestone 6 (1.0 M6) – API Freeze –
-     Stable Build based on Eclipse 3.3 M6</span><img border=0 width=12
-     height=12 id="_x0000_i1032" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, May 18 – Milestone 7 (1.0 RC0) – Stable Build
-     based on Eclipse 3.3 RC0</span><img border=0 width=12 height=12
-     id="_x0000_i1031" src="../../images/new.gif"><span style='font-size:10.0pt;
-     font-family:Arial'><o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 3.0<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 2.0 with 1.0</h3>
-
-<p>The EODM 2.0 component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Programs that use affected APIs and extension points
-will need to be ported to EODM 2.0 APIs. Downward contract compatibility is not
-supported. Compliance with EODM 2.0 APIs would <b style='mso-bidi-font-weight:
-normal'>not</b> ensure compliance with EODM 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Downward plug-in compatibility is not supported:
-plug-ins compiled against EODM 2.0 will be unusable with EODM 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 1.0 APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against EODM 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 1.0 as noted. This
-means that workspaces and projects created by an Eclipse with EODM 1.0
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with EODM 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 OCL 1.1 with 1.0</h3>
-
-<p>The UML2 OCL 1.1 subcomponent of Eclipse MDT will be compatible with UML2
-OCL 1.0, except in those areas noted in the UML2 OCL 1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 OCL 1.1 will be upwards
-contract-compatible with UML2 OCL 1.0 except in those areas noted in the <i>UML2
-OCL 1.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 OCL
-1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 OCL 1.1 APIs would ensure compliance with
-UML2 OCL 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 OCL 1.1 will be upwards
-binary-compatible with UML2 OCL 1.0 except in those areas noted in the <i>UML2
-OCL 1.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 OCL 1.1
-will likely be unusable with UML2 OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 OCL 1.0 APIs
-will usually compile and run successfully against UML2 OCL 1.1 APIs, although
-this cannot be guaranteed. Because UML2 OCL 1.1 may exploit new Java language
-constructs and/or aspects of the OCL specification, there is an increased
-chance of source incompatibilities compared to previous UML2 OCL releases. In
-some cases, it may be necessary to make minor changes to the source code to
-disambiguate things like imports or overloaded method invocations. Downward
-source compatibility is not supported. If source files use new APIs, they will
-not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 OCL 1.1 will be upwards
-workspace-compatible with UML2 OCL 1.0 unless noted. This means that workspaces
-and projects created by an Eclipse with UML2 OCL 1.0 installed can be
-successfully opened by an Eclipse with UML2 OCL 1.1 installed. This includes
-both hidden metadata, which is localized to a particular workspace, as well as
-metadata files found within a workspace project, which may propagate between
-workspaces via file copying or team repositories. User interface session state
-may be discarded when a workspace is upgraded. Downward workspace compatibility
-is not supported. Metadata files created (or overwritten) by the newer version
-will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 UML 2.1 with 2.0</h3>
-
-<p>The UML2 UML 2.1 subcomponent of Eclipse MDT will be compatible with UML2
-UML 2.0, except in those areas noted in the UML2 UML 2.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 UML 2.1 will be upwards
-contract-compatible with UML2 UML 2.0 except in those areas noted in the <i>UML2
-UML 2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 UML
-2.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 UML 2.1 APIs would ensure compliance with
-UML2 UML 2.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 UML 2.1 will be upwards
-binary-compatible with UML2 UML 2.0 except in those areas noted in the <i>UML2
-UML 2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 UML 2.1
-will likely be unusable with UML2 UML 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 UML 2.0 APIs
-will usually compile and run successfully against UML2 UML 2.1 APIs, although
-this cannot be guaranteed. Because UML2 UML 2.1 may exploit new Java language
-constructs, there is an increased chance of source incompatibilities compared
-to previous UML2 UML releases. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 UML 2.1 will be upwards
-workspace-compatible with UML2 UML 2.0 unless noted. This means that workspaces
-and projects created by an Eclipse with UML2 UML 2.0 installed can be
-successfully opened by an Eclipse with UML2 UML 2.1 installed. This includes
-both hidden metadata, which is localized to a particular workspace, as well as
-metadata files found within a workspace project, which may propagate between
-workspaces via file copying or team repositories. User interface session state
-may be discarded when a workspace is upgraded. Downward workspace compatibility
-is not supported. Metadata files created (or overwritten) by the newer version
-will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 3.0 with 2.2</h3>
-
-<p>The XSD 2.0 component of Eclipse MDT will be compatible with XSD 2.2, except
-in those areas noted in the XSD 3.0 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 3.0 will be upwards
-contract-compatible with XSD 2.2 except in those areas noted in the <i>XSD 3.0
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 3.0 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 3.0 APIs would ensure compliance with XSD 2.2 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 3.0 will be upwards
-binary-compatible with XSD 2.2 except in those areas noted in the <i>XSD 3.0
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 3.0 will likely
-be unusable with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 3.0 APIs, although this cannot
-be guaranteed. Because XSD 3.0 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method invocations.
-Downward source compatibility is not supported. If source files use new APIs,
-they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 3.0 will be upwards workspace-compatible
-with XSD 2.2 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.2 installed can be successfully opened by an Eclipse with
-XSD 3.0 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1026" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a new API that is
-compliant with the (to be adopted) 5th submission of the ODM specification to
-the OMG. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"><span
-style='mso-bookmark:UML2'>162682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Appealing to a Broader Community]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Dynamic Typing.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for dynamic typing. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162683</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Parsing and
-Serialization.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162684</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Reasoning.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for RDF/OWL reasoning. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162685</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Transformation
-to/from <span class=SpellE>Ecore</span>.</b></span><span style='mso-bidi-font-weight:
-bold'> Provide a mechanism to transform RDF/OWL models to/from <span
-class=SpellE>Ecore</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162686</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a>UML2
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 provides an implementation of the UML 2
-umbrella of standards defined by the OMG and tools to manipulate models based
-on those standards. Plan items reflect new features of (subcomponents of) the
-UML2 component, or areas where existing features will be significantly reworked
-(<span style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1027" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 OCL subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 OCL is an implementation of the OCL OMG
-standard for EMF-based models.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Parsing API.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a public API for parsing OCL
-documents, with the complete context declaration syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with UML.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for parsing and evaluating
-OCL constraints and expressions on the UML <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>EMF 3.0 / J2SE 5 Support.</b></span><span
-style='mso-bidi-font-weight:bold'> Adopt EMF 3.0, including regeneration of the
-OCL <span class=SpellE>metamodel</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Improved Documentation.</b></span><span
-style='mso-bidi-font-weight:bold'> Develop a complete ProgrammerÂ’s Guide for
-the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>LPG.</b></span><span
-style='mso-bidi-font-weight:bold'> Consume LPG runtime library from the Orbit
-project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance.</b></span><span
-style='mso-bidi-font-weight:bold'> Maintain currency of the API with the <span
-class=SpellE>OMGÂ’s</span> OCL, ensuring backward API compatibility as much as
-possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>OCL Conformance.</b></span><span
-style='mso-bidi-font-weight:bold'> Validate and document the APIÂ’s conformance
-to the OCL SpecificationÂ’s compliance points. This includes which language
-capabilities are supported and which <span class=SpellE>metamodels</span>
-(EMOF/<span class=SpellE>Ecore</span>, UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Stand-alone support.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a stand-alone (Eclipse-free) OCL
-build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>ICU4J.</b><span style='mso-bidi-font-weight:
-bold'> Isolate and minimize dependency on ICU4J; ensure support for the “thin”
-variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed Items
-(UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 Tools subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set <span class=GramE>of a
-GMF-based editors</span> for viewing and editing UML models.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Class Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML class
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state
-machine diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161572</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Component Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161573</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Activity Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161574</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Import/Export from/to DI.</b><span
-style='mso-bidi-font-weight:bold'> Provide a mechanism whereby UML diagrams can
-be imported/exported from/to a format based on the Diagram Interchange
-specification. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161575"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161575</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 UML subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 UML is an EMF-based implementation of
-the UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span> for the Eclipse platform.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed Items
-(UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.3 / EMF 3.0
-Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 3.0 (and Eclipse 3.3). Make
-changes as required to align with EMF features and bug fixes, in particular
-support for Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Improved Documentation.</b></span> Improve documentation by
-updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>, and
-publishing new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Ant Task for <span
-class=SpellE>Ecore</span> Importer<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide an Ant task for the UML <span class=SpellE>Ecore</span> importer,
-similar to those provided for the Rose and <span class=SpellE>Ecore</span>
-importers in EMF. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Static Profile Definition<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a way to specify
-that a profile definition be generated using EMF. This would allow, among other
-things, support for custom data types and derived stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XML Primitive Types<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a model library
-to represent the types defined in the <span class=SpellE>XMLType</span> <span
-class=SpellE>metamodel</span> in EMF; be sure to update <span class=SpellE>Ecore</span>/UML
-converters to make use of this new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=SpellE><b style='mso-bidi-font-weight:normal'>BiDi</b></span><b
-style='mso-bidi-font-weight:normal'> Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better support for <span class=SpellE>BiDi</span>
-languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Create Child/Sibling Menu Reorganization<span
-style='mso-bidi-font-weight:bold'>.</span></b> Reorganize the ‘Create Child’
-and ‘Create Sibling’ menus of the UML editor so that the items are grouped by
-feature. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with OCL.</b></span><span
-style='mso-bidi-font-weight:bold'> Integrate support for parsing and evaluating
-OCL constraints and expressions. Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Unit Tests.</b></span> Complete the implementation of generated
-unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Validation Rules.</b></span> Complete the generation and
-implementation of validation rules from the UML</span><span style='mso-bookmark:
-UML2'><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://download.eclipse.org/tools/emf/xsd/javadoc?org/eclipse/xsd/package-summary.html#details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1028" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Java SE 5.0 <span class=GramE>Support</span><span
-style='mso-bidi-font-weight:bold'>.</span></b> Exploit new Java language
-constructs; use generics (e.g. <span class=SpellE>EList</span>, <span
-class=SpellE>EMap</span> and implementations); generate and merge Java 5
-constructs; investigate enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XSD2Ecore Enhancements<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Improve ability to record
-complex content models as <span class=SpellE>Ecore</span> annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_0_20061108.html b/docs/plans/mdt_project_plan_1_0_20061108.html
deleted file mode 100644
index 0f00c4a..0000000
--- a/docs/plans/mdt_project_plan_1_0_20061108.html
+++ /dev/null
@@ -1,1419 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - DRAFT 1.0 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>103</o:Revision>
-  <o:TotalTime>3190</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-11-08T17:53:00Z</o:LastSaved>
-  <o:Pages>2</o:Pages>
-  <o:Words>4929</o:Words>
-  <o:Characters>28101</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>234</o:Lines>
-  <o:Paragraphs>65</o:Paragraphs>
-  <o:CharactersWithSpaces>32965</o:CharactersWithSpaces>
-  <o:Version>10.6817</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:26879272;
-	mso-list-template-ids:1493083164;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:609817513;
-	mso-list-template-ids:191430376;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:702368410;
-	mso-list-template-ids:1567632194;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1049256898;
-	mso-list-template-ids:-1854927124;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:2132895501;
-	mso-list-template-ids:818464000;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="14338"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-DRAFT 1.0 Plan</h1>
-
-<p>Last revised 12:53 EST November 8, 2006 (<img width=12 height=12
-id="_x0000_i1025" src="../../images/new.gif" border=0> marks interesting
-changes over the <a href="mdt_project_plan_1_0_20061103.html">previous plan
-revision</a>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan item
-     is one that we are considering addressing for the release. Although we are
-     actively investigating it, we are not yet in a position to commit to it,
-     or to say that we wonÂ’t be able to address it. After due consideration, a
-     proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan
-     items may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 OCL subcomponent,
-     available as versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools subcomponent,
-     available as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 UML subcomponent,
-     available as versions tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 UML runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 UML runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_3&quot;</span><img border=0 width=12 height=12
-     id="_x0000_i1029" src="../../images/new.gif"><span style='font-size:10.0pt;
-     font-family:Arial'> in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 16 – Milestone 3 (1.0 M3) – Stable
-     Build based on Eclipse 3.3 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 4 – Milestone 4 (1.0 M4) – Stable
-     Build based on Eclipse 3.3 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, February 23 – Milestone 5 (1.0 M5) – Stable
-     Build based on Eclipse 3.3 M5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, April 6 – Milestone 6 (1.0 M6) – API Freeze –
-     Stable Build based on Eclipse 3.3 M6<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, May 18 – Milestone 7 (1.0 RC0) – Stable Build
-     based on Eclipse 3.3 RC0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.3</span><img border=0 width=12 height=12
-     id="_x0000_i1030" src="../../images/new.gif"><span style='font-size:10.0pt;
-     font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 2.0 with 1.0</h3>
-
-<p>The EODM 2.0 component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Programs that use affected APIs and extension points
-will need to be ported to EODM 2.0 APIs. Downward contract compatibility is not
-supported. Compliance with EODM 2.0 APIs would <b style='mso-bidi-font-weight:
-normal'>not</b> ensure compliance with EODM 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Downward plug-in compatibility is not supported:
-plug-ins compiled against EODM 2.0 will be unusable with EODM 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 1.0 APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against EODM 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 1.0 as noted. This
-means that workspaces and projects created by an Eclipse with EODM 1.0
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully opened
-by an Eclipse with EODM 2.0 installed. This includes both hidden metadata,
-which is localized to a particular workspace, as well as metadata files found
-within a workspace project, which may propagate between workspaces via file
-copying or team repositories. User interface session state may be discarded
-when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 OCL 1.1 with 1.0</h3>
-
-<p>The UML2 OCL 1.1 subcomponent of Eclipse MDT will be compatible with UML2 OCL
-1.0, except in those areas noted in the UML2 OCL 1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 OCL 1.1 will be upwards
-contract-compatible with UML2 OCL 1.0 except in those areas noted in the <i>UML2
-OCL 1.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 OCL
-1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 OCL 1.1 APIs would ensure compliance with
-UML2 OCL 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 OCL 1.1 will be upwards
-binary-compatible with UML2 OCL 1.0 except in those areas noted in the <i>UML2
-OCL 1.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 OCL 1.1
-will likely be unusable with UML2 OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 OCL 1.0 APIs
-will usually compile and run successfully against UML2 OCL 1.1 APIs, although
-this cannot be guaranteed. Because UML2 OCL 1.1 may exploit new Java language
-constructs and/or aspects of the OCL specification, there is an increased
-chance of source incompatibilities compared to previous UML2 OCL releases. In
-some cases, it may be necessary to make minor changes to the source code to
-disambiguate things like imports or overloaded method invocations. Downward
-source compatibility is not supported. If source files use new APIs, they will
-not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 OCL 1.1 will be upwards
-workspace-compatible with UML2 OCL 1.0 unless noted. This means that workspaces
-and projects created by an Eclipse with UML2 OCL 1.0 installed can be
-successfully opened by an Eclipse with UML2 OCL 1.1 installed. This includes
-both hidden metadata, which is localized to a particular workspace, as well as
-metadata files found within a workspace project, which may propagate between
-workspaces via file copying or team repositories. User interface session state
-may be discarded when a workspace is upgraded. Downward workspace compatibility
-is not supported. Metadata files created (or overwritten) by the newer version
-will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 UML 2.1 with 2.0</h3>
-
-<p>The UML2 UML 2.1 subcomponent of Eclipse MDT will be compatible with UML2
-UML 2.0, except in those areas noted in the UML2 UML 2.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 UML 2.1 will be upwards
-contract-compatible with UML2 UML 2.0 except in those areas noted in the <i>UML2
-UML 2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 UML
-2.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 UML 2.1 APIs would ensure compliance with
-UML2 UML 2.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 UML 2.1 will be upwards
-binary-compatible with UML2 UML 2.0 except in those areas noted in the <i>UML2
-UML 2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 UML 2.1
-will likely be unusable with UML2 UML 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 UML 2.0 APIs will
-usually compile and run successfully against UML2 UML 2.1 APIs, although this
-cannot be guaranteed. Because UML2 UML 2.1 may exploit new Java language
-constructs, there is an increased chance of source incompatibilities compared
-to previous UML2 UML releases. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 UML 2.1 will be upwards
-workspace-compatible with UML2 UML 2.0 unless noted. This means that workspaces
-and projects created by an Eclipse with UML2 UML 2.0 installed can be
-successfully opened by an Eclipse with UML2 UML 2.1 installed. This includes
-both hidden metadata, which is localized to a particular workspace, as well as
-metadata files found within a workspace project, which may propagate between
-workspaces via file copying or team repositories. User interface session state
-may be discarded when a workspace is upgraded. Downward workspace compatibility
-is not supported. Metadata files created (or overwritten) by the newer version
-will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.3<img border=0 width=12 height=12 id="_x0000_i1031"
-src="../../images/new.gif"> with 2.2</h3>
-
-<p>The XSD 2.3<img border=0 width=12 height=12 id="_x0000_i1032"
-src="../../images/new.gif"> component of Eclipse MDT will be compatible with
-XSD 2.2, except in those areas noted in the XSD 2.3<img border=0 width=12
-height=12 id="_x0000_i1033" src="../../images/new.gif"> Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.3<img border=0 width=12 height=12
-id="_x0000_i1034" src="../../images/new.gif"> will be upwards
-contract-compatible with XSD 2.2 except in those areas noted in the <i>XSD 2.3</i><img
-border=0 width=12 height=12 id="_x0000_i1035" src="../../images/new.gif"><i>
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.3<img
-border=0 width=12 height=12 id="_x0000_i1036" src="../../images/new.gif"> APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.3<img border=0 width=12 height=12 id="_x0000_i1037"
-src="../../images/new.gif"> APIs would ensure compliance with XSD 2.2 APIs.
-Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.3<img border=0 width=12
-height=12 id="_x0000_i1038" src="../../images/new.gif"> will be upwards
-binary-compatible with XSD 2.3<img border=0 width=12 height=12 id="_x0000_i1039"
-src="../../images/new.gif"> except in those areas noted in the <i>XSD 2.3</i><img
-border=0 width=12 height=12 id="_x0000_i1040" src="../../images/new.gif"><i>
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.3<img border=0
-width=12 height=12 id="_x0000_i1041" src="../../images/new.gif"> will likely be
-unusable with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 2.3<img border=0 width=12
-height=12 id="_x0000_i1042" src="../../images/new.gif"> APIs, although this
-cannot be guaranteed. Because XSD 2.3<img border=0 width=12 height=12
-id="_x0000_i1043" src="../../images/new.gif"> may exploit new Java language
-constructs, there is an increased chance of source incompatibilities compared
-to previous XSD releases. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.3<img border=0 width=12 height=12
-id="_x0000_i1044" src="../../images/new.gif"> will be upwards
-workspace-compatible with XSD 2.2 unless noted. This means that workspaces and
-projects created by an Eclipse with XSD 2.2 installed can be successfully
-opened by an Eclipse with XSD 2.3<img border=0 width=12 height=12
-id="_x0000_i1045" src="../../images/new.gif"> installed. This includes both
-hidden metadata, which is localized to a particular workspace, as well as
-metadata files found within a workspace project, which may propagate between
-workspaces via file copying or team repositories. User interface session state
-may be discarded when a workspace is upgraded. Downward workspace compatibility
-is not supported. Metadata files created (or overwritten) by the newer version
-will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1026" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a new API that is
-compliant with the (to be adopted) 5th submission of the ODM specification to
-the OMG. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"><span
-style='mso-bookmark:UML2'>162682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Appealing to a Broader Community]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Dynamic Typing.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for dynamic typing. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162683</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Parsing and
-Serialization.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162684</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Reasoning.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for RDF/OWL reasoning. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162685</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Transformation
-to/from <span class=SpellE>Ecore</span>.</b></span><span style='mso-bidi-font-weight:
-bold'> Provide a mechanism to transform RDF/OWL models to/from <span
-class=SpellE>Ecore</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162686</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a>UML2
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 provides an implementation of the UML 2
-umbrella of standards defined by the OMG and tools to manipulate models based
-on those standards. Plan items reflect new features of (subcomponents of) the
-UML2 component, or areas where existing features will be significantly reworked
-(<span style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1027" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 OCL subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 OCL is an implementation of the OCL OMG
-standard for EMF-based models.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Parsing API.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a public API for parsing OCL
-documents, with the complete context declaration syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with UML.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for parsing and evaluating
-OCL constraints and expressions on the UML <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>EMF 2.3</b><img border=0
-width=12 height=12 id="_x0000_i1048" src="../../images/new.gif"><b
-style='mso-bidi-font-weight:normal'> / J2SE 5 Support.</b></span><span
-style='mso-bidi-font-weight:bold'> Adopt EMF 2.3</span><img border=0 width=12
-height=12 id="_x0000_i1049" src="../../images/new.gif"><span style='mso-bidi-font-weight:
-bold'>, including regeneration of the OCL <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Improved Documentation.</b></span><span
-style='mso-bidi-font-weight:bold'> Develop a complete ProgrammerÂ’s Guide for
-the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>LPG.</b></span><span
-style='mso-bidi-font-weight:bold'> Consume LPG runtime library from the Orbit
-project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance.</b></span><span
-style='mso-bidi-font-weight:bold'> Maintain currency of the API with the <span
-class=SpellE>OMGÂ’s</span> OCL, ensuring backward API compatibility as much as
-possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>OCL Conformance.</b></span><span
-style='mso-bidi-font-weight:bold'> Validate and document the APIÂ’s conformance
-to the OCL SpecificationÂ’s compliance points. This includes which language
-capabilities are supported and which <span class=SpellE>metamodels</span>
-(EMOF/<span class=SpellE>Ecore</span>, UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Stand-alone support.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a stand-alone (Eclipse-free) OCL
-build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>ICU4J.</b><span style='mso-bidi-font-weight:
-bold'> Isolate and minimize dependency on ICU4J; ensure support for the “thin”
-variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed Items
-(UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 Tools subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set <span class=GramE>of a
-GMF-based editors</span> for viewing and editing UML models.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Class Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML class
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state
-machine diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161572</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Component Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161573</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Activity Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161574</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Import/Export from/to DI.</b><span
-style='mso-bidi-font-weight:bold'> Provide a mechanism whereby UML diagrams can
-be imported/exported from/to a format based on the Diagram Interchange
-specification. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161575"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161575</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 UML subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 UML is an EMF-based implementation of
-the UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span> for the Eclipse platform.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.3 / EMF 2.3</b><img
-border=0 width=12 height=12 id="_x0000_i1046" src="../../images/new.gif"><b
-style='mso-bidi-font-weight:normal'> Compatibility<span style='mso-bidi-font-weight:
-bold'>.</span></b></span> Maintain release currency concurrent with EMF 2.3<img
-border=0 width=12 height=12 id="_x0000_i1047" src="../../images/new.gif"> (and
-Eclipse 3.3). Make changes as required to align with EMF features and bug
-fixes, in particular support for Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Improved Documentation.</b></span> Improve documentation by
-updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>, and
-publishing new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Ant Task for <span
-class=SpellE>Ecore</span> Importer<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide an Ant task for the UML <span class=SpellE>Ecore</span> importer,
-similar to those provided for the Rose and <span class=SpellE>Ecore</span>
-importers in EMF. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Static Profile Definition<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a way to specify
-that a profile definition be generated using EMF. This would allow, among other
-things, support for custom data types and derived stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XML Primitive Types<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a model library
-to represent the types defined in the <span class=SpellE>XMLType</span> <span
-class=SpellE>metamodel</span> in EMF; be sure to update <span class=SpellE>Ecore</span>/UML
-converters to make use of this new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=SpellE><b style='mso-bidi-font-weight:normal'>BiDi</b></span><b
-style='mso-bidi-font-weight:normal'> Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better support for <span class=SpellE>BiDi</span>
-languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Create Child/Sibling Menu Reorganization<span
-style='mso-bidi-font-weight:bold'>.</span></b> Reorganize the ‘Create Child’
-and ‘Create Sibling’ menus of the UML editor so that the items are grouped by
-feature. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with OCL.</b></span><span
-style='mso-bidi-font-weight:bold'> Integrate support for parsing and evaluating
-OCL constraints and expressions. Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Unit Tests.</b></span> Complete the implementation of generated
-unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Validation Rules.</b></span> Complete the generation and
-implementation of validation rules from the UML</span><span style='mso-bookmark:
-UML2'><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://download.eclipse.org/tools/emf/xsd/javadoc?org/eclipse/xsd/package-summary.html#details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1028" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Java SE 5.0 <span class=GramE>Support</span><span
-style='mso-bidi-font-weight:bold'>.</span></b> Exploit new Java language
-constructs; use generics (e.g. <span class=SpellE>EList</span>, <span
-class=SpellE>EMap</span> and implementations); generate and merge Java 5
-constructs; investigate enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XSD2Ecore Enhancements<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Improve ability to record
-complex content models as <span class=SpellE>Ecore</span> annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_0_20061201.html b/docs/plans/mdt_project_plan_1_0_20061201.html
deleted file mode 100644
index 9ebcb10..0000000
--- a/docs/plans/mdt_project_plan_1_0_20061201.html
+++ /dev/null
@@ -1,1402 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - DRAFT 1.0 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>105</o:Revision>
-  <o:TotalTime>3194</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-12-01T13:14:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>4645</o:Words>
-  <o:Characters>26483</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>220</o:Lines>
-  <o:Paragraphs>62</o:Paragraphs>
-  <o:CharactersWithSpaces>31066</o:CharactersWithSpaces>
-  <o:Version>10.6817</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:309481084;
-	mso-list-template-ids:-2009269496;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:340164565;
-	mso-list-template-ids:-779467590;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:1718701971;
-	mso-list-template-ids:253940870;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1736779538;
-	mso-list-template-ids:404663226;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:2094741413;
-	mso-list-template-ids:-637097954;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="15362"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-DRAFT 1.0 Plan</h1>
-
-<p>Last revised 08:14 EST December 1, 2006 (<img width=12 height=12
-id="_x0000_i1025" src="../../images/new.gif" border=0> marks interesting
-changes over the <a href="mdt_project_plan_1_0_20061108.html">previous plan
-revision</a>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan item
-     is one that we are considering addressing for the release. Although we are
-     actively investigating it, we are not yet in a position to commit to it,
-     or to say that we wonÂ’t be able to address it. After due consideration, a
-     proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan
-     items may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 OCL subcomponent,
-     available as versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools subcomponent,
-     available as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 UML subcomponent,
-     available as versions tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 UML runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 UML runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_3&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1030" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, November 16 – Milestone 3 (1.0 M3) – Stable Build based
-     on Eclipse 3.3 M3 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1029" src="../../images/ok.gif"></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 4 – Milestone 4 (1.0 M4) – Stable
-     Build based on Eclipse 3.3 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, February 23 – Milestone 5 (1.0 M5) – Stable
-     Build based on Eclipse 3.3 M5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, April 6 – Milestone 6 (1.0 M6) – API Freeze –
-     Stable Build based on Eclipse 3.3 M6<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, May 18 – Milestone 7 (1.0 RC0) – Stable Build
-     based on Eclipse 3.3 RC0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 2.0 with 1.0</h3>
-
-<p>The EODM 2.0 component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Programs that use affected APIs and extension points
-will need to be ported to EODM 2.0 APIs. Downward contract compatibility is not
-supported. Compliance with EODM 2.0 APIs would <b style='mso-bidi-font-weight:
-normal'>not</b> ensure compliance with EODM 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Downward plug-in compatibility is not supported:
-plug-ins compiled against EODM 2.0 will be unusable with EODM 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 1.0 APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against EODM 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 1.0 as noted. This
-means that workspaces and projects created by an Eclipse with EODM 1.0 installed
-<b style='mso-bidi-font-weight:normal'>cannot</b> be successfully opened by an
-Eclipse with EODM 2.0 installed. This includes both hidden metadata, which is
-localized to a particular workspace, as well as metadata files found within a
-workspace project, which may propagate between workspaces via file copying or
-team repositories. User interface session state may be discarded when a
-workspace is upgraded. Downward workspace compatibility is not supported.
-Metadata files created (or overwritten) by the newer version will generally be
-unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 OCL 1.1 with 1.0</h3>
-
-<p>The UML2 OCL 1.1 subcomponent of Eclipse MDT will be compatible with UML2
-OCL 1.0, except in those areas noted in the UML2 OCL 1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 OCL 1.1 will be upwards
-contract-compatible with UML2 OCL 1.0 except in those areas noted in the <i>UML2
-OCL 1.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 OCL
-1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 OCL 1.1 APIs would ensure compliance with
-UML2 OCL 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 OCL 1.1 will be upwards
-binary-compatible with UML2 OCL 1.0 except in those areas noted in the <i>UML2
-OCL 1.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 OCL 1.1
-will likely be unusable with UML2 OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 OCL 1.0 APIs
-will usually compile and run successfully against UML2 OCL 1.1 APIs, although
-this cannot be guaranteed. Because UML2 OCL 1.1 may exploit new Java language
-constructs and/or aspects of the OCL specification, there is an increased
-chance of source incompatibilities compared to previous UML2 OCL releases. In
-some cases, it may be necessary to make minor changes to the source code to
-disambiguate things like imports or overloaded method invocations. Downward
-source compatibility is not supported. If source files use new APIs, they will
-not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 OCL 1.1 will be upwards
-workspace-compatible with UML2 OCL 1.0 unless noted. This means that workspaces
-and projects created by an Eclipse with UML2 OCL 1.0 installed can be
-successfully opened by an Eclipse with UML2 OCL 1.1 installed. This includes
-both hidden metadata, which is localized to a particular workspace, as well as
-metadata files found within a workspace project, which may propagate between
-workspaces via file copying or team repositories. User interface session state
-may be discarded when a workspace is upgraded. Downward workspace compatibility
-is not supported. Metadata files created (or overwritten) by the newer version
-will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 UML 2.1 with 2.0</h3>
-
-<p>The UML2 UML 2.1 subcomponent of Eclipse MDT will be compatible with UML2
-UML 2.0, except in those areas noted in the UML2 UML 2.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 UML 2.1 will be upwards
-contract-compatible with UML2 UML 2.0 except in those areas noted in the <i>UML2
-UML 2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 UML
-2.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 UML 2.1 APIs would ensure compliance with
-UML2 UML 2.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 UML 2.1 will be upwards
-binary-compatible with UML2 UML 2.0 except in those areas noted in the <i>UML2
-UML 2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 UML 2.1
-will likely be unusable with UML2 UML 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 UML 2.0 APIs
-will usually compile and run successfully against UML2 UML 2.1 APIs, although
-this cannot be guaranteed. Because UML2 UML 2.1 may exploit new Java language
-constructs, there is an increased chance of source incompatibilities compared
-to previous UML2 UML releases. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 UML 2.1 will be upwards
-workspace-compatible with UML2 UML 2.0 unless noted. This means that workspaces
-and projects created by an Eclipse with UML2 UML 2.0 installed can be
-successfully opened by an Eclipse with UML2 UML 2.1 installed. This includes
-both hidden metadata, which is localized to a particular workspace, as well as
-metadata files found within a workspace project, which may propagate between
-workspaces via file copying or team repositories. User interface session state
-may be discarded when a workspace is upgraded. Downward workspace compatibility
-is not supported. Metadata files created (or overwritten) by the newer version
-will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.3 with 2.2</h3>
-
-<p>The XSD 2.3 component of Eclipse MDT will be compatible with XSD 2.2, except
-in those areas noted in the XSD 2.3 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.3 will be upwards
-contract-compatible with XSD 2.2 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.3 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.3 APIs would ensure compliance with XSD 2.2 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.3 will be upwards
-binary-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.3 will likely
-be unusable with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 2.3 APIs, although this cannot
-be guaranteed. Because XSD 2.3 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.3 will be upwards workspace-compatible
-with XSD 2.2 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.2 installed can be successfully opened by an Eclipse with
-XSD 2.3 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1026" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a new API that is
-compliant with the (to be adopted) 5th submission of the ODM specification to
-the OMG. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"><span
-style='mso-bookmark:UML2'>162682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Appealing to a Broader Community]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Dynamic Typing.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for dynamic typing. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162683</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Parsing and
-Serialization.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162684</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Reasoning.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for RDF/OWL reasoning. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162685</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Transformation
-to/from <span class=SpellE>Ecore</span>.</b></span><span style='mso-bidi-font-weight:
-bold'> Provide a mechanism to transform RDF/OWL models to/from <span
-class=SpellE>Ecore</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162686</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a>UML2
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 provides an implementation of the UML 2
-umbrella of standards defined by the OMG and tools to manipulate models based
-on those standards. Plan items reflect new features of (subcomponents of) the
-UML2 component, or areas where existing features will be significantly reworked
-(<span style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1027" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 OCL subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 OCL is an implementation of the OCL OMG
-standard for EMF-based models.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Parsing API.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a public API for parsing OCL
-documents, with the complete context declaration syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with UML.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for parsing and evaluating
-OCL constraints and expressions on the UML <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>EMF 2.3 / J2SE 5 Support.</b></span><span
-style='mso-bidi-font-weight:bold'> Adopt EMF 2.3, including regeneration of the
-OCL <span class=SpellE>metamodel</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Improved Documentation.</b></span><span
-style='mso-bidi-font-weight:bold'> Develop a complete ProgrammerÂ’s Guide for
-the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>LPG.</b></span><span
-style='mso-bidi-font-weight:bold'> Consume LPG runtime library from the Orbit
-project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance.</b></span><span
-style='mso-bidi-font-weight:bold'> Maintain currency of the API with the <span
-class=SpellE>OMGÂ’s</span> OCL, ensuring backward API compatibility as much as
-possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>OCL Conformance.</b></span><span
-style='mso-bidi-font-weight:bold'> Validate and document the APIÂ’s conformance
-to the OCL SpecificationÂ’s compliance points. This includes which language
-capabilities are supported and which <span class=SpellE>metamodels</span>
-(EMOF/<span class=SpellE>Ecore</span>, UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Stand-alone support.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a stand-alone (Eclipse-free) OCL
-build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>ICU4J.</b><span style='mso-bidi-font-weight:
-bold'> Isolate and minimize dependency on ICU4J; ensure support for the “thin”
-variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 OCL subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 Tools subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set <span class=GramE>of a
-GMF-based editors</span> for viewing and editing UML models.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Class Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML class
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state
-machine diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161572</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Component Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161573</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Activity Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161574</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Import/Export from/to DI.</b><span
-style='mso-bidi-font-weight:bold'> Provide a mechanism whereby UML diagrams can
-be imported/exported from/to a format based on the Diagram Interchange
-specification. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161575"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161575</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h3><span style='mso-bookmark:UML2'>UML2 UML subcomponent</span></h3>
-
-<p><span style='mso-bookmark:UML2'>UML2 UML is an EMF-based implementation of
-the UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span> for the Eclipse platform.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.3 / EMF 2.3
-Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.3 (and Eclipse 3.3). Make
-changes as required to align with EMF features and bug fixes, in particular
-support for Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Improved Documentation.</b></span> Improve documentation by
-updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>, and
-publishing new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Ant Task for <span
-class=SpellE>Ecore</span> Importer<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide an Ant task for the UML <span class=SpellE>Ecore</span> importer,
-similar to those provided for the Rose and <span class=SpellE>Ecore</span>
-importers in EMF. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Static Profile Definition<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a way to specify
-that a profile definition be generated using EMF. This would allow, among other
-things, support for custom data types and derived stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1031" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>XML Primitive Types<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide a model library to represent the types defined in the <span
-class=SpellE>XMLType</span> <span class=SpellE>metamodel</span> in EMF; be sure
-to update <span class=SpellE>Ecore</span>/UML converters to make use of this
-new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1032"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=SpellE><b style='mso-bidi-font-weight:normal'>BiDi</b></span><b
-style='mso-bidi-font-weight:normal'> Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better support for <span class=SpellE>BiDi</span>
-languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Create Child/Sibling Menu Reorganization<span
-style='mso-bidi-font-weight:bold'>.</span></b> Reorganize the ‘Create Child’
-and ‘Create Sibling’ menus of the UML editor so that the items are grouped by
-feature. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with OCL.</b></span><span
-style='mso-bidi-font-weight:bold'> Integrate support for parsing and evaluating
-OCL constraints and expressions. Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Unit Tests.</b></span> Complete the implementation of generated
-unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Validation Rules.</b></span> Complete the generation and
-implementation of validation rules from the UML</span><span style='mso-bookmark:
-UML2'><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 UML subcomponent)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://download.eclipse.org/tools/emf/xsd/javadoc?org/eclipse/xsd/package-summary.html#details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating the
-DOM-accessible representation of XML. Plan items reflect new features of the
-XSD component, or areas where existing features will be significantly reworked
-(<span style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1028" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Java SE 5.0 <span class=GramE>Support</span><span
-style='mso-bidi-font-weight:bold'>.</span></b> Exploit new Java language
-constructs; use generics (e.g. <span class=SpellE>EList</span>, <span
-class=SpellE>EMap</span> and implementations); generate and merge Java 5
-constructs; investigate enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XSD2Ecore Enhancements<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Improve ability to record
-complex content models as <span class=SpellE>Ecore</span> annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_0_20061219.html b/docs/plans/mdt_project_plan_1_0_20061219.html
deleted file mode 100644
index e6c20e1..0000000
--- a/docs/plans/mdt_project_plan_1_0_20061219.html
+++ /dev/null
@@ -1,1541 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - DRAFT 1.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>110</o:Revision>
-  <o:TotalTime>3265</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-12-20T02:11:00Z</o:LastSaved>
-  <o:Pages>2</o:Pages>
-  <o:Words>6125</o:Words>
-  <o:Characters>34919</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>290</o:Lines>
-  <o:Paragraphs>81</o:Paragraphs>
-  <o:CharactersWithSpaces>40963</o:CharactersWithSpaces>
-  <o:Version>10.6817</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:241766525;
-	mso-list-template-ids:-1857095270;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:565260410;
-	mso-list-template-ids:-815635972;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:1318609478;
-	mso-list-template-ids:-1591450270;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1459757932;
-	mso-list-template-ids:741389014;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:2105682620;
-	mso-list-template-ids:464552210;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="17410"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-DRAFT 1.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="28" Hour="20">20:28 EST</st1:time> <st1:date
-Year="2006" Day="19" Month="12">December 19, 2006</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src="../../images/new.gif" border=0> marks
-interesting changes over the <a href="mdt_project_plan_1_0_20061201.html">previous
-plan revision</a>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_OCL__component">OCL component</a></span><img
-     border=0 width=12 height=12 id="_x0000_i1026" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2__component">UML2 component</a></span><img
-     border=0 width=12 height=12 id="_x0000_i1027" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_Tools_">UML2 Tools component</a></span><img
-     border=0 width=12 height=12 id="_x0000_i1028" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due
-     consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan
-     items may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1029" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Source code release for the OCL component, available as versions
-     tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1030" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>OCL runtime binary and SDK distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1031" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>OCL runtime binary and SDK features on eclipse.org update site
-     (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1032" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Source code release for the UML2 component, available as versions
-     tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1033" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>UML2 runtime binary and SDK distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1034" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>UML2 runtime binary and SDK features on eclipse.org update site
-     (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1035" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Source code release for the UML2 Tools component, available as
-     versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1036" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>UML2 Tools runtime binary and SDK distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1037" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>UML2 Tools runtime binary and SDK features on eclipse.org update
-     site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_3&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 16 – Milestone 3 (1.0 M3) – Stable
-     Build based on Eclipse 3.3 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1038"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 4 – Milestone 4 (1.0 M4) – Stable
-     Build based on Eclipse 3.3 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, February 23 – Milestone 5 (1.0 M5) – Stable
-     Build based on Eclipse 3.3 M5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, April 6 – Milestone 6 (1.0 M6) – API Freeze –
-     Stable Build based on Eclipse 3.3 M6<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, May 18 – Milestone 7 (1.0 RC0) – Stable Build
-     based on Eclipse 3.3 RC0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which translations
-into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 2.0 with 1.0</h3>
-
-<p>The EODM 2.0 component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Programs that use affected APIs and extension points
-will need to be ported to EODM 2.0 APIs. Downward contract compatibility is not
-supported. Compliance with EODM 2.0 APIs would <b style='mso-bidi-font-weight:
-normal'>not</b> ensure compliance with EODM 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Downward plug-in compatibility is not supported:
-plug-ins compiled against EODM 2.0 will be unusable with EODM 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 1.0 APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against EODM 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 1.0 as noted. This
-means that workspaces and projects created by an Eclipse with EODM 1.0
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with EODM 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of <img border=0 width=12 height=12 id="_x0000_i1039"
-src="../../images/new.gif"><span style='mso-spacerun:yes'> </span>OCL 1.1 with
-1.0</h3>
-
-<p>The <img border=0 width=12 height=12 id="_x0000_i1040"
-src="../../images/new.gif"><span style='mso-spacerun:yes'> </span>OCL 1.1 <img
-border=0 width=12 height=12 id="_x0000_i1041" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span>component of Eclipse MDT will be compatible
-with<img border=0 width=12 height=12 id="_x0000_i1042"
-src="../../images/new.gif"> OCL 1.0, except in those areas noted in the<img
-border=0 width=12 height=12 id="_x0000_i1043" src="../../images/new.gif"> OCL
-1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> <img border=0 width=12 height=12
-id="_x0000_i1044" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span>OCL 1.1 will be upwards contract-compatible
-with<img border=0 width=12 height=12 id="_x0000_i1045"
-src="../../images/new.gif"> OCL 1.0 except in those areas noted in the <img
-border=0 width=12 height=12 id="_x0000_i1046" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><i>OCL 1.1 Migration</i><i style='mso-bidi-font-style:
-normal'> Guide</i>. Programs that use affected APIs and extension points will
-need to be ported to<img border=0 width=12 height=12 id="_x0000_i1047"
-src="../../images/new.gif"> OCL 1.1 APIs. Downward contract compatibility is
-not supported. There is no guarantee that compliance with<img border=0
-width=12 height=12 id="_x0000_i1048" src="../../images/new.gif"> OCL 1.1 APIs
-would ensure compliance with<img border=0 width=12 height=12 id="_x0000_i1049"
-src="../../images/new.gif"> OCL 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> <img border=0 width=12 height=12
-id="_x0000_i1050" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span>OCL 1.1 will be upwards binary-compatible with<img
-border=0 width=12 height=12 id="_x0000_i1051" src="../../images/new.gif"> OCL
-1.0 except in those areas noted in the<img border=0 width=12 height=12
-id="_x0000_i1052" src="../../images/new.gif"> <i>OCL 1.1 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in compatibility
-is not supported: plug-ins compiled against<img border=0 width=12 height=12
-id="_x0000_i1053" src="../../images/new.gif"> OCL 1.1 will likely be unusable
-with<img border=0 width=12 height=12 id="_x0000_i1054"
-src="../../images/new.gif"> OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use<img border=0
-width=12 height=12 id="_x0000_i1055" src="../../images/new.gif"> OCL 1.0 APIs
-will usually compile and run successfully against<img border=0 width=12
-height=12 id="_x0000_i1056" src="../../images/new.gif"> OCL 1.1 APIs, although
-this cannot be guaranteed. Because<img border=0 width=12 height=12
-id="_x0000_i1057" src="../../images/new.gif"> OCL 1.1 may exploit new Java
-language constructs and/or aspects of the OCL specification, there is an
-increased chance of source incompatibilities compared to previous<img border=0
-width=12 height=12 id="_x0000_i1058" src="../../images/new.gif"> OCL releases.
-In some cases, it may be necessary to make minor changes to the source code to
-disambiguate things like imports or overloaded method invocations. Downward
-source compatibility is not supported. If source files use new APIs, they will
-not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> <img border=0 width=12 height=12
-id="_x0000_i1059" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span>OCL 1.1 will be upwards workspace-compatible
-with<img border=0 width=12 height=12 id="_x0000_i1060"
-src="../../images/new.gif"> OCL 1.0 unless noted. This means that workspaces
-and projects created by an Eclipse with<img border=0 width=12 height=12
-id="_x0000_i1061" src="../../images/new.gif"> OCL 1.0 installed can be
-successfully opened by an Eclipse with<img border=0 width=12 height=12
-id="_x0000_i1062" src="../../images/new.gif"> OCL 1.1 installed. This includes
-both hidden metadata, which is localized to a particular workspace, as well as
-metadata files found within a workspace project, which may propagate between
-workspaces via file copying or team repositories. User interface session state
-may be discarded when a workspace is upgraded. Downward workspace compatibility
-is not supported. Metadata files created (or overwritten) by the newer version
-will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.1 with 2.0</h3>
-
-<p>The UML2<img border=0 width=12 height=12 id="_x0000_i1063"
-src="../../images/new.gif"> 2.1<img border=0 width=12 height=12
-id="_x0000_i1064" src="../../images/new.gif"> component of Eclipse MDT will be
-compatible with UML2<img border=0 width=12 height=12 id="_x0000_i1065"
-src="../../images/new.gif"> 2.0, except in those areas noted in the UML2<img
-border=0 width=12 height=12 id="_x0000_i1066" src="../../images/new.gif"> 2.1
-Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2<img border=0 width=12 height=12
-id="_x0000_i1067" src="../../images/new.gif"> 2.1 will be upwards
-contract-compatible with UML2<img border=0 width=12 height=12 id="_x0000_i1068"
-src="../../images/new.gif"> 2.0 except in those areas noted in the <i>UML2</i><img
-border=0 width=12 height=12 id="_x0000_i1069" src="../../images/new.gif"><i>
-2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2<img
-border=0 width=12 height=12 id="_x0000_i1070" src="../../images/new.gif"> 2.1
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with UML2<img border=0 width=12 height=12 id="_x0000_i1071"
-src="../../images/new.gif"> 2.1 APIs would ensure compliance with UML2<img
-border=0 width=12 height=12 id="_x0000_i1072" src="../../images/new.gif"> 2.0
-APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2<img border=0 width=12 height=12
-id="_x0000_i1073" src="../../images/new.gif"> 2.1 will be upwards
-binary-compatible with UML2<img border=0 width=12 height=12 id="_x0000_i1074"
-src="../../images/new.gif"> 2.0 except in those areas noted in the <i>UML2</i><img
-border=0 width=12 height=12 id="_x0000_i1075" src="../../images/new.gif"><i>
-2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2<img
-border=0 width=12 height=12 id="_x0000_i1076" src="../../images/new.gif"> 2.1
-will likely be unusable with UML2<img border=0 width=12 height=12
-id="_x0000_i1077" src="../../images/new.gif"> 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2<img border=0
-width=12 height=12 id="_x0000_i1078" src="../../images/new.gif"> 2.0 APIs will
-usually compile and run successfully against UML2<img border=0 width=12
-height=12 id="_x0000_i1079" src="../../images/new.gif"> 2.1 APIs, although this
-cannot be guaranteed. Because UML2<img border=0 width=12 height=12
-id="_x0000_i1080" src="../../images/new.gif"> 2.1 may exploit new Java language
-constructs, there is an increased chance of source incompatibilities compared
-to previous UML2<img border=0 width=12 height=12 id="_x0000_i1081"
-src="../../images/new.gif"> releases. In some cases, it may be necessary to
-make minor changes to the source code to disambiguate things like imports or
-overloaded method invocations. Downward source compatibility is not supported.
-If source files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2<img border=0 width=12 height=12
-id="_x0000_i1082" src="../../images/new.gif"> 2.1 will be upwards
-workspace-compatible with UML2<img border=0 width=12 height=12 id="_x0000_i1083"
-src="../../images/new.gif"> 2.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2<img border=0 width=12 height=12
-id="_x0000_i1084" src="../../images/new.gif"> 2.0 installed can be successfully
-opened by an Eclipse with UML2<img border=0 width=12 height=12 id="_x0000_i1085"
-src="../../images/new.gif"> 2.1 installed. This includes both hidden metadata,
-which is localized to a particular workspace, as well as metadata files found
-within a workspace project, which may propagate between workspaces via file
-copying or team repositories. User interface session state may be discarded
-when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.3 with 2.2</h3>
-
-<p>The XSD 2.3 component of Eclipse MDT will be compatible with XSD 2.2, except
-in those areas noted in the XSD 2.3 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.3 will be upwards
-contract-compatible with XSD 2.2 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.3 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.3 APIs would ensure compliance with XSD 2.2 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.3 will be upwards
-binary-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.3 will likely
-be unusable with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 2.3 APIs, although this cannot
-be guaranteed. Because XSD 2.3 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.3 will be upwards workspace-compatible
-with XSD 2.2 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.2 installed can be successfully opened by an Eclipse with
-XSD 2.3 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1086" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a new API that is
-compliant with the (to be adopted) 5th submission of the ODM specification to
-the OMG. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"><span
-style='mso-bookmark:UML2'>162682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Appealing to a Broader Community]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Dynamic Typing.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for dynamic typing. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162683</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Parsing and
-Serialization.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162684</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Reasoning.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for RDF/OWL reasoning. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162685</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Transformation
-to/from <span class=SpellE>Ecore</span>.</b></span><span style='mso-bidi-font-weight:
-bold'> Provide a mechanism to transform RDF/OWL models to/from <span
-class=SpellE>Ecore</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162686</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a><a
-name="_OCL__component"></a><img border=0 width=12 height=12 id="_x0000_i1087"
-src="../../images/new.gif"><span style='mso-spacerun:yes'> </span>OCL<img
-border=0 width=12 height=12 id="_x0000_i1088" src="../../images/new.gif">
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'><img border=0 width=12 height=12
-id="_x0000_i1089" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span>OCL is an implementation of the OCL OMG
-standard for EMF-based models.<img border=0 width=12 height=12 id="_x0000_i1090"
-src="../../images/new.gif"> Plan items reflect new features of the OCL
-component, or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1091" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (</span><img border=0 width=12 height=12 id="_x0000_i1092"
-src="../../images/new.gif"> </span><span style='mso-bookmark:UML2'><span
-style='font-family:Arial'>OCL</span><img border=0 width=12 height=12
-id="_x0000_i1093" src="../../images/new.gif"></span><span style='mso-bookmark:
-UML2'><span style='font-family:Arial'> component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Parsing API.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a public API for parsing OCL
-documents, with the complete context declaration syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with UML.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for parsing and evaluating
-OCL constraints and expressions on the UML <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>EMF 2.3 / J2SE 5 Support.</b></span><span
-style='mso-bidi-font-weight:bold'> Adopt EMF 2.3, including regeneration of the
-OCL <span class=SpellE>metamodel</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Improved Documentation.</b></span><span
-style='mso-bidi-font-weight:bold'> Develop a complete ProgrammerÂ’s Guide for
-the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1120" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>LPG.</b></span><span style='mso-bidi-font-weight:bold'> Consume LPG
-runtime library from the Orbit project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1119" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1094" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Stand-alone support.</b></span><span style='mso-bidi-font-weight:bold'>
-Provide a stand-alone (Eclipse-free) OCL build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1095" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1096" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>ICU4J.</b><span
-style='mso-bidi-font-weight:bold'> Isolate and minimize dependency on ICU4J;
-ensure support for the “thin” variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]</span><span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1097" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (</span><img border=0 width=12 height=12 id="_x0000_i1098"
-src="../../images/new.gif"> </span><span style='mso-bookmark:UML2'><span
-style='font-family:Arial'>OCL</span><img border=0 width=12 height=12
-id="_x0000_i1099" src="../../images/new.gif"></span><span style='mso-bookmark:
-UML2'><span style='font-family:Arial'> component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1121" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Standard Compliance.</b></span><span style='mso-bidi-font-weight:bold'>
-Maintain currency of the API with the <span class=SpellE>OMGÂ’s</span> OCL,
-ensuring backward API compatibility as much as possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1122" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>OCL Conformance.</b></span><span style='mso-bidi-font-weight:bold'>
-Validate and document the APIÂ’s conformance to the OCL SpecificationÂ’s
-compliance points. This includes which language capabilities are supported and
-which <span class=SpellE>metamodels</span> (EMOF/<span class=SpellE>Ecore</span>,
-UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (</span><img border=0 width=12 height=12 id="_x0000_i1100"
-src="../../images/new.gif"> </span><span style='mso-bookmark:UML2'><span
-style='font-family:Arial'>OCL</span><img border=0 width=12 height=12
-id="_x0000_i1101" src="../../images/new.gif"></span><span style='mso-bookmark:
-UML2'><span style='font-family:Arial'> component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2__component"></a>UML2<img
-border=0 width=12 height=12 id="_x0000_i1102" src="../../images/new.gif">
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2<img border=0 width=12 height=12
-id="_x0000_i1103" src="../../images/new.gif"> is an EMF-based implementation of
-the UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span> for the Eclipse platform.<img border=0
-width=12 height=12 id="_x0000_i1104" src="../../images/new.gif"> Plan items
-reflect new features of the UML2 component, or areas where existing features
-will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1105" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2</span><img border=0 width=12 height=12 id="_x0000_i1106"
-src="../../images/new.gif"></span><span style='mso-bookmark:UML2'><span
-style='font-family:Arial'> component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.3 / EMF 2.3
-Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.3 (and Eclipse 3.3). Make
-changes as required to align with EMF features and bug fixes, in particular
-support for Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Improved Documentation.</b></span> Improve documentation by
-updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>, and publishing
-new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Ant Task for <span
-class=SpellE>Ecore</span> Importer<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide an Ant task for the UML <span class=SpellE>Ecore</span> importer,
-similar to those provided for the Rose and <span class=SpellE>Ecore</span>
-importers in EMF. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Static Profile Definition<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a way to specify
-that a profile definition be generated using EMF. This would allow, among other
-things, support for custom data types and derived stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1107" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>XML Primitive Types<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide a model library to represent the types defined in the <span
-class=SpellE>XMLType</span> <span class=SpellE>metamodel</span> in EMF; be sure
-to update <span class=SpellE>Ecore</span>/UML converters to make use of this
-new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1108"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=SpellE><b style='mso-bidi-font-weight:normal'>BiDi</b></span><b
-style='mso-bidi-font-weight:normal'> Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better support for <span class=SpellE>BiDi</span>
-languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Create Child/Sibling Menu Reorganization<span
-style='mso-bidi-font-weight:bold'>.</span></b> Reorganize the ‘Create Child’
-and ‘Create Sibling’ menus of the UML editor so that the items are grouped by
-feature. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with OCL.</b></span><span
-style='mso-bidi-font-weight:bold'> Integrate support for parsing and evaluating
-OCL constraints and expressions. Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2</span><img border=0 width=12 height=12 id="_x0000_i1109"
-src="../../images/new.gif"></span><span style='mso-bookmark:UML2'><span
-style='font-family:Arial'> component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Unit Tests.</b></span> Complete the implementation of generated
-unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Validation Rules.</b></span> Complete the generation and
-implementation of validation rules from the UML</span><span style='mso-bookmark:
-UML2'><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2</span><img border=0 width=12 height=12 id="_x0000_i1110"
-src="../../images/new.gif"></span><span style='mso-bookmark:UML2'><span
-style='font-family:Arial'> component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_Tools_"></a>UML2 Tools<img
-border=0 width=12 height=12 id="_x0000_i1111" src="../../images/new.gif">
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set of <img border=0 width=12
-height=12 id="_x0000_i1112" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span>GMF-based editors for viewing and editing UML
-models.<img border=0 width=12 height=12 id="_x0000_i1113"
-src="../../images/new.gif"> Plan items reflect new features of the UML2 Tools
-component (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1114" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools</span><img border=0 width=12 height=12 id="_x0000_i1115"
-src="../../images/new.gif"></span><span style='mso-bookmark:UML2'><span
-style='font-family:Arial'> component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Class Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML class
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state
-machine diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161572</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Component Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161573</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Activity Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161574</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools</span><img border=0 width=12 height=12 id="_x0000_i1116"
-src="../../images/new.gif"></span><span style='mso-bookmark:UML2'><span
-style='font-family:Arial'> component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Import/Export from/to DI.</b><span
-style='mso-bidi-font-weight:bold'> Provide a mechanism whereby UML diagrams can
-be imported/exported from/to a format based on the Diagram Interchange
-specification. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161575"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161575</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools</span><img border=0 width=12 height=12 id="_x0000_i1117"
-src="../../images/new.gif"></span><span style='mso-bookmark:UML2'><span
-style='font-family:Arial'> component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://download.eclipse.org/tools/emf/xsd/javadoc?org/eclipse/xsd/package-summary.html#details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1118" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Java SE 5.0 <span class=GramE>Support</span><span
-style='mso-bidi-font-weight:bold'>.</span></b> Exploit new Java language
-constructs; use generics (e.g. <span class=SpellE>EList</span>, <span
-class=SpellE>EMap</span> and implementations); generate and merge Java 5
-constructs; investigate enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XSD2Ecore Enhancements<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Improve ability to record
-complex content models as <span class=SpellE>Ecore</span> annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed Items
-(XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_0_20070228.html b/docs/plans/mdt_project_plan_1_0_20070228.html
deleted file mode 100644
index b2723f8..0000000
--- a/docs/plans/mdt_project_plan_1_0_20070228.html
+++ /dev/null
@@ -1,1441 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - DRAFT 1.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>113</o:Revision>
-  <o:TotalTime>3281</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2007-02-28T05:42:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>4803</o:Words>
-  <o:Characters>27382</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>228</o:Lines>
-  <o:Paragraphs>64</o:Paragraphs>
-  <o:CharactersWithSpaces>32121</o:CharactersWithSpaces>
-  <o:Version>10.6825</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:308633951;
-	mso-list-template-ids:1963623770;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:649212315;
-	mso-list-template-ids:-1945830818;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:676470063;
-	mso-list-template-ids:-1176714342;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:797605232;
-	mso-list-template-ids:159521950;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1029572825;
-	mso-list-template-ids:1021066776;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="18434"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-DRAFT 1.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="41" Hour="0">00:41</st1:time> EST <st1:date
-Year="2007" Day="28" Month="2">February 28, 2007</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src="../../images/new.gif" border=0> marks
-interesting changes over the <a href="mdt_project_plan_1_0_20061219.html">previous
-plan revision</a>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_OCL__component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2__component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_Tools_">UML2 Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due consideration,
-     a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan
-     items may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the OCL component, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 component, available
-     as versions tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools component,
-     available as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_3&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 16 – Milestone 3 (1.0 M3) – Stable
-     Build based on Eclipse 3.3 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1038" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, January 4 – Milestone 4 (1.0 M4) – Stable Build based on
-     Eclipse 3.3 M4 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1036" src="../../images/ok.gif"></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1039" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Friday, February 23 – Milestone 5 (1.0 M5) – Stable Build based on
-     Eclipse 3.3 M5 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1037" src="../../images/ok.gif"></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, April 6 – Milestone 6 (1.0 M6) – API Freeze –
-     Stable Build based on Eclipse 3.3 M6<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, May 18 – Milestone 7 (1.0 RC0) – Stable Build
-     based on Eclipse 3.3 RC0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 2.0 with 1.0</h3>
-
-<p>The EODM 2.0 component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Programs that use affected APIs and extension points
-will need to be ported to EODM 2.0 APIs. Downward contract compatibility is not
-supported. Compliance with EODM 2.0 APIs would <b style='mso-bidi-font-weight:
-normal'>not</b> ensure compliance with EODM 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Downward plug-in compatibility is not supported:
-plug-ins compiled against EODM 2.0 will be unusable with EODM 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 1.0 APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against EODM 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 1.0 as noted. This
-means that workspaces and projects created by an Eclipse with EODM 1.0
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with EODM 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of OCL 1.1 with 1.0</h3>
-
-<p>The OCL 1.1 component of Eclipse MDT will be compatible with OCL 1.0, except
-in those areas noted in the OCL 1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.1 will be upwards
-contract-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to OCL 1.1 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with OCL 1.1 APIs would ensure compliance with OCL 1.0 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.1 will be upwards
-binary-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.1 will likely
-be unusable with OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.0 APIs will
-usually compile and run successfully against OCL 1.1 APIs, although this cannot
-be guaranteed. Because OCL 1.1 may exploit new Java language constructs and/or
-aspects of the OCL specification, there is an increased chance of source
-incompatibilities compared to previous OCL releases. In some cases, it may be
-necessary to make minor changes to the source code to disambiguate things like
-imports or overloaded method invocations. Downward source compatibility is not
-supported. If source files use new APIs, they will not be usable with earlier
-versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.1 will be upwards workspace-compatible
-with OCL 1.0 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.0 installed can be successfully opened by an Eclipse with
-OCL 1.1 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.1 with 2.0</h3>
-
-<p>The UML2 2.1 component of Eclipse MDT will be compatible with UML2 2.0,
-except in those areas noted in the UML2 2.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.1 will be upwards
-contract-compatible with UML2 2.0 except in those areas noted in the <i>UML2
-2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to UML2 2.1 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with UML2 2.1 APIs would ensure compliance with UML2 2.0 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.1 will be upwards
-binary-compatible with UML2 2.0 except in those areas noted in the <i>UML2 2.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 2.1 will likely
-be unusable with UML2 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.0 APIs will
-usually compile and run successfully against UML2 2.1 APIs, although this
-cannot be guaranteed. Because UML2 2.1 may exploit new Java language
-constructs, there is an increased chance of source incompatibilities compared
-to previous UML2 releases. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.1 will be upwards
-workspace-compatible with UML2 2.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 2.0 installed can be successfully
-opened by an Eclipse with UML2 2.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.3 with 2.2</h3>
-
-<p>The XSD 2.3 component of Eclipse MDT will be compatible with XSD 2.2, except
-in those areas noted in the XSD 2.3 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.3 will be upwards
-contract-compatible with XSD 2.2 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.3 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.3 APIs would ensure compliance with XSD 2.2 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.3 will be upwards binary-compatible
-with XSD 2.3 except in those areas noted in the <i>XSD 2.3 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in compatibility
-is not supported: plug-ins compiled against XSD 2.3 will likely be unusable
-with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 2.3 APIs, although this cannot
-be guaranteed. Because XSD 2.3 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.3 will be upwards workspace-compatible
-with XSD 2.2 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.2 installed can be successfully opened by an Eclipse with
-XSD 2.3 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1027" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a new API that is
-compliant with the (to be adopted) 5th submission of the ODM specification to
-the OMG. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"><span
-style='mso-bookmark:UML2'>162682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Appealing to a Broader Community]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Dynamic Typing.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for dynamic typing. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162683</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Parsing and
-Serialization.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162684</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Reasoning.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for RDF/OWL reasoning. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162685</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Transformation
-to/from <span class=SpellE>Ecore</span>.</b></span><span style='mso-bidi-font-weight:
-bold'> Provide a mechanism to transform RDF/OWL models to/from <span
-class=SpellE>Ecore</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162686</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a><a
-name="_OCL__component"></a>OCL component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>OCL is an implementation of the OCL OMG
-standard for EMF-based models. Plan items reflect new features of the OCL
-component, or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1028" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1043" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Parsing API.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-a public API for parsing OCL documents, with the complete context declaration
-syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1042" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with UML.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for parsing and evaluating
-OCL constraints and expressions on the UML <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1045" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>EMF 2.3 / J2SE 5 Support.</b></span><span style='mso-bidi-font-weight:
-bold'> Adopt EMF 2.3, including regeneration of the OCL <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1044" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Improved Documentation.</b></span><span
-style='mso-bidi-font-weight:bold'> Develop a complete ProgrammerÂ’s Guide for
-the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>LPG.</b></span><span
-style='mso-bidi-font-weight:bold'> Consume LPG runtime library from the Orbit
-project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1029" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Stand-alone support.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a stand-alone (Eclipse-free) OCL
-build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1030" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>ICU4J.</b><span style='mso-bidi-font-weight:
-bold'> Isolate and minimize dependency on ICU4J; ensure support for the “thin”
-variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]</span><span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1031" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance.</b></span><span
-style='mso-bidi-font-weight:bold'> Maintain currency of the API with the <span
-class=SpellE>OMGÂ’s</span> OCL, ensuring backward API compatibility as much as
-possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>OCL Conformance.</b></span><span
-style='mso-bidi-font-weight:bold'> Validate and document the APIÂ’s conformance to
-the OCL SpecificationÂ’s compliance points. This includes which language
-capabilities are supported and which <span class=SpellE>metamodels</span>
-(EMOF/<span class=SpellE>Ecore</span>, UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2__component"></a>UML2
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 is an EMF-based implementation of the
-UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span> for the Eclipse platform. Plan items
-reflect new features of the UML2 component, or areas where existing features
-will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1032" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.3 / EMF 2.3
-Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.3 (and Eclipse 3.3). Make
-changes as required to align with EMF features and bug fixes, in particular
-support for Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Improved Documentation.</b></span> Improve documentation by
-updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>, and
-publishing new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1041" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Ant Task for <span class=SpellE>Ecore</span> Importer<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide an Ant task for
-the UML <span class=SpellE>Ecore</span> importer, similar to those provided for
-the Rose and <span class=SpellE>Ecore</span> importers in EMF. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1040" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Static Profile Definition<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a way to specify
-that a profile definition be generated using EMF. This would allow, among other
-things, support for custom data types and derived stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XML Primitive Types<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a model library
-to represent the types defined in the <span class=SpellE>XMLType</span> <span
-class=SpellE>metamodel</span> in EMF; be sure to update <span class=SpellE>Ecore</span>/UML
-converters to make use of this new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1033"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=SpellE><b style='mso-bidi-font-weight:normal'>BiDi</b></span><b
-style='mso-bidi-font-weight:normal'> Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better support for <span class=SpellE>BiDi</span>
-languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Create Child/Sibling Menu Reorganization<span
-style='mso-bidi-font-weight:bold'>.</span></b> Reorganize the ‘Create Child’
-and ‘Create Sibling’ menus of the UML editor so that the items are grouped by
-feature. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with OCL.</b></span><span
-style='mso-bidi-font-weight:bold'> Integrate support for parsing and evaluating
-OCL constraints and expressions. Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Unit Tests.</b></span> Complete the implementation of generated
-unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Validation Rules.</b></span> Complete the generation and
-implementation of validation rules from the UML</span><span style='mso-bookmark:
-UML2'><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_Tools_"></a>UML2 Tools
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set of GMF-based editors for
-viewing and editing UML models. Plan items reflect new features of the UML2
-Tools component (<span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1034" src="../../images/ok.gif"> marks completed
-work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Class Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML class
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state
-machine diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161572</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Component Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161573</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Activity Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161574</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Import/Export from/to DI.</b><span
-style='mso-bidi-font-weight:bold'> Provide a mechanism whereby UML diagrams can
-be imported/exported from/to a format based on the Diagram Interchange
-specification. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161575"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161575</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://download.eclipse.org/tools/emf/xsd/javadoc?org/eclipse/xsd/package-summary.html#details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1035" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Java SE 5.0 <span class=GramE>Support</span><span
-style='mso-bidi-font-weight:bold'>.</span></b> Exploit new Java language
-constructs; use generics (e.g. <span class=SpellE>EList</span>, <span
-class=SpellE>EMap</span> and implementations); generate and merge Java 5
-constructs; investigate enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XSD2Ecore Enhancements<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Improve ability to record
-complex content models as <span class=SpellE>Ecore</span> annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_0_20070523.html b/docs/plans/mdt_project_plan_1_0_20070523.html
deleted file mode 100644
index e82a1d7..0000000
--- a/docs/plans/mdt_project_plan_1_0_20070523.html
+++ /dev/null
@@ -1,1462 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - DRAFT 1.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>117</o:Revision>
-  <o:TotalTime>3649</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2007-05-23T16:58:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>4998</o:Words>
-  <o:Characters>28495</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>237</o:Lines>
-  <o:Paragraphs>66</o:Paragraphs>
-  <o:CharactersWithSpaces>33427</o:CharactersWithSpaces>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:211118144;
-	mso-list-template-ids:2024051798;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:518204851;
-	mso-list-template-ids:-1014593222;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:661587414;
-	mso-list-template-ids:608236510;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:1511721280;
-	mso-list-template-ids:1582342978;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1688171696;
-	mso-list-template-ids:-1349465424;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="20482"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-DRAFT 1.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="58" Hour="12">12:58 EDT</st1:time> <st1:date
-Year="2007" Day="23" Month="5">May 23, 2007</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src="../../images/new.gif" border=0> marks
-interesting changes over the <a href="mdt_project_plan_1_0_20070410.html">previous
-plan revision</a>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_OCL__component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2__component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_Tools_">UML2 Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due
-     consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan items
-     may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the OCL component, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 component, available
-     as versions tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools component,
-     available as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_3&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 16 – Milestone 3 (1.0 M3) – Stable
-     Build based on Eclipse 3.3 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 4 – Milestone 4 (1.0 M4) – Stable
-     Build based on Eclipse 3.3 M4 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1027"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, February 23 – Milestone 5 (1.0 M5) – Stable
-     Build based on Eclipse 3.3 M5 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1028"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, April 6 – Milestone 6 (1.0 M6) – API Freeze –
-     Stable Build based on Eclipse 3.3 M6 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1029"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1030" src="../../images/new.gif"><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Friday, May 18 – Milestone 7 (1.0 RC0) – Stable Build based on
-     Eclipse 3.3 RC0 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1031" src="../../images/ok.gif"></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 2.0 with 1.0</h3>
-
-<p>The EODM 2.0 component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Programs that use affected APIs and extension points
-will need to be ported to EODM 2.0 APIs. Downward contract compatibility is not
-supported. Compliance with EODM 2.0 APIs would <b style='mso-bidi-font-weight:
-normal'>not</b> ensure compliance with EODM 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Downward plug-in compatibility is not supported:
-plug-ins compiled against EODM 2.0 will be unusable with EODM 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 1.0 APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against EODM 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 1.0 as noted. This
-means that workspaces and projects created by an Eclipse with EODM 1.0
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with EODM 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of OCL 1.1 with 1.0</h3>
-
-<p>The OCL 1.1 component of Eclipse MDT will be compatible with OCL 1.0, except
-in those areas noted in the OCL 1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.1 will be upwards
-contract-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to OCL 1.1 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with OCL 1.1 APIs would ensure compliance with OCL 1.0 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.1 will be upwards
-binary-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.1 will likely
-be unusable with OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.0 APIs will
-usually compile and run successfully against OCL 1.1 APIs, although this cannot
-be guaranteed. Because OCL 1.1 may exploit new Java language constructs and/or
-aspects of the OCL specification, there is an increased chance of source
-incompatibilities compared to previous OCL releases. In some cases, it may be
-necessary to make minor changes to the source code to disambiguate things like
-imports or overloaded method invocations. Downward source compatibility is not
-supported. If source files use new APIs, they will not be usable with earlier
-versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.1 will be upwards workspace-compatible
-with OCL 1.0 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.0 installed can be successfully opened by an Eclipse with
-OCL 1.1 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.1 with 2.0</h3>
-
-<p>The UML2 2.1 component of Eclipse MDT will be compatible with UML2 2.0,
-except in those areas noted in the UML2 2.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.1 will be upwards contract-compatible
-with UML2 2.0 except in those areas noted in the <i>UML2 2.1 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Programs that use affected APIs
-and extension points will need to be ported to UML2 2.1 APIs. Downward contract
-compatibility is not supported. There is no guarantee that compliance with UML2
-2.1 APIs would ensure compliance with UML2 2.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.1 will be upwards
-binary-compatible with UML2 2.0 except in those areas noted in the <i>UML2 2.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 2.1 will likely
-be unusable with UML2 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.0 APIs will
-usually compile and run successfully against UML2 2.1 APIs, although this
-cannot be guaranteed. Because UML2 2.1 may exploit new Java language
-constructs, there is an increased chance of source incompatibilities compared
-to previous UML2 releases. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.1 will be upwards
-workspace-compatible with UML2 2.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 2.0 installed can be successfully
-opened by an Eclipse with UML2 2.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.3 with 2.2</h3>
-
-<p>The XSD 2.3 component of Eclipse MDT will be compatible with XSD 2.2, except
-in those areas noted in the XSD 2.3 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.3 will be upwards
-contract-compatible with XSD 2.2 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.3 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.3 APIs would ensure compliance with XSD 2.2 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.3 will be upwards
-binary-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.3 will likely
-be unusable with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 2.3 APIs, although this cannot
-be guaranteed. Because XSD 2.3 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.3 will be upwards workspace-compatible
-with XSD 2.2 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.2 installed can be successfully opened by an Eclipse with
-XSD 2.3 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1032" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a new API that is
-compliant with the (to be adopted) 5th submission of the ODM specification to
-the OMG. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"><span
-style='mso-bookmark:UML2'>162682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Appealing to a Broader Community]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Dynamic Typing.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for dynamic typing. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162683</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Parsing and
-Serialization.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162684</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Reasoning.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for RDF/OWL reasoning. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162685</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Transformation
-to/from <span class=SpellE>Ecore</span>.</b></span><span style='mso-bidi-font-weight:
-bold'> Provide a mechanism to transform RDF/OWL models to/from <span
-class=SpellE>Ecore</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162686</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a><a
-name="_OCL__component"></a>OCL component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>OCL is an implementation of the OCL OMG
-standard for EMF-based models. Plan items reflect new features of the OCL
-component, or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1033" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Parsing API.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a public API for parsing OCL
-documents, with the complete context declaration syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1034" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1058" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Integration with UML.</b></span><span style='mso-bidi-font-weight:bold'>
-Provide support for parsing and evaluating OCL constraints and expressions on
-the UML <span class=SpellE>metamodel</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1057" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>EMF 2.3 / J2SE 5 Support.</b></span><span
-style='mso-bidi-font-weight:bold'> Adopt EMF 2.3, including regeneration of the
-OCL <span class=SpellE>metamodel</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1035" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1049" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Improved Documentation.</b></span><span style='mso-bidi-font-weight:
-bold'> Develop a complete ProgrammerÂ’s Guide for the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1048" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>LPG.</b></span><span
-style='mso-bidi-font-weight:bold'> Consume LPG runtime library from the Orbit
-project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1036" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Stand-alone support.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a stand-alone (Eclipse-free) OCL
-build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1037" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>ICU4J.</b><span style='mso-bidi-font-weight:
-bold'> Isolate and minimize dependency on ICU4J; ensure support for the “thin”
-variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]</span><span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1038" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1046" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Standard Compliance.</b></span><span style='mso-bidi-font-weight:bold'>
-Maintain currency of the API with the <span class=SpellE>OMGÂ’s</span> OCL,
-ensuring backward API compatibility as much as possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1047" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>OCL Conformance.</b></span><span style='mso-bidi-font-weight:bold'>
-Validate and document the APIÂ’s conformance to the OCL SpecificationÂ’s
-compliance points. This includes which language capabilities are supported and
-which <span class=SpellE>metamodels</span> (EMOF/<span class=SpellE>Ecore</span>,
-UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2__component"></a>UML2
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 is an EMF-based implementation of the
-UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span> for the Eclipse platform. Plan items
-reflect new features of the UML2 component, or areas where existing features
-will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1039" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed Items
-(UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.3 / EMF 2.3
-Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.3 (and Eclipse 3.3). Make
-changes as required to align with EMF features and bug fixes, in particular
-support for Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Improved Documentation.</b></span> Improve documentation by
-updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>, and
-publishing new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Ant Task for <span
-class=SpellE>Ecore</span> Importer<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide an Ant task for the UML <span class=SpellE>Ecore</span> importer,
-similar to those provided for the Rose and <span class=SpellE>Ecore</span>
-importers in EMF. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1040" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Static Profile Definition<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a way to specify
-that a profile definition be generated using EMF. This would allow, among other
-things, support for custom data types and derived stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<span style='mso-bidi-font-style:italic'> <img
-border=0 width=12 height=12 id="_x0000_i1041" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XML Primitive Types<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a model library
-to represent the types defined in the <span class=SpellE>XMLType</span> <span
-class=SpellE>metamodel</span> in EMF; be sure to update <span class=SpellE>Ecore</span>/UML
-converters to make use of this new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1042"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Create Child/Sibling Menu Reorganization<span
-style='mso-bidi-font-weight:bold'>.</span></b> Reorganize the ‘Create Child’
-and ‘Create Sibling’ menus of the UML editor so that the items are grouped by
-feature. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1043"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1051" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Integration with OCL.</b></span><span style='mso-bidi-font-weight:bold'>
-Integrate support for parsing and evaluating OCL constraints and expressions.
-Consider providing a convenience method on Constraint for returning the parsed
-representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1050" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1054" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Unit Tests.</b></span>
-Complete the implementation of generated unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1055" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Validation Rules.</b></span>
-Complete the generation and implementation of validation rules from the UML</span><span
-style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1056" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=SpellE><b style='mso-bidi-font-weight:
-normal'>BiDi</b></span><b style='mso-bidi-font-weight:normal'> Support<span
-style='mso-bidi-font-weight:bold'>.</span></b> Provide better support for <span
-class=SpellE>BiDi</span> languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]<o:p></o:p></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_Tools_"></a>UML2 Tools component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set of GMF-based editors for
-viewing and editing UML models. Plan items reflect new features of the UML2
-Tools component (<span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1044" src="../../images/ok.gif"> marks completed
-work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Class Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML class
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state
-machine diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161572</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Component Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161573</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Activity Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161574</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1052" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>Import/Export
-from/to DI.</b><span style='mso-bidi-font-weight:bold'> Provide a mechanism
-whereby UML diagrams can be imported/exported from/to a format based on the
-Diagram Interchange specification. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161575"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161575</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://download.eclipse.org/tools/emf/xsd/javadoc?org/eclipse/xsd/package-summary.html#details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1045" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Java SE 5.0 <span class=GramE>Support</span><span
-style='mso-bidi-font-weight:bold'>.</span></b> Exploit new Java language
-constructs; use generics (e.g. <span class=SpellE>EList</span>, <span
-class=SpellE>EMap</span> and implementations); generate and merge Java 5
-constructs; investigate enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1053" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>XSD2Ecore Enhancements<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Improve ability to record complex content models as <span class=SpellE>Ecore</span>
-annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_0_20070530.html b/docs/plans/mdt_project_plan_1_0_20070530.html
deleted file mode 100644
index 403efc3..0000000
--- a/docs/plans/mdt_project_plan_1_0_20070530.html
+++ /dev/null
@@ -1,1427 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - DRAFT 1.0 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>118</o:Revision>
-  <o:TotalTime>3658</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2007-05-30T13:16:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>4981</o:Words>
-  <o:Characters>28398</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>236</o:Lines>
-  <o:Paragraphs>66</o:Paragraphs>
-  <o:CharactersWithSpaces>33313</o:CharactersWithSpaces>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:36783613;
-	mso-list-template-ids:1929398422;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:489447762;
-	mso-list-template-ids:-1187887418;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:992954719;
-	mso-list-template-ids:129773144;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:1798718906;
-	mso-list-template-ids:1163291766;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:2093038243;
-	mso-list-template-ids:-1789099882;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="21506"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-1.0 Plan</h1>
-
-<p>Last revised 09:16 EDT May 30, 2007 (<img width=12 height=12
-id="_x0000_i1025" src="../../images/new.gif" border=0> marks interesting
-changes over the <a href="mdt_project_plan_1_0_20070523.html">previous plan
-revision</a>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_OCL__component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2__component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_Tools_">UML2 Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse bugzilla database, with a title and a concise summary (usually a
-single paragraph) that explains the work item at a suitably high enough level
-so that everyone can readily understand what the work item is without having to
-understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due
-     consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan items
-     may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the OCL component, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 component, available
-     as versions tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools component,
-     available as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_3&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 16 – Milestone 3 (1.0 M3) – Stable
-     Build based on Eclipse 3.3 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 4 – Milestone 4 (1.0 M4) – Stable
-     Build based on Eclipse 3.3 M4 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1027"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, February 23 – Milestone 5 (1.0 M5) – Stable
-     Build based on Eclipse 3.3 M5 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1028"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, April 6 – Milestone 6 (1.0 M6) – API Freeze –
-     Stable Build based on Eclipse 3.3 M6 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1029"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, May 18 – Milestone 7 (1.0 RC0) – Stable Build
-     based on Eclipse 3.3 RC0 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1030" src="../../images/ok.gif"></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup><span style='font-size:9.5pt'>TM</span></sup>
-code and has no direct dependence on the underlying operating system. The chief
-dependence is on the Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user interface
-elements provided by the various Eclipse projects, including dialogs and error
-messages, are externalized. The English strings for MDT are provided as the
-default resource bundles. Translations are not provided with this release.
-However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 2.0 with 1.0</h3>
-
-<p>The EODM 2.0 component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Programs that use affected APIs and extension points
-will need to be ported to EODM 2.0 APIs. Downward contract compatibility is not
-supported. Compliance with EODM 2.0 APIs would <b style='mso-bidi-font-weight:
-normal'>not</b> ensure compliance with EODM 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with EODM 1.0 as noted in the <i>EODM
-2.0 Migration</i> Guide. Downward plug-in compatibility is not supported:
-plug-ins compiled against EODM 2.0 will be unusable with EODM 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 1.0 APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against EODM 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 1.0 as noted. This
-means that workspaces and projects created by an Eclipse with EODM 1.0
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with EODM 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single release
-much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of OCL 1.1 with 1.0</h3>
-
-<p>The OCL 1.1 component of Eclipse MDT will be compatible with OCL 1.0, except
-in those areas noted in the OCL 1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.1 will be upwards
-contract-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to OCL 1.1 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with OCL 1.1 APIs would ensure compliance with OCL 1.0 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.1 will be upwards
-binary-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.1 will likely
-be unusable with OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.0 APIs will
-usually compile and run successfully against OCL 1.1 APIs, although this cannot
-be guaranteed. Because OCL 1.1 may exploit new Java language constructs and/or
-aspects of the OCL specification, there is an increased chance of source
-incompatibilities compared to previous OCL releases. In some cases, it may be
-necessary to make minor changes to the source code to disambiguate things like
-imports or overloaded method invocations. Downward source compatibility is not
-supported. If source files use new APIs, they will not be usable with earlier
-versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.1 will be upwards workspace-compatible
-with OCL 1.0 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.0 installed can be successfully opened by an Eclipse with
-OCL 1.1 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.1 with 2.0</h3>
-
-<p>The UML2 2.1 component of Eclipse MDT will be compatible with UML2 2.0,
-except in those areas noted in the UML2 2.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.1 will be upwards
-contract-compatible with UML2 2.0 except in those areas noted in the <i>UML2
-2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 2.1
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with UML2 2.1 APIs would ensure compliance with UML2 2.0 APIs.
-Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.1 will be upwards
-binary-compatible with UML2 2.0 except in those areas noted in the <i>UML2 2.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 2.1 will likely
-be unusable with UML2 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.0 APIs will usually
-compile and run successfully against UML2 2.1 APIs, although this cannot be
-guaranteed. Because UML2 2.1 may exploit new Java language constructs, there is
-an increased chance of source incompatibilities compared to previous UML2
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.1 will be upwards
-workspace-compatible with UML2 2.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 2.0 installed can be successfully
-opened by an Eclipse with UML2 2.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.3 with 2.2</h3>
-
-<p>The XSD 2.3 component of Eclipse MDT will be compatible with XSD 2.2, except
-in those areas noted in the XSD 2.3 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.3 will be upwards
-contract-compatible with XSD 2.2 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.3 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.3 APIs would ensure compliance with XSD 2.2 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.3 will be upwards
-binary-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.3 will likely
-be unusable with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 2.3 APIs, although this cannot
-be guaranteed. Because XSD 2.3 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.3 will be upwards workspace-compatible
-with XSD 2.2 unless noted. This means that workspaces and projects created by an
-Eclipse with XSD 2.2 installed can be successfully opened by an Eclipse with
-XSD 2.3 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment and
-are subject to change without notice. Client plug-ins that directly depend on
-anything other than what is specified in the API are inherently unsupportable
-and receive no guarantees about compatibility within a single release much less
-with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL
-metamodels of the </span><a href="http://www.omg.org/ontology"><span
-style='mso-bookmark:UML2'>Ontology Definition Metamodel (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1031" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed Items
-(EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1053" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>Standard
-Compliance<span style='mso-bidi-font-weight:bold'>.</span></b> Provide a new
-API that is compliant with the (to be adopted) 5th submission of the ODM
-specification to the OMG. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"><span
-style='mso-bookmark:UML2'>162682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Appealing to a Broader Community]<span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1048" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1054" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>Dynamic
-Typing.</b><span style='mso-bidi-font-weight:bold'> Provide support for dynamic
-typing. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162683</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1049" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1055" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>RDF/OWL
-Parsing and Serialization.</b><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162684</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1050" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1056" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>RDF/OWL
-Reasoning.</b><span style='mso-bidi-font-weight:bold'> Provide support for
-RDF/OWL reasoning. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162685</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1051" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1057" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>RDF/OWL
-Transformation to/from Ecore.</b><span style='mso-bidi-font-weight:bold'>
-Provide a mechanism to transform RDF/OWL models to/from Ecore. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162686</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1052" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'>None
-at this time.<o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'>None
-at this time.<o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a><a
-name="_OCL__component"></a>OCL component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>OCL is an implementation of the OCL OMG
-standard for EMF-based models. Plan items reflect new features of the OCL
-component, or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1032" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Parsing API.</b><span style='mso-bidi-font-weight:
-bold'> Provide a public API for parsing OCL documents, with the complete
-context declaration syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1033" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Integration with UML.</b><span
-style='mso-bidi-font-weight:bold'> Provide support for parsing and evaluating
-OCL constraints and expressions on the UML metamodel. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1034" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>EMF 2.3 / J2SE 5 Support.</b><span
-style='mso-bidi-font-weight:bold'> Adopt EMF 2.3, including regeneration of the
-OCL metamodel. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1035" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Improved Documentation.</b><span
-style='mso-bidi-font-weight:bold'> Develop a complete ProgrammerÂ’s Guide for
-the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1036" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>LPG.</b><span style='mso-bidi-font-weight:
-bold'> Consume LPG runtime library from the Orbit project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1037" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Stand-alone support.</b><span
-style='mso-bidi-font-weight:bold'> Provide a stand-alone (Eclipse-free) OCL
-build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1038" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>ICU4J.</b><span style='mso-bidi-font-weight:
-bold'> Isolate and minimize dependency on ICU4J; ensure support for the “thin”
-variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]</span><span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1039" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'>None
-at this time.<o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Standard Compliance.</b><span
-style='mso-bidi-font-weight:bold'> Maintain currency of the API with the OMGÂ’s
-OCL, ensuring backward API compatibility as much as possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>OCL Conformance.</b><span style='mso-bidi-font-weight:
-bold'> Validate and document the APIÂ’s conformance to the OCL SpecificationÂ’s
-compliance points. This includes which language capabilities are supported and
-which metamodels (EMOF/Ecore, UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2__component"></a>UML2
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 is an EMF-based implementation of the
-UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x metamodel for the Eclipse platform. Plan items reflect new features of the
-UML2 component, or areas where existing features will be significantly reworked
-(<span style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1040" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Eclipse 3.3 / EMF 2.3 Compatibility<span
-style='mso-bidi-font-weight:bold'>.</span></b> Maintain release currency
-concurrent with EMF 2.3 (and Eclipse 3.3). Make changes as required to align
-with EMF features and bug fixes, in particular support for Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b>Improved
-Documentation.</b> Improve documentation by updating the FAQ, enhancing the
-Javadoc, and publishing new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Ant Task for Ecore Importer<span
-style='mso-bidi-font-weight:bold'>.</span></b> Provide an Ant task for the UML
-Ecore importer, similar to those provided for the Rose and Ecore importers in
-EMF. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1041" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Static Profile Definition<span
-style='mso-bidi-font-weight:bold'>.</span></b> Provide a way to specify that a
-profile definition be generated using EMF. This would allow, among other
-things, support for custom data types and derived stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<span style='mso-bidi-font-style:italic'> <img
-border=0 width=12 height=12 id="_x0000_i1042" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>XML Primitive Types<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide a model library to represent the types defined in
-the XMLType metamodel in EMF; be sure to update Ecore/UML converters to make
-use of this new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1043"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Create Child/Sibling Menu Reorganization<span
-style='mso-bidi-font-weight:bold'>.</span></b> Reorganize the ‘Create Child’
-and ‘Create Sibling’ menus of the UML editor so that the items are grouped by
-feature. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1044"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Integration with OCL.</b><span
-style='mso-bidi-font-weight:bold'> Integrate support for parsing and evaluating
-OCL constraints and expressions. Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1045" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'>None
-at this time.<o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b>Unit Tests.</b>
-Complete the implementation of generated unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b>Validation
-Rules.</b> Complete the generation and implementation of validation rules from
-the UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>BiDi Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better support for BiDi languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]</span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_Tools_"></a>UML2 Tools
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set of GMF-based editors for
-viewing and editing UML models. Plan items reflect new features of the UML2
-Tools component (<span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1046" src="../../images/ok.gif"> marks completed
-work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Class Diagrams.</b><span style='mso-bidi-font-weight:
-bold'> Provide a GMF-based editor for UML class diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state
-machine diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161572</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Component Diagrams.</b><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161573</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Activity Diagrams.</b><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161574</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'>None
-at this time.<o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Import/Export from/to DI.</b><span
-style='mso-bidi-font-weight:bold'> Provide a mechanism whereby UML diagrams can
-be imported/exported from/to a format based on the Diagram Interchange specification.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161575"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161575</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://download.eclipse.org/tools/emf/xsd/javadoc?org/eclipse/xsd/package-summary.html#details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1047" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Java SE 5.0 Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Exploit new Java language constructs; use generics (e.g.
-EList, EMap and implementations); generate and merge Java 5 constructs;
-investigate enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'>None
-at this time.<o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>XSD2Ecore Enhancements<span
-style='mso-bidi-font-weight:bold'>.</span></b> Improve ability to record
-complex content models as Ecore annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_0_20070612.html b/docs/plans/mdt_project_plan_1_0_20070612.html
deleted file mode 100644
index 134a597..0000000
--- a/docs/plans/mdt_project_plan_1_0_20070612.html
+++ /dev/null
@@ -1,1489 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - DRAFT 1.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>120</o:Revision>
-  <o:TotalTime>3687</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2007-06-12T16:16:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>5255</o:Words>
-  <o:Characters>29956</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>249</o:Lines>
-  <o:Paragraphs>70</o:Paragraphs>
-  <o:CharactersWithSpaces>35141</o:CharactersWithSpaces>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:332731328;
-	mso-list-template-ids:-1456555228;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:419646349;
-	mso-list-template-ids:1838967372;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:943029426;
-	mso-list-template-ids:685270618;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1275593506;
-	mso-list-template-ids:2122588812;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1293902239;
-	mso-list-template-ids:-1779164478;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="22530"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-1.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="16" Hour="12">12:16 EDT</st1:time> <st1:date
-Year="2007" Day="12" Month="6">June 12, 2007</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src="../../images/new.gif" border=0> marks
-interesting changes over the <a href="mdt_project_plan_1_0_20070530.html">previous
-plan revision</a>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_OCL__component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2__component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_Tools_">UML2 Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due
-     consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan items
-     may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R0_9&quot;</span><img border=0 width=12
-     height=12 id="_x0000_i1053" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'> in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the OCL component, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 component, available
-     as versions tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools component,
-     available as versions tagged &quot;R0_7&quot;</span><img border=0
-     width=12 height=12 id="_x0000_i1054" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'> in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_3&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 16 – Milestone 3 (1.0 M3) – Stable
-     Build based on Eclipse 3.3 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 4 – Milestone 4 (1.0 M4) – Stable
-     Build based on Eclipse 3.3 M4 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1027"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, February 23 – Milestone 5 (1.0 M5) – Stable
-     Build based on Eclipse 3.3 M5 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1028"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, April 6 – Milestone 6 (1.0 M6) – API Freeze –
-     Stable Build based on Eclipse 3.3 M6 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1029"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, May 18 – Milestone 7 (1.0 RC0) – Stable Build
-     based on Eclipse 3.3 RC0 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1030" src="../../images/ok.gif"></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 0.9<img border=0 width=12 height=12 id="_x0000_i1055"
-src="../../images/new.gif"> with 0.7<img border=0 width=12 height=12
-id="_x0000_i1056" src="../../images/new.gif"></h3>
-
-<p>The EODM 0.9<img border=0 width=12 height=12 id="_x0000_i1057"
-src="../../images/new.gif"> component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 0.7<img border=0 width=12 height=12
-id="_x0000_i1058" src="../../images/new.gif">.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 0.9<img border=0 width=12 height=12
-id="_x0000_i1059" src="../../images/new.gif"> will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 0.7<img border=0
-width=12 height=12 id="_x0000_i1060" src="../../images/new.gif"> as noted in
-the <i>EODM 0.9</i><img border=0 width=12 height=12 id="_x0000_i1061"
-src="../../images/new.gif"><i> Migration</i> Guide. Programs that use affected
-APIs and extension points will need to be ported to EODM 0.9<img border=0
-width=12 height=12 id="_x0000_i1062" src="../../images/new.gif"> APIs. Downward
-contract compatibility is not supported. Compliance with EODM 0.9<img border=0
-width=12 height=12 id="_x0000_i1063" src="../../images/new.gif"> APIs would <b
-style='mso-bidi-font-weight:normal'>not</b> ensure compliance with EODM 0.7<img
-border=0 width=12 height=12 id="_x0000_i1064" src="../../images/new.gif"> APIs.
-Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 0.9<img border=0 width=12
-height=12 id="_x0000_i1065" src="../../images/new.gif"> will <b
-style='mso-bidi-font-weight:normal'>not</b> be upwards binary-compatible with
-EODM 0.7<img border=0 width=12 height=12 id="_x0000_i1066"
-src="../../images/new.gif"> as noted in the <i>EODM 0.9</i><img border=0
-width=12 height=12 id="_x0000_i1067" src="../../images/new.gif"><i> Migration</i>
-Guide. Downward plug-in compatibility is not supported: plug-ins compiled
-against EODM 0.9<img border=0 width=12 height=12 id="_x0000_i1068"
-src="../../images/new.gif"> will be unusable with EODM 0.7<img border=0
-width=12 height=12 id="_x0000_i1069" src="../../images/new.gif">. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 0.7<img
-border=0 width=12 height=12 id="_x0000_i1070" src="../../images/new.gif"> APIs
-will <b style='mso-bidi-font-weight:normal'>not</b> compile and run
-successfully against EODM 0.9<img border=0 width=12 height=12 id="_x0000_i1071"
-src="../../images/new.gif"> APIs. In some cases, it may be necessary to make
-minor changes to the source code to disambiguate things like imports or
-overloaded method invocations. Downward source compatibility is not supported.
-If source files use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 0.9<img border=0 width=12 height=12
-id="_x0000_i1072" src="../../images/new.gif"> will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 0.7<img border=0
-width=12 height=12 id="_x0000_i1073" src="../../images/new.gif"> as noted. This
-means that workspaces and projects created by an Eclipse with EODM 0.7<img
-border=0 width=12 height=12 id="_x0000_i1074" src="../../images/new.gif">
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully opened
-by an Eclipse with EODM 0.9<img border=0 width=12 height=12 id="_x0000_i1075"
-src="../../images/new.gif"> installed. This includes both hidden metadata,
-which is localized to a particular workspace, as well as metadata files found
-within a workspace project, which may propagate between workspaces via file
-copying or team repositories. User interface session state may be discarded
-when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of OCL 1.1 with 1.0</h3>
-
-<p>The OCL 1.1 component of Eclipse MDT will be compatible with OCL 1.0, except
-in those areas noted in the OCL 1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.1 will be upwards
-contract-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to OCL 1.1 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with OCL 1.1 APIs would ensure compliance with OCL 1.0 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.1 will be upwards
-binary-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.1 will likely
-be unusable with OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.0 APIs will
-usually compile and run successfully against OCL 1.1 APIs, although this cannot
-be guaranteed. Because OCL 1.1 may exploit new Java language constructs and/or
-aspects of the OCL specification, there is an increased chance of source
-incompatibilities compared to previous OCL releases. In some cases, it may be
-necessary to make minor changes to the source code to disambiguate things like
-imports or overloaded method invocations. Downward source compatibility is not
-supported. If source files use new APIs, they will not be usable with earlier
-versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.1 will be upwards workspace-compatible
-with OCL 1.0 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.0 installed can be successfully opened by an Eclipse with
-OCL 1.1 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.1 with 2.0</h3>
-
-<p>The UML2 2.1 component of Eclipse MDT will be compatible with UML2 2.0,
-except in those areas noted in the UML2 2.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.1 will be upwards
-contract-compatible with UML2 2.0 except in those areas noted in the <i>UML2
-2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 2.1
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with UML2 2.1 APIs would ensure compliance with UML2 2.0 APIs.
-Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.1 will be upwards
-binary-compatible with UML2 2.0 except in those areas noted in the <i>UML2 2.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 2.1 will likely
-be unusable with UML2 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.0 APIs will
-usually compile and run successfully against UML2 2.1 APIs, although this
-cannot be guaranteed. Because UML2 2.1 may exploit new Java language
-constructs, there is an increased chance of source incompatibilities compared
-to previous UML2 releases. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.1 will be upwards
-workspace-compatible with UML2 2.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 2.0 installed can be successfully
-opened by an Eclipse with UML2 2.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.3 with 2.2</h3>
-
-<p>The XSD 2.3 component of Eclipse MDT will be compatible with XSD 2.2, except
-in those areas noted in the XSD 2.3 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.3 will be upwards
-contract-compatible with XSD 2.2 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.3 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.3 APIs would ensure compliance with XSD 2.2 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.3 will be upwards
-binary-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.3 will likely
-be unusable with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 2.3 APIs, although this cannot
-be guaranteed. Because XSD 2.3 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD releases.
-In some cases, it may be necessary to make minor changes to the source code to
-disambiguate things like imports or overloaded method invocations. Downward
-source compatibility is not supported. If source files use new APIs, they will
-not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.3 will be upwards workspace-compatible
-with XSD 2.2 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.2 installed can be successfully opened by an Eclipse with
-XSD 2.3 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1031" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a new API that is
-compliant with the (to be adopted) 5th submission of the ODM specification to
-the OMG. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"><span
-style='mso-bookmark:UML2'>162682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Appealing to a Broader Community]<span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1032" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Dynamic Typing.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for dynamic typing. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162683</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1033" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Parsing and
-Serialization.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162684</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1034" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Reasoning.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for RDF/OWL reasoning. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162685</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1035" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Transformation
-to/from <span class=SpellE>Ecore</span>.</b></span><span style='mso-bidi-font-weight:
-bold'> Provide a mechanism to transform RDF/OWL models to/from <span
-class=SpellE>Ecore</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162686</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1036" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred Items
-(EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a><a
-name="_OCL__component"></a>OCL component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>OCL is an implementation of the OCL OMG
-standard for EMF-based models. Plan items reflect new features of the OCL
-component, or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1037" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Parsing API.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a public API for parsing OCL
-documents, with the complete context declaration syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1038" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with UML.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for parsing and evaluating
-OCL constraints and expressions on the UML <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1039" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>EMF 2.3 / J2SE 5 Support.</b></span><span
-style='mso-bidi-font-weight:bold'> Adopt EMF 2.3, including regeneration of the
-OCL <span class=SpellE>metamodel</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1040" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Improved Documentation.</b></span><span
-style='mso-bidi-font-weight:bold'> Develop a complete ProgrammerÂ’s Guide for
-the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1041" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>LPG.</b></span><span
-style='mso-bidi-font-weight:bold'> Consume LPG runtime library from the Orbit
-project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1042" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Stand-alone support.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a stand-alone (Eclipse-free) OCL
-build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1043" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>ICU4J.</b><span style='mso-bidi-font-weight:
-bold'> Isolate and minimize dependency on ICU4J; ensure support for the “thin”
-variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]</span><span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1044" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance.</b></span><span
-style='mso-bidi-font-weight:bold'> Maintain currency of the API with the <span
-class=SpellE>OMGÂ’s</span> OCL, ensuring backward API compatibility as much as
-possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>OCL Conformance.</b></span><span
-style='mso-bidi-font-weight:bold'> Validate and document the APIÂ’s conformance
-to the OCL SpecificationÂ’s compliance points. This includes which language
-capabilities are supported and which <span class=SpellE>metamodels</span>
-(EMOF/<span class=SpellE>Ecore</span>, UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2__component"></a>UML2
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 is an EMF-based implementation of the
-UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span> for the Eclipse platform. Plan items
-reflect new features of the UML2 component, or areas where existing features
-will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1045" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.3 / EMF 2.3
-Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.3 (and Eclipse 3.3). Make
-changes as required to align with EMF features and bug fixes, in particular
-support for Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Improved Documentation.</b></span> Improve documentation by
-updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>, and
-publishing new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Ant Task for <span
-class=SpellE>Ecore</span> Importer<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide an Ant task for the UML <span class=SpellE>Ecore</span> importer,
-similar to those provided for the Rose and <span class=SpellE>Ecore</span>
-importers in EMF. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1046" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Static Profile Definition<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a way to specify
-that a profile definition be generated using EMF. This would allow, among other
-things, support for custom data types and derived stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<span style='mso-bidi-font-style:italic'> <img
-border=0 width=12 height=12 id="_x0000_i1047" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XML Primitive Types<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a model library
-to represent the types defined in the <span class=SpellE>XMLType</span> <span
-class=SpellE>metamodel</span> in EMF; be sure to update <span class=SpellE>Ecore</span>/UML
-converters to make use of this new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1048"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Create Child/Sibling Menu Reorganization<span
-style='mso-bidi-font-weight:bold'>.</span></b> Reorganize the ‘Create Child’
-and ‘Create Sibling’ menus of the UML editor so that the items are grouped by
-feature. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1049"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with OCL.</b></span><span
-style='mso-bidi-font-weight:bold'> Integrate support for parsing and evaluating
-OCL constraints and expressions. Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1050" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Unit Tests.</b></span> Complete the implementation of generated
-unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Validation Rules.</b></span> Complete the generation and
-implementation of validation rules from the UML</span><span style='mso-bookmark:
-UML2'><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=SpellE><b style='mso-bidi-font-weight:normal'>BiDi</b></span><b
-style='mso-bidi-font-weight:normal'> Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better support for <span class=SpellE>BiDi</span>
-languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]</span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_Tools_"></a>UML2 Tools
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set of GMF-based editors for
-viewing and editing UML models. Plan items reflect new features of the UML2
-Tools component (<span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1051" src="../../images/ok.gif"> marks completed
-work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Class Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML class
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state
-machine diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161572</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Component Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161573</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Activity Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161574</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Import/Export from/to DI.</b><span
-style='mso-bidi-font-weight:bold'> Provide a mechanism whereby UML diagrams can
-be imported/exported from/to a format based on the Diagram Interchange
-specification. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161575"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161575</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://download.eclipse.org/tools/emf/xsd/javadoc?org/eclipse/xsd/package-summary.html#details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1052" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Java SE 5.0 <span class=GramE>Support</span><span
-style='mso-bidi-font-weight:bold'>.</span></b> Exploit new Java language
-constructs; use generics (e.g. <span class=SpellE>EList</span>, <span
-class=SpellE>EMap</span> and implementations); generate and merge Java 5
-constructs; investigate enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XSD2Ecore Enhancements<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Improve ability to record
-complex content models as <span class=SpellE>Ecore</span> annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_0_20070705.html b/docs/plans/mdt_project_plan_1_0_20070705.html
deleted file mode 100644
index 0a266f1..0000000
--- a/docs/plans/mdt_project_plan_1_0_20070705.html
+++ /dev/null
@@ -1,1466 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - 1.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>122</o:Revision>
-  <o:TotalTime>3695</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2007-07-05T19:00:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>4966</o:Words>
-  <o:Characters>28308</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>235</o:Lines>
-  <o:Paragraphs>66</o:Paragraphs>
-  <o:CharactersWithSpaces>33208</o:CharactersWithSpaces>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:101531163;
-	mso-list-template-ids:-1763819240;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:179976955;
-	mso-list-template-ids:383927346;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:627467202;
-	mso-list-template-ids:-1976956872;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:1413159467;
-	mso-list-template-ids:1050047536;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1936549161;
-	mso-list-template-ids:1595154430;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="23554"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-1.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="0" Hour="15">15:00 EDT</st1:time> <st1:date
-Year="2007" Day="5" Month="7">July 5, 2007</st1:date> (<img width=12 height=12
-id="_x0000_i1025" src="../../images/new.gif" border=0> marks interesting
-changes over the <a href="mdt_project_plan_1_0_20070612.html">previous plan
-revision</a>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_OCL__component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2__component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_Tools_">UML2 Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due
-     consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan
-     items may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R0_9&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org update
-     site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the OCL component, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 component, available
-     as versions tagged &quot;R2_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools component,
-     available as versions tagged &quot;R0_7&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_3&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 16 – Milestone 3 (1.0 M3) – Stable
-     Build based on Eclipse 3.3 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 4 – Milestone 4 (1.0 M4) – Stable
-     Build based on Eclipse 3.3 M4 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1027"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, February 23 – Milestone 5 (1.0 M5) – Stable
-     Build based on Eclipse 3.3 M5 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1028"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, April 6 – Milestone 6 (1.0 M6) – API Freeze –
-     Stable Build based on Eclipse 3.3 M6 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1029"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Friday, May 18 – Milestone 7 (1.0 RC0) – Stable Build
-     based on Eclipse 3.3 RC0 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1030" src="../../images/ok.gif"></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release is targeted for late June 2007. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.0<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.0 release of MDT is designed to run on any configuration supporting the
-above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_3.html">Eclipse
-Project 3.3 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 0.9 with 0.7</h3>
-
-<p>The EODM 0.9 component of Eclipse MDT will <b style='mso-bidi-font-weight:
-normal'>not</b> be compatible with EODM 0.7.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 0.9 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with EODM 0.7 as noted in the <i>EODM
-0.9 Migration</i> Guide. Programs that use affected APIs and extension points
-will need to be ported to EODM 0.9 APIs. Downward contract compatibility is not
-supported. Compliance with EODM 0.9 APIs would <b style='mso-bidi-font-weight:
-normal'>not</b> ensure compliance with EODM 0.7 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 0.9 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with EODM 0.7 as noted in the <i>EODM
-0.9 Migration</i> Guide. Downward plug-in compatibility is not supported:
-plug-ins compiled against EODM 0.9 will be unusable with EODM 0.7. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 0.7 APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against EODM 0.9 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> EODM 0.9 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with EODM 0.7 as noted. This
-means that workspaces and projects created by an Eclipse with EODM 0.7
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with EODM 0.9 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of OCL 1.1 with 1.0</h3>
-
-<p>The OCL 1.1 component of Eclipse MDT will be compatible with OCL 1.0, except
-in those areas noted in the OCL 1.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.1 will be upwards
-contract-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to OCL 1.1 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with OCL 1.1 APIs would ensure compliance with OCL 1.0 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.1 will be upwards
-binary-compatible with OCL 1.0 except in those areas noted in the <i>OCL 1.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.1 will likely
-be unusable with OCL 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.0 APIs will
-usually compile and run successfully against OCL 1.1 APIs, although this cannot
-be guaranteed. Because OCL 1.1 may exploit new Java language constructs and/or
-aspects of the OCL specification, there is an increased chance of source
-incompatibilities compared to previous OCL releases. In some cases, it may be
-necessary to make minor changes to the source code to disambiguate things like
-imports or overloaded method invocations. Downward source compatibility is not
-supported. If source files use new APIs, they will not be usable with earlier
-versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.1 will be upwards workspace-compatible
-with OCL 1.0 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.0 installed can be successfully opened by an Eclipse with
-OCL 1.1 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.1 with 2.0</h3>
-
-<p>The UML2 2.1 component of Eclipse MDT will be compatible with UML2 2.0,
-except in those areas noted in the UML2 2.1 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.1 will be upwards
-contract-compatible with UML2 2.0 except in those areas noted in the <i>UML2
-2.1 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 2.1
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with UML2 2.1 APIs would ensure compliance with UML2 2.0 APIs.
-Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.1 will be upwards
-binary-compatible with UML2 2.0 except in those areas noted in the <i>UML2 2.1
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 2.1 will likely
-be unusable with UML2 2.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.0 APIs will
-usually compile and run successfully against UML2 2.1 APIs, although this
-cannot be guaranteed. Because UML2 2.1 may exploit new Java language constructs,
-there is an increased chance of source incompatibilities compared to previous
-UML2 releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.1 will be upwards
-workspace-compatible with UML2 2.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 2.0 installed can be successfully
-opened by an Eclipse with UML2 2.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.3 with 2.2</h3>
-
-<p>The XSD 2.3 component of Eclipse MDT will be compatible with XSD 2.2, except
-in those areas noted in the XSD 2.3 Migration Guide.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.3 will be upwards
-contract-compatible with XSD 2.2 except in those areas noted in the <i>XSD 2.3
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.3 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.3 APIs would ensure compliance with XSD 2.2 APIs. Refer
-to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.3 will be upwards binary-compatible
-with XSD 2.3 except in those areas noted in the <i>XSD 2.3 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in compatibility
-is not supported: plug-ins compiled against XSD 2.3 will likely be unusable
-with XSD 2.2. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.2 APIs will
-usually compile and run successfully against XSD 2.3 APIs, although this cannot
-be guaranteed. Because XSD 2.3 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.3 will be upwards workspace-compatible
-with XSD 2.2 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.2 installed can be successfully opened by an Eclipse with
-XSD 2.3 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v2_0/themes_v2_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1031" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a new API that is
-compliant with the (to be adopted) 5th submission of the ODM specification to
-the OMG. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"><span
-style='mso-bookmark:UML2'>162682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Appealing to a Broader Community]<span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1032" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Dynamic Typing.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for dynamic typing. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162683</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1033" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Parsing and
-Serialization.</b></span><span style='mso-bidi-font-weight:bold'> Provide
-support for RDF/OWL parsing and serialization. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162684</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1034" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Reasoning.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for RDF/OWL reasoning. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162685</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Appealing to a Broader
-Community<span style='mso-bidi-font-weight:bold'>]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1035" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>RDF/OWL Transformation
-to/from <span class=SpellE>Ecore</span>.</b></span><span style='mso-bidi-font-weight:
-bold'> Provide a mechanism to transform RDF/OWL models to/from <span
-class=SpellE>Ecore</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>162686</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1036" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a><a
-name="_OCL__component"></a>OCL component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>OCL is an implementation of the OCL OMG
-standard for EMF-based models. Plan items reflect new features of the OCL
-component, or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1037" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Parsing API.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a public API for parsing OCL
-documents, with the complete context declaration syntax. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>144210</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1038" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with UML.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide support for parsing and evaluating
-OCL constraints and expressions on the UML <span class=SpellE>metamodel</span>.
-(</span></span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1039" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>EMF 2.3 / J2SE 5 Support.</b></span><span
-style='mso-bidi-font-weight:bold'> Adopt EMF 2.3, including regeneration of the
-OCL <span class=SpellE>metamodel</span>. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156361</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1040" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Improved Documentation.</b></span><span
-style='mso-bidi-font-weight:bold'> Develop a complete ProgrammerÂ’s Guide for
-the OCL subcomponent. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156360</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Simple to Use] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1041" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>LPG.</b></span><span
-style='mso-bidi-font-weight:bold'> Consume LPG runtime library from the Orbit
-project. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156366</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Project Restructuring] </span><span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1042" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Stand-alone support.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a stand-alone (Eclipse-free) OCL
-build. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>136817</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1043" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>ICU4J.</b><span style='mso-bidi-font-weight:
-bold'> Isolate and minimize dependency on ICU4J; ensure support for the “thin”
-variant of ICU4J. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156364</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Enable Consistent Multi-language
-Support]</span><span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1044" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Standard Compliance.</b></span><span
-style='mso-bidi-font-weight:bold'> Maintain currency of the API with the <span
-class=SpellE>OMGÂ’s</span> OCL, ensuring backward API compatibility as much as
-possible. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156363"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>156363</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>OCL Conformance.</b></span><span
-style='mso-bidi-font-weight:bold'> Validate and document the APIÂ’s conformance
-to the OCL SpecificationÂ’s compliance points. This includes which language
-capabilities are supported and which <span class=SpellE>metamodels</span>
-(EMOF/<span class=SpellE>Ecore</span>, UML) are supported. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152003"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>152003</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: </span>Design for Extensibility –
-Be a Better Platform<span style='mso-bidi-font-weight:bold'>]<o:p></o:p></span></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2__component"></a>UML2
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 is an EMF-based implementation of the
-UML</span><span style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span> for the Eclipse platform. Plan items
-reflect new features of the UML2 component, or areas where existing features
-will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1045" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1054" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Eclipse 3.3 / EMF 2.3 Compatibility<span style='mso-bidi-font-weight:
-bold'>.</span></b></span> Maintain release currency concurrent with EMF 2.3
-(and Eclipse 3.3). Make changes as required to align with EMF features and bug
-fixes, in particular support for Java SE 5.0. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"><span
-style='mso-bookmark:UML2'>160679</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1053"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Improved Documentation.</b></span> Improve documentation by
-updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>, and
-publishing new articles. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"><span
-style='mso-bookmark:UML2'>77413</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]</span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Ant Task for <span
-class=SpellE>Ecore</span> Importer<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide an Ant task for the UML <span class=SpellE>Ecore</span> importer,
-similar to those provided for the Rose and <span class=SpellE>Ecore</span>
-importers in EMF. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"><span
-style='mso-bookmark:UML2'>160680</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1046" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Static Profile Definition<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a way to specify
-that a profile definition be generated using EMF. This would allow, among other
-things, support for custom data types and derived stereotype properties. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"><span
-style='mso-bookmark:UML2'>155535</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<span style='mso-bidi-font-style:italic'> <img
-border=0 width=12 height=12 id="_x0000_i1047" src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XML Primitive Types<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Provide a model library
-to represent the types defined in the <span class=SpellE>XMLType</span> <span
-class=SpellE>metamodel</span> in EMF; be sure to update <span class=SpellE>Ecore</span>/UML
-converters to make use of this new library. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"><span
-style='mso-bookmark:UML2'>150154</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Cohesion]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1048"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Create Child/Sibling Menu Reorganization<span
-style='mso-bidi-font-weight:bold'>.</span></b> Reorganize the ‘Create Child’
-and ‘Create Sibling’ menus of the UML editor so that the items are grouped by
-feature. (</span><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"><span
-style='mso-bookmark:UML2'>160684</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Simple to Use]<span style='mso-bidi-font-style:
-italic'> <img border=0 width=12 height=12 id="_x0000_i1049"
-src="../../images/ok.gif"></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Integration with OCL.</b></span><span
-style='mso-bidi-font-weight:bold'> Integrate support for parsing and evaluating
-OCL constraints and expressions. Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>105199</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Cohesion]</span><span
-style='mso-bidi-font-style:italic'> <img border=0 width=12 height=12
-id="_x0000_i1050" src="../../images/ok.gif"></span><span style='mso-bidi-font-weight:
-bold'><o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Unit Tests.</b></span> Complete the implementation of generated
-unit tests. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"><span
-style='mso-bookmark:UML2'>80308</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: Design for Extensibility – Be a Better
-Platform]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b>Validation Rules.</b></span> Complete the generation and
-implementation of validation rules from the UML</span><span style='mso-bookmark:
-UML2'><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"><span
-style='mso-bookmark:UML2'>80307</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<b style='mso-bidi-font-weight:normal'><o:p></o:p></b></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=SpellE><b style='mso-bidi-font-weight:normal'>BiDi</b></span><b
-style='mso-bidi-font-weight:normal'> Support<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better support for <span class=SpellE>BiDi</span>
-languages. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"><span
-style='mso-bookmark:UML2'>160682</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Enable
-Consistent Multi-language Support</span>]</span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_Tools_"></a>UML2 Tools
-component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set of GMF-based editors for
-viewing and editing UML models. Plan items reflect new features of the UML2
-Tools component (<span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1051" src="../../images/ok.gif"> marks completed
-work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Class Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML class
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>80318</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>State Machine Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML state
-machine diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161572</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Component Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML component
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161573</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>Activity Diagrams.</b></span><span
-style='mso-bidi-font-weight:bold'> Provide a GMF-based editor for UML activity
-diagrams. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161574</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><b
-style='mso-bidi-font-weight:normal'>Import/Export from/to DI.</b><span
-style='mso-bidi-font-weight:bold'> Provide a mechanism whereby UML diagrams can
-be imported/exported from/to a format based on the Diagram Interchange
-specification. (</span></span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161575"><span
-style='mso-bookmark:UML2'><span style='mso-bidi-font-weight:bold'>161575</span></span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'><span
-style='mso-bidi-font-weight:bold'>) [Theme: Appealing to a Broader Community]<o:p></o:p></span></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_XSD_component"></a>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://download.eclipse.org/tools/emf/xsd/javadoc?org/eclipse/xsd/package-summary.html#details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as described
-by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1052" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><img border=0
-width=12 height=12 id="_x0000_i1055" src="../../images/new.gif"><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>Java SE
-5.0 <span class=GramE>Support</span><span style='mso-bidi-font-weight:bold'>.</span></b>
-Exploit new Java language constructs; use generics (e.g. <span class=SpellE>EList</span>,
-<span class=SpellE>EMap</span> and implementations); generate and merge Java 5
-constructs; investigate enumerations and annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"><span
-style='mso-bookmark:UML2'>79768</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Appealing
-to a Broader Community</span>]<span style='mso-bidi-font-style:italic'> <img
-border=0 width=12 height=12 id="_x0000_i1056" src="../../images/ok.gif"></span></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed Items
-(XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><b style='mso-bidi-font-weight:normal'>XSD2Ecore Enhancements<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Improve ability to record
-complex content models as <span class=SpellE>Ecore</span> annotations. (</span><a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"><span
-style='mso-bookmark:UML2'>152373</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'>) [Theme: <span style='mso-bidi-font-weight:bold'>Cohesion</span>]</span></p>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_1.html b/docs/plans/mdt_project_plan_1_1.html
deleted file mode 100644
index b50997f..0000000
--- a/docs/plans/mdt_project_plan_1_1.html
+++ /dev/null
@@ -1,1570 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:x="urn:schemas-microsoft-com:office:excel"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:a="urn:schemas-microsoft-com:office:access"
-xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
-xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882"
-xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema"
-xmlns:b="urn:schemas-microsoft-com:office:publisher"
-xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
-xmlns:c="urn:schemas-microsoft-com:office:component:spreadsheet"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns:html="http://www.w3.org/TR/REC-html40"
-xmlns:q="http://schemas.xmlsoap.org/soap/envelope/" xmlns:D="DAV:"
-xmlns:x2="http://schemas.microsoft.com/office/excel/2003/xml"
-xmlns:ois="http://schemas.microsoft.com/sharepoint/soap/ois/"
-xmlns:dir="http://schemas.microsoft.com/sharepoint/soap/directory/"
-xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
-xmlns:dsp="http://schemas.microsoft.com/sharepoint/dsp"
-xmlns:udc="http://schemas.microsoft.com/data/udc"
-xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-xmlns:sps="http://schemas.microsoft.com/sharepoint/soap/"
-xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-xmlns:udcxf="http://schemas.microsoft.com/data/udc/xmlfile"
-xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 12">
-<meta name=Originator content="Microsoft Word 12">
-<link rel=File-List href="mdt_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - Ganymede Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>150</o:Revision>
-  <o:TotalTime>4136</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2008-05-19T14:00:00Z</o:LastSaved>
-  <o:Pages>4</o:Pages>
-  <o:Words>4646</o:Words>
-  <o:Characters>26484</o:Characters>
-  <o:Company>IBM</o:Company>
-  <o:Lines>220</o:Lines>
-  <o:Paragraphs>62</o:Paragraphs>
-  <o:CharactersWithSpaces>31068</o:CharactersWithSpaces>
-  <o:Version>12.00</o:Version>
- </o:DocumentProperties>
-</xml><![endif]-->
-<link rel=themeData href="mdt_project_plan_1_1_files/themedata.thmx">
-<link rel=colorSchemeMapping
-href="mdt_project_plan_1_1_files/colorschememapping.xml">
-<!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:TrackMoves>false</w:TrackMoves>
-  <w:TrackFormatting/>
-  <w:ValidateAgainstSchemas/>
-  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
-  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
-  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
-  <w:DoNotPromoteQF/>
-  <w:LidThemeOther>EN-US</w:LidThemeOther>
-  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
-  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
-  <w:Compatibility>
-   <w:BreakWrappedTables/>
-   <w:SnapToGridInCell/>
-   <w:ApplyBreakingRules/>
-   <w:WrapTextWithPunct/>
-   <w:UseAsianBreakRules/>
-   <w:DontGrowAutofit/>
-   <w:SplitPgBreakAndParaMark/>
-   <w:DontVertAlignCellWithSp/>
-   <w:DontBreakConstrainedForcedTables/>
-   <w:DontVertAlignInTxbx/>
-   <w:Word11KerningPairs/>
-   <w:CachedColBalance/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
-  <m:mathPr>
-   <m:mathFont m:val="Cambria Math"/>
-   <m:brkBin m:val="before"/>
-   <m:brkBinSub m:val="&#45;-"/>
-   <m:smallFrac m:val="off"/>
-   <m:dispDef/>
-   <m:lMargin m:val="0"/>
-   <m:rMargin m:val="0"/>
-   <m:defJc m:val="centerGroup"/>
-   <m:wrapIndent m:val="1440"/>
-   <m:intLim m:val="subSup"/>
-   <m:naryLim m:val="undOvr"/>
-  </m:mathPr></w:WordDocument>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false"
-  DefSemiHidden="false" DefQFormat="false" LatentStyleCount="267">
-  <w:LsdException Locked="false" QFormat="true" Name="Normal"/>
-  <w:LsdException Locked="false" QFormat="true" Name="heading 1"/>
-  <w:LsdException Locked="false" QFormat="true" Name="heading 2"/>
-  <w:LsdException Locked="false" QFormat="true" Name="heading 3"/>
-  <w:LsdException Locked="false" QFormat="true" Name="heading 4"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 5"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 6"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 7"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 8"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 9"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="caption"/>
-  <w:LsdException Locked="false" QFormat="true" Name="Title"/>
-  <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
-  <w:LsdException Locked="false" QFormat="true" Name="Subtitle"/>
-  <w:LsdException Locked="false" QFormat="true" Name="Strong"/>
-  <w:LsdException Locked="false" QFormat="true" Name="Emphasis"/>
-  <w:LsdException Locked="false" Priority="99" Name="No List"/>
-  <w:LsdException Locked="false" Priority="99" SemiHidden="true"
-   Name="Placeholder Text"/>
-  <w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"/>
-  <w:LsdException Locked="false" Priority="99" SemiHidden="true" Name="Revision"/>
-  <w:LsdException Locked="false" Priority="34" QFormat="true"
-   Name="List Paragraph"/>
-  <w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"/>
-  <w:LsdException Locked="false" Priority="30" QFormat="true"
-   Name="Intense Quote"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"/>
-  <w:LsdException Locked="false" Priority="19" QFormat="true"
-   Name="Subtle Emphasis"/>
-  <w:LsdException Locked="false" Priority="21" QFormat="true"
-   Name="Intense Emphasis"/>
-  <w:LsdException Locked="false" Priority="31" QFormat="true"
-   Name="Subtle Reference"/>
-  <w:LsdException Locked="false" Priority="32" QFormat="true"
-   Name="Intense Reference"/>
-  <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"/>
-  <w:LsdException Locked="false" Priority="37" SemiHidden="true"
-   UnhideWhenUsed="true" Name="Bibliography"/>
-  <w:LsdException Locked="false" Priority="39" SemiHidden="true"
-   UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"/>
- </w:LatentStyles>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:"Cambria Math";
-	panose-1:2 4 5 3 5 4 6 3 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:roman;
-	mso-font-pitch:variable;
-	mso-font-signature:-1610611985 1107304683 0 0 159 0;}
-@font-face
-	{font-family:Tahoma;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:1627400839 -2147483648 8 0 66047 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:Consolas;
-	panose-1:2 11 6 9 2 2 4 3 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610611985 1073750091 0 0 159 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman","serif";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-link:"Heading 1 Char";
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-link:"Heading 2 Char";
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-link:"Heading 3 Char";
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-link:"Heading 4 Char";
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman","serif";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{mso-style-unhide:no;
-	color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{mso-style-unhide:no;
-	color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-style-unhide:no;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-style-unhide:no;
-	mso-fareast-font-family:"Times New Roman";}
-pre
-	{mso-style-unhide:no;
-	mso-style-link:"HTML Preformatted Char";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
-	{mso-style-unhide:no;
-	mso-style-link:"Balloon Text Char";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:8.0pt;
-	font-family:"Tahoma","sans-serif";
-	mso-fareast-font-family:"Times New Roman";}
-span.Heading1Char
-	{mso-style-name:"Heading 1 Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Heading 1";
-	mso-ansi-font-size:14.0pt;
-	mso-bidi-font-size:14.0pt;
-	font-family:"Cambria","serif";
-	mso-ascii-font-family:Cambria;
-	mso-ascii-theme-font:major-latin;
-	mso-fareast-font-family:"Times New Roman";
-	mso-fareast-theme-font:major-fareast;
-	mso-hansi-font-family:Cambria;
-	mso-hansi-theme-font:major-latin;
-	mso-bidi-font-family:"Times New Roman";
-	mso-bidi-theme-font:major-bidi;
-	color:#365F91;
-	mso-themecolor:accent1;
-	mso-themeshade:191;
-	font-weight:bold;}
-span.Heading2Char
-	{mso-style-name:"Heading 2 Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Heading 2";
-	mso-ansi-font-size:13.0pt;
-	mso-bidi-font-size:13.0pt;
-	font-family:"Cambria","serif";
-	mso-ascii-font-family:Cambria;
-	mso-ascii-theme-font:major-latin;
-	mso-fareast-font-family:"Times New Roman";
-	mso-fareast-theme-font:major-fareast;
-	mso-hansi-font-family:Cambria;
-	mso-hansi-theme-font:major-latin;
-	mso-bidi-font-family:"Times New Roman";
-	mso-bidi-theme-font:major-bidi;
-	color:#4F81BD;
-	mso-themecolor:accent1;
-	font-weight:bold;}
-span.Heading3Char
-	{mso-style-name:"Heading 3 Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Heading 3";
-	mso-ansi-font-size:12.0pt;
-	mso-bidi-font-size:12.0pt;
-	font-family:"Cambria","serif";
-	mso-ascii-font-family:Cambria;
-	mso-ascii-theme-font:major-latin;
-	mso-fareast-font-family:"Times New Roman";
-	mso-fareast-theme-font:major-fareast;
-	mso-hansi-font-family:Cambria;
-	mso-hansi-theme-font:major-latin;
-	mso-bidi-font-family:"Times New Roman";
-	mso-bidi-theme-font:major-bidi;
-	color:#4F81BD;
-	mso-themecolor:accent1;
-	font-weight:bold;}
-span.Heading4Char
-	{mso-style-name:"Heading 4 Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Heading 4";
-	mso-ansi-font-size:12.0pt;
-	mso-bidi-font-size:12.0pt;
-	font-family:"Cambria","serif";
-	mso-ascii-font-family:Cambria;
-	mso-ascii-theme-font:major-latin;
-	mso-fareast-font-family:"Times New Roman";
-	mso-fareast-theme-font:major-fareast;
-	mso-hansi-font-family:Cambria;
-	mso-hansi-theme-font:major-latin;
-	mso-bidi-font-family:"Times New Roman";
-	mso-bidi-theme-font:major-bidi;
-	color:#4F81BD;
-	mso-themecolor:accent1;
-	font-weight:bold;
-	font-style:italic;}
-span.HTMLPreformattedChar
-	{mso-style-name:"HTML Preformatted Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"HTML Preformatted";
-	font-family:Consolas;
-	mso-ascii-font-family:Consolas;
-	mso-hansi-font-family:Consolas;}
-span.BalloonTextChar
-	{mso-style-name:"Balloon Text Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Balloon Text";
-	mso-ansi-font-size:8.0pt;
-	mso-bidi-font-size:8.0pt;
-	font-family:"Tahoma","sans-serif";
-	mso-ascii-font-family:Tahoma;
-	mso-hansi-font-family:Tahoma;
-	mso-bidi-font-family:Tahoma;}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-style-unhide:no;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-style-unhide:no;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-style-unhide:no;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;
-	mso-style-unhide:no;}
-.MsoChpDefault
-	{mso-style-type:export-only;
-	mso-default-props:yes;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-priority:99;
-	mso-style-qformat:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman","serif";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="36866"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-Ganymede Plan</h1>
-
-<p>Last revised 10:00 EDT May 19, 2008 (<span style='mso-no-proof:yes'><img
-width=12 height=12 id="_x0000_i1056" src="../../images/new.gif"></span> marks
-interesting changes over the <i style='mso-bidi-font-style:normal'><a
-href="mdt_project_plan_1_1_20080501.html">previous plan revision</a></i>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated the Ganymede release. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_Release_deliverables">Release
-     deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_Release_milestones">Release
-     milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_Target_Operating_Environments">Target
-     operating environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_Compatibility_with_Previous">Compatibility
-     with previous releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_OCL_component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_UML2_component">UML2
-     component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_UML2_Tools_component">UML2
-     Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse bugzilla database, with a title and a concise summary (usually a
-single paragraph) that explains the work item at a suitably high enough level
-so that everyone can readily understand what the work item is without having to
-understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'> plan item – A
-     committed plan item is one that we have decided to address for the
-     release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'> plan item – A
-     proposed plan item is one that we are considering addressing for the
-     release. Although we are actively investigating it, we are not yet in a
-     position to commit to it, or to say that we wonÂ’t be able to address it.
-     After due consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'> plan item – A
-     reasonable proposal that will not make it into this release for some
-     reason is marked as deferred with a brief note as to why it was deferred.
-     Deferred plan items may resurface as committed plan items at a later
-     point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name="_Release_deliverables"></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for the OCL
-     component, available as versions tagged &quot;R1_2&quot; in the
-     eclipse.org <a href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>OCL runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for the UML2
-     component, available as versions tagged &quot;R2_2&quot; in the
-     eclipse.org <a href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>UML2 runtime binary and SDK
-     distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>UML2 runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for the UML2 Tools
-     component, available as versions tagged &quot;R0_8&quot; in the
-     eclipse.org <a href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>UML2 Tools runtime binary and SDK
-     distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>UML2 Tools runtime binary and SDK
-     features on eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for XSD component,
-     available as versions tagged &quot;R2_4&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>XSD runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name="_Release_milestones"></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, October 3 – Milestone 2
-     (Ganymede M2) – Stable Build based on Eclipse 3.4 M2</span><span
-     style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1055"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     "Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, November 14 – Milestone 3
-     (Ganymede M3) – Stable Build based on Eclipse 3.4 M3</span><span
-     style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1054"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     "Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, January 9 – Milestone 4
-     (Ganymede M4) – Stable Build based on Eclipse 3.4 M4</span><span
-     style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1053"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     "Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, February 20 – Milestone 5
-     (Ganymede M5) – Stable Build based on Eclipse 3.4 M5</span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif";mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1052"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     "Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, April 9 – Milestone 6
-     (Ganymede M6) – API Freeze – Stable Build based on Eclipse 3.4 M6</span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif";mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1051"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     "Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif";mso-no-proof:yes'><img border=0 width=12
-     height=12 id="_x0000_i1050" src="../../images/new.gif"></span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Wednesday, May 7
-     – Milestone 7 (Ganymede M7) – Stable Build based on Eclipse 3.4 M7</span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif";mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1049"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     "Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, May 21 – Release Candidate 1
-     (Ganymede RC1) – Stable Build based on Eclipse 3.4 RC1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, May 28 – Release Candidate 2
-     (Ganymede RC2) – Stable Build based on Eclipse 3.4 RC2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, June 4 – Release Candidate 3
-     (Ganymede RC3) – Stable Build based on Eclipse 3.4 RC3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, June 11 – Release Candidate 4
-     (Ganymede RC4) – Stable Build based on Eclipse 3.4 RC4<o:p></o:p></span></li>
-</ul>
-
-<p>The Ganymede release is targeted for late June 2008. All release
-deliverables will be available for download as soon as the release has been
-tested and validated in the target operating configurations listed below.</p>
-
-<h2><a name="_Target_Operating_Environments"></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup><span style='font-size:9.5pt'>TM</span></sup>
-code and has no direct dependence on the underlying operating system. The chief
-dependence is on the Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT Ganymede release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo4;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo4;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Eclipse Platform 3.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo4;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>EMF 2.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo4;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>GMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The Ganymede release of MDT is designed to run on any configuration
-supporting the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-"Arial","sans-serif"'>reference platforms</span></em><span class=header>.
-Eclipse undoubtedly runs fine in many operating environments beyond the
-reference platforms we test. However, since we do not systematically test them
-we cannot vouch for them. Problems encountered when running Eclipse on
-non-reference platform that cannot be recreated on any reference platform will
-be given lower priority than problems with running Eclipse on a reference
-platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <i style='mso-bidi-font-style:
-normal'><a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_4.html">Eclipse
-Project 3.4 plan</a></i> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name="_Compatibility_with_Previous"></a>Compatibility with Previous
-Releases</h2>
-
-<h3>Compatibility of OCL 1.2 with 1.1</h3>
-
-<p>The OCL 1.2 component of Eclipse MDT will be compatible with OCL 1.1, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>OCL 1.2
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.2 will be upwards
-contract-compatible with OCL 1.1 except in those areas noted in the <i>OCL 1.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to OCL 1.2 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with OCL 1.2 APIs would ensure compliance with OCL 1.1 APIs. Refer
-to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.2 will be upwards
-binary-compatible with OCL 1.1 except in those areas noted in the <i>OCL 1.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.2 will likely
-be unusable with OCL 1.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.1 APIs will
-usually compile and run successfully against OCL 1.2 APIs, although this cannot
-be guaranteed. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.2 will be upwards workspace-compatible
-with OCL 1.1 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.1 installed can be successfully opened by an Eclipse with
-OCL 1.2 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.2 with 2.1</h3>
-
-<p>The UML2 2.2 component of Eclipse MDT will be compatible with UML2 2.1,
-except in those areas noted in the <i style='mso-bidi-font-style:normal'>UML2
-2.2 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.2 will be upwards
-contract-compatible with UML2 2.1 except in those areas noted in the <i>UML2
-2.2 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 2.2
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with UML2 2.2 APIs would ensure compliance with UML2 2.1 APIs.
-Refer to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.2 will be upwards
-binary-compatible with UML2 2.1 except in those areas noted in the <i>UML2 2.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 2.2 will likely
-be unusable with UML2 2.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.1 APIs will
-usually compile and run successfully against UML2 2.2 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.2 will be upwards
-workspace-compatible with UML2 2.1 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 2.1 installed can be successfully
-opened by an Eclipse with UML2 2.2 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and certainly
-everything in a package with &quot;internal&quot; in its name, are considered
-implementation details which may vary between operating environment and are
-subject to change without notice. Client plug-ins that directly depend on
-anything other than what is specified in the API are inherently unsupportable
-and receive no guarantees about compatibility within a single release much less
-with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 Tools 0.8 with 0.7</h3>
-
-<p>The UML2 Tools 0.8 component of Eclipse MDT will be compatible with UML2
-Tools 0.7, except in those areas noted in the <i style='mso-bidi-font-style:
-normal'>UML2 Tools 0.8 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 Tools 0.8 will be upwards
-contract-compatible with UML2 Tools 0.7 except in those areas noted in the <i>UML2
-Tools 0.8 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 Tools 0.8 APIs. Downward contract compatibility is not supported. There is
-no guarantee that compliance with UML2 Tools 0.8 APIs would ensure compliance
-with UML2 Tools 0.7 APIs. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 Tools 0.8 will be upwards
-binary-compatible with UML2 Tools 0.7 except in those areas noted in the <i>UML2
-Tools 0.8 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-Tools 0.8 will likely be unusable with UML2 Tools 0.7. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 Tools 0.7 APIs
-will usually compile and run successfully against UML2 Tools 0.8 APIs, although
-this cannot be guaranteed. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 Tools 0.8 will be upwards
-workspace-compatible with UML2 Tools 0.7 unless noted. This means that workspaces
-and projects created by an Eclipse with UML2 Tools 0.7 installed can be
-successfully opened by an Eclipse with UML2 Tools 0.8 installed. This includes
-both hidden metadata, which is localized to a particular workspace, as well as
-metadata files found within a workspace project, which may propagate between
-workspaces via file copying or team repositories. User interface session state
-may be discarded when a workspace is upgraded. Downward workspace compatibility
-is not supported. Metadata files created (or overwritten) by the newer version
-will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.4 with 2.3</h3>
-
-<p>The XSD 2.4 component of Eclipse MDT will be compatible with XSD 2.3, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>XSD 2.4
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.4 will be upwards
-contract-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.4
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.4 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.4 APIs would ensure compliance with XSD 2.3 APIs. Refer
-to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.4 will be upwards
-binary-compatible with XSD 2.4 except in those areas noted in the <i>XSD 2.4
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.4 will likely
-be unusable with XSD 2.3. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.3 APIs will
-usually compile and run successfully against XSD 2.4 APIs, although this cannot
-be guaranteed. Because XSD 2.4 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.4 will be upwards workspace-compatible
-with XSD 2.3 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.3 installed can be successfully opened by an Eclipse with
-XSD 2.4 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name="_EODM_component"></a><a name="_OCL_component"></a>OCL component</h2>
-
-<p>OCL is an implementation of the OCL OMG standard for EMF-based models. Plan
-items reflect new features of the OCL component, or areas where existing
-features will be significantly reworked (<span style='mso-no-proof:yes'><img
-border=0 width=12 height=12 id="_x0000_i1048" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-style:italic'> marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (OCL
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Extending
-the OCL grammar for QVT.</b> Grammar/parser refactorings for improved
-extensibility, especially targeting QVT implementations. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1047"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Navigation
-of unnamed association ends<span style='mso-bidi-font-weight:bold'>.</span></b>
-Navigation of unnamed association ends (for UML models) (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=194245">194245</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1046"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Customising
-error handling<span style='mso-bidi-font-weight:bold'>.</span></b> Redesign of
-parse error detection for better error reporting. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>) [Theme:
-Improved Usability]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1045"
-src="../../images/ok.gif"></span></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (OCL
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (OCL
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h2><a name="_OCL_Tools_component"></a><a name="_UML2_component"></a>UML2
-component</h2>
-
-<p>UML2 is an EMF-based implementation of the <a href="http://www.omg.org/uml">UML<sup><span
-style='font-size:9.5pt'>TM</span></sup> 2.x metamodel</a> for the Eclipse
-platform. Plan items reflect new features of the UML2 component, or areas where
-existing features will be significantly reworked (<span style='mso-no-proof:
-yes'><img border=0 width=12 height=12 id="_x0000_i1044"
-src="../../images/ok.gif"></span><span style='mso-bidi-font-style:italic'>
-marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (UML2
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Profile
-Support for Ecore Annotations<span style='mso-bidi-font-weight:bold'>.</span></b>
-Because there is no general GUI support for specifying EAnnotations (since they
-aren't a standard part of UML) users currently cannot specify the EAnnotations
-they'd like to see in the final Ecore, so it would be very useful if as part of
-the Ecore profile, they'd be able to create EAnnotations. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=184249">184249</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1043"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Support
-for (de)serialization to/from CMOF<span style='mso-bidi-font-weight:bold'>.</span></b>
-Provide a resource implementation that supports loading/saving UML models in
-CMOF format in much the same way that EMF supports loading/saving Ecore models
-in EMOF format. Such support should be integrated into the sample UML editor
-and importer framework (to allow creating of EMF projects from CMOF
-models).better diagnostics for unresolved directives. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199624">199624</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1042"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1026"
-src="../../images/new.gif"></span></b><b style='mso-bidi-font-weight:normal'>Eclipse
-3.4 / EMF 2.4 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b>
-Maintain release currency concurrent with EMF 2.4 (and Eclipse 3.4). Make
-changes as required to align with EMF features and bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204200">204200</a>) [Theme:
-Upgrade Path]<span style='mso-no-proof:yes'> </span><span style='mso-no-proof:
-yes'><img border=0 width=12 height=12 id="_x0000_i1041"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>UML 2.1.2
-Compliance<span style='mso-bidi-font-weight:bold'>.</span></b> Provide support
-for interchange (XMI) compliance with UML 2.1.2. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204202">204202</a>) [Theme:
-Technology Trends]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1040"
-src="../../images/ok.gif"></span></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (UML2
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (UML2
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1025"
-src="../../images/new.gif"></span></b><b style='mso-bidi-font-weight:normal'>Enhanced
-Documentation.</b> Provide enhanced user documentation, tutorials, white
-papers, demonstrations etc.. In particular, provide a programmerÂ’s guide integrated
-with the help system in Eclipse, improve the Javadoc by generating constraint
-information (redefines, subsets, union, etc.) into feature and operation
-headers, and update the documentation for the UML generator task. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204201">204201</a>) [Theme:
-Ease of Use]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>BiDi
-Support<span style='mso-bidi-font-weight:bold'>.</span></b> Provide better
-support for BiDi languages. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682">160682</a>) [Theme:
-<span style='mso-bidi-font-weight:bold'>Internationalization &amp; Localization</span>]</p>
-
-<h2><a name="_UML2_Tools_component"></a>UML2 Tools component</h2>
-
-<p>UML2 Tools is set of GMF-based editors for viewing and editing UML models. Plan
-items reflect new features of the UML2 Tools component (<span style='mso-no-proof:
-yes'><img border=0 width=12 height=12 id="_x0000_i1039"
-src="../../images/ok.gif"></span><span style='mso-bidi-font-style:italic'>
-marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (UML2 Tools
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1027"
-src="../../images/new.gif"></span></b><b style='mso-bidi-font-weight:normal'>Composite
-Structure Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide
-a GMF-based editor for UML composite structure diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199723">199723</a>) [Theme:
-End-to-End MDSD]<span style='mso-no-proof:yes'> </span><span style='mso-no-proof:
-yes'><img border=0 width=12 height=12 id="_x0000_i1038"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Deployment
-Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide a
-GMF-based editor for UML deployment diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199724">199724</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1037"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Use Case
-Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide a
-GMF-based editor for UML use case diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199725">199725</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1036"
-src="../../images/ok.gif"></span></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (UML2 Tools
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (UML2 Tools
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1028"
-src="../../images/new.gif"></span></b><b style='mso-bidi-font-weight:normal'>Object
-Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide a
-GMF-based editor for UML object diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199726">199726</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1029"
-src="../../images/new.gif"></span></b><b style='mso-bidi-font-weight:normal'>Structure
-Diagram Synchronization<span style='mso-bidi-font-weight:bold'>.</span></b> For
-structure diagrams it makes sense to provide customizable level of
-synchronization between semantic and notational models; in particular, instead
-of auto-synchronized class diagrams (which always show the complete contents of
-the semantic model), different levels of synchronization should be also
-supported. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199731">199731</a>)
-[Theme: Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1030"
-src="../../images/new.gif"></span></b><b style='mso-bidi-font-weight:normal'>Diagram
-Relations<span style='mso-bidi-font-weight:bold'>.</span></b> With extended set
-of 8 diagram types (4 implemented in 0.7 and 4 planned for the next release) it
-is essential to provide collaboration of the different diagram types in showing
-the different set of aspects for the single semantic model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199735">199735</a>) [Theme:
-Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1031"
-src="../../images/new.gif"></span></b><b style='mso-bidi-font-weight:normal'>Basic
-OCL Integration<span style='mso-bidi-font-weight:bold'>.</span></b> Integrate
-the features provided by OCL component with UML2Tools diagrams, allowing to
-write/validate/etc OCL expressions in terms of given semantic model, shown in
-the diagram. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199737">199737</a>)
-[Theme: End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1032"
-src="../../images/new.gif"></span></b><b style='mso-bidi-font-weight:normal'>Extended
-Profile Support<span style='mso-bidi-font-weight:bold'>.</span></b> Diagram
-features like choosers, inplace editors, label providers, creation tools, etc.,
-should be at some extent aware of the constraints implied by profiles applied
-to the semantic model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199739">199739</a>) [Theme:
-Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1033"
-src="../../images/new.gif"></span></b><b style='mso-bidi-font-weight:normal'>Diagram-Specific
-Property Sheets<span style='mso-bidi-font-weight:bold'>.</span></b> Provide
-custom, extensible property sheets that are aware of the UML2 Tools arrangement
-of the semantic elements into notational diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199740">199740</a>) [Theme:
-Improved Usability]</p>
-
-<h2><a name="_XSD_component"></a>XSD component</h2>
-
-<p>XSD is a library that provides an <a
-href="http://www.eclipse.org/modeling/mdt/javadoc/?project=xsd&amp;page=org/eclipse/xsd/package-summary.html&amp;anchor=details">API</a>
-for manipulating the components of an XML Schema as described by the <a
-href="http://www.w3.org/TR/XMLSchema-0">W3C XML Schema</a> specifications, as
-well as an API for manipulating the DOM-accessible representation of XML. Plan
-items reflect new features of the XSD component, or areas where existing
-features will be significantly reworked (<span style='mso-no-proof:yes'><img
-border=0 width=12 height=12 id="_x0000_i1035" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-style:italic'> marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (XSD
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Improved Diagnostics<span
-style='mso-bidi-font-weight:bold'>.</span></b> Provide better diagnostics for
-unresolved directives. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=203607">203607</a>) [Theme:
-Ease of Use]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1034"
-src="../../images/ok.gif"></span></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (XSD
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (XSD
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>XML Schema
-1.1<span style='mso-bidi-font-weight:bold'>.</span></b> Investigate support for
-XML Schema 1.1. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204125">204125</a>)
-[Theme: Technology Trends]</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_1_20070724.html b/docs/plans/mdt_project_plan_1_1_20070724.html
deleted file mode 100644
index 3e9bc26..0000000
--- a/docs/plans/mdt_project_plan_1_1_20070724.html
+++ /dev/null
@@ -1,1183 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="mdt_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>DRAFT Eclipse MDT - 1.1 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>126</o:Revision>
-  <o:TotalTime>3729</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2007-07-24T19:36:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>3876</o:Words>
-  <o:Characters>22098</o:Characters>
-  <o:Company>IBM</o:Company>
-  <o:Lines>184</o:Lines>
-  <o:Paragraphs>51</o:Paragraphs>
-  <o:CharactersWithSpaces>25923</o:CharactersWithSpaces>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:558639914;
-	mso-list-template-ids:1299203802;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:635841242;
-	mso-list-template-ids:-494789486;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:841890160;
-	mso-list-template-ids:1564527802;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1201938811;
-	mso-list-template-ids:840367462;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:1545405970;
-	mso-list-template-ids:1017670668;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="25602"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>DRAFT Eclipse MDT<br>
-1.1 Plan</h1>
-
-<p>Last revised <st1:time Minute="36" Hour="15">15:36 EDT</st1:time> <st1:date
-Year="2007" Day="24" Month="7">July 24, 2007</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src="../../images/new.gif" border=0> marks
-interesting changes over the <i style='mso-bidi-font-style:normal'>previous
-plan revision</i>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_OCL__component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2__component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_Tools_">UML2 Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due
-     consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan items
-     may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the OCL component, available as
-     versions tagged &quot;R1_2&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 component, available
-     as versions tagged &quot;R2_2&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools component, available
-     as versions tagged &quot;R0_8&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_4&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are <i style='mso-bidi-font-style:
-normal'>TBD</i>.</p>
-
-<p>The 1.1 release is targeted for late June 2008. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo13;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <i style='mso-bidi-font-style:
-normal'>Eclipse Project 3.4 plan</i> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of EODM 1.0 with 0.9</h3>
-
-<p>The EODM 1.0 component of Eclipse MDT will be compatible with EODM 0.9,
-except in those areas noted in the <i style='mso-bidi-font-style:normal'>EODM
-1.0 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 1.0 will be upwards
-contract-compatible with EODM 0.9 except in those areas noted in the <i>EODM
-1.0 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to EODM 1.0
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with EODM 1.0 APIs would ensure compliance with EODM 0.9 APIs.
-Refer to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 1.0 will be upwards
-binary-compatible with EODM 0.9 except in those areas noted in the <i>EODM 1.0
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against EODM 1.0 will likely
-be unusable with EODM 0.9. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 0.9 APIs will
-usually compile and run successfully against EODM 1.0 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> EODM 1.0 will be upwards
-workspace-compatible with EODM 0.9 unless noted. This means that workspaces and
-projects created by an Eclipse with EODM 0.9 installed can be successfully
-opened by an Eclipse with EODM 1.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of OCL 1.2 with 1.1</h3>
-
-<p>The OCL 1.2 component of Eclipse MDT will be compatible with OCL 1.1, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>OCL 1.2
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.2 will be upwards
-contract-compatible with OCL 1.1 except in those areas noted in the <i>OCL 1.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to OCL 1.2 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with OCL 1.2 APIs would ensure compliance with OCL 1.1 APIs. Refer
-to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.2 will be upwards
-binary-compatible with OCL 1.1 except in those areas noted in the <i>OCL 1.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.2 will likely
-be unusable with OCL 1.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.1 APIs will
-usually compile and run successfully against OCL 1.2 APIs, although this cannot
-be guaranteed. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.2 will be upwards workspace-compatible
-with OCL 1.1 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.1 installed can be successfully opened by an Eclipse with
-OCL 1.2 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.2 with 2.1</h3>
-
-<p>The UML2 2.2 component of Eclipse MDT will be compatible with UML2 2.1,
-except in those areas noted in the <i style='mso-bidi-font-style:normal'>UML2 2.2
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.2 will be upwards contract-compatible
-with UML2 2.1 except in those areas noted in the <i>UML2 2.2 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Programs that use affected APIs
-and extension points will need to be ported to UML2 2.2 APIs. Downward contract
-compatibility is not supported. There is no guarantee that compliance with UML2
-2.2 APIs would ensure compliance with UML2 2.1 APIs. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.2 will be upwards
-binary-compatible with UML2 2.1 except in those areas noted in the <i>UML2 2.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 2.2 will likely
-be unusable with UML2 2.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.1 APIs will
-usually compile and run successfully against UML2 2.2 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.2 will be upwards
-workspace-compatible with UML2 2.1 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 2.1 installed can be successfully
-opened by an Eclipse with UML2 2.2 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are considered
-implementation details which may vary between operating environment and are
-subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 Tools 0.8 with 0.7</h3>
-
-<p>The UML2 Tools 0.8 component of Eclipse MDT will be compatible with UML2
-Tools 0.7, except in those areas noted in the <i style='mso-bidi-font-style:
-normal'>UML2 Tools 0.8 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 Tools 0.8 will be upwards contract-compatible
-with UML2 Tools 0.7 except in those areas noted in the <i>UML2 Tools 0.8 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Programs that use affected APIs
-and extension points will need to be ported to UML2 Tools 0.8 APIs. Downward
-contract compatibility is not supported. There is no guarantee that compliance
-with UML2 Tools 0.8 APIs would ensure compliance with UML2 Tools 0.7 APIs.
-Refer to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 Tools 0.8 will be upwards
-binary-compatible with UML2 Tools 0.7 except in those areas noted in the <i>UML2
-Tools 0.8 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-Tools 0.8 will likely be unusable with UML2 Tools 0.7. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 Tools 0.7 APIs
-will usually compile and run successfully against UML2 Tools 0.8 APIs, although
-this cannot be guaranteed. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 Tools 0.8 will be upwards
-workspace-compatible with UML2 Tools 0.7 unless noted. This means that
-workspaces and projects created by an Eclipse with UML2 Tools 0.7 installed can
-be successfully opened by an Eclipse with UML2 Tools 0.8 installed. This
-includes both hidden metadata, which is localized to a particular workspace, as
-well as metadata files found within a workspace project, which may propagate
-between workspaces via file copying or team repositories. User interface
-session state may be discarded when a workspace is upgraded. Downward workspace
-compatibility is not supported. Metadata files created (or overwritten) by the
-newer version will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are considered
-implementation details which may vary between operating environment and are
-subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.4 with 2.3</h3>
-
-<p>The XSD 2.4 component of Eclipse MDT will be compatible with XSD 2.3, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>XSD 2.4
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.4 will be upwards
-contract-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.4
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.4 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.4 APIs would ensure compliance with XSD 2.3 APIs. Refer
-to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.4 will be upwards
-binary-compatible with XSD 2.4 except in those areas noted in the <i>XSD 2.4
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.4 will likely
-be unusable with XSD 2.3. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.3 APIs will
-usually compile and run successfully against XSD 2.4 APIs, although this cannot
-be guaranteed. Because XSD 2.4 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.4 will be upwards workspace-compatible
-with XSD 2.3 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.3 installed can be successfully opened by an Eclipse with
-XSD 2.4 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v3_0/index.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name=UML2></a><a name="_EODM_component"></a><span style='mso-bookmark:
-UML2'>EODM component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>EODM is an implementation of RDF(S)/OWL <span
-class=SpellE>metamodels</span> of the </span><a
-href="http://www.omg.org/ontology"><span style='mso-bookmark:UML2'>Ontology
-Definition <span class=SpellE>Metamodel</span> (ODM)</span><span
-style='mso-bookmark:UML2'></span></a><span style='mso-bookmark:UML2'> using EMF
-with additional parsing, inference, model transformation and editing functions.
-Plan items reflect new features of the EODM component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1026" src="../../images/ok.gif"> marks
-completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred Items
-(EODM component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'><a name="_UML2_component"></a><a
-name="_OCL__component"></a>OCL component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>OCL is an implementation of the OCL OMG
-standard for EMF-based models. Plan items reflect new features of the OCL
-component, or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1027" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (OCL component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><a
-name="_UML2__component"></a><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'>UML2 component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 is an EMF-based implementation of the </span><a
-href="http://www.omg.org/uml"><span style='mso-bookmark:UML2'>UML</span><span
-style='mso-bookmark:UML2'><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.x <span class=SpellE>metamodel</span></span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for the Eclipse platform. Plan items reflect new
-features of the UML2 component, or areas where existing features will be
-significantly reworked (<span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1028" src="../../images/ok.gif"> marks completed
-work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><a
-name="_UML2_Tools_"></a><span class=GramE><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'>UML2 Tools component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>UML2 Tools is set of GMF-based editors for
-viewing and editing UML models. Plan items reflect new features of the UML2
-Tools component (<span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1029" src="../../images/ok.gif"> marks completed
-work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred
-Items (UML2 Tools component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><a
-name="_XSD_component"></a><span class=GramE><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h2><span style='mso-bookmark:UML2'>XSD component</span></h2>
-
-<p><span style='mso-bookmark:UML2'>XSD is a library that provides an </span><a
-href="http://www.eclipse.org/modeling/mdt/javadoc/?project=xsd&amp;page=org/eclipse/xsd/package-summary.html&amp;anchor=details"><span
-style='mso-bookmark:UML2'>API</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> for manipulating the components of an XML Schema as
-described by the </span><a href="http://www.w3.org/TR/XMLSchema-0"><span
-style='mso-bookmark:UML2'>W3C XML Schema</span><span style='mso-bookmark:UML2'></span></a><span
-style='mso-bookmark:UML2'> specifications, as well as an API for manipulating
-the DOM-accessible representation of XML. Plan items reflect new features of
-the XSD component, or areas where existing features will be significantly
-reworked (<span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1030" src="../../images/ok.gif"> marks completed work)</span>.</span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Committed Items
-(XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Proposed
-Items (XSD component)<o:p></o:p></span></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-bookmark:UML2'><span
-class=GramE><i style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:
-bold'>None at this time.</span></i></span><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></span></p>
-
-<h4><span style='mso-bookmark:UML2'><span style='font-family:Arial'>Deferred Items
-(XSD component)<o:p></o:p></span></span></h4>
-
-<span style='mso-bookmark:UML2'></span>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_1_20070921.html b/docs/plans/mdt_project_plan_1_1_20070921.html
deleted file mode 100644
index 1966a6a..0000000
--- a/docs/plans/mdt_project_plan_1_1_20070921.html
+++ /dev/null
@@ -1,1222 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 11">
-<meta name=Originator content="Microsoft Word 11">
-<link rel=File-List href="mdt_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>DRAFT Eclipse MDT - 1.1 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>kennh</o:LastAuthor>
-  <o:Revision>136</o:Revision>
-  <o:TotalTime>4034</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2007-09-21T13:48:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>4812</o:Words>
-  <o:Characters>27434</o:Characters>
-  <o:Company>IBM</o:Company>
-  <o:Lines>228</o:Lines>
-  <o:Paragraphs>64</o:Paragraphs>
-  <o:CharactersWithSpaces>32182</o:CharactersWithSpaces>
-  <o:Version>11.8132</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:ValidateAgainstSchemas/>
-  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
-  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
-  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:LatentStyles DefLockedState="false" LatentStyleCount="156">
- </w:LatentStyles>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:435444136;
-	mso-list-template-ids:-2020149294;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:1144275307;
-	mso-list-template-ids:-236843214;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:1262298083;
-	mso-list-template-ids:178412280;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:1540052303;
-	mso-list-template-ids:275682612;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";
-	mso-ansi-language:#0400;
-	mso-fareast-language:#0400;
-	mso-bidi-language:#0400;}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="27650"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>DRAFT Eclipse MDT<br>
-1.1 Plan</h1>
-
-<p>Last revised 9:49 EDT September 21, 2007 (<img width=12 height=12
-id="_x0000_i1025" src="../../images/new.gif" border=0> marks interesting
-changes over the <i style='mso-bidi-font-style:normal'><a
-href="mdt_project_plan_1_1_20070724.html">previous plan revision</a></i>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_Release_deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_Release_milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_Target_Operating_Environments">Target
-     operating environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_Compatibility_with_Previous">Compatibility
-     with previous releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_OCL_component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1026" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'><a href="#_OCL_Tools_component">OCL
-     Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_Tools_component">UML2 Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due
-     consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan
-     items may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name="_Release_deliverables"></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the OCL component, available as
-     versions tagged &quot;R1_2&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1027" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'>Source code release for the OCL
-     Tools component, available as versions tagged &quot;R0_7&quot; in the
-     eclipse.org <a href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1028" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'>OCL Tools runtime binary and
-     SDK distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1029" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'>OCL Tools runtime binary and
-     SDK features on eclipse.org update site (install via Eclipse update
-     manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 component, available
-     as versions tagged &quot;R2_2&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools component,
-     available as versions tagged &quot;R0_8&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_4&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name="_Release_milestones"></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are <i style='mso-bidi-font-style:
-normal'>TBD</i>.</p>
-
-<p>The 1.1 release is targeted for late June 2008. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name="_Target_Operating_Environments"></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <i style='mso-bidi-font-style:
-normal'>Eclipse Project 3.4 plan</i> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name="_Compatibility_with_Previous"></a>Compatibility with Previous
-Releases</h2>
-
-<h3>Compatibility of EODM 1.0 with 0.9</h3>
-
-<p>The EODM 1.0 component of Eclipse MDT will be compatible with EODM 0.9,
-except in those areas noted in the <i style='mso-bidi-font-style:normal'>EODM
-1.0 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 1.0 will be upwards
-contract-compatible with EODM 0.9 except in those areas noted in the <i>EODM
-1.0 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to EODM 1.0
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with EODM 1.0 APIs would ensure compliance with EODM 0.9 APIs.
-Refer to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 1.0 will be upwards
-binary-compatible with EODM 0.9 except in those areas noted in the <i>EODM 1.0
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against EODM 1.0 will likely
-be unusable with EODM 0.9. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 0.9 APIs will
-usually compile and run successfully against EODM 1.0 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> EODM 1.0 will be upwards
-workspace-compatible with EODM 0.9 unless noted. This means that workspaces and
-projects created by an Eclipse with EODM 0.9 installed can be successfully
-opened by an Eclipse with EODM 1.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of OCL 1.2 with 1.1</h3>
-
-<p>The OCL 1.2 component of Eclipse MDT will be compatible with OCL 1.1, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>OCL 1.2
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.2 will be upwards
-contract-compatible with OCL 1.1 except in those areas noted in the <i>OCL 1.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to OCL 1.2 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with OCL 1.2 APIs would ensure compliance with OCL 1.1 APIs. Refer
-to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.2 will be upwards
-binary-compatible with OCL 1.1 except in those areas noted in the <i>OCL 1.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.2 will likely
-be unusable with OCL 1.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.1 APIs will
-usually compile and run successfully against OCL 1.2 APIs, although this cannot
-be guaranteed. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.2 will be upwards workspace-compatible
-with OCL 1.1 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.1 installed can be successfully opened by an Eclipse with
-OCL 1.2 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.2 with 2.1</h3>
-
-<p>The UML2 2.2 component of Eclipse MDT will be compatible with UML2 2.1,
-except in those areas noted in the <i style='mso-bidi-font-style:normal'>UML2
-2.2 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.2 will be upwards
-contract-compatible with UML2 2.1 except in those areas noted in the <i>UML2
-2.2 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 2.2
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with UML2 2.2 APIs would ensure compliance with UML2 2.1 APIs.
-Refer to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.2 will be upwards
-binary-compatible with UML2 2.1 except in those areas noted in the <i>UML2 2.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 2.2 will likely
-be unusable with UML2 2.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.1 APIs will
-usually compile and run successfully against UML2 2.2 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.2 will be upwards
-workspace-compatible with UML2 2.1 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 2.1 installed can be successfully
-opened by an Eclipse with UML2 2.2 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 Tools 0.8 with 0.7</h3>
-
-<p>The UML2 Tools 0.8 component of Eclipse MDT will be compatible with UML2
-Tools 0.7, except in those areas noted in the <i style='mso-bidi-font-style:
-normal'>UML2 Tools 0.8 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 Tools 0.8 will be upwards
-contract-compatible with UML2 Tools 0.7 except in those areas noted in the <i>UML2
-Tools 0.8 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 Tools 0.8 APIs. Downward contract compatibility is not supported. There is
-no guarantee that compliance with UML2 Tools 0.8 APIs would ensure compliance
-with UML2 Tools 0.7 APIs. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 Tools 0.8 will be upwards
-binary-compatible with UML2 Tools 0.7 except in those areas noted in the <i>UML2
-Tools 0.8 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-Tools 0.8 will likely be unusable with UML2 Tools 0.7. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 Tools 0.7 APIs
-will usually compile and run successfully against UML2 Tools 0.8 APIs, although
-this cannot be guaranteed. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 Tools 0.8 will be upwards
-workspace-compatible with UML2 Tools 0.7 unless noted. This means that
-workspaces and projects created by an Eclipse with UML2 Tools 0.7 installed can
-be successfully opened by an Eclipse with UML2 Tools 0.8 installed. This
-includes both hidden metadata, which is localized to a particular workspace, as
-well as metadata files found within a workspace project, which may propagate
-between workspaces via file copying or team repositories. User interface
-session state may be discarded when a workspace is upgraded. Downward workspace
-compatibility is not supported. Metadata files created (or overwritten) by the
-newer version will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.4 with 2.3</h3>
-
-<p>The XSD 2.4 component of Eclipse MDT will be compatible with XSD 2.3, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>XSD 2.4
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.4 will be upwards
-contract-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.4
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.4 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.4 APIs would ensure compliance with XSD 2.3 APIs. Refer
-to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.4 will be upwards binary-compatible
-with XSD 2.4 except in those areas noted in the <i>XSD 2.4 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in compatibility
-is not supported: plug-ins compiled against XSD 2.4 will likely be unusable
-with XSD 2.3. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.3 APIs will
-usually compile and run successfully against XSD 2.4 APIs, although this cannot
-be guaranteed. Because XSD 2.4 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.4 will be upwards workspace-compatible
-with XSD 2.3 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.3 installed can be successfully opened by an Eclipse with
-XSD 2.4 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name="_EODM_component"></a>EODM component</h2>
-
-<p>EODM is an implementation of RDF(S)/OWL <span class=SpellE>metamodels</span>
-of the <a href="http://www.omg.org/ontology">Ontology Definition <span
-class=SpellE>Metamodel</span> (ODM)</a> using EMF with additional parsing,
-inference, model transformation and editing functions. Plan items reflect new
-features of the EODM component, or areas where existing features will be
-significantly reworked (<span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1030" src="../../images/ok.gif"> marks completed
-work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (EODM component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Proposed Items (EODM component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Deferred Items (EODM component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h2><a name="_OCL_component"></a>OCL component</h2>
-
-<p>OCL is an implementation of the OCL OMG standard for EMF-based models. Plan
-items reflect new features of the OCL component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1031" src="../../images/ok.gif"> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (OCL component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1032"
-src="../../images/new.gif"><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Extending the OCL grammar for QVT.</b></span> <span class=GramE>Grammar/parser
-<span class=SpellE>refactorings</span> for improved extensibility, especially
-targeting QVT implementations.</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1033"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Navigation of
-unnamed association ends<span style='mso-bidi-font-weight:bold'>.</span></b>
-Navigation of unnamed association ends (for UML models) (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=194245">194245</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1034"
-src="../../images/new.gif"><span class=SpellE><span class=GramE><b
-style='mso-bidi-font-weight:normal'>Customising</b></span></span><span
-class=GramE><b style='mso-bidi-font-weight:normal'> error handling<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Redesign of parse error
-detection for better error reporting. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>) [Theme:
-Improved Usability]</p>
-
-<h4><span style='font-family:Arial'>Proposed Items (OCL component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Deferred Items (OCL component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h2><a name="_OCL_Tools_component"></a><img border=0 width=12 height=12
-id="_x0000_i1035" src="../../images/new.gif">OCL Tools component</h2>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1036" src="../../images/new.gif">OCL
-Tools is a set of tools for editing, <span class=SpellE>refactoring</span>,
-code generation, execution, and interactive debugging of OCL constraints. Plan
-items reflect new features of the OCL Tools component (<span style='mso-bidi-font-style:
-italic'><img border=0 width=12 height=12 id="_x0000_i1037"
-src="../../images/ok.gif"> marks completed work)</span>.</p>
-
-<h4><img border=0 width=12 height=12 id="_x0000_i1038"
-src="../../images/new.gif"><span style='font-family:Arial'>Committed Items (OCL
-Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1039"
-src="../../images/new.gif"><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h4><img border=0 width=12 height=12 id="_x0000_i1040"
-src="../../images/new.gif"><span style='font-family:Arial'>Proposed Items (OCL
-Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1041"
-src="../../images/new.gif"><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h4><img border=0 width=12 height=12 id="_x0000_i1042"
-src="../../images/new.gif"><span style='font-family:Arial'>Deferred Items (OCL
-Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1043"
-src="../../images/new.gif"><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h2><a name="_UML2_component"></a>UML2 component</h2>
-
-<p>UML2 is an EMF-based implementation of the <a href="http://www.omg.org/uml">UML<sup><span
-style='font-size:9.5pt'>TM</span></sup> 2.x <span class=SpellE>metamodel</span></a>
-for the Eclipse platform. Plan items reflect new features of the UML2
-component, or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1044" src="../../images/ok.gif"> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1045"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Profile
-Support for <span class=SpellE>Ecore</span> Annotations<span style='mso-bidi-font-weight:
-bold'>.</span></b> Because there is no general GUI support for specifying <span
-class=SpellE>EAnnotations</span> (since they aren't a standard part of UML)
-users currently cannot specify the <span class=SpellE>EAnnotations</span>
-they'd like to see in the final <span class=SpellE>Ecore</span>, so it would be
-very useful if as part of the <span class=SpellE>Ecore</span> profile, they'd
-be able to create <span class=SpellE>EAnnotations</span>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=184249">184249</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1046"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Support for
-(de)serialization to/from CMOF<span style='mso-bidi-font-weight:bold'>.</span></b>
-Provide a resource implementation that supports loading/saving UML models in
-CMOF format in much the same way that EMF supports loading/saving <span
-class=SpellE>Ecore</span> models in EMOF format. Such support should be
-integrated into the sample UML editor and importer framework (to allow creating
-of EMF projects from CMOF models).better diagnostics for unresolved directives.
-(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199624">199624</a>)
-[Theme: End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1047"
-src="../../images/new.gif"><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Eclipse 3.4 / EMF 2.4 Compatibility<span style='mso-bidi-font-weight:
-bold'>.</span></b></span> Maintain release currency concurrent with EMF 2.4
-(and Eclipse 3.4). Make changes as required to align with EMF features and bug
-fixes. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204200">204200</a>)
-[Theme: Upgrade Path]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1048"
-src="../../images/new.gif"><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Enhanced Documentation.</b></span> Provide enhanced user documentation,
-tutorials, white papers, demonstrations etc<span class=GramE>..</span> In
-particular, provide a programmerÂ’s guide integrated with the help system in
-Eclipse, improve the <span class=SpellE>Javadoc</span> by generating constraint
-information (redefines, subsets, union, etc.) into feature and operation
-headers, and update the documentation for the UML generator task. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204201">204201</a>) [Theme:
-Ease of Use]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1049"
-src="../../images/new.gif"><span class=GramE><b style='mso-bidi-font-weight:
-normal'>UML 2.1.2 Compliance<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide support for interchange (XMI) compliance with UML 2.1.2. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204202">204202</a>) [Theme:
-Technology Trends]</p>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1054"
-src="../../images/new.gif"><span class=SpellE><b style='mso-bidi-font-weight:
-normal'>BiDi</b></span><b style='mso-bidi-font-weight:normal'> Support<span
-style='mso-bidi-font-weight:bold'>.</span></b> Provide better support for <span
-class=SpellE>BiDi</span> languages. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682">160682</a>) [Theme:
-<span style='mso-bidi-font-weight:bold'>Internationalization &amp; Localization</span>]</p>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h2><a name="_UML2_Tools_component"></a>UML2 Tools component</h2>
-
-<p>UML2 Tools is set of GMF-based editors for viewing and editing UML models.
-Plan items reflect new features of the UML2 Tools component (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1050" src="../../images/ok.gif"> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h2><a name="_XSD_component"></a>XSD component</h2>
-
-<p>XSD is a library that provides an <a
-href="http://www.eclipse.org/modeling/mdt/javadoc/?project=xsd&amp;page=org/eclipse/xsd/package-summary.html&amp;anchor=details">API</a>
-for manipulating the components of an XML Schema as described by the <a
-href="http://www.w3.org/TR/XMLSchema-0">W3C XML Schema</a> specifications, as
-well as an API for manipulating the DOM-accessible representation of XML. Plan
-items reflect new features of the XSD component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1051" src="../../images/ok.gif"> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (XSD component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1052"
-src="../../images/new.gif"><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Improved Diagnostics<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide better diagnostics for unresolved directives. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=203607">203607</a>) [Theme:
-Ease of Use]</p>
-
-<h4><span style='font-family:Arial'>Proposed Items (XSD component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1053"
-src="../../images/new.gif"><span class=GramE><b style='mso-bidi-font-weight:
-normal'>XML Schema 1.1<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Investigate support for XML Schema 1.1. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204125">204125</a>) [Theme:
-Technology Trends]</p>
-
-<h4><span style='font-family:Arial'>Deferred Items (XSD component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_1_20071004.html b/docs/plans/mdt_project_plan_1_1_20071004.html
deleted file mode 100644
index 415350a..0000000
--- a/docs/plans/mdt_project_plan_1_1_20071004.html
+++ /dev/null
@@ -1,1257 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:x="urn:schemas-microsoft-com:office:excel"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:a="urn:schemas-microsoft-com:office:access"
-xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
-xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882"
-xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema"
-xmlns:b="urn:schemas-microsoft-com:office:publisher"
-xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
-xmlns:c="urn:schemas-microsoft-com:office:component:spreadsheet"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns:html="http://www.w3.org/TR/REC-html40"
-xmlns:q="http://schemas.xmlsoap.org/soap/envelope/" xmlns:D="DAV:"
-xmlns:x2="http://schemas.microsoft.com/office/excel/2003/xml"
-xmlns:ois="http://schemas.microsoft.com/sharepoint/soap/ois/"
-xmlns:dir="http://schemas.microsoft.com/sharepoint/soap/directory/"
-xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
-xmlns:dsp="http://schemas.microsoft.com/sharepoint/dsp"
-xmlns:udc="http://schemas.microsoft.com/data/udc"
-xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-xmlns:sps="http://schemas.microsoft.com/sharepoint/soap/"
-xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-xmlns:udcxf="http://schemas.microsoft.com/data/udc/xmlfile"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 11">
-<meta name=Originator content="Microsoft Word 11">
-<link rel=File-List href="mdt_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>DRAFT Eclipse MDT - 1.1 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>kennh</o:LastAuthor>
-  <o:Revision>138</o:Revision>
-  <o:TotalTime>4065</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2007-10-04T16:04:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>5010</o:Words>
-  <o:Characters>28559</o:Characters>
-  <o:Company>IBM</o:Company>
-  <o:Lines>237</o:Lines>
-  <o:Paragraphs>67</o:Paragraphs>
-  <o:CharactersWithSpaces>33502</o:CharactersWithSpaces>
-  <o:Version>11.8132</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:ValidateAgainstSchemas/>
-  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
-  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
-  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:LatentStyles DefLockedState="false" LatentStyleCount="156">
- </w:LatentStyles>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:970205525;
-	mso-list-template-ids:-949615108;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:1275022630;
-	mso-list-template-ids:-1158664178;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:1493714825;
-	mso-list-template-ids:638864804;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1883324702;
-	mso-list-template-ids:-581277974;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";
-	mso-ansi-language:#0400;
-	mso-fareast-language:#0400;
-	mso-bidi-language:#0400;}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="29698"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>DRAFT Eclipse MDT<br>
-1.1 Plan</h1>
-
-<p>Last revised 12:05 EDT October 4, 2007 (<img width=12 height=12
-id="_x0000_i1025" src="../../images/new.gif" border=0> marks interesting
-changes over the <i style='mso-bidi-font-style:normal'><a
-href="mdt_project_plan_1_1_20070724.html">previous plan revision</a></i>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release of
-the Eclipse MDT project, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_Release_deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_Release_milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_Target_Operating_Environments">Target
-     operating environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_Compatibility_with_Previous">Compatibility
-     with previous releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_OCL_component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1026" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'><a href="#_OCL_Tools_component">OCL
-     Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_Tools_component">UML2 Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse bugzilla database, with a title and a concise summary (usually a
-single paragraph) that explains the work item at a suitably high enough level
-so that everyone can readily understand what the work item is without having to
-understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized to
-a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due
-     consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan
-     items may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name="_Release_deliverables"></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the OCL component, available as
-     versions tagged &quot;R1_2&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the OCL Tools component,
-     available as versions tagged &quot;R0_7&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 component, available
-     as versions tagged &quot;R2_2&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools component,
-     available as versions tagged &quot;R0_8&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_4&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name="_Release_milestones"></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate coarse-grained
-planning and staging. The milestones are <i style='mso-bidi-font-style:normal'>TBD</i>.</p>
-
-<p>The 1.1 release is targeted for late June 2008. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name="_Target_Operating_Environments"></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup><span style='font-size:9.5pt'>TM</span></sup>
-code and has no direct dependence on the underlying operating system. The chief
-dependence is on the Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <i style='mso-bidi-font-style:
-normal'>Eclipse Project 3.4 plan</i> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided as
-the default resource bundles. Translations are not provided with this release.
-However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name="_Compatibility_with_Previous"></a>Compatibility with Previous
-Releases</h2>
-
-<h3>Compatibility of EODM 1.0 with 0.9</h3>
-
-<p>The EODM 1.0 component of Eclipse MDT will be compatible with EODM 0.9,
-except in those areas noted in the <i style='mso-bidi-font-style:normal'>EODM
-1.0 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 1.0 will be upwards
-contract-compatible with EODM 0.9 except in those areas noted in the <i>EODM
-1.0 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to EODM 1.0
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with EODM 1.0 APIs would ensure compliance with EODM 0.9 APIs.
-Refer to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 1.0 will be upwards
-binary-compatible with EODM 0.9 except in those areas noted in the <i>EODM 1.0
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against EODM 1.0 will likely
-be unusable with EODM 0.9. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 0.9 APIs will
-usually compile and run successfully against EODM 1.0 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> EODM 1.0 will be upwards
-workspace-compatible with EODM 0.9 unless noted. This means that workspaces and
-projects created by an Eclipse with EODM 0.9 installed can be successfully
-opened by an Eclipse with EODM 1.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of OCL 1.2 with 1.1</h3>
-
-<p>The OCL 1.2 component of Eclipse MDT will be compatible with OCL 1.1, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>OCL 1.2
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.2 will be upwards
-contract-compatible with OCL 1.1 except in those areas noted in the <i>OCL 1.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to OCL 1.2 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with OCL 1.2 APIs would ensure compliance with OCL 1.1 APIs. Refer to
-<i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.2 will be upwards
-binary-compatible with OCL 1.1 except in those areas noted in the <i>OCL 1.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.2 will likely
-be unusable with OCL 1.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.1 APIs will
-usually compile and run successfully against OCL 1.2 APIs, although this cannot
-be guaranteed. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.2 will be upwards workspace-compatible
-with OCL 1.1 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.1 installed can be successfully opened by an Eclipse with
-OCL 1.2 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team repositories.
-User interface session state may be discarded when a workspace is upgraded.
-Downward workspace compatibility is not supported. Metadata files created (or
-overwritten) by the newer version will generally be unusable with older
-versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.2 with 2.1</h3>
-
-<p>The UML2 2.2 component of Eclipse MDT will be compatible with UML2 2.1,
-except in those areas noted in the <i style='mso-bidi-font-style:normal'>UML2
-2.2 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.2 will be upwards
-contract-compatible with UML2 2.1 except in those areas noted in the <i>UML2
-2.2 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 2.2
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with UML2 2.2 APIs would ensure compliance with UML2 2.1 APIs.
-Refer to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.2 will be upwards
-binary-compatible with UML2 2.1 except in those areas noted in the <i>UML2 2.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 2.2 will likely
-be unusable with UML2 2.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.1 APIs will
-usually compile and run successfully against UML2 2.2 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.2 will be upwards
-workspace-compatible with UML2 2.1 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 2.1 installed can be successfully
-opened by an Eclipse with UML2 2.2 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be discarded
-when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 Tools 0.8 with 0.7</h3>
-
-<p>The UML2 Tools 0.8 component of Eclipse MDT will be compatible with UML2
-Tools 0.7, except in those areas noted in the <i style='mso-bidi-font-style:
-normal'>UML2 Tools 0.8 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 Tools 0.8 will be upwards
-contract-compatible with UML2 Tools 0.7 except in those areas noted in the <i>UML2
-Tools 0.8 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 Tools 0.8 APIs. Downward contract compatibility is not supported. There is
-no guarantee that compliance with UML2 Tools 0.8 APIs would ensure compliance
-with UML2 Tools 0.7 APIs. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 Tools 0.8 will be upwards
-binary-compatible with UML2 Tools 0.7 except in those areas noted in the <i>UML2
-Tools 0.8 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-Tools 0.8 will likely be unusable with UML2 Tools 0.7. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 Tools 0.7 APIs
-will usually compile and run successfully against UML2 Tools 0.8 APIs, although
-this cannot be guaranteed. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 Tools 0.8 will be upwards
-workspace-compatible with UML2 Tools 0.7 unless noted. This means that
-workspaces and projects created by an Eclipse with UML2 Tools 0.7 installed can
-be successfully opened by an Eclipse with UML2 Tools 0.8 installed. This
-includes both hidden metadata, which is localized to a particular workspace, as
-well as metadata files found within a workspace project, which may propagate
-between workspaces via file copying or team repositories. User interface
-session state may be discarded when a workspace is upgraded. Downward workspace
-compatibility is not supported. Metadata files created (or overwritten) by the
-newer version will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.4 with 2.3</h3>
-
-<p>The XSD 2.4 component of Eclipse MDT will be compatible with XSD 2.3, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>XSD 2.4
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.4 will be upwards
-contract-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.4
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.4 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.4 APIs would ensure compliance with XSD 2.3 APIs. Refer
-to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.4 will be upwards
-binary-compatible with XSD 2.4 except in those areas noted in the <i>XSD 2.4
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.4 will likely
-be unusable with XSD 2.3. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving Java-based
-APIs</a></i> for a discussion of the kinds of API changes that maintain binary
-compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.3 APIs will
-usually compile and run successfully against XSD 2.4 APIs, although this cannot
-be guaranteed. Because XSD 2.4 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.4 will be upwards workspace-compatible
-with XSD 2.3 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.3 installed can be successfully opened by an Eclipse with
-XSD 2.4 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name="_EODM_component"></a>EODM component</h2>
-
-<p>EODM is an implementation of RDF(S)/OWL metamodels of the <a
-href="http://www.omg.org/ontology">Ontology Definition Metamodel (ODM)</a> using
-EMF with additional parsing, inference, model transformation and editing
-functions. Plan items reflect new features of the EODM component, or areas
-where existing features will be significantly reworked (<span style='mso-bidi-font-style:
-italic'><img border=0 width=12 height=12 id="_x0000_i1027"
-src="../../images/ok.gif"> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (EODM component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Proposed Items (EODM component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Deferred Items (EODM component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h2><a name="_OCL_component"></a>OCL component</h2>
-
-<p>OCL is an implementation of the OCL OMG standard for EMF-based models. Plan
-items reflect new features of the OCL component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1028" src="../../images/ok.gif"> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (OCL component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Extending
-the OCL grammar for QVT.</b> Grammar/parser refactorings for improved extensibility,
-especially targeting QVT implementations. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Navigation
-of unnamed association ends<span style='mso-bidi-font-weight:bold'>.</span></b>
-Navigation of unnamed association ends (for UML models) (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=194245">194245</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Customising
-error handling<span style='mso-bidi-font-weight:bold'>.</span></b> Redesign of
-parse error detection for better error reporting. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>) [Theme:
-Improved Usability]</p>
-
-<h4><span style='font-family:Arial'>Proposed Items (OCL component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Deferred Items (OCL component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h2><a name="_OCL_Tools_component"></a>OCL Tools component</h2>
-
-<p>OCL Tools is a set of tools for editing, refactoring, code generation,
-execution, and interactive debugging of OCL constraints. Plan items reflect new
-features of the OCL Tools component (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1029" src="../../images/ok.gif"> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (OCL Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Proposed Items (OCL Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Deferred Items (OCL Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h2><a name="_UML2_component"></a>UML2 component</h2>
-
-<p>UML2 is an EMF-based implementation of the <a href="http://www.omg.org/uml">UML<sup><span
-style='font-size:9.5pt'>TM</span></sup> 2.x metamodel</a> for the Eclipse platform.
-Plan items reflect new features of the UML2 component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1030" src="../../images/ok.gif"> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Profile
-Support for Ecore Annotations<span style='mso-bidi-font-weight:bold'>.</span></b>
-Because there is no general GUI support for specifying EAnnotations (since they
-aren't a standard part of UML) users currently cannot specify the EAnnotations
-they'd like to see in the final Ecore, so it would be very useful if as part of
-the Ecore profile, they'd be able to create EAnnotations. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=184249">184249</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1034"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Support for
-(de)serialization to/from CMOF<span style='mso-bidi-font-weight:bold'>.</span></b>
-Provide a resource implementation that supports loading/saving UML models in
-CMOF format in much the same way that EMF supports loading/saving Ecore models
-in EMOF format. Such support should be integrated into the sample UML editor
-and importer framework (to allow creating of EMF projects from CMOF models).better
-diagnostics for unresolved directives. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199624">199624</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1031" src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Eclipse
-3.4 / EMF 2.4 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b>
-Maintain release currency concurrent with EMF 2.4 (and Eclipse 3.4). Make
-changes as required to align with EMF features and bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204200">204200</a>) [Theme:
-Upgrade Path]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Enhanced
-Documentation.</b> Provide enhanced user documentation, tutorials, white
-papers, demonstrations etc.. In particular, provide a programmerÂ’s guide
-integrated with the help system in Eclipse, improve the Javadoc by generating
-constraint information (redefines, subsets, union, etc.) into feature and
-operation headers, and update the documentation for the UML generator task. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204201">204201</a>) [Theme:
-Ease of Use]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>UML 2.1.2
-Compliance<span style='mso-bidi-font-weight:bold'>.</span></b> Provide support
-for interchange (XMI) compliance with UML 2.1.2. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204202">204202</a>) [Theme:
-Technology Trends]</p>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>BiDi
-Support<span style='mso-bidi-font-weight:bold'>.</span></b> Provide better
-support for BiDi languages. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682">160682</a>) [Theme:
-<span style='mso-bidi-font-weight:bold'>Internationalization &amp; Localization</span>]</p>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h2><a name="_UML2_Tools_component"></a>UML2 Tools component</h2>
-
-<p>UML2 Tools is set of GMF-based editors for viewing and editing UML models.
-Plan items reflect new features of the UML2 Tools component (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1032" src="../../images/ok.gif"> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1035"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Composite
-Structure Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide
-a GMF-based editor for UML composite structure diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199723">199723</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1036"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Deployment
-Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide a
-GMF-based editor for UML deployment diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199724">199724</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1042"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Use Case
-Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide a
-GMF-based editor for UML use case diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199725">199725</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1043"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Object
-Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide a
-GMF-based editor for UML object diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199726">199726</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1037"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Structure
-Diagram Synchronization<span style='mso-bidi-font-weight:bold'>.</span></b> For
-structure diagrams it makes sense to provide customizable level of
-synchronization between semantic and notational models; in particular, instead
-of auto-synchronized class diagrams (which always show the complete contents of
-the semantic model), different levels of synchronization should be also
-supported. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199731">199731</a>)
-[Theme: Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1038"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Diagram Relations<span
-style='mso-bidi-font-weight:bold'>.</span></b> With extended set of 8 diagram
-types (4 implemented in 0.7 and 4 planned for the next release) it is essential
-to provide collaboration of the different diagram types in showing the
-different set of aspects for the single semantic model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199735">199735</a>) [Theme:
-Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1039"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Basic OCL
-Integration<span style='mso-bidi-font-weight:bold'>.</span></b> Integrate the
-features provided by OCL component with UML2Tools diagrams, allowing to
-write/validate/etc OCL expressions in terms of given semantic model, shown in
-the diagram. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199737">199737</a>)
-[Theme: End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1040"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Extended
-Profile Support<span style='mso-bidi-font-weight:bold'>.</span></b> Diagram
-features like choosers, inplace editors, label providers, creation tools, etc.,
-should be at some extent aware of the constraints implied by profiles applied
-to the semantic model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199739">199739</a>) [Theme:
-Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1041"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Diagram-Specific
-Property Sheets<span style='mso-bidi-font-weight:bold'>.</span></b> Provide
-custom, extensible property sheets that are aware of the UML2 Tools arrangement
-of the semantic elements into notational diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199740">199740</a>) [Theme:
-Improved Usability]</p>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h2><a name="_XSD_component"></a>XSD component</h2>
-
-<p>XSD is a library that provides an <a
-href="http://www.eclipse.org/modeling/mdt/javadoc/?project=xsd&amp;page=org/eclipse/xsd/package-summary.html&amp;anchor=details">API</a>
-for manipulating the components of an XML Schema as described by the <a
-href="http://www.w3.org/TR/XMLSchema-0">W3C XML Schema</a> specifications, as
-well as an API for manipulating the DOM-accessible representation of XML. Plan
-items reflect new features of the XSD component, or areas where existing features
-will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1033" src="../../images/ok.gif"> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (XSD component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Improved
-Diagnostics<span style='mso-bidi-font-weight:bold'>.</span></b> Provide better
-diagnostics for unresolved directives. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=203607">203607</a>) [Theme:
-Ease of Use]</p>
-
-<h4><span style='font-family:Arial'>Proposed Items (XSD component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>XML Schema
-1.1<span style='mso-bidi-font-weight:bold'>.</span></b> Investigate support for
-XML Schema 1.1. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204125">204125</a>)
-[Theme: Technology Trends]</p>
-
-<h4><span style='font-family:Arial'>Deferred Items (XSD component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_1_20071022.html b/docs/plans/mdt_project_plan_1_1_20071022.html
deleted file mode 100644
index d7942f6..0000000
--- a/docs/plans/mdt_project_plan_1_1_20071022.html
+++ /dev/null
@@ -1,1354 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:x="urn:schemas-microsoft-com:office:excel"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:a="urn:schemas-microsoft-com:office:access"
-xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
-xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882"
-xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema"
-xmlns:b="urn:schemas-microsoft-com:office:publisher"
-xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
-xmlns:c="urn:schemas-microsoft-com:office:component:spreadsheet"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns:html="http://www.w3.org/TR/REC-html40"
-xmlns:q="http://schemas.xmlsoap.org/soap/envelope/" xmlns:D="DAV:"
-xmlns:x2="http://schemas.microsoft.com/office/excel/2003/xml"
-xmlns:ois="http://schemas.microsoft.com/sharepoint/soap/ois/"
-xmlns:dir="http://schemas.microsoft.com/sharepoint/soap/directory/"
-xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
-xmlns:dsp="http://schemas.microsoft.com/sharepoint/dsp"
-xmlns:udc="http://schemas.microsoft.com/data/udc"
-xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-xmlns:sps="http://schemas.microsoft.com/sharepoint/soap/"
-xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-xmlns:udcxf="http://schemas.microsoft.com/data/udc/xmlfile"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 11">
-<meta name=Originator content="Microsoft Word 11">
-<link rel=File-List href="mdt_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>DRAFT Eclipse MDT - 1.1 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>141</o:Revision>
-  <o:TotalTime>4083</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2007-10-22T14:21:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>5101</o:Words>
-  <o:Characters>29081</o:Characters>
-  <o:Company>IBM</o:Company>
-  <o:Lines>242</o:Lines>
-  <o:Paragraphs>68</o:Paragraphs>
-  <o:CharactersWithSpaces>34114</o:CharactersWithSpaces>
-  <o:Version>11.8132</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:ValidateAgainstSchemas/>
-  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
-  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
-  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:LatentStyles DefLockedState="false" LatentStyleCount="156">
- </w:LatentStyles>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:1150950361;
-	mso-list-template-ids:931181238;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:1613197431;
-	mso-list-template-ids:-1199681340;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1823885605;
-	mso-list-template-ids:-2006171628;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1908878861;
-	mso-list-template-ids:-1221573220;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";
-	mso-ansi-language:#0400;
-	mso-fareast-language:#0400;
-	mso-bidi-language:#0400;}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="30722"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>DRAFT Eclipse MDT<br>
-1.1 Plan</h1>
-
-<p>Last revised 10:20 EDT October 22, 2007 (<img width=12 height=12
-id="_x0000_i1025" src="../../images/new.gif" border=0> marks interesting
-changes over the <i style='mso-bidi-font-style:normal'><a
-href="mdt_project_plan_1_1_20071004.html">previous plan revision</a></i>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_Release_deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_Release_milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_Target_Operating_Environments">Target
-     operating environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_Compatibility_with_Previous">Compatibility
-     with previous releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_EODM_component">EODM component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_OCL_component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_OCL_Tools_component">OCL Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_component">UML2 component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_UML2_Tools_component">UML2 Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A committed plan
-     item is one that we have decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A proposed plan
-     item is one that we are considering addressing for the release. Although
-     we are actively investigating it, we are not yet in a position to commit
-     to it, or to say that we wonÂ’t be able to address it. After due
-     consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:Arial'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> plan item – A reasonable
-     proposal that will not make it into this release for some reason is marked
-     as deferred with a brief note as to why it was deferred. Deferred plan
-     items may resurface as committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name="_Release_deliverables"></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the EODM component, available
-     as versions tagged &quot;R1_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EODM runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the OCL component, available as
-     versions tagged &quot;R1_2&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the OCL Tools component,
-     available as versions tagged &quot;R0_7&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>OCL Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 component, available
-     as versions tagged &quot;R2_2&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for the UML2 Tools component,
-     available as versions tagged &quot;R0_8&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 Tools runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for XSD component, available as
-     versions tagged &quot;R2_4&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo7;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>XSD runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name="_Release_milestones"></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo11;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1033" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'>Wednesday, October 3 –
-     Milestone 2 (1.1 M2) – Stable Build based on Eclipse 3.4 M2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo11;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1034" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'>Wednesday, November 14 –
-     Milestone 3 (1.1 M3) – Stable Build based on Eclipse 3.4 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo11;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1035" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'>Wednesday, January 9 –
-     Milestone 4 (1.1 M4) – Stable Build based on Eclipse 3.4 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo11;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1036" src="../../images/new.gif"><span
-     style='font-size:10.0pt;font-family:Arial'>Wednesday, February 20 –
-     Milestone 5 (1.1 M5) –Stable Build based on Eclipse 3.4 M5<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for late June 2008. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name="_Target_Operating_Environments"></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo10;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>GMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the </span><img border=0
-width=12 height=12 id="_x0000_i1037" src="../../images/new.gif"><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_4.html">Eclipse
-Project 3.4 plan</a></span></i><span style='mso-bidi-font-weight:bold'> for a
-list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user interface
-elements provided by the various Eclipse projects, including dialogs and error
-messages, are externalized. The English strings for MDT are provided as the
-default resource bundles. Translations are not provided with this release.
-However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name="_Compatibility_with_Previous"></a>Compatibility with Previous
-Releases</h2>
-
-<h3>Compatibility of EODM 1.0 with 0.9</h3>
-
-<p>The EODM 1.0 component of Eclipse MDT will be compatible with EODM 0.9,
-except in those areas noted in the <i style='mso-bidi-font-style:normal'>EODM
-1.0 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 1.0 will be upwards
-contract-compatible with EODM 0.9 except in those areas noted in the <i>EODM
-1.0 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to EODM 1.0
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with EODM 1.0 APIs would ensure compliance with EODM 0.9 APIs.
-Refer to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 1.0 will be upwards
-binary-compatible with EODM 0.9 except in those areas noted in the <i>EODM 1.0
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against EODM 1.0 will likely
-be unusable with EODM 0.9. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving Java-based
-APIs</a></i> for a discussion of the kinds of API changes that maintain binary
-compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 0.9 APIs will
-usually compile and run successfully against EODM 1.0 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> EODM 1.0 will be upwards
-workspace-compatible with EODM 0.9 unless noted. This means that workspaces and
-projects created by an Eclipse with EODM 0.9 installed can be successfully
-opened by an Eclipse with EODM 1.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of OCL 1.2 with 1.1</h3>
-
-<p>The OCL 1.2 component of Eclipse MDT will be compatible with OCL 1.1, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>OCL 1.2
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.2 will be upwards
-contract-compatible with OCL 1.1 except in those areas noted in the <i>OCL 1.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to OCL 1.2 APIs. Downward
-contract compatibility is not supported. There is no guarantee that compliance
-with OCL 1.2 APIs would ensure compliance with OCL 1.1 APIs. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.2 will be upwards
-binary-compatible with OCL 1.1 except in those areas noted in the <i>OCL 1.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.2 will likely
-be unusable with OCL 1.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that maintain
-binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.1 APIs will
-usually compile and run successfully against OCL 1.2 APIs, although this cannot
-be guaranteed. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.2 will be upwards workspace-compatible
-with OCL 1.1 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.1 installed can be successfully opened by an Eclipse with
-OCL 1.2 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.2 with 2.1</h3>
-
-<p>The UML2 2.2 component of Eclipse MDT will be compatible with UML2 2.1,
-except in those areas noted in the <i style='mso-bidi-font-style:normal'>UML2
-2.2 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.2 will be upwards
-contract-compatible with UML2 2.1 except in those areas noted in the <i>UML2
-2.2 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 2.2
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with UML2 2.2 APIs would ensure compliance with UML2 2.1 APIs.
-Refer to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.2 will be upwards
-binary-compatible with UML2 2.1 except in those areas noted in the <i>UML2 2.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 2.2 will likely
-be unusable with UML2 2.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.1 APIs will
-usually compile and run successfully against UML2 2.2 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.2 will be upwards
-workspace-compatible with UML2 2.1 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 2.1 installed can be successfully
-opened by an Eclipse with UML2 2.2 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and certainly
-everything in a package with &quot;internal&quot; in its name, are considered
-implementation details which may vary between operating environment and are
-subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 Tools 0.8 with 0.7</h3>
-
-<p>The UML2 Tools 0.8 component of Eclipse MDT will be compatible with UML2
-Tools 0.7, except in those areas noted in the <i style='mso-bidi-font-style:
-normal'>UML2 Tools 0.8 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 Tools 0.8 will be upwards
-contract-compatible with UML2 Tools 0.7 except in those areas noted in the <i>UML2
-Tools 0.8 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 Tools 0.8 APIs. Downward contract compatibility is not supported. There is
-no guarantee that compliance with UML2 Tools 0.8 APIs would ensure compliance
-with UML2 Tools 0.7 APIs. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 Tools 0.8 will be upwards
-binary-compatible with UML2 Tools 0.7 except in those areas noted in the <i>UML2
-Tools 0.8 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-Tools 0.8 will likely be unusable with UML2 Tools 0.7. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 Tools 0.7 APIs
-will usually compile and run successfully against UML2 Tools 0.8 APIs, although
-this cannot be guaranteed. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 Tools 0.8 will be upwards
-workspace-compatible with UML2 Tools 0.7 unless noted. This means that
-workspaces and projects created by an Eclipse with UML2 Tools 0.7 installed can
-be successfully opened by an Eclipse with UML2 Tools 0.8 installed. This
-includes both hidden metadata, which is localized to a particular workspace, as
-well as metadata files found within a workspace project, which may propagate
-between workspaces via file copying or team repositories. User interface
-session state may be discarded when a workspace is upgraded. Downward workspace
-compatibility is not supported. Metadata files created (or overwritten) by the
-newer version will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.4 with 2.3</h3>
-
-<p>The XSD 2.4 component of Eclipse MDT will be compatible with XSD 2.3, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>XSD 2.4
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.4 will be upwards
-contract-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.4
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.4 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.4 APIs would ensure compliance with XSD 2.3 APIs. Refer
-to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.4 will be upwards
-binary-compatible with XSD 2.4 except in those areas noted in the <i>XSD 2.4
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.4 will likely
-be unusable with XSD 2.3. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.3 APIs will
-usually compile and run successfully against XSD 2.4 APIs, although this cannot
-be guaranteed. Because XSD 2.4 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.4 will be upwards workspace-compatible
-with XSD 2.3 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.3 installed can be successfully opened by an Eclipse with
-XSD 2.4 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files created
-(or overwritten) by the newer version will generally be unusable with older
-versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility within
-a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name="_EODM_component"></a>EODM component</h2>
-
-<p>EODM is an implementation of RDF(S)/OWL <span class=SpellE>metamodels</span>
-of the <a href="http://www.omg.org/ontology">Ontology Definition <span
-class=SpellE>Metamodel</span> (ODM)</a> using EMF with additional parsing,
-inference, model transformation and editing functions. Plan items reflect new
-features of the EODM component, or areas where existing features will be
-significantly reworked (<span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1026" src="../../images/ok.gif"> marks completed
-work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (EODM component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Proposed Items (EODM component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Deferred Items (EODM component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h2><a name="_OCL_component"></a>OCL component</h2>
-
-<p>OCL is an implementation of the OCL OMG standard for EMF-based models. Plan
-items reflect new features of the OCL component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1027" src="../../images/ok.gif"> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (OCL component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1043"
-src="../../images/new.gif"><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Extending the OCL grammar for QVT.</b></span> <span class=GramE>Grammar/parser
-<span class=SpellE>refactorings</span> for improved extensibility, especially
-targeting QVT implementations.</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1040" src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1044"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Navigation of
-unnamed association ends<span style='mso-bidi-font-weight:bold'>.</span></b>
-Navigation of unnamed association ends (for UML models) (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=194245">194245</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1041" src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1045"
-src="../../images/new.gif"><span class=SpellE><span class=GramE><b
-style='mso-bidi-font-weight:normal'>Customising</b></span></span><span
-class=GramE><b style='mso-bidi-font-weight:normal'> error handling<span
-style='mso-bidi-font-weight:bold'>.</span></b></span> Redesign of parse error
-detection for better error reporting. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>) [Theme:
-Improved Usability]<span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1042" src="../../images/ok.gif"></span></p>
-
-<h4><span style='font-family:Arial'>Proposed Items (OCL component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Deferred Items (OCL component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h2><a name="_OCL_Tools_component"></a>OCL Tools component</h2>
-
-<p>OCL Tools is a set of tools for editing, <span class=SpellE>refactoring</span>,
-code generation, execution, and interactive debugging of OCL constraints. Plan
-items reflect new features of the OCL Tools component (<span style='mso-bidi-font-style:
-italic'><img border=0 width=12 height=12 id="_x0000_i1028"
-src="../../images/ok.gif"> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (OCL Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Proposed Items (OCL Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Deferred Items (OCL Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h2><a name="_UML2_component"></a>UML2 component</h2>
-
-<p>UML2 is an EMF-based implementation of the <a href="http://www.omg.org/uml">UML<sup><span
-style='font-size:9.5pt'>TM</span></sup> 2.x <span class=SpellE>metamodel</span></a>
-for the Eclipse platform. Plan items reflect new features of the UML2
-component, or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1029" src="../../images/ok.gif"> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><img border=0 width=12 height=12 id="_x0000_i1039"
-src="../../images/new.gif"><b style='mso-bidi-font-weight:normal'>Profile
-Support for <span class=SpellE>Ecore</span> Annotations<span style='mso-bidi-font-weight:
-bold'>.</span></b> Because there is no general GUI support for specifying <span
-class=SpellE>EAnnotations</span> (since they aren't a standard part of UML)
-users currently cannot specify the <span class=SpellE>EAnnotations</span>
-they'd like to see in the final <span class=SpellE>Ecore</span>, so it would be
-very useful if as part of the <span class=SpellE>Ecore</span> profile, they'd
-be able to create <span class=SpellE>EAnnotations</span>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=184249">184249</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1038" src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Support
-for (de)serialization to/from CMOF<span style='mso-bidi-font-weight:bold'>.</span></b>
-Provide a resource implementation that supports loading/saving UML models in
-CMOF format in much the same way that EMF supports loading/saving <span
-class=SpellE>Ecore</span> models in EMOF format. Such support should be
-integrated into the sample UML editor and importer framework (to allow creating
-of EMF projects from CMOF models).better diagnostics for unresolved directives.
-(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199624">199624</a>)
-[Theme: End-to-End MDSD]<span style='mso-bidi-font-style:italic'> <img
-border=0 width=12 height=12 id="_x0000_i1030" src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Eclipse 3.4 / EMF 2.4 Compatibility<span style='mso-bidi-font-weight:
-bold'>.</span></b></span> Maintain release currency concurrent with EMF 2.4
-(and Eclipse 3.4). Make changes as required to align with EMF features and bug
-fixes. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204200">204200</a>)
-[Theme: Upgrade Path]</p>
-
-<p style='margin-left:27.5pt'><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Enhanced Documentation.</b></span> Provide enhanced user documentation,
-tutorials, white papers, demonstrations etc<span class=GramE>..</span> In
-particular, provide a programmerÂ’s guide integrated with the help system in
-Eclipse, improve the <span class=SpellE>Javadoc</span> by generating constraint
-information (redefines, subsets, union, etc.) into feature and operation
-headers, and update the documentation for the UML generator task. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204201">204201</a>) [Theme:
-Ease of Use]</p>
-
-<p style='margin-left:27.5pt'><span class=GramE><b style='mso-bidi-font-weight:
-normal'>UML 2.1.2 Compliance<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide support for interchange (XMI) compliance with UML 2.1.2. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204202">204202</a>) [Theme:
-Technology Trends]</p>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=SpellE><b style='mso-bidi-font-weight:
-normal'>BiDi</b></span><b style='mso-bidi-font-weight:normal'> Support<span
-style='mso-bidi-font-weight:bold'>.</span></b> Provide better support for <span
-class=SpellE>BiDi</span> languages. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682">160682</a>) [Theme:
-<span style='mso-bidi-font-weight:bold'>Internationalization &amp; Localization</span>]</p>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h2><a name="_UML2_Tools_component"></a>UML2 Tools component</h2>
-
-<p>UML2 Tools is set of GMF-based editors for viewing and editing UML models.
-Plan items reflect new features of the UML2 Tools component (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1031" src="../../images/ok.gif"> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Composite Structure Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide a GMF-based editor for UML composite structure diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199723">199723</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Deployment Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide a GMF-based editor for UML deployment diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199724">199724</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Use Case
-Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide a GMF-based
-editor for UML use case diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199725">199725</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Object Diagrams<span
-style='mso-bidi-font-weight:bold'>.</span></b> Provide a GMF-based editor for
-UML object diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199726">199726</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Structure Diagram Synchronization<span style='mso-bidi-font-weight:
-bold'>.</span></b></span> For structure diagrams it makes sense to provide
-customizable level of synchronization between semantic and notational models;
-in particular, instead of auto-synchronized class diagrams (which always show
-the complete contents of the semantic model), different levels of
-synchronization should be also supported. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199731">199731</a>) [Theme:
-Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Diagram
-Relations<span style='mso-bidi-font-weight:bold'>.</span></b> With extended set
-of 8 diagram types (4 implemented in 0.7 and 4 planned for the next release) it
-is essential to provide collaboration of the different diagram types in showing
-the different set of aspects for the single semantic model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199735">199735</a>) [Theme:
-Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Basic OCL Integration<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Integrate the features provided by OCL component with UML2Tools diagrams,
-allowing to write/validate/etc OCL expressions in terms of given semantic
-model, shown in the diagram. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199737">199737</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Extended Profile Support<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Diagram features like choosers, <span class=SpellE>inplace</span> editors,
-label providers, creation tools, etc., should be at some extent aware of the
-constraints implied by profiles applied to the semantic model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199739">199739</a>) [Theme:
-Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Diagram-Specific Property Sheets<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide custom, extensible property sheets that are aware of the UML2 Tools
-arrangement of the semantic elements into notational diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199740">199740</a>) [Theme:
-Improved Usability]</p>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 Tools component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<h2><a name="_XSD_component"></a>XSD component</h2>
-
-<p>XSD is a library that provides an <a
-href="http://www.eclipse.org/modeling/mdt/javadoc/?project=xsd&amp;page=org/eclipse/xsd/package-summary.html&amp;anchor=details">API</a>
-for manipulating the components of an XML Schema as described by the <a
-href="http://www.w3.org/TR/XMLSchema-0">W3C XML Schema</a> specifications, as
-well as an API for manipulating the DOM-accessible representation of XML. Plan
-items reflect new features of the XSD component, or areas where existing
-features will be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1032" src="../../images/ok.gif"> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (XSD component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Improved Diagnostics<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Provide better diagnostics for unresolved directives. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=203607">203607</a>) [Theme:
-Ease of Use]</p>
-
-<h4><span style='font-family:Arial'>Proposed Items (XSD component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><b style='mso-bidi-font-weight:
-normal'>XML Schema 1.1<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Investigate support for XML Schema 1.1. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204125">204125</a>) [Theme:
-Technology Trends]</p>
-
-<h4><span style='font-family:Arial'>Deferred Items (XSD component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_1_20080124.html b/docs/plans/mdt_project_plan_1_1_20080124.html
deleted file mode 100644
index 356a64f..0000000
--- a/docs/plans/mdt_project_plan_1_1_20080124.html
+++ /dev/null
@@ -1,1706 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:x="urn:schemas-microsoft-com:office:excel"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:a="urn:schemas-microsoft-com:office:access"
-xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
-xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882"
-xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema"
-xmlns:b="urn:schemas-microsoft-com:office:publisher"
-xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
-xmlns:c="urn:schemas-microsoft-com:office:component:spreadsheet"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns:html="http://www.w3.org/TR/REC-html40"
-xmlns:q="http://schemas.xmlsoap.org/soap/envelope/" xmlns:D="DAV:"
-xmlns:x2="http://schemas.microsoft.com/office/excel/2003/xml"
-xmlns:ois="http://schemas.microsoft.com/sharepoint/soap/ois/"
-xmlns:dir="http://schemas.microsoft.com/sharepoint/soap/directory/"
-xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
-xmlns:dsp="http://schemas.microsoft.com/sharepoint/dsp"
-xmlns:udc="http://schemas.microsoft.com/data/udc"
-xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-xmlns:sps="http://schemas.microsoft.com/sharepoint/soap/"
-xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-xmlns:udcxf="http://schemas.microsoft.com/data/udc/xmlfile"
-xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 12">
-<meta name=Originator content="Microsoft Word 12">
-<link rel=File-List href="mdt_project_plan_1_1_20080124_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_1_20080124_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>DRAFT Eclipse MDT - 1.1 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>144</o:Revision>
-  <o:TotalTime>4100</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2008-05-01T21:22:00Z</o:LastSaved>
-  <o:Pages>5</o:Pages>
-  <o:Words>5362</o:Words>
-  <o:Characters>30564</o:Characters>
-  <o:Company>IBM</o:Company>
-  <o:Lines>254</o:Lines>
-  <o:Paragraphs>71</o:Paragraphs>
-  <o:CharactersWithSpaces>35855</o:CharactersWithSpaces>
-  <o:Version>12.00</o:Version>
- </o:DocumentProperties>
-</xml><![endif]-->
-<link rel=themeData href="mdt_project_plan_1_1_20080124_files/themedata.thmx">
-<link rel=colorSchemeMapping
-href="mdt_project_plan_1_1_20080124_files/colorschememapping.xml">
-<!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:Zoom>BestFit</w:Zoom>
-  <w:TrackMoves>false</w:TrackMoves>
-  <w:TrackFormatting/>
-  <w:ValidateAgainstSchemas/>
-  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
-  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
-  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
-  <w:DoNotPromoteQF/>
-  <w:LidThemeOther>EN-US</w:LidThemeOther>
-  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
-  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
-  <w:Compatibility>
-   <w:BreakWrappedTables/>
-   <w:SnapToGridInCell/>
-   <w:ApplyBreakingRules/>
-   <w:WrapTextWithPunct/>
-   <w:UseAsianBreakRules/>
-   <w:DontGrowAutofit/>
-   <w:SplitPgBreakAndParaMark/>
-   <w:DontVertAlignCellWithSp/>
-   <w:DontBreakConstrainedForcedTables/>
-   <w:DontVertAlignInTxbx/>
-   <w:Word11KerningPairs/>
-   <w:CachedColBalance/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
-  <m:mathPr>
-   <m:mathFont m:val="Cambria Math"/>
-   <m:brkBin m:val="before"/>
-   <m:brkBinSub m:val="&#45;-"/>
-   <m:smallFrac m:val="off"/>
-   <m:dispDef/>
-   <m:lMargin m:val="0"/>
-   <m:rMargin m:val="0"/>
-   <m:defJc m:val="centerGroup"/>
-   <m:wrapIndent m:val="1440"/>
-   <m:intLim m:val="subSup"/>
-   <m:naryLim m:val="undOvr"/>
-  </m:mathPr></w:WordDocument>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false"
-  DefSemiHidden="false" DefQFormat="false" LatentStyleCount="267">
-  <w:LsdException Locked="false" QFormat="true" Name="Normal"/>
-  <w:LsdException Locked="false" QFormat="true" Name="heading 1"/>
-  <w:LsdException Locked="false" QFormat="true" Name="heading 2"/>
-  <w:LsdException Locked="false" QFormat="true" Name="heading 3"/>
-  <w:LsdException Locked="false" QFormat="true" Name="heading 4"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 5"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 6"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 7"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 8"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 9"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="caption"/>
-  <w:LsdException Locked="false" QFormat="true" Name="Title"/>
-  <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
-  <w:LsdException Locked="false" QFormat="true" Name="Subtitle"/>
-  <w:LsdException Locked="false" QFormat="true" Name="Strong"/>
-  <w:LsdException Locked="false" QFormat="true" Name="Emphasis"/>
-  <w:LsdException Locked="false" Priority="99" Name="No List"/>
-  <w:LsdException Locked="false" Priority="99" SemiHidden="true"
-   Name="Placeholder Text"/>
-  <w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"/>
-  <w:LsdException Locked="false" Priority="99" SemiHidden="true" Name="Revision"/>
-  <w:LsdException Locked="false" Priority="34" QFormat="true"
-   Name="List Paragraph"/>
-  <w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"/>
-  <w:LsdException Locked="false" Priority="30" QFormat="true"
-   Name="Intense Quote"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"/>
-  <w:LsdException Locked="false" Priority="19" QFormat="true"
-   Name="Subtle Emphasis"/>
-  <w:LsdException Locked="false" Priority="21" QFormat="true"
-   Name="Intense Emphasis"/>
-  <w:LsdException Locked="false" Priority="31" QFormat="true"
-   Name="Subtle Reference"/>
-  <w:LsdException Locked="false" Priority="32" QFormat="true"
-   Name="Intense Reference"/>
-  <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"/>
-  <w:LsdException Locked="false" Priority="37" SemiHidden="true"
-   UnhideWhenUsed="true" Name="Bibliography"/>
-  <w:LsdException Locked="false" Priority="39" SemiHidden="true"
-   UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"/>
- </w:LatentStyles>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:"Cambria Math";
-	panose-1:2 4 5 3 5 4 6 3 2 4;
-	mso-font-charset:1;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:variable;
-	mso-font-signature:0 0 0 0 0 0;}
-@font-face
-	{font-family:Tahoma;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:1627400839 -2147483648 8 0 66047 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Consolas;
-	panose-1:2 11 6 9 2 2 4 3 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:auto;
-	mso-font-signature:0 0 0 0 0 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman","serif";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-link:"Heading 1 Char";
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-link:"Heading 2 Char";
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-link:"Heading 3 Char";
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-link:"Heading 4 Char";
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman","serif";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{mso-style-unhide:no;
-	color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{mso-style-unhide:no;
-	color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-style-unhide:no;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-style-unhide:no;
-	mso-fareast-font-family:"Times New Roman";}
-pre
-	{mso-style-unhide:no;
-	mso-style-link:"HTML Preformatted Char";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
-	{mso-style-unhide:no;
-	mso-style-link:"Balloon Text Char";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:8.0pt;
-	font-family:"Tahoma","sans-serif";
-	mso-fareast-font-family:"Times New Roman";}
-span.Heading1Char
-	{mso-style-name:"Heading 1 Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Heading 1";
-	mso-ansi-font-size:14.0pt;
-	mso-bidi-font-size:14.0pt;
-	font-family:"Cambria","serif";
-	mso-ascii-font-family:Cambria;
-	mso-ascii-theme-font:major-latin;
-	mso-fareast-font-family:"Times New Roman";
-	mso-fareast-theme-font:major-fareast;
-	mso-hansi-font-family:Cambria;
-	mso-hansi-theme-font:major-latin;
-	mso-bidi-font-family:"Times New Roman";
-	mso-bidi-theme-font:major-bidi;
-	color:#365F91;
-	mso-themecolor:accent1;
-	mso-themeshade:191;
-	font-weight:bold;}
-span.Heading2Char
-	{mso-style-name:"Heading 2 Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Heading 2";
-	mso-ansi-font-size:13.0pt;
-	mso-bidi-font-size:13.0pt;
-	font-family:"Cambria","serif";
-	mso-ascii-font-family:Cambria;
-	mso-ascii-theme-font:major-latin;
-	mso-fareast-font-family:"Times New Roman";
-	mso-fareast-theme-font:major-fareast;
-	mso-hansi-font-family:Cambria;
-	mso-hansi-theme-font:major-latin;
-	mso-bidi-font-family:"Times New Roman";
-	mso-bidi-theme-font:major-bidi;
-	color:#4F81BD;
-	mso-themecolor:accent1;
-	font-weight:bold;}
-span.Heading3Char
-	{mso-style-name:"Heading 3 Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Heading 3";
-	mso-ansi-font-size:12.0pt;
-	mso-bidi-font-size:12.0pt;
-	font-family:"Cambria","serif";
-	mso-ascii-font-family:Cambria;
-	mso-ascii-theme-font:major-latin;
-	mso-fareast-font-family:"Times New Roman";
-	mso-fareast-theme-font:major-fareast;
-	mso-hansi-font-family:Cambria;
-	mso-hansi-theme-font:major-latin;
-	mso-bidi-font-family:"Times New Roman";
-	mso-bidi-theme-font:major-bidi;
-	color:#4F81BD;
-	mso-themecolor:accent1;
-	font-weight:bold;}
-span.Heading4Char
-	{mso-style-name:"Heading 4 Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Heading 4";
-	mso-ansi-font-size:12.0pt;
-	mso-bidi-font-size:12.0pt;
-	font-family:"Cambria","serif";
-	mso-ascii-font-family:Cambria;
-	mso-ascii-theme-font:major-latin;
-	mso-fareast-font-family:"Times New Roman";
-	mso-fareast-theme-font:major-fareast;
-	mso-hansi-font-family:Cambria;
-	mso-hansi-theme-font:major-latin;
-	mso-bidi-font-family:"Times New Roman";
-	mso-bidi-theme-font:major-bidi;
-	color:#4F81BD;
-	mso-themecolor:accent1;
-	font-weight:bold;
-	font-style:italic;}
-span.HTMLPreformattedChar
-	{mso-style-name:"HTML Preformatted Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"HTML Preformatted";
-	font-family:"Consolas","serif";
-	mso-ascii-font-family:Consolas;
-	mso-hansi-font-family:Consolas;}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-style-unhide:no;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-style-unhide:no;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-style-unhide:no;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;
-	mso-style-unhide:no;}
-span.BalloonTextChar
-	{mso-style-name:"Balloon Text Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Balloon Text";
-	mso-ansi-font-size:8.0pt;
-	mso-bidi-font-size:8.0pt;
-	font-family:"Tahoma","sans-serif";
-	mso-ascii-font-family:Tahoma;
-	mso-hansi-font-family:Tahoma;
-	mso-bidi-font-family:Tahoma;}
-.MsoChpDefault
-	{mso-style-type:export-only;
-	mso-default-props:yes;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-priority:99;
-	mso-style-qformat:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman","serif";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="33794"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>DRAFT Eclipse MDT<br>
-1.1 Plan</h1>
-
-<p>Last revised 11:42 EST January 24, 2008 (<span style='mso-no-proof:yes'><img
-width=12 height=12 id="_x0000_i1057" src="../../images/new.gif"></span> marks
-interesting changes over the <i style='mso-bidi-font-style:normal'><a
-href="mdt_project_plan_1_1_20071022.html">previous plan revision</a></i>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse MDT project, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_Release_deliverables">Release
-     deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_Release_milestones">Release
-     milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_Target_Operating_Environments">Target
-     operating environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_Compatibility_with_Previous">Compatibility
-     with previous releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_EODM_component">EODM
-     component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_OCL_component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_OCL_Tools_component">OCL
-     Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_UML2_component">UML2
-     component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_UML2_Tools_component">UML2
-     Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse bugzilla database, with a title and a concise summary (usually a
-single paragraph) that explains the work item at a suitably high enough level
-so that everyone can readily understand what the work item is without having to
-understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'> plan item – A
-     committed plan item is one that we have decided to address for the
-     release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'> plan item – A
-     proposed plan item is one that we are considering addressing for the
-     release. Although we are actively investigating it, we are not yet in a
-     position to commit to it, or to say that we wonÂ’t be able to address it.
-     After due consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'> plan item – A
-     reasonable proposal that will not make it into this release for some
-     reason is marked as deferred with a brief note as to why it was deferred.
-     Deferred plan items may resurface as committed plan items at a later
-     point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name="_Release_deliverables"></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for the EODM
-     component, available as versions tagged &quot;R1_0&quot; in the
-     eclipse.org <a href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>EODM runtime binary and SDK
-     distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>EODM runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for the OCL
-     component, available as versions tagged &quot;R1_2&quot; in the
-     eclipse.org <a href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>OCL runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for the OCL Tools
-     component, available as versions tagged &quot;R0_7&quot; in the
-     eclipse.org <a href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>OCL Tools runtime binary and SDK
-     distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>OCL Tools runtime binary and SDK
-     features on eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for the UML2
-     component, available as versions tagged &quot;R2_2&quot; in the
-     eclipse.org <a href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>UML2 runtime binary and SDK
-     distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>UML2 runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for the UML2 Tools
-     component, available as versions tagged &quot;R0_8&quot; in the
-     eclipse.org <a href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>UML2 Tools runtime binary and SDK
-     distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>UML2 Tools runtime binary and SDK
-     features on eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for XSD component,
-     available as versions tagged &quot;R2_4&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>XSD runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name="_Release_milestones"></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1056"
-     src="../../images/new.gif"></span><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, October 3 – Milestone 2 (1.1
-     M2) – Stable Build based on Eclipse 3.4 M2</span><span style='mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1055"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     "Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1054"
-     src="../../images/new.gif"></span><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, November 14 – Milestone 3
-     (1.1 M3) – Stable Build based on Eclipse 3.4 M3</span><span
-     style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1053"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     "Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1052"
-     src="../../images/new.gif"></span><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, January 9 – Milestone 4 (1.1
-     M4) – Stable Build based on Eclipse 3.4 M4</span><span style='mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1051"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     "Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1050"
-     src="../../images/new.gif"></span><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, February 20 – Milestone 5
-     (1.1 M5) – Stable Build based on Eclipse 3.4 M5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1049"
-     src="../../images/new.gif"></span><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, April 9 – Milestone 6 (1.1
-     M6) – API Freeze – Stable Build based on Eclipse 3.4 M6<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1048"
-     src="../../images/new.gif"></span><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, May 7 – Milestone 7 (1.1 M7)
-     – Stable Build based on Eclipse 3.4 M7<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1047"
-     src="../../images/new.gif"></span><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, May 21 – Release Candidate 1
-     (1.1 RC1) – Stable Build based on Eclipse 3.4 RC1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1046"
-     src="../../images/new.gif"></span><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, May 28 – Release Candidate 2
-     (1.1 RC2) – Stable Build based on Eclipse 3.4 RC2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1045"
-     src="../../images/new.gif"></span><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, June 4 – Release Candidate 3
-     (1.1 RC3) – Stable Build based on Eclipse 3.4 RC3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='mso-no-proof:
-     yes'><img border=0 width=12 height=12 id="_x0000_i1044"
-     src="../../images/new.gif"></span><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Wednesday, June 11 – Release Candidate 4
-     (1.1 RC4) – Stable Build based on Eclipse 3.4 RC4<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for late June 2008. All release deliverables
-will be available for download as soon as the release has been tested and
-validated in the target operating configurations listed below.</p>
-
-<h2><a name="_Target_Operating_Environments"></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup><span style='font-size:9.5pt'>TM</span></sup>
-code and has no direct dependence on the underlying operating system. The chief
-dependence is on the Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo4;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo4;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Eclipse Platform 3.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo4;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>EMF 2.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo4;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>GMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of MDT is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-"Arial","sans-serif"'>reference platforms</span></em><span class=header>.
-Eclipse undoubtedly runs fine in many operating environments beyond the
-reference platforms we test. However, since we do not systematically test them
-we cannot vouch for them. Problems encountered when running Eclipse on
-non-reference platform that cannot be recreated on any reference platform will
-be given lower priority than problems with running Eclipse on a reference
-platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <i style='mso-bidi-font-style:
-normal'><a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_4.html">Eclipse
-Project 3.4 plan</a></i> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name="_Compatibility_with_Previous"></a>Compatibility with Previous
-Releases</h2>
-
-<h3>Compatibility of EODM 1.0 with 0.9</h3>
-
-<p>The EODM 1.0 component of Eclipse MDT will be compatible with EODM 0.9,
-except in those areas noted in the <i style='mso-bidi-font-style:normal'>EODM
-1.0 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> EODM 1.0 will be upwards
-contract-compatible with EODM 0.9 except in those areas noted in the <i>EODM
-1.0 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to EODM 1.0
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with EODM 1.0 APIs would ensure compliance with EODM 0.9 APIs.
-Refer to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> EODM 1.0 will be upwards
-binary-compatible with EODM 0.9 except in those areas noted in the <i>EODM 1.0
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against EODM 1.0 will likely
-be unusable with EODM 0.9. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use EODM 0.9 APIs will
-usually compile and run successfully against EODM 1.0 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> EODM 1.0 will be upwards
-workspace-compatible with EODM 0.9 unless noted. This means that workspaces and
-projects created by an Eclipse with EODM 0.9 installed can be successfully
-opened by an Eclipse with EODM 1.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of OCL 1.2 with 1.1</h3>
-
-<p>The OCL 1.2 component of Eclipse MDT will be compatible with OCL 1.1, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>OCL 1.2
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.2 will be upwards contract-compatible
-with OCL 1.1 except in those areas noted in the <i>OCL 1.2 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Programs that use affected APIs
-and extension points will need to be ported to OCL 1.2 APIs. Downward contract
-compatibility is not supported. There is no guarantee that compliance with OCL
-1.2 APIs would ensure compliance with OCL 1.1 APIs. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.2 will be upwards
-binary-compatible with OCL 1.1 except in those areas noted in the <i>OCL 1.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.2 will likely
-be unusable with OCL 1.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.1 APIs will
-usually compile and run successfully against OCL 1.2 APIs, although this cannot
-be guaranteed. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.2 will be upwards workspace-compatible
-with OCL 1.1 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.1 installed can be successfully opened by an Eclipse with
-OCL 1.2 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single release
-much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.2 with 2.1</h3>
-
-<p>The UML2 2.2 component of Eclipse MDT will be compatible with UML2 2.1,
-except in those areas noted in the <i style='mso-bidi-font-style:normal'>UML2
-2.2 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.2 will be upwards contract-compatible
-with UML2 2.1 except in those areas noted in the <i>UML2 2.2 Migration</i><i
-style='mso-bidi-font-style:normal'> Guide</i>. Programs that use affected APIs
-and extension points will need to be ported to UML2 2.2 APIs. Downward contract
-compatibility is not supported. There is no guarantee that compliance with UML2
-2.2 APIs would ensure compliance with UML2 2.1 APIs. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.2 will be upwards
-binary-compatible with UML2 2.1 except in those areas noted in the <i>UML2 2.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 2.2 will likely
-be unusable with UML2 2.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.1 APIs will
-usually compile and run successfully against UML2 2.2 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.2 will be upwards
-workspace-compatible with UML2 2.1 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 2.1 installed can be successfully
-opened by an Eclipse with UML2 2.2 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 Tools 0.8 with 0.7</h3>
-
-<p>The UML2 Tools 0.8 component of Eclipse MDT will be compatible with UML2
-Tools 0.7, except in those areas noted in the <i style='mso-bidi-font-style:
-normal'>UML2 Tools 0.8 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 Tools 0.8 will be upwards
-contract-compatible with UML2 Tools 0.7 except in those areas noted in the <i>UML2
-Tools 0.8 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 Tools 0.8 APIs. Downward contract compatibility is not supported. There is
-no guarantee that compliance with UML2 Tools 0.8 APIs would ensure compliance
-with UML2 Tools 0.7 APIs. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that maintain
-contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 Tools 0.8 will be upwards
-binary-compatible with UML2 Tools 0.7 except in those areas noted in the <i>UML2
-Tools 0.8 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-Tools 0.8 will likely be unusable with UML2 Tools 0.7. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 Tools 0.7 APIs
-will usually compile and run successfully against UML2 Tools 0.8 APIs, although
-this cannot be guaranteed. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 Tools 0.8 will be upwards
-workspace-compatible with UML2 Tools 0.7 unless noted. This means that
-workspaces and projects created by an Eclipse with UML2 Tools 0.7 installed can
-be successfully opened by an Eclipse with UML2 Tools 0.8 installed. This
-includes both hidden metadata, which is localized to a particular workspace, as
-well as metadata files found within a workspace project, which may propagate
-between workspaces via file copying or team repositories. User interface
-session state may be discarded when a workspace is upgraded. Downward workspace
-compatibility is not supported. Metadata files created (or overwritten) by the
-newer version will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.4 with 2.3</h3>
-
-<p>The XSD 2.4 component of Eclipse MDT will be compatible with XSD 2.3, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>XSD 2.4
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.4 will be upwards
-contract-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.4
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.4 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.4 APIs would ensure compliance with XSD 2.3 APIs. Refer
-to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.4 will be upwards
-binary-compatible with XSD 2.4 except in those areas noted in the <i>XSD 2.4
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.4 will likely
-be unusable with XSD 2.3. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.3 APIs will
-usually compile and run successfully against XSD 2.4 APIs, although this cannot
-be guaranteed. Because XSD 2.4 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.4 will be upwards workspace-compatible
-with XSD 2.3 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.3 installed can be successfully opened by an Eclipse with
-XSD 2.4 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name="_EODM_component"></a>EODM component</h2>
-
-<p>EODM is an implementation of RDF(S)/OWL metamodels of the <a
-href="http://www.omg.org/ontology">Ontology Definition Metamodel (ODM)</a>
-using EMF with additional parsing, inference, model transformation and editing
-functions. Plan items reflect new features of the EODM component, or areas
-where existing features will be significantly reworked (<span style='mso-no-proof:
-yes'><img border=0 width=12 height=12 id="_x0000_i1043"
-src="../../images/ok.gif"></span><span style='mso-bidi-font-style:italic'>
-marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (EODM
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (EODM
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (EODM
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h2><a name="_OCL_component"></a>OCL component</h2>
-
-<p>OCL is an implementation of the OCL OMG standard for EMF-based models. Plan
-items reflect new features of the OCL component, or areas where existing
-features will be significantly reworked (<span style='mso-no-proof:yes'><img
-border=0 width=12 height=12 id="_x0000_i1042" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-style:italic'> marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (OCL
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Extending
-the OCL grammar for QVT.</b> Grammar/parser refactorings for improved
-extensibility, especially targeting QVT implementations. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1041"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Navigation
-of unnamed association ends<span style='mso-bidi-font-weight:bold'>.</span></b>
-Navigation of unnamed association ends (for UML models) (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=194245">194245</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1040"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Customising
-error handling<span style='mso-bidi-font-weight:bold'>.</span></b> Redesign of
-parse error detection for better error reporting. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>) [Theme:
-Improved Usability]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1039"
-src="../../images/ok.gif"></span></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (OCL
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (OCL
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h2><a name="_OCL_Tools_component"></a>OCL Tools component</h2>
-
-<p>OCL Tools is a set of tools for editing, refactoring, code generation,
-execution, and interactive debugging of OCL constraints. Plan items reflect new
-features of the OCL Tools component (<span style='mso-no-proof:yes'><img
-border=0 width=12 height=12 id="_x0000_i1038" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-style:italic'> marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (OCL Tools
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (OCL Tools
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (OCL Tools
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h2><a name="_UML2_component"></a>UML2 component</h2>
-
-<p>UML2 is an EMF-based implementation of the <a href="http://www.omg.org/uml">UML<sup><span
-style='font-size:9.5pt'>TM</span></sup> 2.x metamodel</a> for the Eclipse
-platform. Plan items reflect new features of the UML2 component, or areas where
-existing features will be significantly reworked (<span style='mso-no-proof:
-yes'><img border=0 width=12 height=12 id="_x0000_i1037"
-src="../../images/ok.gif"></span><span style='mso-bidi-font-style:italic'>
-marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (UML2
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Profile
-Support for Ecore Annotations<span style='mso-bidi-font-weight:bold'>.</span></b>
-Because there is no general GUI support for specifying EAnnotations (since they
-aren't a standard part of UML) users currently cannot specify the EAnnotations
-they'd like to see in the final Ecore, so it would be very useful if as part of
-the Ecore profile, they'd be able to create EAnnotations. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=184249">184249</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1036"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Support
-for (de)serialization to/from CMOF<span style='mso-bidi-font-weight:bold'>.</span></b>
-Provide a resource implementation that supports loading/saving UML models in
-CMOF format in much the same way that EMF supports loading/saving Ecore models
-in EMOF format. Such support should be integrated into the sample UML editor
-and importer framework (to allow creating of EMF projects from CMOF
-models).better diagnostics for unresolved directives. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199624">199624</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1035"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Eclipse
-3.4 / EMF 2.4 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b>
-Maintain release currency concurrent with EMF 2.4 (and Eclipse 3.4). Make
-changes as required to align with EMF features and bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204200">204200</a>) [Theme:
-Upgrade Path]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Enhanced
-Documentation.</b> Provide enhanced user documentation, tutorials, white
-papers, demonstrations etc.. In particular, provide a programmerÂ’s guide
-integrated with the help system in Eclipse, improve the Javadoc by generating
-constraint information (redefines, subsets, union, etc.) into feature and
-operation headers, and update the documentation for the UML generator task. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204201">204201</a>) [Theme:
-Ease of Use]</p>
-
-<p style='margin-left:27.5pt'><span style='mso-no-proof:yes'><img border=0
-width=12 height=12 id="_x0000_i1034" src="../../images/new.gif"></span><b
-style='mso-bidi-font-weight:normal'>UML 2.1.2 Compliance<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide support for interchange (XMI) compliance with UML
-2.1.2. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204202">204202</a>)
-[Theme: Technology Trends]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1033"
-src="../../images/ok.gif"></span></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (UML2
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>BiDi
-Support<span style='mso-bidi-font-weight:bold'>.</span></b> Provide better
-support for BiDi languages. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682">160682</a>) [Theme:
-<span style='mso-bidi-font-weight:bold'>Internationalization &amp; Localization</span>]</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (UML2
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h2><a name="_UML2_Tools_component"></a>UML2 Tools component</h2>
-
-<p>UML2 Tools is set of GMF-based editors for viewing and editing UML models.
-Plan items reflect new features of the UML2 Tools component (<span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1032"
-src="../../images/ok.gif"></span><span style='mso-bidi-font-style:italic'>
-marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (UML2 Tools
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Composite
-Structure Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide
-a GMF-based editor for UML composite structure diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199723">199723</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><span style='mso-no-proof:yes'><img border=0
-width=12 height=12 id="_x0000_i1031" src="../../images/new.gif"></span><b
-style='mso-bidi-font-weight:normal'>Deployment Diagrams<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide a GMF-based editor for UML deployment diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199724">199724</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1030"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><span style='mso-no-proof:yes'><img border=0
-width=12 height=12 id="_x0000_i1029" src="../../images/new.gif"></span><b
-style='mso-bidi-font-weight:normal'>Use Case Diagrams<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide a GMF-based editor for UML use case diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199725">199725</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1028"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Object
-Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide a
-GMF-based editor for UML object diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199726">199726</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Structure
-Diagram Synchronization<span style='mso-bidi-font-weight:bold'>.</span></b> For
-structure diagrams it makes sense to provide customizable level of synchronization
-between semantic and notational models; in particular, instead of
-auto-synchronized class diagrams (which always show the complete contents of
-the semantic model), different levels of synchronization should be also
-supported. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199731">199731</a>)
-[Theme: Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Diagram
-Relations<span style='mso-bidi-font-weight:bold'>.</span></b> With extended set
-of 8 diagram types (4 implemented in 0.7 and 4 planned for the next release) it
-is essential to provide collaboration of the different diagram types in showing
-the different set of aspects for the single semantic model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199735">199735</a>) [Theme:
-Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Basic OCL
-Integration<span style='mso-bidi-font-weight:bold'>.</span></b> Integrate the
-features provided by OCL component with UML2Tools diagrams, allowing to
-write/validate/etc OCL expressions in terms of given semantic model, shown in
-the diagram. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199737">199737</a>)
-[Theme: End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Extended
-Profile Support<span style='mso-bidi-font-weight:bold'>.</span></b> Diagram
-features like choosers, inplace editors, label providers, creation tools, etc.,
-should be at some extent aware of the constraints implied by profiles applied
-to the semantic model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199739">199739</a>) [Theme:
-Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Diagram-Specific
-Property Sheets<span style='mso-bidi-font-weight:bold'>.</span></b> Provide
-custom, extensible property sheets that are aware of the UML2 Tools arrangement
-of the semantic elements into notational diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199740">199740</a>) [Theme:
-Improved Usability]</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (UML2 Tools
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (UML2 Tools
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h2><a name="_XSD_component"></a>XSD component</h2>
-
-<p>XSD is a library that provides an <a
-href="http://www.eclipse.org/modeling/mdt/javadoc/?project=xsd&amp;page=org/eclipse/xsd/package-summary.html&amp;anchor=details">API</a>
-for manipulating the components of an XML Schema as described by the <a
-href="http://www.w3.org/TR/XMLSchema-0">W3C XML Schema</a> specifications, as
-well as an API for manipulating the DOM-accessible representation of XML. Plan
-items reflect new features of the XSD component, or areas where existing
-features will be significantly reworked (<span style='mso-no-proof:yes'><img
-border=0 width=12 height=12 id="_x0000_i1027" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-style:italic'> marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (XSD
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><span style='mso-no-proof:yes'><img border=0
-width=12 height=12 id="_x0000_i1026" src="../../images/new.gif"></span><b
-style='mso-bidi-font-weight:normal'>Improved Diagnostics<span style='mso-bidi-font-weight:
-bold'>.</span></b> Provide better diagnostics for unresolved directives. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=203607">203607</a>) [Theme:
-Ease of Use]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1025"
-src="../../images/ok.gif"></span></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (XSD
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>XML Schema
-1.1<span style='mso-bidi-font-weight:bold'>.</span></b> Investigate support for
-XML Schema 1.1. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204125">204125</a>)
-[Theme: Technology Trends]</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (XSD
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/plans/mdt_project_plan_1_1_20080501.html b/docs/plans/mdt_project_plan_1_1_20080501.html
deleted file mode 100644
index e6d84ee..0000000
--- a/docs/plans/mdt_project_plan_1_1_20080501.html
+++ /dev/null
@@ -1,1583 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:x="urn:schemas-microsoft-com:office:excel"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:a="urn:schemas-microsoft-com:office:access"
-xmlns:dt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"
-xmlns:s="uuid:BDC6E3F0-6DA3-11d1-A2A3-00AA00C14882"
-xmlns:rs="urn:schemas-microsoft-com:rowset" xmlns:z="#RowsetSchema"
-xmlns:b="urn:schemas-microsoft-com:office:publisher"
-xmlns:ss="urn:schemas-microsoft-com:office:spreadsheet"
-xmlns:c="urn:schemas-microsoft-com:office:component:spreadsheet"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns:html="http://www.w3.org/TR/REC-html40"
-xmlns:q="http://schemas.xmlsoap.org/soap/envelope/" xmlns:D="DAV:"
-xmlns:x2="http://schemas.microsoft.com/office/excel/2003/xml"
-xmlns:ois="http://schemas.microsoft.com/sharepoint/soap/ois/"
-xmlns:dir="http://schemas.microsoft.com/sharepoint/soap/directory/"
-xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
-xmlns:dsp="http://schemas.microsoft.com/sharepoint/dsp"
-xmlns:udc="http://schemas.microsoft.com/data/udc"
-xmlns:xsd="http://www.w3.org/2001/XMLSchema"
-xmlns:sps="http://schemas.microsoft.com/sharepoint/soap/"
-xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
-xmlns:udcxf="http://schemas.microsoft.com/data/udc/xmlfile"
-xmlns:m="http://schemas.microsoft.com/office/2004/12/omml"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 12">
-<meta name=Originator content="Microsoft Word 12">
-<link rel=File-List href="mdt_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="mdt_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse MDT - Ganymede Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>149</o:Revision>
-  <o:TotalTime>4122</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2008-05-01T21:59:00Z</o:LastSaved>
-  <o:Pages>4</o:Pages>
-  <o:Words>4724</o:Words>
-  <o:Characters>26931</o:Characters>
-  <o:Company>IBM</o:Company>
-  <o:Lines>224</o:Lines>
-  <o:Paragraphs>63</o:Paragraphs>
-  <o:CharactersWithSpaces>31592</o:CharactersWithSpaces>
-  <o:Version>12.00</o:Version>
- </o:DocumentProperties>
-</xml><![endif]-->
-<link rel=themeData href="mdt_project_plan_1_1_files/themedata.thmx">
-<link rel=colorSchemeMapping
-href="mdt_project_plan_1_1_files/colorschememapping.xml">
-<!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:Zoom>BestFit</w:Zoom>
-  <w:TrackMoves>false</w:TrackMoves>
-  <w:TrackFormatting/>
-  <w:ValidateAgainstSchemas/>
-  <w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid>
-  <w:IgnoreMixedContent>false</w:IgnoreMixedContent>
-  <w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText>
-  <w:DoNotPromoteQF/>
-  <w:LidThemeOther>EN-US</w:LidThemeOther>
-  <w:LidThemeAsian>X-NONE</w:LidThemeAsian>
-  <w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript>
-  <w:Compatibility>
-   <w:BreakWrappedTables/>
-   <w:SnapToGridInCell/>
-   <w:ApplyBreakingRules/>
-   <w:WrapTextWithPunct/>
-   <w:UseAsianBreakRules/>
-   <w:DontGrowAutofit/>
-   <w:SplitPgBreakAndParaMark/>
-   <w:DontVertAlignCellWithSp/>
-   <w:DontBreakConstrainedForcedTables/>
-   <w:DontVertAlignInTxbx/>
-   <w:Word11KerningPairs/>
-   <w:CachedColBalance/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
-  <m:mathPr>
-   <m:mathFont m:val="Cambria Math"/>
-   <m:brkBin m:val="before"/>
-   <m:brkBinSub m:val="&#45;-"/>
-   <m:smallFrac m:val="off"/>
-   <m:dispDef/>
-   <m:lMargin m:val="0"/>
-   <m:rMargin m:val="0"/>
-   <m:defJc m:val="centerGroup"/>
-   <m:wrapIndent m:val="1440"/>
-   <m:intLim m:val="subSup"/>
-   <m:naryLim m:val="undOvr"/>
-  </m:mathPr></w:WordDocument>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="false"
-  DefSemiHidden="false" DefQFormat="false" LatentStyleCount="267">
-  <w:LsdException Locked="false" QFormat="true" Name="Normal"/>
-  <w:LsdException Locked="false" QFormat="true" Name="heading 1"/>
-  <w:LsdException Locked="false" QFormat="true" Name="heading 2"/>
-  <w:LsdException Locked="false" QFormat="true" Name="heading 3"/>
-  <w:LsdException Locked="false" QFormat="true" Name="heading 4"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 5"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 6"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 7"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 8"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="heading 9"/>
-  <w:LsdException Locked="false" SemiHidden="true" UnhideWhenUsed="true"
-   QFormat="true" Name="caption"/>
-  <w:LsdException Locked="false" QFormat="true" Name="Title"/>
-  <w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/>
-  <w:LsdException Locked="false" QFormat="true" Name="Subtitle"/>
-  <w:LsdException Locked="false" QFormat="true" Name="Strong"/>
-  <w:LsdException Locked="false" QFormat="true" Name="Emphasis"/>
-  <w:LsdException Locked="false" Priority="99" Name="No List"/>
-  <w:LsdException Locked="false" Priority="99" SemiHidden="true"
-   Name="Placeholder Text"/>
-  <w:LsdException Locked="false" Priority="1" QFormat="true" Name="No Spacing"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 1"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 1"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 1"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 1"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 1"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 1"/>
-  <w:LsdException Locked="false" Priority="99" SemiHidden="true" Name="Revision"/>
-  <w:LsdException Locked="false" Priority="34" QFormat="true"
-   Name="List Paragraph"/>
-  <w:LsdException Locked="false" Priority="29" QFormat="true" Name="Quote"/>
-  <w:LsdException Locked="false" Priority="30" QFormat="true"
-   Name="Intense Quote"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 1"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 1"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 1"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 1"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 1"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 1"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 1"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 1"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 2"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 2"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 2"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 2"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 2"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 2"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 2"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 2"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 2"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 2"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 2"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 2"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 2"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 2"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 3"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 3"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 3"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 3"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 3"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 3"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 3"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 3"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 3"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 3"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 3"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 3"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 3"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 3"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 4"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 4"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 4"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 4"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 4"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 4"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 4"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 4"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 4"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 4"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 4"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 4"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 4"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 4"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 5"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 5"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 5"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 5"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 5"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 5"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 5"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 5"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 5"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 5"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 5"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 5"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 5"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 5"/>
-  <w:LsdException Locked="false" Priority="60" Name="Light Shading Accent 6"/>
-  <w:LsdException Locked="false" Priority="61" Name="Light List Accent 6"/>
-  <w:LsdException Locked="false" Priority="62" Name="Light Grid Accent 6"/>
-  <w:LsdException Locked="false" Priority="63" Name="Medium Shading 1 Accent 6"/>
-  <w:LsdException Locked="false" Priority="64" Name="Medium Shading 2 Accent 6"/>
-  <w:LsdException Locked="false" Priority="65" Name="Medium List 1 Accent 6"/>
-  <w:LsdException Locked="false" Priority="66" Name="Medium List 2 Accent 6"/>
-  <w:LsdException Locked="false" Priority="67" Name="Medium Grid 1 Accent 6"/>
-  <w:LsdException Locked="false" Priority="68" Name="Medium Grid 2 Accent 6"/>
-  <w:LsdException Locked="false" Priority="69" Name="Medium Grid 3 Accent 6"/>
-  <w:LsdException Locked="false" Priority="70" Name="Dark List Accent 6"/>
-  <w:LsdException Locked="false" Priority="71" Name="Colorful Shading Accent 6"/>
-  <w:LsdException Locked="false" Priority="72" Name="Colorful List Accent 6"/>
-  <w:LsdException Locked="false" Priority="73" Name="Colorful Grid Accent 6"/>
-  <w:LsdException Locked="false" Priority="19" QFormat="true"
-   Name="Subtle Emphasis"/>
-  <w:LsdException Locked="false" Priority="21" QFormat="true"
-   Name="Intense Emphasis"/>
-  <w:LsdException Locked="false" Priority="31" QFormat="true"
-   Name="Subtle Reference"/>
-  <w:LsdException Locked="false" Priority="32" QFormat="true"
-   Name="Intense Reference"/>
-  <w:LsdException Locked="false" Priority="33" QFormat="true" Name="Book Title"/>
-  <w:LsdException Locked="false" Priority="37" SemiHidden="true"
-   UnhideWhenUsed="true" Name="Bibliography"/>
-  <w:LsdException Locked="false" Priority="39" SemiHidden="true"
-   UnhideWhenUsed="true" QFormat="true" Name="TOC Heading"/>
- </w:LatentStyles>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:"Cambria Math";
-	panose-1:2 4 5 3 5 4 6 3 2 4;
-	mso-font-charset:1;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:variable;
-	mso-font-signature:0 0 0 0 0 0;}
-@font-face
-	{font-family:Tahoma;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:1627400839 -2147483648 8 0 66047 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Consolas;
-	panose-1:2 11 6 9 2 2 4 3 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610611985 1073750091 0 0 159 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman","serif";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-link:"Heading 1 Char";
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-link:"Heading 2 Char";
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-link:"Heading 3 Char";
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-style-unhide:no;
-	mso-style-qformat:yes;
-	mso-style-link:"Heading 4 Char";
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman","serif";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{mso-style-unhide:no;
-	color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{mso-style-unhide:no;
-	color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-style-unhide:no;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-style-unhide:no;
-	mso-fareast-font-family:"Times New Roman";}
-pre
-	{mso-style-unhide:no;
-	mso-style-link:"HTML Preformatted Char";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.MsoAcetate, li.MsoAcetate, div.MsoAcetate
-	{mso-style-unhide:no;
-	mso-style-link:"Balloon Text Char";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:8.0pt;
-	font-family:"Tahoma","sans-serif";
-	mso-fareast-font-family:"Times New Roman";}
-span.Heading1Char
-	{mso-style-name:"Heading 1 Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Heading 1";
-	mso-ansi-font-size:14.0pt;
-	mso-bidi-font-size:14.0pt;
-	font-family:"Cambria","serif";
-	mso-ascii-font-family:Cambria;
-	mso-ascii-theme-font:major-latin;
-	mso-fareast-font-family:"Times New Roman";
-	mso-fareast-theme-font:major-fareast;
-	mso-hansi-font-family:Cambria;
-	mso-hansi-theme-font:major-latin;
-	mso-bidi-font-family:"Times New Roman";
-	mso-bidi-theme-font:major-bidi;
-	color:#365F91;
-	mso-themecolor:accent1;
-	mso-themeshade:191;
-	font-weight:bold;}
-span.Heading2Char
-	{mso-style-name:"Heading 2 Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Heading 2";
-	mso-ansi-font-size:13.0pt;
-	mso-bidi-font-size:13.0pt;
-	font-family:"Cambria","serif";
-	mso-ascii-font-family:Cambria;
-	mso-ascii-theme-font:major-latin;
-	mso-fareast-font-family:"Times New Roman";
-	mso-fareast-theme-font:major-fareast;
-	mso-hansi-font-family:Cambria;
-	mso-hansi-theme-font:major-latin;
-	mso-bidi-font-family:"Times New Roman";
-	mso-bidi-theme-font:major-bidi;
-	color:#4F81BD;
-	mso-themecolor:accent1;
-	font-weight:bold;}
-span.Heading3Char
-	{mso-style-name:"Heading 3 Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Heading 3";
-	mso-ansi-font-size:12.0pt;
-	mso-bidi-font-size:12.0pt;
-	font-family:"Cambria","serif";
-	mso-ascii-font-family:Cambria;
-	mso-ascii-theme-font:major-latin;
-	mso-fareast-font-family:"Times New Roman";
-	mso-fareast-theme-font:major-fareast;
-	mso-hansi-font-family:Cambria;
-	mso-hansi-theme-font:major-latin;
-	mso-bidi-font-family:"Times New Roman";
-	mso-bidi-theme-font:major-bidi;
-	color:#4F81BD;
-	mso-themecolor:accent1;
-	font-weight:bold;}
-span.Heading4Char
-	{mso-style-name:"Heading 4 Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Heading 4";
-	mso-ansi-font-size:12.0pt;
-	mso-bidi-font-size:12.0pt;
-	font-family:"Cambria","serif";
-	mso-ascii-font-family:Cambria;
-	mso-ascii-theme-font:major-latin;
-	mso-fareast-font-family:"Times New Roman";
-	mso-fareast-theme-font:major-fareast;
-	mso-hansi-font-family:Cambria;
-	mso-hansi-theme-font:major-latin;
-	mso-bidi-font-family:"Times New Roman";
-	mso-bidi-theme-font:major-bidi;
-	color:#4F81BD;
-	mso-themecolor:accent1;
-	font-weight:bold;
-	font-style:italic;}
-span.HTMLPreformattedChar
-	{mso-style-name:"HTML Preformatted Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"HTML Preformatted";
-	font-family:Consolas;
-	mso-ascii-font-family:Consolas;
-	mso-hansi-font-family:Consolas;}
-span.BalloonTextChar
-	{mso-style-name:"Balloon Text Char";
-	mso-style-unhide:no;
-	mso-style-locked:yes;
-	mso-style-link:"Balloon Text";
-	mso-ansi-font-size:8.0pt;
-	mso-bidi-font-size:8.0pt;
-	font-family:"Tahoma","sans-serif";
-	mso-ascii-font-family:Tahoma;
-	mso-hansi-font-family:Tahoma;
-	mso-bidi-font-family:Tahoma;}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-style-unhide:no;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-style-unhide:no;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-style-unhide:no;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;
-	mso-style-unhide:no;}
-.MsoChpDefault
-	{mso-style-type:export-only;
-	mso-default-props:yes;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-priority:99;
-	mso-style-qformat:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman","serif";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="35842"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse MDT<br>
-Ganymede Plan</h1>
-
-<p>Last revised 17:59 EDT May 1, 2008 (<span style='mso-no-proof:yes'><img
-width=12 height=12 id="_x0000_i1061" src="../../images/new.gif"></span> marks
-interesting changes over the <i style='mso-bidi-font-style:normal'><a
-href="mdt_project_plan_1_1_20080124.html">previous plan revision</a></i>)</p>
-
-<p><i>Please send comments about this plan to the </i><a
-href="mailto:mdt-dev@eclipse.org">mdt-dev@eclipse.org</a> <i>developer mailing
-list.</i></p>
-
-<p><span style='mso-no-proof:yes'><img border=0 width=12 height=12
-id="_x0000_i1060" src="../../images/new.gif"></span>This document lays out the
-feature and API set for the next feature release of the Eclipse MDT project,
-designated the Ganymede release. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_Release_deliverables">Release
-     deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_Release_milestones">Release
-     milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_Target_Operating_Environments">Target
-     operating environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_Compatibility_with_Previous">Compatibility
-     with previous releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_OCL_component">OCL component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_UML2_component">UML2
-     component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_UML2_Tools_component">UML2
-     Tools component</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'><a href="#_XSD_component">XSD component</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the components under
-the Eclipse MDT project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse bugzilla database, with a title and a concise summary (usually a
-single paragraph) that explains the work item at a suitably high enough level
-so that everyone can readily understand what the work item is without having to
-understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>Fixing bugs, improving test coverage, documentation, examples, performance
-tuning, usability, etc. are considered routine ongoing maintenance activities
-and are not included in this plan unless they would also involve a significant
-change to the API or feature set, or involve a significant amount of work. The
-intent of the plan is to account for all interesting feature work.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Committed</span></b><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'> plan item – A
-     committed plan item is one that we have decided to address for the
-     release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Proposed</span></b><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'> plan item – A
-     proposed plan item is one that we are considering addressing for the
-     release. Although we are actively investigating it, we are not yet in a
-     position to commit to it, or to say that we wonÂ’t be able to address it.
-     After due consideration, a proposal will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo1;tab-stops:list .5in'><b style='mso-bidi-font-weight:
-     normal'><span style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Deferred</span></b><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'> plan item – A
-     reasonable proposal that will not make it into this release for some
-     reason is marked as deferred with a brief note as to why it was deferred.
-     Deferred plan items may resurface as committed plan items at a later
-     point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name="_Release_deliverables"></a>Release deliverables</h2>
-
-<p><span style='mso-no-proof:yes'><img border=0 width=12 height=12
-id="_x0000_i1059" src="../../images/new.gif"></span>The release deliverables
-are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for the OCL
-     component, available as versions tagged &quot;R1_2&quot; in the
-     eclipse.org <a href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>OCL runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>OCL runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for the UML2
-     component, available as versions tagged &quot;R2_2&quot; in the
-     eclipse.org <a href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>UML2 runtime binary and SDK
-     distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>UML2 runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for the UML2 Tools
-     component, available as versions tagged &quot;R0_8&quot; in the
-     eclipse.org <a href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>UML2 Tools runtime binary and SDK
-     distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>UML2 Tools runtime binary and SDK
-     features on eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Source code release for XSD component,
-     available as versions tagged &quot;R2_4&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>XSD runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo2;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>XSD runtime binary and SDK features on
-     eclipse.org update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name="_Release_milestones"></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif";mso-no-proof:yes'><img border=0 width=12
-     height=12 id="_x0000_i1058" src="../../images/new.gif"></span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Wednesday,
-     October 3 – Milestone 2 (Ganymede M2) – Stable Build based on Eclipse 3.4
-     M2</span><span style='mso-no-proof:yes'><img border=0 width=12 height=12
-     id="_x0000_i1057" src="../../images/ok.gif"></span><span style='font-size:
-     10.0pt;font-family:"Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif";mso-no-proof:yes'><img border=0 width=12
-     height=12 id="_x0000_i1056" src="../../images/new.gif"></span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Wednesday,
-     November 14 – Milestone 3 (Ganymede M3) – Stable Build based on Eclipse
-     3.4 M3</span><span style='mso-no-proof:yes'><img border=0 width=12
-     height=12 id="_x0000_i1055" src="../../images/ok.gif"></span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif";mso-no-proof:yes'><img border=0 width=12
-     height=12 id="_x0000_i1054" src="../../images/new.gif"></span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Wednesday,
-     January 9 – Milestone 4 (Ganymede M4) – Stable Build based on Eclipse 3.4
-     M4</span><span style='mso-no-proof:yes'><img border=0 width=12 height=12
-     id="_x0000_i1053" src="../../images/ok.gif"></span><span style='font-size:
-     10.0pt;font-family:"Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif";mso-no-proof:yes'><img border=0 width=12
-     height=12 id="_x0000_i1052" src="../../images/new.gif"></span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Wednesday,
-     February 20 – Milestone 5 (Ganymede M5) – Stable Build based on Eclipse
-     3.4 M5</span><span style='font-size:10.0pt;font-family:"Arial","sans-serif";
-     mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1051"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     "Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif";mso-no-proof:yes'><img border=0 width=12
-     height=12 id="_x0000_i1050" src="../../images/new.gif"></span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Wednesday, April
-     9 – Milestone 6 (Ganymede M6) – API Freeze – Stable Build based on Eclipse
-     3.4 M6</span><span style='font-size:10.0pt;font-family:"Arial","sans-serif";
-     mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1049"
-     src="../../images/ok.gif"></span><span style='font-size:10.0pt;font-family:
-     "Arial","sans-serif"'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif";mso-no-proof:yes'><img border=0 width=12
-     height=12 id="_x0000_i1048" src="../../images/new.gif"></span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Wednesday, May 7
-     – Milestone 7 (Ganymede M7) – Stable Build based on Eclipse 3.4 M7<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif";mso-no-proof:yes'><img border=0 width=12
-     height=12 id="_x0000_i1047" src="../../images/new.gif"></span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Wednesday, May
-     21 – Release Candidate 1 (Ganymede RC1) – Stable Build based on Eclipse
-     3.4 RC1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif";mso-no-proof:yes'><img border=0 width=12
-     height=12 id="_x0000_i1046" src="../../images/new.gif"></span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Wednesday, May
-     28 – Release Candidate 2 (Ganymede RC2) – Stable Build based on Eclipse
-     3.4 RC2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif";mso-no-proof:yes'><img border=0 width=12
-     height=12 id="_x0000_i1045" src="../../images/new.gif"></span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Wednesday, June
-     4 – Release Candidate 3 (Ganymede RC3) – Stable Build based on Eclipse 3.4
-     RC3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif";mso-no-proof:yes'><img border=0 width=12
-     height=12 id="_x0000_i1044" src="../../images/new.gif"></span><span
-     style='font-size:10.0pt;font-family:"Arial","sans-serif"'>Wednesday, June
-     11 – Release Candidate 4 (Ganymede RC4) – Stable Build based on Eclipse
-     3.4 RC4<o:p></o:p></span></li>
-</ul>
-
-<p>The <span style='mso-no-proof:yes'><img border=0 width=12 height=12
-id="_x0000_i1043" src="../../images/new.gif"></span>Ganymede release is
-targeted for late June 2008. All release deliverables will be available for
-download as soon as the release has been tested and validated in the target
-operating configurations listed below.</p>
-
-<h2><a name="_Target_Operating_Environments"></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup><span style='font-size:9.5pt'>TM</span></sup>
-code and has no direct dependence on the underlying operating system. The chief
-dependence is on the Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The MDT <span style='mso-no-proof:yes'><img border=0 width=12 height=12
-id="_x0000_i1042" src="../../images/new.gif"></span>Ganymede release depends on
-the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo4;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo4;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>Eclipse Platform 3.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo4;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>EMF 2.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo4;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:"Arial","sans-serif"'>GMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The <span style='mso-no-proof:yes'><img border=0 width=12 height=12
-id="_x0000_i1041" src="../../images/new.gif"></span>Ganymede release of MDT is
-designed to run on any configuration supporting the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-"Arial","sans-serif"'>reference platforms</span></em><span class=header>.
-Eclipse undoubtedly runs fine in many operating environments beyond the reference
-platforms we test. However, since we do not systematically test them we cannot
-vouch for them. Problems encountered when running Eclipse on non-reference
-platform that cannot be recreated on any reference platform will be given lower
-priority than problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <i style='mso-bidi-font-style:
-normal'><a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_4.html">Eclipse
-Project 3.4 plan</a></i> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for MDT are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name="_Compatibility_with_Previous"></a>Compatibility with Previous
-Releases</h2>
-
-<h3>Compatibility of OCL 1.2 with 1.1</h3>
-
-<p>The OCL 1.2 component of Eclipse MDT will be compatible with OCL 1.1, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>OCL 1.2
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> OCL 1.2 will be upwards
-contract-compatible with OCL 1.1 except in those areas noted in the <i>OCL 1.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to OCL 1.2 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with OCL 1.2 APIs would ensure compliance with OCL 1.1 APIs. Refer to
-<i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> OCL 1.2 will be upwards
-binary-compatible with OCL 1.1 except in those areas noted in the <i>OCL 1.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against OCL 1.2 will likely
-be unusable with OCL 1.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use OCL 1.1 APIs will
-usually compile and run successfully against OCL 1.2 APIs, although this cannot
-be guaranteed. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> OCL 1.2 will be upwards workspace-compatible
-with OCL 1.1 unless noted. This means that workspaces and projects created by
-an Eclipse with OCL 1.1 installed can be successfully opened by an Eclipse with
-OCL 1.2 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team repositories.
-User interface session state may be discarded when a workspace is upgraded.
-Downward workspace compatibility is not supported. Metadata files created (or
-overwritten) by the newer version will generally be unusable with older
-versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 2.2 with 2.1</h3>
-
-<p>The UML2 2.2 component of Eclipse MDT will be compatible with UML2 2.1,
-except in those areas noted in the <i style='mso-bidi-font-style:normal'>UML2
-2.2 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.2 will be upwards
-contract-compatible with UML2 2.1 except in those areas noted in the <i>UML2
-2.2 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 2.2
-APIs. Downward contract compatibility is not supported. There is no guarantee
-that compliance with UML2 2.2 APIs would ensure compliance with UML2 2.1 APIs.
-Refer to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.2 will be upwards
-binary-compatible with UML2 2.1 except in those areas noted in the <i>UML2 2.2
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 2.2 will likely
-be unusable with UML2 2.1. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 2.1 APIs will
-usually compile and run successfully against UML2 2.2 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 2.2 will be upwards
-workspace-compatible with UML2 2.1 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 2.1 installed can be successfully
-opened by an Eclipse with UML2 2.2 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be discarded
-when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of UML2 Tools 0.8 with 0.7</h3>
-
-<p>The UML2 Tools 0.8 component of Eclipse MDT will be compatible with UML2
-Tools 0.7, except in those areas noted in the <i style='mso-bidi-font-style:
-normal'>UML2 Tools 0.8 Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 Tools 0.8 will be upwards
-contract-compatible with UML2 Tools 0.7 except in those areas noted in the <i>UML2
-Tools 0.8 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 Tools 0.8 APIs. Downward contract compatibility is not supported. There is
-no guarantee that compliance with UML2 Tools 0.8 APIs would ensure compliance
-with UML2 Tools 0.7 APIs. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 Tools 0.8 will be upwards
-binary-compatible with UML2 Tools 0.7 except in those areas noted in the <i>UML2
-Tools 0.8 Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-Tools 0.8 will likely be unusable with UML2 Tools 0.7. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 Tools 0.7 APIs
-will usually compile and run successfully against UML2 Tools 0.8 APIs, although
-this cannot be guaranteed. In some cases, it may be necessary to make minor
-changes to the source code to disambiguate things like imports or overloaded
-method invocations. Downward source compatibility is not supported. If source
-files use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> UML2 Tools 0.8 will be upwards
-workspace-compatible with UML2 Tools 0.7 unless noted. This means that workspaces
-and projects created by an Eclipse with UML2 Tools 0.7 installed can be
-successfully opened by an Eclipse with UML2 Tools 0.8 installed. This includes
-both hidden metadata, which is localized to a particular workspace, as well as
-metadata files found within a workspace project, which may propagate between
-workspaces via file copying or team repositories. User interface session state
-may be discarded when a workspace is upgraded. Downward workspace compatibility
-is not supported. Metadata files created (or overwritten) by the newer version
-will generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h3>Compatibility of XSD 2.4 with 2.3</h3>
-
-<p>The XSD 2.4 component of Eclipse MDT will be compatible with XSD 2.3, except
-in those areas noted in the <i style='mso-bidi-font-style:normal'>XSD 2.4
-Migration Guide</i>.</p>
-
-<p><b>API Contract Compatibility:</b> XSD 2.4 will be upwards
-contract-compatible with XSD 2.3 except in those areas noted in the <i>XSD 2.4
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Programs that
-use affected APIs and extension points will need to be ported to XSD 2.4 APIs.
-Downward contract compatibility is not supported. There is no guarantee that
-compliance with XSD 2.4 APIs would ensure compliance with XSD 2.3 APIs. Refer
-to <i><a href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> XSD 2.4 will be upwards
-binary-compatible with XSD 2.4 except in those areas noted in the <i>XSD 2.4
-Migration</i><i style='mso-bidi-font-style:normal'> Guide</i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against XSD 2.4 will likely
-be unusable with XSD 2.3. Refer to <i><a
-href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use XSD 2.3 APIs will
-usually compile and run successfully against XSD 2.4 APIs, although this cannot
-be guaranteed. Because XSD 2.4 may exploit new Java language constructs, there
-is an increased chance of source incompatibilities compared to previous XSD
-releases. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions.</p>
-
-<p><b>Workspace Compatibility:</b> XSD 2.4 will be upwards workspace-compatible
-with XSD 2.3 unless noted. This means that workspaces and projects created by
-an Eclipse with XSD 2.3 installed can be successfully opened by an Eclipse with
-XSD 2.4 installed. This includes both hidden metadata, which is localized to a
-particular workspace, as well as metadata files found within a workspace
-project, which may propagate between workspaces via file copying or team
-repositories. User interface session state may be discarded when a workspace is
-upgraded. Downward workspace compatibility is not supported. Metadata files
-created (or overwritten) by the newer version will generally be unusable with
-older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2><span style='font-size:10.0pt;mso-no-proof:yes'><img border=0 width=12
-height=12 id="_x0000_i1040" src="../../images/new.gif"></span>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse MDT align
-with themes identified by the <a
-href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php">Eclipse
-Requirements Council</a> and <a
-href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan">Modeling project</a>.</p>
-
-<h2><a name="_EODM_component"></a><a name="_OCL_component"></a>OCL component</h2>
-
-<p>OCL is an implementation of the OCL OMG standard for EMF-based models. Plan
-items reflect new features of the OCL component, or areas where existing
-features will be significantly reworked (<span style='mso-no-proof:yes'><img
-border=0 width=12 height=12 id="_x0000_i1039" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-style:italic'> marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (OCL
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Extending
-the OCL grammar for QVT.</b> Grammar/parser refactorings for improved
-extensibility, especially targeting QVT implementations. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1038"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Navigation
-of unnamed association ends<span style='mso-bidi-font-weight:bold'>.</span></b>
-Navigation of unnamed association ends (for UML models) (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=194245">194245</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1037"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Customising
-error handling<span style='mso-bidi-font-weight:bold'>.</span></b> Redesign of
-parse error detection for better error reporting. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>) [Theme:
-Improved Usability]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1036"
-src="../../images/ok.gif"></span></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (OCL
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (OCL
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h2><a name="_OCL_Tools_component"></a><a name="_UML2_component"></a>UML2
-component</h2>
-
-<p>UML2 is an EMF-based implementation of the <a href="http://www.omg.org/uml">UML<sup><span
-style='font-size:9.5pt'>TM</span></sup> 2.x metamodel</a> for the Eclipse
-platform. Plan items reflect new features of the UML2 component, or areas where
-existing features will be significantly reworked (<span style='mso-no-proof:
-yes'><img border=0 width=12 height=12 id="_x0000_i1035"
-src="../../images/ok.gif"></span><span style='mso-bidi-font-style:italic'>
-marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (UML2
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Profile
-Support for Ecore Annotations<span style='mso-bidi-font-weight:bold'>.</span></b>
-Because there is no general GUI support for specifying EAnnotations (since they
-aren't a standard part of UML) users currently cannot specify the EAnnotations
-they'd like to see in the final Ecore, so it would be very useful if as part of
-the Ecore profile, they'd be able to create EAnnotations. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=184249">184249</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1034"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Support
-for (de)serialization to/from CMOF<span style='mso-bidi-font-weight:bold'>.</span></b>
-Provide a resource implementation that supports loading/saving UML models in
-CMOF format in much the same way that EMF supports loading/saving Ecore models
-in EMOF format. Such support should be integrated into the sample UML editor
-and importer framework (to allow creating of EMF projects from CMOF
-models).better diagnostics for unresolved directives. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199624">199624</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1033"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Eclipse
-3.4 / EMF 2.4 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b>
-Maintain release currency concurrent with EMF 2.4 (and Eclipse 3.4). Make
-changes as required to align with EMF features and bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204200">204200</a>) [Theme:
-Upgrade Path]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Enhanced
-Documentation.</b> Provide enhanced user documentation, tutorials, white
-papers, demonstrations etc.. In particular, provide a programmerÂ’s guide
-integrated with the help system in Eclipse, improve the Javadoc by generating
-constraint information (redefines, subsets, union, etc.) into feature and
-operation headers, and update the documentation for the UML generator task. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204201">204201</a>) [Theme:
-Ease of Use]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>UML 2.1.2
-Compliance<span style='mso-bidi-font-weight:bold'>.</span></b> Provide support
-for interchange (XMI) compliance with UML 2.1.2. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204202">204202</a>) [Theme:
-Technology Trends]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1032"
-src="../../images/ok.gif"></span></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (UML2 component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (UML2
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1025"
-src="../../images/new.gif"></span></b><b style='mso-bidi-font-weight:normal'>BiDi
-Support<span style='mso-bidi-font-weight:bold'>.</span></b> Provide better
-support for BiDi languages. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682">160682</a>) [Theme:
-<span style='mso-bidi-font-weight:bold'>Internationalization &amp; Localization</span>]</p>
-
-<h2><a name="_UML2_Tools_component"></a>UML2 Tools component</h2>
-
-<p>UML2 Tools is set of GMF-based editors for viewing and editing UML models.
-Plan items reflect new features of the UML2 Tools component (<span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1031"
-src="../../images/ok.gif"></span><span style='mso-bidi-font-style:italic'>
-marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (UML2 Tools
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Composite
-Structure Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide
-a GMF-based editor for UML composite structure diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199723">199723</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Deployment
-Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide a
-GMF-based editor for UML deployment diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199724">199724</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1030"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Use Case
-Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide a
-GMF-based editor for UML use case diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199725">199725</a>) [Theme:
-End-to-End MDSD]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1029"
-src="../../images/ok.gif"></span></p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Object
-Diagrams<span style='mso-bidi-font-weight:bold'>.</span></b> Provide a
-GMF-based editor for UML object diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199726">199726</a>) [Theme:
-End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Structure
-Diagram Synchronization<span style='mso-bidi-font-weight:bold'>.</span></b> For
-structure diagrams it makes sense to provide customizable level of
-synchronization between semantic and notational models; in particular, instead
-of auto-synchronized class diagrams (which always show the complete contents of
-the semantic model), different levels of synchronization should be also
-supported. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199731">199731</a>)
-[Theme: Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Diagram
-Relations<span style='mso-bidi-font-weight:bold'>.</span></b> With extended set
-of 8 diagram types (4 implemented in 0.7 and 4 planned for the next release) it
-is essential to provide collaboration of the different diagram types in showing
-the different set of aspects for the single semantic model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199735">199735</a>) [Theme:
-Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Basic OCL
-Integration<span style='mso-bidi-font-weight:bold'>.</span></b> Integrate the
-features provided by OCL component with UML2Tools diagrams, allowing to
-write/validate/etc OCL expressions in terms of given semantic model, shown in
-the diagram. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199737">199737</a>)
-[Theme: End-to-End MDSD]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Extended
-Profile Support<span style='mso-bidi-font-weight:bold'>.</span></b> Diagram
-features like choosers, inplace editors, label providers, creation tools, etc.,
-should be at some extent aware of the constraints implied by profiles applied
-to the semantic model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199739">199739</a>) [Theme:
-Improved Usability]</p>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Diagram-Specific
-Property Sheets<span style='mso-bidi-font-weight:bold'>.</span></b> Provide
-custom, extensible property sheets that are aware of the UML2 Tools arrangement
-of the semantic elements into notational diagrams. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199740">199740</a>) [Theme:
-Improved Usability]</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (UML2 Tools
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (UML2 Tools
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h2><a name="_XSD_component"></a>XSD component</h2>
-
-<p>XSD is a library that provides an <a
-href="http://www.eclipse.org/modeling/mdt/javadoc/?project=xsd&amp;page=org/eclipse/xsd/package-summary.html&amp;anchor=details">API</a>
-for manipulating the components of an XML Schema as described by the <a
-href="http://www.w3.org/TR/XMLSchema-0">W3C XML Schema</a> specifications, as
-well as an API for manipulating the DOM-accessible representation of XML. Plan
-items reflect new features of the XSD component, or areas where existing
-features will be significantly reworked (<span style='mso-no-proof:yes'><img
-border=0 width=12 height=12 id="_x0000_i1028" src="../../images/ok.gif"></span><span
-style='mso-bidi-font-style:italic'> marks completed work)</span>.</p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Committed Items (XSD
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'>Improved
-Diagnostics<span style='mso-bidi-font-weight:bold'>.</span></b> Provide better
-diagnostics for unresolved directives. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=203607">203607</a>) [Theme:
-Ease of Use]<span style='mso-bidi-font-style:italic'> </span><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1027"
-src="../../images/ok.gif"></span></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Proposed Items (XSD component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><i style='mso-bidi-font-style:normal'><span
-style='mso-bidi-font-weight:bold'>None at this time.<o:p></o:p></span></i></p>
-
-<h4><span style='font-family:"Arial","sans-serif"'>Deferred Items (XSD
-component)<o:p></o:p></span></h4>
-
-<p style='margin-left:27.5pt'><b style='mso-bidi-font-weight:normal'><span
-style='mso-no-proof:yes'><img border=0 width=12 height=12 id="_x0000_i1026"
-src="../../images/new.gif"></span></b><b style='mso-bidi-font-weight:normal'>XML
-Schema 1.1<span style='mso-bidi-font-weight:bold'>.</span></b> Investigate
-support for XML Schema 1.1. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204125">204125</a>) [Theme:
-Technology Trends]</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk.html b/docs/presentations/EclipseCon2007_ShortTalk.html
deleted file mode 100644
index d4f1870..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk.html
+++ /dev/null
@@ -1,82 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link rel=File-List href="EclipseCon2007_ShortTalk_files/filelist.xml">
-<link rel=Preview href="EclipseCon2007_ShortTalk_files/preview.wmf">
-<link rel=Edit-Time-Data href="EclipseCon2007_ShortTalk_files/editdata.mso">
-<title>What is MDT?</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Subject>Short Talk</o:Subject>
-  <o:Author>Kenn Hussey</o:Author>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>358</o:Revision>
-  <o:TotalTime>4602</o:TotalTime>
-  <o:Created>2002-08-23T15:26:08Z</o:Created>
-  <o:LastSaved>2007-03-08T19:11:08Z</o:LastSaved>
-  <o:Words>1179</o:Words>
-  <o:PresentationFormat>On-screen Show</o:PresentationFormat>
-  <o:Company>IBM Rational Software</o:Company>
-  <o:Bytes>130994</o:Bytes>
-  <o:Paragraphs>206</o:Paragraphs>
-  <o:Slides>20</o:Slides>
-  <o:Notes>14</o:Notes>
-  <o:Version>10.6825</o:Version>
- </o:DocumentProperties>
- <o:OfficeDocumentSettings>
-  <o:ShowReviewingToolbar/>
-  <o:PixelsPerInch>80</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
-</xml><![endif]-->
-<link rel=Presentation-XML href="EclipseCon2007_ShortTalk_files/pres.xml">
-<meta name=Description content="3/8/2007: What is MDT?">
-<meta http-equiv=expires content=0>
-<![if !ppt]><script>
-<!--
-	var ver = 0, appVer = navigator.appVersion, msie = appVer.indexOf( "MSIE " )
-	var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0)
-	if( msie >= 0 )
-		ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) )
-	else
-		ver = parseInt( appVer )
-	browserSupported=0
-	if( !isMac && ver >= 4 && msie >= 0 ) {
-		browserSupported=1
-		window.location.replace( 'EclipseCon2007_ShortTalk_files/frame.html'+document.location.hash )
-	}
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<script><!--
-
-if( browserSupported )
-	document.writeln('<div style="visibility:hidden">');
-
-//--></script><font face=Arial size=2><b>
-
-<p>This presentation contains content that your browser may not be able to show
-properly. This presentation was optimized for more recent versions of Microsoft
-Internet Explorer.</p>
-
-<p>If you would like to proceed anyway, click <a
-href="EclipseCon2007_ShortTalk_files/frame.html">here</a>.</p>
-
-</b></font><script><!--
-
-if( browserSupported )
-	document.writeln('</div>');
-
-//--></script>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/buttons.gif b/docs/presentations/EclipseCon2007_ShortTalk_files/buttons.gif
deleted file mode 100644
index 1f2c73c..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/buttons.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/editdata.mso b/docs/presentations/EclipseCon2007_ShortTalk_files/editdata.mso
deleted file mode 100644
index 1693392..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/editdata.mso
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/filelist.xml b/docs/presentations/EclipseCon2007_ShortTalk_files/filelist.xml
deleted file mode 100644
index 8b2687c..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/filelist.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:File HRef="master08.html"/>
- <o:File HRef="master08.xml"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="master08_image001.jpg"/>
- <o:File HRef="master08_image002.jpg"/>
- <o:File HRef="master09.html"/>
- <o:File HRef="master09.xml"/>
- <o:File HRef="master02.html"/>
- <o:File HRef="pres.xml"/>
- <o:File HRef="editdata.mso"/>
- <o:File HRef="slide0030.html"/>
- <o:File HRef="master09_image003.jpg"/>
- <o:File HRef="master09_image004.jpg"/>
- <o:File HRef="slide0029.html"/>
- <o:File HRef="master08_image005.jpg"/>
- <o:File HRef="master08_image006.gif"/>
- <o:File HRef="master08_image007.jpg"/>
- <o:File HRef="slide0034.html"/>
- <o:File HRef="slide0031.html"/>
- <o:File HRef="slide0035.html"/>
- <o:File HRef="slide0036.html"/>
- <o:File HRef="slide0037.html"/>
- <o:File HRef="slide0038.html"/>
- <o:File HRef="slide0040.html"/>
- <o:File HRef="slide0039.html"/>
- <o:File HRef="slide0041.html"/>
- <o:File HRef="slide0042.html"/>
- <o:File HRef="slide0043.html"/>
- <o:File HRef="slide0044.html"/>
- <o:File HRef="slide0045.html"/>
- <o:File HRef="slide0046.html"/>
- <o:File HRef="slide0047.html"/>
- <o:File HRef="slide0048.html"/>
- <o:File HRef="slide0033.html"/>
- <o:File HRef="slide0032.html"/>
- <o:File HRef="master01.html"/>
- <o:File HRef="master08_stylesheet.css"/>
- <o:File HRef="script.js"/>
- <o:MainFile HRef="../EclipseCon2007_ShortTalk.html"/>
- <o:File HRef="fullscreen.html"/>
- <o:File HRef="notes_flag.gif"/>
- <o:File HRef="buttons.gif"/>
- <o:File HRef="frame.html"/>
- <o:File HRef="outline.html"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/frame.html b/docs/presentations/EclipseCon2007_ShortTalk_files/frame.html
deleted file mode 100644
index 9623163..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/frame.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<title>What is MDT?</title>
-<![if !ppt]><script src=script.js></script><script>
-<!--
-var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
-function Load()
-{
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(str) PPTSld.location.replace(escape(str));
-}
-//-->
-</script>
-<![endif]>
-</head>
-
-<frameset rows="*,25" border=0>
- <frameset cols="25%,*" id=PPTHorizAdjust framespacing=2>
-  <frameset rows="100%,*">
-   <frame src=outline.html title="Outline" name=PPTOtl>
-  </frameset>
-  <frameset rows="*,40" id=PPTVertAdjust framespacing=2 frameborder=1
-   onload="Load()">
-   <frame src=slide0030.html title="Slide" name=PPTSld>
-   <frame src=slide0030.html title="Notes" name=PPTNts>
-  </frameset>
- </frameset>
- <frameset cols="25%,*" framespacing=1>
-  <frame src=outline.html title="Outline
-Navigation Bar" name=PPTOtlNav scrolling=no noresize>
-  <frame src=outline.html title="Slide
-Navigation Bar" name=PPTNav scrolling=no noresize>
- </frameset>
-</frameset>
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/fullscreen.html b/docs/presentations/EclipseCon2007_ShortTalk_files/fullscreen.html
deleted file mode 100644
index 9aaa6a4..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/fullscreen.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<script src=script.js></script><script><!--
-var SCREEN_MODE   = "FullScreen";
-function Load() {
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(!str) str = "slide0030.html";
-	PPTSld.location.replace(MHTMLPrefix+escape(str));
-}
-function Unload() {
-	if ( document.body.PPTSldFrameset != null )
-		document.body.PPTSldFrameset.frames[1].document.body.resume();
-}
-//-->
-</script>
-</head>
-
-<frameset rows="*" frameborder=0 onload="Load()" onunload="Unload()">
- <frame name=PPTSld>
-</frameset>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master01.html b/docs/presentations/EclipseCon2007_ShortTalk_files/master01.html
deleted file mode 100644
index 9afbacf..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master01.html
+++ /dev/null
@@ -1,462 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="103"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s105473" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s105474" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105474" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;
-mso-field-code:meta14'>‹header›</span><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105475" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1"/></v:shapetype>
-
-<div v:shape="_x0000_s105475" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-field-code:meta0'>‹date/time›</span><span
-lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_m105476" style='position:absolute;left:91.75pt;top:54.5pt;
- width:363.5pt;height:272.625pt;v-text-anchor:middle' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter"/>
- <v:shadow obscured="t"/>
- <v:path gradientshapeok="t" fillok="f" o:connecttype="rect"/>
- <o:lock v:ext="edit" rotation="t" text="t"/>
- <p:placeholder type="slideImage" position="2"/></v:shapetype><v:shapetype
- id="_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
- width:437.5pt;height:327.125pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="body" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_m105477">
-
-<div class=N><span lang=EN-US style='mso-ansi-language:EN-US'>Click to edit
-Master text styles&#13;</span></div>
-
-<div class=N1><span lang=EN-US style='mso-ansi-language:EN-US'>Second
-level&#13;</span></div>
-
-<div class=N2><span lang=EN-US style='mso-ansi-language:EN-US'>Third level&#13;</span></div>
-
-<div class=N3><span lang=EN-US style='mso-ansi-language:EN-US'>Fourth
-level&#13;</span></div>
-
-<div class=N4><span lang=EN-US style='mso-ansi-language:EN-US'>Fifth level</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105478" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="4" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105478" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;
-mso-field-code:meta15'>‹footer›</span><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105479" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="5" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105479" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-field-code:meta16'>‹#›</span><span lang=EN-US
-style='font-size:67%;mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<p:notes id="34" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="687"/>
- </o:shapelayout><v:shape id="_x0000_s703490" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s703491"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s703491" class=N>
- <div>Focus of MDT is on big “M” modeling within the Modeling top-level
- project.&#13;</div>
- Focus is limited to EMF-based implementations of industry standard metamodels
- and GMF-based tools to develop models based on those metamodels.</div>
-</p:notes><p:notes id="31" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="688"/>
- </o:shapelayout><v:shape id="_x0000_s704514" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s704515"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape></p:notes><p:notes id="36"
- layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="689"/>
- </o:shapelayout><v:shape id="_x0000_s705538" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s705539"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s705539" class=N>Component lead is Lei Zhang
- (lzhangl@cn.ibm.com).</div>
-</p:notes><p:notes id="37" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="690"/>
- </o:shapelayout><v:shape id="_x0000_s706562" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s706563"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s706563" class=N>Component lead is Christian Damus
- (cdamus@ca.ibm.com).</div>
-</p:notes><p:notes id="38" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="691"/>
- </o:shapelayout><v:shape id="_x0000_s707586" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s707587"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s707587" class=N>Component lead is Kenn Hussey
- (khussey@ca.ibm.com).</div>
-</p:notes><p:notes id="40" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="692"/>
- </o:shapelayout><v:shape id="_x0000_s708610" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s708611"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s708611" class=N>Component lead is Michael Golubev
- (Michael.Golubev@borland.com).</div>
-</p:notes><p:notes id="39" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="693"/>
- </o:shapelayout><v:shape id="_x0000_s709634" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s709635"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s709635" class=N>Component lead is Ed Merks
- (merks@ca.ibm.com).</div>
-</p:notes><p:notes id="42" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="680"/>
- </o:shapelayout><v:shape id="_x0000_s696322" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s696323"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s696323" class=N>Standard Compliance - Provide a new API
- that is compliant with the (to be adopted) 5th submission of the ODM
- specification to the OMG.&#13;
- <div>Dynamic Typing - Provide support for dynamic typing.&#13;</div>
- RDF/OWL Parsing and Serialization - Provide support for RDF/OWL parsing and
- serialization.&#13;
- <div>RDF/OWL Reasoning - Provide support for RDF/OWL reasoning.&#13;</div>
- RDF/OWL Transformation to/from Ecore - Provide a mechanism to transform RDF/OWL
- models to/from Ecore.</div>
-</p:notes><p:notes id="43" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="681"/>
- </o:shapelayout><v:shape id="_x0000_s697346" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s697347"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s697347" class=N>
- <div>Stand-alone Support - Provide a stand-alone (Eclipse-free) OCL
- build.&#13;</div>
- Parsing API - Provide a public API for parsing OCL documents, with the complete
- context declaration syntax.&#13;EMF 2.3 / J2SE 5 Support - Adopt EMF 2.3,
- including regeneration of the OCL metamodel.&#13;Improved Documentation -
- Develop a complete ProgrammerÂ’s Guide for the OCL component.</div>
-</p:notes><p:notes id="44" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="682"/>
- </o:shapelayout><v:shape id="_x0000_s698370" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s698371"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s698371" class=N>
- <div>LPG - Consume LPG runtime library from the Orbit project.&#13;</div>
- Integration with UML - Provide support for parsing and evaluating OCL constraints
- and expressions on the UML metamodel.&#13;ICU4J - Isolate and minimize
- dependency on ICU4J; ensure support for the “thin” variant of ICU4J.</div>
-</p:notes><p:notes id="45" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="683"/>
- </o:shapelayout><v:shape id="_x0000_s699394" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s699395"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s699395" class=N>Static Profile Definition - Provide a
- way to specify that a profile definition be generated using EMF; this would
- allow, among other things, support for custom data types and derived
- stereotype properties.&#13;Ant Task for Ecore Importer - Provide an Ant task
- for the UML Ecore importer, similar to those provided for the Rose and Ecore
- importers in EMF.&#13;Create Child/Sibling Menu Reorganization - Reorganize
- the ‘Create Child’ and ‘Create Sibling’ menus of the UML editor so that the
- items are grouped by feature.&#13;Improved Documentation - Improve
- documentation by updating the FAQ, enhancing the Javadoc, and publishing new
- articles.</div>
-</p:notes><p:notes id="46" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="684"/>
- </o:shapelayout><v:shape id="_x0000_s700418" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s700419"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s700419" class=N>Eclipse 3.3 / EMF 2.3 Compatibility -
- Maintain release currency concurrent with EMF 2.3 (and Eclipse 3.3); make
- changes as required to align with EMF features and bug fixes, in particular
- support for Java SE 5.0.&#13;XML Primitive Types - Provide a model library to
- represent the types defined in the XMLType metamodel in EMF; be sure to update
- Ecore/UML converters to make use of this new library.&#13;Integration with OCL
- - Integrate support for parsing and evaluating OCL constraints and
- expressions; consider providing a convenience method on Constraint for
- returning the parsed representation of OCL expressions.&#13;
- <div>BiDi Support - Provide better support for BiDi languages.</div>
- </div>
-</p:notes><p:notes id="47" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="685"/>
- </o:shapelayout><v:shape id="_x0000_s701442" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s701443"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s701443" class=N>
- <div>Class Diagrams - Provide a GMF-based editor for UML class diagrams.&#13;</div>
- State Machine Diagrams - Provide a GMF-based editor for UML state machine diagrams.&#13;Component
- Diagrams - Provide a GMF-based editor for UML component diagrams.&#13;
- <div>Activity Diagrams - Provide a GMF-based editor for UML activity diagrams.</div>
- </div>
-</p:notes><p:notes id="48" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="686"/>
- </o:shapelayout><v:shape id="_x0000_s702466" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s702467"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s702467" class=N>Java SE 5.0 Support - Exploit new Java
- language constructs; use generics (e.g. EList, EMap and implementations);
- generate and merge Java 5 constructs; investigate enumerations and
- annotations.&#13;XSD2Ecore Enhancements - Improve ability to record complex
- content models as Ecore annotations.</div>
-</p:notes>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master02.html b/docs/presentations/EclipseCon2007_ShortTalk_files/master02.html
deleted file mode 100644
index 9cf3929..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master02.html
+++ /dev/null
@@ -1,145 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="530"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s542721" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s542722" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542722" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;
-mso-field-code:meta14'>‹header›</span><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542723" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542723" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-field-code:meta0'>‹date/time›</span><span
-lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542724" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="2" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542724" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;
-mso-field-code:meta15'>‹footer›</span><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542725" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542725" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-field-code:meta16'>‹#›</span><span lang=EN-US
-style='font-size:67%;mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master08.html b/docs/presentations/EclipseCon2007_ShortTalk_files/master08.html
deleted file mode 100644
index 176f273..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master08.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m32774" class=T><span lang=EN-US style='mso-ansi-language:
-EN-US'>Click to edit Master title style</span></div>
-
-<div v:shape="_x0000_m32775">
-
-<div class=B><span lang=EN-US style='mso-ansi-language:EN-US'>Click to edit
-Master text styles&#13;</span></div>
-
-<div class=B1><span lang=EN-US style='mso-ansi-language:EN-US'>Second
-level&#13;</span></div>
-
-<div class=B2><span lang=EN-US style='mso-ansi-language:EN-US'>Third level&#13;</span></div>
-
-<div class=B3><span lang=EN-US style='mso-ansi-language:EN-US'>Fourth
-level&#13;</span></div>
-
-<div class=B4><span lang=EN-US style='mso-ansi-language:EN-US'>Fifth level</span></div>
-
-</div>
-
-<div v:shape="_x0000_s33022" class=O style='mso-line-spacing:"100 50 0"'><span
-lang=EN-US style='font-family:Arial;mso-hansi-font-family:Arial;font-size:56%;
-color:black;mso-color-index:0;mso-ansi-language:EN-US;mso-field-code:meta16'><b>‹#›</b></span><span
-lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;color:black;
-mso-color-index:0;mso-ansi-language:EN-US;mso-special-format:lastCR'><b>&#13;</b></span></div>
-
-<div v:shape="_x0000_s33024" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span lang=EN-US style='font-size:56%;color:black;mso-color-index:0;
-mso-ansi-language:EN-US'><span style='mso-spacerun:yes'> </span>What is
-MDT?<span style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
-</span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
-style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made available
-under the EPL v1.0</span></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master08.xml b/docs/presentations/EclipseCon2007_ShortTalk_files/master08.xml
deleted file mode 100644
index c579bf5..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master08.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="32"/>
-  <o:regrouptable v:ext="edit">
-   <o:entry new="1" old="0"/>
-   <o:entry new="2" old="0"/>
-   <o:entry new="3" old="0"/>
-   <o:entry new="4" old="0"/>
-   <o:entry new="5" old="4"/>
-   <o:entry new="6" old="0"/>
-   <o:entry new="7" old="0"/>
-   <o:entry new="8" old="0"/>
-   <o:entry new="9" old="0"/>
-   <o:entry new="10" old="0"/>
-   <o:entry new="11" old="10"/>
-  </o:regrouptable>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s32769" o:bwmode="white" fillcolor="white [1]"/>
- <p:shaperange id="_x0000_m32774">
-  <v:shapetype id="_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-   width:649.25pt;height:39.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m32775">
-  <v:shapetype id="_x0000_m32775" style='position:absolute;left:52.125pt;top:139.875pt;
-   width:609.25pt;height:307.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33020">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s33020" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master08_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33022">
-  <v:shapetype id="_x0000_s33022" style='position:absolute;left:12.125pt;top:508.875pt;
-   width:79.25pt;height:25.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33023">
-  <v:line id="_x0000_s33023" style='position:absolute;mso-wrap-style:none;
-   v-text-anchor:middle' from="114pt,506.875pt" to="114pt,522pt" o:bwmode="black"
-   o:userdrawn="t" strokecolor="black [0]">
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:rect id="_x0000_s33024" style='position:absolute;left:114pt;
-   top:509.875pt;width:606pt;height:19.25pt' o:bwmode="black" o:userdrawn="t"
-   filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s33027">
-  <v:shape id="_x0000_s33027" type="#_x0000_t75" style='position:absolute;
-   left:14.75pt;top:6.125pt;width:407.5pt;height:50.375pt' o:userdrawn="t">
-   <v:imagedata src="master08_image002.jpg" o:title="728x90_nodate"/>
-  </v:shape></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image001.jpg b/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image001.jpg
deleted file mode 100644
index 6218aec..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image001.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image002.jpg b/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image002.jpg
deleted file mode 100644
index 531f5d4..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image002.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image005.jpg b/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image005.jpg
deleted file mode 100644
index df11cf0..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image005.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image006.gif b/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image006.gif
deleted file mode 100644
index 96b138a..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image006.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image007.jpg b/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image007.jpg
deleted file mode 100644
index 239c7d5..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master08_image007.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master08_stylesheet.css b/docs/presentations/EclipseCon2007_ShortTalk_files/master08_stylesheet.css
deleted file mode 100644
index 84ba21e..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master08_stylesheet.css
+++ /dev/null
@@ -1,507 +0,0 @@
-body
-	{width:534px;
-	height:400px;}
-.TB
-	{mso-special-format:nobullet•;}
-.T
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#2F2672;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.BB
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:95%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.NB
-	{mso-special-format:nobullet•;}
-.N
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N1B
-	{mso-special-format:nobullet•;}
-.N1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N2B
-	{mso-special-format:nobullet•;}
-.N2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N3B
-	{mso-special-format:nobullet•;}
-.N3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N4N
-	{mso-special-format:nobullet•;}
-.N4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.OB
-	{mso-special-format:nobullet•;}
-.O
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CBB
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:114%;
-	mso-line-spacing:"100 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 25 15";
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CTB
-	{mso-special-format:nobullet•;}
-.CT
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HBB
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QBB
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.TblB
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl1B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl2B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl3B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl4B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.defaultB
-	{mso-special-format:nobullet•;}
-.default
-	{text-align:left;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-weight:normal;
-	font-style:normal;
-	text-decoration:none;
-	text-shadow:none;
-	text-effect:none;
-	mso-fareast-hint:no;
-	layout-flow:horizontal;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-text-raise:0%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:0;
-	mso-text-indent-alt:0;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;
-	direction:ltr;
-	mso-word-wrap:1;
-	mso-vertical-align-special:baseline;
-	mso-ansi-language:EN-US;}
-a:link
-	{color:silver !important;}
-a:active
-	{color:#DFFF66 !important;}
-a:visited
-	{color:#D18213 !important;}
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master09.html b/docs/presentations/EclipseCon2007_ShortTalk_files/master09.html
deleted file mode 100644
index ea28110..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master09.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m33800" class=CT><span lang=EN-US style='mso-ansi-language:
-EN-US'>What is MDT?</span></div>
-
-<div v:shape="_x0000_m33801" class=CB>
-
-<div><span lang=EN-US style='mso-ansi-language:EN-US'>Short Talk&#13;</span></div>
-
-<div><span lang=EN-US style='mso-ansi-language:EN-US'>&#13;</span></div>
-
-<div><span lang=EN-US style='mso-ansi-language:EN-US'>Kenn Hussey&#13;</span></div>
-
-<div><span lang=EN-US style='mso-ansi-language:EN-US'>IBM Rational Software</span></div>
-
-</div>
-
-<div v:shape="_x0000_s33972" class=O><span lang=EN-US style='font-size:78%;
-color:black;mso-color-index:0;mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-<div v:shape="_x0000_s33975" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span lang=EN-US style='font-size:72%;color:black;mso-color-index:0;
-mso-ansi-language:EN-US'>© Copyright 2007 by IBM Corp.; made available under
-the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>March 6, 2007</span></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master09.xml b/docs/presentations/EclipseCon2007_ShortTalk_files/master09.xml
deleted file mode 100644
index 2aaba9e..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master09.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="33"/>
-  <o:regrouptable v:ext="edit">
-   <o:entry new="1" old="0"/>
-   <o:entry new="2" old="0"/>
-   <o:entry new="3" old="0"/>
-   <o:entry new="4" old="0"/>
-   <o:entry new="5" old="0"/>
-   <o:entry new="6" old="5"/>
-   <o:entry new="7" old="0"/>
-   <o:entry new="8" old="0"/>
-   <o:entry new="9" old="0"/>
-   <o:entry new="10" old="0"/>
-   <o:entry new="11" old="0"/>
-   <o:entry new="12" old="0"/>
-   <o:entry new="13" old="0"/>
-   <o:entry new="14" old="0"/>
-   <o:entry new="15" old="0"/>
-  </o:regrouptable>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s33793" o:bwmode="white" fillcolor="white [1]"/>
- <p:shaperange id="_x0000_s33977">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s33977" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master08_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_m33800">
-  <v:shapetype id="_x0000_m33800" style='position:absolute;left:30.75pt;top:134.375pt;
-   width:626.375pt;height:115.75pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="centerTitle"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m33801">
-  <v:shapetype id="_x0000_m33801" style='position:absolute;left:153.5pt;top:261.375pt;
-   width:7in;height:109pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="subTitle" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33972">
-  <v:shapetype id="_x0000_s33972" style='position:absolute;left:542pt;top:19pt;
-   width:168pt;height:37.5pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33975">
-  <v:rect id="_x0000_s33975" style='position:absolute;left:5.5pt;top:508.375pt;
-   width:716.5pt;height:22.875pt' o:bwmode="black" o:userdrawn="t" filled="f"
-   fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s33980">
-  <v:shape id="_x0000_s33980" type="#_x0000_t75" style='position:absolute;
-   left:14.75pt;top:6.125pt;width:407.5pt;height:50.375pt' o:userdrawn="t">
-   <v:imagedata src="master08_image002.jpg" o:title="728x90_nodate"/>
-  </v:shape></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master09_image003.jpg b/docs/presentations/EclipseCon2007_ShortTalk_files/master09_image003.jpg
deleted file mode 100644
index df11cf0..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master09_image003.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/master09_image004.jpg b/docs/presentations/EclipseCon2007_ShortTalk_files/master09_image004.jpg
deleted file mode 100644
index 239c7d5..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/master09_image004.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/notes_flag.gif b/docs/presentations/EclipseCon2007_ShortTalk_files/notes_flag.gif
deleted file mode 100644
index 608b349..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/notes_flag.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/outline.html b/docs/presentations/EclipseCon2007_ShortTalk_files/outline.html
deleted file mode 100644
index 0b53ace..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/outline.html
+++ /dev/null
@@ -1,822 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<script src=script.js></script><script><!--
-if( !(IsWin("PPTOtl")||IsWin("PPTNav")||IsWin("PPTOtlNav")) )
-{
-	obj = GetObj("Main-File")
-	parent.location.href=obj.href
-}
-var gOtlHiliteClr="#ffffff",gOtlNormalClr="#000000",gOtlActiveClr="#ffff00",gSelected="",gTxtState=false,gChildEntryTable=new Array()
-function Load()
-{
-	if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
-	if( g_supportsPPTHTML ) {
-		if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true; return }
-		if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); parent.gOtlNavLoaded=true; return }
-	}
-}
-function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
-function LoadNav( oId,UpdFunc )
-{
-	document.ondragstart=CancelDrag
-	document.onselectstart=CancelDrag
-	document.body.style.margin=2
-	UpdFunc()
-	obj=document.all.item(oId)
-	obj.style.display="block"
-	obj.style.visibility="visible"
-	document.bgColor="threedface"
-	if( parent.frames["PPTNts"] )
-		notesBtn.style.display = ""
-	if( parent.gHasNarration )
-		nb_voiceBorder.style.display = ""
-}
-function LoadOtl()
-{
-	var otl=GetObj("OtlObj")
-	otl.style.display="block"
-	otl.style.visibility="visible"
-	if( gOtlActiveClr == "" ) gOtlActiveClr=document.linkColor
-	if( gOtlHiliteClr == "" ) gOtlHiliteClr=document.fgColor
-	if( gOtlNormalClr == "" )
-		gOtlNormalClr=document.bgColor
-	else
-		document.bgColor=gOtlNormalClr
-	InitArray()
-	if( ObjExists( parent.gCurSld ) ) {
-		ChangeState( parent.gCurSld,gOtlNormalClr,gOtlHiliteClr )
-		gSelected=parent.gCurSld
-	}
-	else gSelected = -1
-	UpdOtl()
-}
-function UpdOtl(){ UpdIdx(parent.gCurSld) }
-function UpdIdx( idx )
-{
-	if( gSelected != idx ) {
-		if( gSelected > 0 )
-			ChangeState( gSelected,gOtlHiliteClr,gOtlNormalClr )
-		if( ObjExists( idx ) ) {
-			gSelected = idx
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-		}
-		else gSelected = -1
-	}
-	if( gTxtState != parent.gOtlTxtExp ) {
-		state = "block"
-		if( !parent.gOtlTxtExp )
-			state="none"
-		for(ii=0; ii<gChildEntryTable.length; ii++) {
-			obj=gChildEntryTable[ii];
-			if( obj.id == null ) continue;
-			if( obj.id.indexOf("PPTC") >= 0 )
-				obj.style.display=state;
-		}
-		gTxtState=parent.gOtlTxtExp
-		if( ObjExists( gSelected ) )
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-	}
-}
-function InitArray()
-{
-	count=0
-	var list=GetTags(document,"DIV");
-	for(ii=0; ii<list.length; ii++) {
-		obj=list.item(ii)
-		if( obj.id == null ) continue
-		if( obj.id.indexOf("PPTC") >= 0 )
-			gChildEntryTable[count++]=obj
-	}
-}
-function ChangeState( idx,fgColor,bgColor )
-{
-	obj=GetObj("PPTL"+idx)
-	obj.style.color=fgColor
-	obj=GetObj("PPTP"+idx)
-	obj.style.backgroundColor=bgColor
-}
-function ChgClr( o,clr ){ if( o.id != "PPTL"+gSelected ) o.style.color=clr }
-function Over( src ){ ChgClr(GetLink(src),gOtlActiveClr) }
-function Out( src ){ ChgClr(GetLink(src),gOtlHiliteClr) }
-function Follow(src){ window.location.href = GetLink(src).href; }
-function ObjExists( ii ) { obj=GetObj("PPTP"+ii ); return( obj ) }
-function GoToSld( href ){ UpdIdx(parent.GetSldNum(href)); parent.GoToSld( href ) }
-function CancelDrag(){ window.event.cancelBubble=true;window.event.returnValue=false}
-function GetLink(src)
-{
-   if(src.tagName=="A") return src
-   else return GetTags(src,"A").item(0)
-}
-function UpdNav()
-{
-	txt = "<center>";
-	if( parent.GetHrefObj( parent.gCurSld ).mOrigVis == 1 )
-		txt += "Slide " + parent.GetCurSldNum() + " of " + parent.GetNumSlds()
-	else
-		txt += "Hidden Slide"
-	txt += "</center>";
-	nav_text.innerHTML = txt;
-	if( !parent.HasPrevSld() )
-		gBtnArr["nb_prev"].Enabled(0)
-	else
-		gBtnArr["nb_prev"].Enabled(1)
-	if( !parent.HasNextSld() )
-		gBtnArr["nb_next"].Enabled(0)
-	else
-		gBtnArr["nb_next"].Enabled(1)
-	gBtnArr["nb_nts"].SetEnabled()
-	gBtnArr["nb_nts"].SetFlag( parent.gHasNts )
-	gBtnArr["nb_sldshw"].Enabled(1)
-	gBtnArr["nb_voice"].Enabled(1)
-}
-function UpdOtlNav()
-{
-	gBtnArr["nb_otl"].SetEnabled();
-	if( parent.gOtlOpen )
-		gBtnArr["nb_otlTxt"].Enabled( true );
-	else
-		document.all.item("nb_otlTxtBorder").style.visibility = "hidden";
-}
-
-//--></script>
-<style>
-<!--.PTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;
-	padding-left:2px;
-	font-weight:bold;}
-.CTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;}
-a
-	{color:white;
-	text-decoration:none;}
-ul
-	{color:white;
-	margin-bottom:0px;
-	margin-left:20px;}
-.sldNum
-	{margin-top:5px;
-	color:white;}
-.button
-	{position:absolute;
-	width:32px;
-	height:20px;
-	border-style:solid;
-	border-width:1px;
-	border-color:threedface;}
--->
-</style>
-</head>
-
-<body onload="Load()" style='margin:2px'>
-
-<div id=NavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-<table id="notesBtn" style='position:absolute;display:none;width:70px' align=left cellpadding=0
- cellspacing=0>
- <td nowrap>
- <div id="nb_ntsElem" align=center style='position:relative;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt'><img src="notes_flag.gif"
- border=0 id="notes_flag" style='display:none'><span
-style='mso-spacerun:yes'>  </span>Notes</div>
- <div title="Show/Hide Notes" id="nb_nts" style='position:absolute;top:0%;
- left:0%;width:100%;height:100%'></div>
- </td>
-</table>
-
-<table style='position:relative;width:70px' align=right cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_sldshwText" title="Full
-Screen Slide Show" align=center style='position:relative;margin-left:20px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt;cursor:default'>Slide
-Show</div>
- <div id="nb_sldshwBorder" title="Full Screen Slide Show" style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_sldshw" style='position:relative;left:-254px'></div>
- </div>
- </td>
- <td>
- <div id="nb_voiceBorder" style='display:none;position:absolute;top:0;left:-40px;
- width:20px;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_voice" title="Pause/Play Narration" style='position:
- relative;left:-290px'></div>
- </div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_prevBorder" class=button style='left:-30px'>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_prev" title="Previous Slide" style='position:relative;
- left:0px'></div>
- </div>
- <span id="nav_text" style='position:relative;top:3px;width:100px;font-family:
- Arial;color:buttontext;font-size:9pt'></span>
- <div id="nb_nextBorder" class=button>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_next" title="Next Slide" style='position:relative;
- left:-90px'></div>
- </div>
- </td>
-</table>
-</div>
-
-<div id=OtlNavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-
-<table style='position:relative;width:70px' align=left cellpadding=0 cellspacing=0>
- <td nowrap><div title="Show/Hide
-Outline" id="nb_otl"
- style='position:absolute;top:0%;left:0%;width:100%;height:100%;cursor:default'>
- <div id="nb_otlElem" align=center style='position:relative;padding:3px;font-family:Arial;
- color:buttontext;font-size:9pt'>Outline</div></div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td>
- <div style='position:absolute;left:-18px;width:24px;height:20px;border-style:
- solid;border-width:1px;border-color:threedface' id="nb_otlTxtBorder">
- <div style='position:absolute;clip:rect(0px, 22px, 18px, 0px)'><img
- src=buttons.gif id="nb_otlTxt" title="Expand/Collapse Outline"
- style='position:relative;left:-157px'></div>
- </div>
- </td>
-</table>
-
-</div>
-
-<div id=OtlObj style='display:none;visibility:hidden;'>
-
-
-<table width="100%" style='font-family:Arial;font-size:9pt'>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>1</font></div>
-  </td>
-  <td width="100%">
-  <div id=PPTP1 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0030.html');" id=PPTL1>What is MDT?</a></font></div>
-  <div id=PPTC1 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Short Talk</li>
-   <br>
-   <br>
-   <li>Kenn Hussey</li>
-   <li>IBM Rational Software</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>2</font></div>
-  </td>
-  <td>
-  <div id=PPTP2 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0029.html');" id=PPTL2>Contents</a></font></div>
-  <div id=PPTC2 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Overview</li>
-   <br>
-   <br>
-   <li>Participants</li>
-   <br>
-   <br>
-   <li>Components</li>
-   <br>
-   <br>
-   <li>Themes</li>
-   <br>
-   <br>
-   <li>Plan Items</li>
-   <br>
-   <br>
-   <li>How Can You Help?</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>3</font></div>
-  </td>
-  <td>
-  <div id=PPTP3 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0034.html');" id=PPTL3>Overview</a></font></div>
-  <div id=PPTC3 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Model Development Tools is an Eclipse Modeling subproject at http://www.eclipse.org/mdt</li>
-   <br>
-   <br>
-   <li>Inspired by the Eclipse communityÂ’s need for more end user
-       &quot;tooling&quot; from the Modeling project</li>
-   <br>
-   <br>
-   <li>Purpose of MDT is to provide extensible frameworks and exemplary tools
-       for the metamodels within the scope of the Modeling project</li>
-   <br>
-   <br>
-   <li>First release tentatively scheduled for June 2007 (Europa)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>4</font></div>
-  </td>
-  <td>
-  <div id=PPTP4 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0031.html');" id=PPTL4>Participants</a></font></div>
-  <div id=PPTC4 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Project lead is Kenn Hussey</li>
-   <br>
-   <br>
-   <li>Committers currently from IBM and Borland</li>
-   <br>
-   <br>
-   <li>Potential contributions from Soyatec, Topcased, and others</li>
-   <br>
-   <br>
-   <li>Collaborations with EMF and GMF projects</li>
-   <br>
-   <br>
-   <li>Advocated by Ed Merks and Richard Gronback</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>5</font></div>
-  </td>
-  <td>
-  <div id=PPTP5 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0035.html');" id=PPTL5>Components</a></font></div>
-  <div id=PPTC5 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>EMF Ontology Definition Metamodel (EODM)</li>
-   <br>
-   <br>
-   <li>Object Constraint Language (OCL)</li>
-   <br>
-   <br>
-   <li>Unified Modeling Language 2.x (UML2)</li>
-   <br>
-   <br>
-   <li>UML2 Tools</li>
-   <br>
-   <br>
-   <li>XML™ Schema Infoset Model (XSD)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>6</font></div>
-  </td>
-  <td>
-  <div id=PPTP6 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0036.html');" id=PPTL6>Components – EODM</a></font></div>
-  <div id=PPTC6 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>EODM is an implementation of the RDF(S)/OWL metamodels of the Ontology
-       Definition Metamodel (ODM) OMG standard using EMF with additional
-       parsing, inference, model transformation, and editing functions</li>
-   <br>
-   <br>
-   <li>EODM provides</li>
-   <ul>
-    <li>an EMF-based RDF/OWL model</li>
-    <li>an RDF/OWL parser</li>
-    <li>an RDF/OWL reasoner</li>
-    <li>an RDF/OWL transformer</li>
-    <li>a workbench which provides basic Eclipse editors for RDF/OWL</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>7</font></div>
-  </td>
-  <td>
-  <div id=PPTP7 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0037.html');" id=PPTL7>Components – OCL</a></font></div>
-  <div id=PPTC7 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>OCL is an implementation of the Object Constraint Language (OCL) OMG
-       standard for EMF-based models</li>
-   <br>
-   <br>
-   <li>OCL provides</li>
-   <ul>
-    <li>APIs for parsing and evaluating OCL constraints and queries</li>
-    <li>an Ecore implementation of the OCL abstract syntax model, including
-        support for serialization of parsed OCL expressions</li>
-    <li>a visitor API for analyzing/transforming the AST model of OCL
-        expressions</li>
-    <li>an extensibility API for clients to customize the parsing and
-        evaluation environments used by the parser</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>8</font></div>
-  </td>
-  <td>
-  <div id=PPTP8 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0038.html');" id=PPTL8>Components – UML2</a></font></div>
-  <div id=PPTC8 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML2 is an EMF-based implementation of the Unified Modeling Language 2.x
-       OMG standard for the Eclipse platform</li>
-   <br>
-   <br>
-   <li>UML2 provides</li>
-   <ul>
-    <li>a useable implementation of the metamodel to support the development of
-        modeling tools</li>
-    <li>a common XMI schema to facilitate interchange of semantic models</li>
-    <li>test cases as a means of validating the specification</li>
-    <li>validation rules as a means of defining and enforcing levels of
-        compliance</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>9</font></div>
-  </td>
-  <td>
-  <div id=PPTP9 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0040.html');" id=PPTL9>Components – UML2 Tools</a></font></div>
-  <div id=PPTC9 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML2 Tools is a set of GMF-based editors for viewing and editing UML™
-       models</li>
-   <br>
-   <br>
-   <li>UML2 Tools provides editors for</li>
-   <ul>
-    <li>class diagrams</li>
-    <li>component diagrams</li>
-    <li>state machine diagrams</li>
-    <li>activity diagrams</li>
-   </ul>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>10</font></div>
-  </td>
-  <td>
-  <div id=PPTP10 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0039.html');" id=PPTL10>Components – XSD</a></font></div>
-  <div id=PPTC10 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>XSD is a reference library that provides an API for use with any code
-       that examines, creates, or modifies documents based on the XML Schema
-       W3C standard</li>
-   <br>
-   <br>
-   <li>XSD provides APIs for</li>
-   <ul>
-    <li>manipulating components of an XML Schema</li>
-    <li>manipulating the DOM-accessible representation of XML Schema as a
-        series of XML documents</li>
-    <li>keeping these representations in agreement as schemas are modified</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>11</font></div>
-  </td>
-  <td>
-  <div id=PPTP11 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0041.html');" id=PPTL11>Themes – MDT 1.0</a></font></div>
-  <div id=PPTC11 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Appeal to a Broader Community</li>
-   <br>
-   <br>
-   <li>Be a Better Platform</li>
-   <br>
-   <br>
-   <li>Make Simpler to Use</li>
-   <br>
-   <br>
-   <li>Restructure Modeling Components</li>
-   <br>
-   <br>
-   <li>Increase Modeling Component Cohesion</li>
-   <br>
-   <br>
-   <li>Enable Consistent Multi-language Support</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>12</font></div>
-  </td>
-  <td>
-  <div id=PPTP12 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0042.html');" id=PPTL12>Plan Items – EODM 2.0</a></font></div>
-  <div id=PPTC12 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Appeal to a Broader Community</li>
-   <ul>
-    <li>Standard Compliance</li>
-    <li>Dynamic Typing</li>
-    <li>RDF/OWL Parsing and Serialization</li>
-    <li>RDF/OWL Reasoning</li>
-   </ul>
-   <br>
-   <li>Increase Modeling Component Cohesion</li>
-   <ul>
-    <li>RDF/OWL Transformation to/from Ecore</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>13</font></div>
-  </td>
-  <td>
-  <div id=PPTP13 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0043.html');" id=PPTL13>Plan Items – OCL 1.1</a></font></div>
-  <div id=PPTC13 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Appeal to a Broader Community</li>
-   <ul>
-    <li>Stand-alone Support</li>
-   </ul>
-   <br>
-   <li>Be a Better Platform</li>
-   <ul>
-    <li>Parsing API</li>
-    <li>EMF 2.3 / J2SE 5 Support</li>
-   </ul>
-   <br>
-   <li>Make Simpler to Use</li>
-   <ul>
-    <li>Improved Documentation</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>14</font></div>
-  </td>
-  <td>
-  <div id=PPTP14 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0044.html');" id=PPTL14>Plan Items – OCL 1.1</a></font></div>
-  <div id=PPTC14 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Restructure Modeling Components</li>
-   <ul>
-    <li>LPG</li>
-   </ul>
-   <br>
-   <li>Increase Modeling Component Cohesion</li>
-   <ul>
-    <li>Integration with UML</li>
-   </ul>
-   <br>
-   <li>Enable Consistent Multi-language Support</li>
-   <ul>
-    <li>ICU4J</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>15</font></div>
-  </td>
-  <td>
-  <div id=PPTP15 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0045.html');" id=PPTL15>Plan Items – UML2 2.1</a></font></div>
-  <div id=PPTC15 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Appeal to a Broader Community</li>
-   <ul>
-    <li>Static Profile Definition</li>
-   </ul>
-   <br>
-   <li>Be a Better Platform</li>
-   <ul>
-    <li>Ant Task for Ecore Importer</li>
-   </ul>
-   <br>
-   <li>Make Simpler to Use</li>
-   <ul>
-    <li>Create Child/Sibling Menu Reorganization</li>
-    <li>Improved Documentation</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>16</font></div>
-  </td>
-  <td>
-  <div id=PPTP16 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0046.html');" id=PPTL16>Plan Items – UML2 2.1</a></font></div>
-  <div id=PPTC16 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Increase Modeling Component Cohesion</li>
-   <ul>
-    <li>Eclipse 3.3 / EMF 2.3 Compatibility</li>
-    <li>XML Primitive Types</li>
-    <li>Integration with OCL</li>
-   </ul>
-   <br>
-   <li>Enable Consistent Multi-language Support</li>
-   <ul>
-    <li>BiDi Support</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>17</font></div>
-  </td>
-  <td>
-  <div id=PPTP17 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0047.html');" id=PPTL17>Plan Items – UML2
-  Tools 1.0</a></font></div>
-  <div id=PPTC17 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Appeal to a Broader Community</li>
-   <ul>
-    <li>Class Diagrams</li>
-    <li>State Machine Diagrams</li>
-    <li>Component Diagrams</li>
-    <li>Activity Diagrams</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>18</font></div>
-  </td>
-  <td>
-  <div id=PPTP18 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0048.html');" id=PPTL18>Plan Items – XSD 2.3</a></font></div>
-  <div id=PPTC18 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Appeal to a Broader Community</li>
-   <ul>
-    <li>Java™ SE 5.0 Support</li>
-   </ul>
-   <br>
-   <li>Increase Modeling Component Cohesion</li>
-   <ul>
-    <li>XSD2Ecore Enhancements</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>19</font></div>
-  </td>
-  <td>
-  <div id=PPTP19 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0033.html');" id=PPTL19>How Can You Help?</a></font></div>
-  <div id=PPTC19 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Develop and use tools based on MDT components</li>
-   <br>
-   <br>
-   <li>Report bugs</li>
-   <br>
-   <br>
-   <li>Participate in newsgroup discussions</li>
-   <br>
-   <br>
-   <li>Write articles</li>
-   <br>
-   <br>
-   <li>Become an MDT contributor!</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>20</font></div>
-  </td>
-  <td>
-  <div id=PPTP20 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0032.html');" id=PPTL20>Legal Notices</a></font></div>
-  <div id=PPTC20 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML is a trademark of the Object Management Group</li>
-   <br>
-   <br>
-   <li>XML is a trademark of the World Wide Web Consortium</li>
-   <br>
-   <br>
-   <li>Java and all Java-based trademarks are trademarks of Sun Microsystems,
-       Inc. in the United States, other countries, or both</li>
-   <br>
-   <br>
-   <li>Other company, product, or service names may be trademarks or service
-       marks of others</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
-</table>
-
-
-
-</div>
-
-<div style='display:none'><a href=master08.html></a><a href=master08.xml></a><a
-href=preview.wmf></a><a href="master08_image001.jpg"></a><a
-href="master08_image002.jpg"></a><a href=master09.html></a><a
-href=master09.xml></a><a href=master02.html></a><a href=pres.xml></a><a
-href=editdata.mso></a><a href=slide0030.html></a><a href="master09_image003.jpg"></a><a
-href="master09_image004.jpg"></a><a href=slide0029.html></a><a
-href="master08_image005.jpg"></a><a href="master08_image006.gif"></a><a
-href="master08_image007.jpg"></a><a href=slide0034.html></a><a
-href=slide0031.html></a><a href=slide0035.html></a><a href=slide0036.html></a><a
-href=slide0037.html></a><a href=slide0038.html></a><a href=slide0040.html></a><a
-href=slide0039.html></a><a href=slide0041.html></a><a href=slide0042.html></a><a
-href=slide0043.html></a><a href=slide0044.html></a><a href=slide0045.html></a><a
-href=slide0046.html></a><a href=slide0047.html></a><a href=slide0048.html></a><a
-href=slide0033.html></a><a href=slide0032.html></a><a href=master01.html></a><a
-href="master08_stylesheet.css"></a><a href=script.js></a><a
-href="../EclipseCon2007_ShortTalk.html"></a><a href=fullscreen.html></a><a
-href="notes_flag.gif"></a><a href=buttons.gif></a><a href=frame.html></a><a
-href=outline.html></a></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/pres.xml b/docs/presentations/EclipseCon2007_ShortTalk_files/pres.xml
deleted file mode 100644
index 91999f1..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/pres.xml
+++ /dev/null
@@ -1,89 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <p:presentation sizeof="screen" notessizex="4376" notessizey="5816"
-  gridspacingx="23224" gridspacingy="23224">
-  <p:master id="8" slidesn="1C24AB8,8B769EC0" type="main" href="master08.html"
-   xmlhref="master08.xml" template="1_Default Design" preserved="t"
-   layout="title_body" slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-    <p:colorscheme
-     colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
-   </p:schemes>
-  </p:master>
-  <p:master id="9" slidesn="1C24D0E,1F75CD10" type="title" href="master09.html"
-   xmlhref="master09.xml" preserved="t" layout="title_subtitle"
-   slots="centerTitle,subTitle,dateTime,footer,slideNumber"/>
-  <p:master id="1" slidesn="1C24D43,1A7CCF90" type="notes" href="master01.html"
-   layout="notes" slots="header,dateTime,slideImage,body,footer,slideNumber"/>
-  <p:master id="2" slidesn="1C2506F,D2141A80" type="handout"
-   href="master02.html" layout="handout"
-   slots="header,dateTime,footer,slideNumber"/>
-  <p:slide id="30" slidesn="1C75B49,47857FA0" href="slide0030.html"
-   masterhref="master09.html" layout="title_subtitle"
-   slots="centerTitle,subTitle"/>
-  <p:slide id="29" slidesn="1C3C8BA,EEFAEC40" href="slide0029.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="34" slidesn="1C75B4B,54AA9A10" href="slide0034.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="31" slidesn="1C75B4A,CCE33BA0" href="slide0031.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="35" slidesn="1C75B4F,635D4770" href="slide0035.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="36" slidesn="1C75B50,7D50D830" href="slide0036.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="37" slidesn="1C75B51,AEC170E0" href="slide0037.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="38" slidesn="1C75B52,739355F0" href="slide0038.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="40" slidesn="1C75B57,D44B3750" href="slide0040.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="39" slidesn="1C75B54,E568480" href="slide0039.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="41" slidesn="1C75B58,5891D370" href="slide0041.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="42" slidesn="1C75B58,946364E0" href="slide0042.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="43" slidesn="1C75B58,EC3849B0" href="slide0043.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="44" slidesn="1C75B59,295E95B0" href="slide0044.html"
-   layout="title_body" slots="title,body">
-   <p:headersfooters slidenumber="t" formatid="0" noheader="t" nodate="t"/>
-  </p:slide>
-  <p:slide id="45" slidesn="1C75B5C,253249C0" href="slide0045.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="46" slidesn="1C75B5C,88F0A6A0" href="slide0046.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="47" slidesn="1C75B5C,F2AC3780" href="slide0047.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="48" slidesn="1C75B5C,FE6AA7F0" href="slide0048.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="33" slidesn="1C75B4B,21F704A0" href="slide0033.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="32" slidesn="1C75B4A,F999C420" href="slide0032.html"
-   layout="title_body" slots="title,body"/>
-  <p:viewstate type="slideView" slidehref="slide0034.html" scale="75"
-   nosnaptogrid="t" snaptoshape="t" sorterscale="100" restoredleft="156"
-   restoredtop="946" manualadjustleft="t" manualadjusttop="t"
-   hideoutlineicons="t"/>
-  <p:guide type="horizontal" position="1070"/>
-  <p:guide type="horizontal" position="3247"/>
-  <p:guide type="horizontal" position="2150"/>
-  <p:guide type="horizontal" position="4079"/>
-  <p:guide type="vertical" position="2880"/>
-  <p:guide type="vertical" position="1176"/>
-  <p:guide type="vertical" position="913"/>
-  <p:font name="Arial" charset="0" type="4"/>
-  <p:font name="Wingdings" charset="2" type="6" family="2"/>
-  <p:font name="Times" type="4"/>
-  <p:headersfooters slidenumber="t" formatid="0" noheader="t" nodate="t"/>
-  <p:headersfooters notes="t" slidenumber="t"/>
-  <p:pptdocumentsettings framecolors="WhiteTextOnBlack" hideslideanimation="t"
-   browsersupport="v4"/>
- </p:presentation>
- <o:shapedefaults v:ext="edit" spidmax="709636" strokecolor="none [0]">
-  <v:stroke color="none [0]"/>
-  <o:colormru v:ext="edit" colors="#322c72,#2f2672,#302775,#322777,#312672,#2c2674,#2d2672,#302573"/>
-  <o:colormenu v:ext="edit" fillcolor="none [5]" strokecolor="none [0]"/>
- </o:shapedefaults></xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/preview.wmf b/docs/presentations/EclipseCon2007_ShortTalk_files/preview.wmf
deleted file mode 100644
index c99a747..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/script.js b/docs/presentations/EclipseCon2007_ShortTalk_files/script.js
deleted file mode 100644
index 5e47f29..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/script.js
+++ /dev/null
@@ -1,833 +0,0 @@
-function LoadSld()

-{

-	var sld=GetObj("SlideObj")

-	if( !g_supportsPPTHTML ) {

-		sld.style.visibility="visible"

-		return

-	}

-	if( MakeNotesVis() ) return

-	runAnimations = _InitAnimations();

-	if( IsWin("PPTSld") )

-		parent.SldUpdated(GetSldId())

-	g_origSz=parseInt(SlideObj.style.fontSize)

-	g_origH=sld.style.posHeight

-	g_origW=sld.style.posWidth

-	g_scaleHyperlinks=(document.all.tags("AREA").length>0)

-	if( g_scaleHyperlinks )

-		InitHLinkArray()

-	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )

-		document.body.scroll="no"

-	_RSW()

-	if( IsWin("PPTSld") && parent.IsFullScrMode() )

-		FullScrInit();

-	

-	MakeSldVis();

-	ChkAutoAdv()

-

-	if( runAnimations )

-	{

-		if( document.all("NSPlay") )

-			document.all("NSPlay").autoStart = false;

-		if( sld.filters && sld.filters.revealtrans )

-			setTimeout( "document.body.start()", sld.filters.revealtrans.duration * 1000 );

-		else

-			document.body.start();

-	}

-}

-function MakeSldVis()

-{

-	var fTrans=g_showAnimation && SldHasTrans()

-	if( fTrans )

-	{

-		if( g_bgSound ) {

-			idx=g_bgSound.indexOf(",");

-			pptSound.src=g_bgSound.substr( 0, idx );

-			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));

-		}

-		SlideObj.filters.revealtrans.Apply()

-    }

-	SlideObj.style.visibility="visible"

-	if( fTrans )

-		SlideObj.filters.revealtrans.Play()

-}

-function MakeNotesVis()

-{

-	if( !IsNts() ) return false

-	SlideObj.style.display="none"

-	nObj = document.all.item("NotesObj")

-	parent.SetHasNts(0)

-	if( nObj ) {

-		nObj.style.display=""

-		parent.SetHasNts(1)

-	}

-	return 1

-}

-function ChkAutoAdv()

-{

-	if(SldHasTrans())

-		SlideObj.onfilterchange=AutoAdv

-	else

-		AutoAdv()

-}

-function AutoAdv()

-{

-	if(!IsWin("PPTSld") || !gUseSldTimings )return

-	var sld=GetCurSld()

-	if( (sld.mAdvDelay>0) && !parent.IsFramesMode() )

-		setTimeout("parent.GoToNextSld()",sld.mAdvDelay)

-}

-function GetObj(id)

-{

-	if(g_supportsPPTHTML) return document.all(id);

-	else return document.getElementById(id);

-}

-function SldHasTrans() { return SlideObj.style.getAttribute("filter")!="" }

-function GetSldId() { return sId=location.href.substring(location.href.lastIndexOf('/')+1) }

-function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }

-function IsWin( name ) { return window.name == name }

-function IsNts() { return IsWin("PPTNts") }

-function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }

-function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }

-function SupportsPPTHTML()

-{

-	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0

-	if( msie >= 0 )

-		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )

-	else

-		ver=parseInt(appVer)

-	return( ver >= 4 && msie >= 0 )

-}

-function _RSW()

-{

-	if( !g_supportsPPTHTML || IsNts() ||

-	  ( !g_scaleInFrame && (!IsWin("PPTSld") || !parent.IsFullScrMode()) ) )

-		return

-        var padding=0;

-        if( IsWin("PPTSld") && parent.IsFramesMode() ) padding=6

-	cltWidth=document.body.clientWidth-padding

-	cltHeight=document.body.clientHeight-padding

-	factor=(1.0*cltWidth)/g_origW

-	if( cltHeight < g_origH*factor )

-		factor=(1.0*cltHeight)/g_origH

-	newSize = g_origSz * factor

-	if( newSize < 1 ) newSize=1

-	s=SlideObj.style

-	s.fontSize=newSize+"px"

-	s.posWidth=g_origW*factor

-	s.posHeight=g_origH*factor

-	s.posLeft=(cltWidth-s.posWidth+padding)/2

-	s.posTop=(cltHeight-s.posHeight+padding)/2

-	if( g_scaleHyperlinks )

-		ScaleHyperlinks( factor )

-}

-function _InitAnimations()

-{

-	animRuntimeInstalled = ''+document.body.localTime != 'undefined';

-	isFullScreen = (window.name == "PPTSld") && !parent.IsFramesMode();

-	g_animUseRuntime = g_showAnimation && animRuntimeInstalled && !(isFullScreen && parent.IsSldVisited());

-	if( g_animUseRuntime ) {

-		collSeq = document.all.tags("seq");

-		if( collSeq != null ) {

-			for(ii=0;ii<collSeq.length;ii++) {

-				if( collSeq[ii].getAttribute( "p:nodeType" ) == "mainSeq" ) {

-					g_animMainSequence = collSeq[ii];

-					break;

-				}

-			}

-		}

-		if( g_animItemsToHide ) {

-			for(jj = 0; jj < g_animItemsToHide.length; jj++) {

-				if( hideObj = GetObj(g_animItemsToHide[jj]) )

-					hideObj.runtimeStyle.visibility="hidden";

-			}

-		}

-		if( g_animInteractiveItems ){

-			for(jj = 0; jj < g_animInteractiveItems.length; jj++) {

-				if( triggerObj = GetObj(g_animInteractiveItems[jj]) )

-					triggerObj.runtimeStyle.cursor="hand";

-			}

-		}

-		if( gUseSldTimings && ''+g_animSlideTime != 'undefined' ) {

-			adjustedTime = document.body.calculateAutoAdvanceTimes( g_animSlideTime, g_animEffectTimings );

-			if( IsWin("PPTSld") && adjustedTime != g_animSlideTime ) {

-			   var sld = GetCurSld();

-			   sld.mAdvDelay = adjustedTime * 1000;

-			}

-		}

-	}

-	return g_animUseRuntime;

-}

-gSldJump = 0, gSldJumpTrack = 0, gSldJumpIdx = "";

-function _KPH()

-{

-	if( IsNts() ) return;

-	if( !parent.IsFramesMode() && event.keyCode == 27 && !HideMenu() )

-		parent.window.close( self );

-	else if( event.keyCode == 32 ) {

-		if( window.name == "PPTSld" )

-			parent.PPTSld.DocumentOnClick();

-		else

-			parent.GoToNextSld();

-	}

-	CatchNumKeys( parent, event );

-}

-function CatchNumKeys( win, event ) {

-	if( win.IsFullScrMode() && (48<=event.keyCode) && (event.keyCode<=57) ) {

-		gSldJump = 1;

-		gSldJumpIdx += (event.keyCode-48).toString();

-	}

-	if( win.IsFullScrMode() && gSldJump && event.keyCode == 13 ) {

-		var numSlds = parent.GetSldList().mList.length

-		if ( gSldJumpIdx > numSlds )

-			gSldJumpIdx = numSlds;

-		if ( gSldJumpIdx >= 0 ) {

-			if ( gSldJumpIdx == 0 )

-				gSldJumpIdx = 1;

-			var jumpTo = parseInt(gSldJumpIdx);

-			gSldJump = 0; gSldJumpIdx = "";

-			win.GoToSld( parent.GetSldList().mList[jumpTo-1].mSldHref )

-		}

-	}

-}

-function _KDH()

-{

-	if( event.keyCode == 8 ) {

-		event.returnValue = 0;

-		parent.GoToPrevSld();

-	}

-}

-function DocumentOnClick()

-{

-	if( IsNts() || parent.HideMenu() ) return;

-	if( ( g_allowAdvOnClick && !parent.IsFramesMode() ) ||

-	    (event && (event.keyCode==32) ) )

-		parent.GoToNextSld();

-}

-

-var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = 1, gId="", g_bgSound="",

-    g_scaleHyperlinks = false, g_allowAdvOnClick = 1, g_showInBrowser = 0, gLoopCont = 0, gUseSldTimings = 1;

-var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && ( (window.name=="PPTSld" && !parent.IsFramesMode()) || g_showInBrowser );var g_animManager = null;

-var g_animUseRuntime = false;

-var g_animItemsToHide, g_animInteractiveItems, g_animSlideTime;

-var g_animMainSequence = null;

-var ENDSHOW_MESG="End of slide show, click to exit.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=20, SCRIPT_HREF="script.js", FULLSCR_HREF="fullscreen.html";

-var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = 0, gHasNarration = 0, gOtlOpen = true

-window.gPPTHTML=SupportsPPTHTML()

-var gMainDoc=new Array(new hrefList("slide0030.html",1,-1,1),new hrefList("slide0029.html",1,-1,1),new hrefList("slide0034.html",1,-1,1),new hrefList("slide0031.html",1,-1,1),new hrefList("slide0035.html",1,-1,1),new hrefList("slide0036.html",1,-1,1),new hrefList("slide0037.html",1,-1,1),new hrefList("slide0038.html",1,-1,1),new hrefList("slide0040.html",1,-1,1),new hrefList("slide0039.html",1,-1,1),new hrefList("slide0041.html",1,-1,1),new hrefList("slide0042.html",1,-1,1),new hrefList("slide0043.html",1,-1,1),new hrefList("slide0044.html",1,-1,1),new hrefList("slide0045.html",1,-1,1),new hrefList("slide0046.html",1,-1,1),new hrefList("slide0047.html",1,-1,1),new hrefList("slide0048.html",1,-1,1),new hrefList("slide0033.html",1,-1,1),new hrefList("slide0032.html",1,-1,1));

-function FullScrInit()

-{

-	g_allowAdvOnClick = GetCurSld().mAdvOnClk

-	document.body.style.backgroundColor="black"

-	document.oncontextmenu=parent._CM;

-	document.onkeydown = _KDH;

-	document.ondragstart=Cancel

-	document.onselectstart=Cancel

-	self.focus()

-}

-function Redirect( frmId )

-{

-	var str=document.location.hash,idx=str.indexOf('#'), sId=GetSldId()

-	if(idx>=0) str=str.substr(1);

-	if( window.name != frmId && ( sId != str) ) {

-		obj = GetObj("Main-File")

-		window.location.href=obj.href+"#"+sId

-		return 1

-	}

-	return 0

-}

-var MHTMLPrefix = CalculateMHTMLPrefix();

-function CalculateMHTMLPrefix()

-{

-	if ( document.location.protocol == 'mhtml:') {

-		href=new String(document.location.href)

-		Start=href.indexOf('!')+1

-		End=href.lastIndexOf('/')+1

-		if (End < Start)

-			return href.substring(0, Start)

-		else

-		return href.substring(0, End)

-	}

-	return '';

-}

-function GetTags(base,tag)

-{

-	if(g_supportsPPTHTML) return base.all.tags(tag);

-	else return base.getElementsByTagName(tag);

-}

-function UpdNtsPane(){ if(frames["PPTNts"]) PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }

-function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }

-function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }

-function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }

-function SetHasNts( fVal )

-{

-	if( gHasNts != fVal ) {

-		gHasNts=fVal

-		UpdNavPane()

-	}

-}

-function ToggleOtlText()

-{

-	gOtlTxtExp=!gOtlTxtExp

-	UpdOtlPane()

-}

-function ToggleOtlPane()

-{

-	frmset=document.all("PPTHorizAdjust")

-	frm=document.all("PPTOtl")

-	if( gOtlOpen )

-		frmset.cols="*,100%"

-	else

-		frmset.cols="25%,*"

-	gOtlOpen=!gOtlOpen

-	frm.noResize=!frm.noResize

-	UpdOtNavPane()

-}

-function ToggleNtsPane()

-{

-	frmset=document.all("PPTVertAdjust")

-	frm=document.all("PPTNts")

-	if( gNtsOpen )

-		frmset.rows="100%,*"

-	else

-		frmset.rows="*,20%"

-	gNtsOpen=!gNtsOpen

-	UpdNtsPane()

-}

-function ClearMedia()

-{

-	if (PPTSld.pptSound) PPTSld.pptSound.loop = 0;

-}

-function FullScreen()

-{

-	if ( PPTSld.g_animUseRuntime )

-		PPTSld.document.body.pause();

-	ClearMedia();

-	var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;

-	if(PPTNav.event.ctrlKey) {

-		var w = (window.screen.availWidth * 1.0) / 2.0

-		var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW

-		win = window.open( MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w + ",height=" + h );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-	else

-	{

-		win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-}

-function ToggleVNarration()

-{

-	rObj=PPTSld.document.all("NSPlay")

-	if( rObj && !PPTSld.g_animUseRuntime ) {

-		if( (rObj.playState == 1)||(rObj.playState == 0) )

-			rObj.Play()

-		else if( rObj.playState == 2 )

-			rObj.Pause()

-		else

-			return;

-	}

-	else if( PPTSld.g_animUseRuntime )

-	{

-		narObj = PPTSld.document.all("narrationID")

-		if( narObj )

-			narObj.togglePause()

-	}

-}

-function GetCurSldNum()

-{

-	obj=GetHrefObj(gCurSld)

-	if( obj.mOrigVis == 1 )

-		return obj.mSldIdx

-	else

-		return gCurSld

-}

-function GetNumSlds()

-{

-	if( GetHrefObj(gCurSld).mOrigVis == 1 )

-		return GetSldList().mNumVisSlds;

-	else

-		return GetSldList().mList.length

-}

-function GetSldNum( href )

-{

-	for(ii=0; ii<GetSldList().mList.length; ii++) {

-		if ( GetSldList().mList[ii].mSldHref == href )

-			return ii+1

-	}

-	return 1

-}

-function GetHrefObj( sldIdx ){ return GetSldList().mList[sldIdx-1] }

-function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }

-function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }

-function GoToNextSld()

-{

-	ii=gCurSld + 1

-	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {

-		if( ii<=GetSldList().mList.length ) {

-			obj=GetHrefObj(ii)

-			obj.mVis=1

-			GoToSldNum(ii)

-			return

-		}

-	}

-	else {

-		obj=GetHrefObj( ii )

-		while ( obj && ( obj.mOrigVis == 0 ) )

-			obj=GetHrefObj(++ii)

-		if( obj && obj.mOrigVis ) {

-			GoToSldNum(ii)

-			return

-		}

-	}

-	if( gSldStack.length > 1 )

-		PopSldList();

-	else if( !IsFramesMode() ) {

-                if( gLoopCont )

-			GoToFirst()

-                else

-			EndShow()

-	}

-}

-function GoToPrevSld()

-{

-	ii=gCurSld-1

-	if( ii > 0 ) {

-		obj=GetHrefObj(ii)

-		while ( obj && ( obj.mVis == 0 ) && ( ii>0 ) )

-			obj=GetHrefObj(--ii)

-        if( ii == 0 ) ii=1

-		GoToSldNum(ii)

-	}

-}

-function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }

-function GoToLast()

-{

-	ii=GetSldList().mList.length

-	if( ii != gCurSld )

-		GoToSld( GetHrefObj(ii).mSldHref )

-}

-function GoToSldNum( num )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	obj = GetHrefObj( num )

-	obj.mVis=1

-	gPrevSld=gCurSld

-	gCurSld = num;

-	PPTSld.location.replace(MHTMLPrefix+obj.mSldHref)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function GoToSld( href )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	GetHrefObj( GetSldNum(href) ).mVis=1

-	PPTSld.location.replace(MHTMLPrefix+href)

-}

-function SldUpdated( id )

-{

-	if( id == GetHrefObj(gCurSld).mSldHref ) return

-	gPrevSld=gCurSld

-	gCurSld=GetSldNum(id)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }

-function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }

-function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }

-function CloseWindow() {

-	if( HideMenu() ) return;

-	var event = PPTSld.event;

-	if( !IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) )

-		window.close( self );

-	CatchNumKeys( self, event );

-}

-function Unload() { gIsEndShow=0; }

-function SetupEndShow() {

-	gIsEndShow=1;

-	PPTSld.document.body.scroll="no";

-	PPTSld.document.onkeypress=CloseWindow;

-	PPTSld.document.onclick=CloseWindow;

-	PPTSld.document.oncontextmenu=_CM;

-}

-function EndShow()

-{

-	if( IsFramesMode() ) return

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	doc=PPTSld.document

-	doc.open()

-	doc.writeln('<html><body bgcolor=black onload=parent.SetupEndShow() onunload=parent.Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')

-	doc.close()

-}

-function SetSldVisited(){ GetSldList().mList[gCurSld-1].mVisited=true }

-function IsSldVisited(){ return GetSldList().mList[gCurSld-1].mVisited }

-function hrefList( sldHref, visible, advDelay, advClk )

-{

-	this.mSldHref= this.mNtsHref = sldHref

-	this.mOrigVis= this.mVis = visible

-	this.mVisited= false

-	this.mAdvDelay= advDelay

-	this.mAdvOnClk= advClk

-}

-function SldList(arr,curSld,fEnd)

-{

-	this.mCurSld = curSld;

-	this.mList = new Array();

-	var idx = 1;

-	for(ii=0;ii<arr.length;ii++) {

-		this.mList[ii] = new hrefList( arr[ii].mSldHref, arr[ii].mOrigVis, arr[ii].mAdvDelay, arr[ii].mAdvOnClk );

-		if( arr[ii].mOrigVis )

-			this.mList[ii].mSldIdx = idx++;

-	}

-	this.mNumVisSlds = idx-1;

-	this.fEndShow = fEnd;

-}

-function GetSldList() {	return gSldStack[gSldStack.length-1] }

-function GetCurSld() { return parent.GetSldList().mList[parent.gCurSld - 1] }

-gSldStack = new Array();

-gSldStack[0] = new SldList(gMainDoc,gCurSld,1)

-function ViewCustomShow(idx,fEnd)

-{

-	if( !IsFullScrMode() ) return;

-	var sldList = new Array();

-	var custShow = custShowList[idx-1];

-	var jj = 0;

-	for( ii=0;ii<custShow.length;ii++ ) {

-		if( custShow[ii] <= gMainDoc.length )

-			sldList[jj++] = gMainDoc[custShow[ii]-1];

-	}

-	if (sldList.length > 0) {

-	PushSldList(sldList,fEnd);

-	gCurSld = 1;

-	}

-	else

-		if( PPTSld.event ) PPTSld.event.cancelBubble=true

-}

-function PushSldList(arr,fEnd) {

-	var ii = gSldStack.length;

-	gSldStack[ii] = new SldList(arr,gCurSld,fEnd);

-	GoToSld( gSldStack[ii].mList[0].mSldHref );

-}

-function PopSldList() {

-	if (gSldStack[gSldStack.length-1].fEndShow)

-		EndShow()

-	else {

-	gCurSld = gSldStack[gSldStack.length-1].mCurSld;

-	gSldStack[gSldStack.length-1] = null;

-	gSldStack.length--;

-	var sldList = gSldStack[gSldStack.length-1];

-	GoToSld( sldList.mList[gCurSld - 1].mSldHref );

-	}

-}

-var custShowList=new Array();

-function ImgBtn( oId,bId,w,action )

-{

-	var t=this

-	t.Perform    = _IBP

-	t.SetActive  = _IBSetA

-	t.SetInactive= _IBSetI

-	t.SetPressed = _IBSetP

-	t.SetDisabled= _IBSetD

-	t.Enabled    = _IBSetE

-	t.ChangeIcon = null

-	t.UserAction = action

-	t.ChgState   = _IBUI

-	t.mObjId   = oId

-	t.mBorderId= bId

-	t.mWidth   = w

-	t.mIsOn    = t.mCurState = 0

-}

-function _IBSetA()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetI()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetP()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gShadowClr,gHiliteClr,2 )

-		obj.style.posLeft+=1; obj.style.posTop+=1

-	}

-}

-function _IBSetD()

-{

-	obj=this.ChgState( gFaceClr,gFaceClr,0 )

-	obj.style.posTop=0

-}

-function _IBSetE( state )

-{

-	var t=this

-	GetObj( t.mBorderId ).style.visibility="visible"

-	if( state != t.mIsOn ) {

-		t.mIsOn=state

-		if( state )

-			t.SetInactive()

-		else

-			t.SetDisabled()

-	}

-}

-function _IBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-		if( t.ChangeIcon ) {

-			obj=GetObj(t.mObjId)

-			if( t.ChangeIcon() )

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth

-			else

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth

-		}

-		t.SetActive()

-	}

-}

-function _IBUI( clr1,clr2,nextState )

-{

-	var t=this

-	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )

-	obj=GetObj( t.mObjId )

-	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop

-	t.mCurState=nextState

-	return obj

-}

-function TxtBtn( oId,oeId,action,chkState )

-{

-	var t=this

-	t.Perform    = _TBP

-	t.SetActive  = _TBSetA

-	t.SetInactive= _TBSetI

-	t.SetPressed = _TBSetP

-	t.SetDisabled= _TBSetD

-	t.SetEnabled = _TBSetE

-	t.GetState   = chkState

-	t.UserAction = action

-	t.ChgState   = _TBUI

-	t.mObjId      = oId

-	t.m_elementsId= oeId

-	t.mIsOn       = 1

-}

-function _TBSetA()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gHiliteClr,gShadowClr,0,0 )

-}

-function _TBSetI()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-}

-function _TBSetP()

-{

-	if( this.mIsOn )

-		this.ChgState( gShadowClr,gHiliteClr,1,1 )

-}

-function _TBSetD()

-{

-	this.ChgState( gFaceClr,gFaceClr,0,0 )

-	this.mIsOn = 0

-}

-function _TBSetE()

-{

-	var t=this

-	if( !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-	else

-		t.ChgState( gShadowClr,gHiliteClr,1,1 )

-	t.mIsOn = 1

-}

-function _TBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-        if( !t.GetState )

-            return

-		if( t.GetState() )

-			t.SetPressed()

-		else

-			t.SetActive()

-	}

-}

-function _TBUI( clr1,clr2,lOffset,tOffset )

-{

-	SetBorder( GetObj( this.mObjId ),clr1,clr2 )

-	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )

-}

-function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }

-function SetBorder( obj, upperLeft, lowerRight )

-{

-	s=obj.style;

-	s.borderStyle      = "solid"

-	s.borderWidth      = 1

-	s.borderLeftColor  = s.borderTopColor = upperLeft

-	s.borderBottomColor= s.borderRightColor = lowerRight

-}

-function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }

-function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }

-function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }

-function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }

-function BtnOnUp()

-{

-	b=GetBtnObj()

-	if( b != null )

-		b.Perform()

-	else

-		Upd()

-}

-function GetNtsState(){ return parent.gNtsOpen }

-function GetOtlState(){ return parent.gOtlOpen }

-function GetOtlTxtState(){ return parent.gOtlTxtExp }

-function NtsBtnSetFlag( fVal )

-{

-	s=document.all.item( this.m_flagId ).style

-	s.display="none"

-	if( fVal )

-		s.display=""

-	else

-		s.display="none"

-}

-function _BSetA_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetActive() }

-function _BSetI_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetInactive() }

-var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"

-var gBtnArr = new Array()

-gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_otlElem"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_nts"] = new TxtBtn( "nb_nts","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )

-gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )

-gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )

-gBtnArr["nb_sldshwBorder"] = new TxtBtn( "nb_sldshw","nb_sldshwBorder",parent.FullScreen,null )

-gBtnArr["nb_sldshwBorder"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwBorder"].SetInactive = _BSetI_Border;

-gBtnArr["nb_sldshwText"] = new TxtBtn( "nb_sldshw","nb_sldshwText",parent.FullScreen,null )

-gBtnArr["nb_sldshwText"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwText"].SetInactive = _BSetI_Border;

-gBtnArr["nb_voice"]  = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )

-gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )

-gBtnArr["nb_nts"].m_flagId= "notes_flag"

-gBtnArr["nb_nts"].SetFlag = NtsBtnSetFlag

-gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState

-var sNext="Next",sPrev="Previous",sEnd="End Show",sFont="Arial",sArrow="Arrow",sFreeform="Freeform",sRect="Rectangle",sOval="Oval"

-function ShowMenu()

-{

-	BuildMenu();

-	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

-	m = PPTSld.document.all.item("ctxtmenu")

-	m.style.pixelLeft=x

-	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )

-		m.style.pixelLeft=x-m.scrollWidth

-	m.style.pixelTop=y

-	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )

-		m.style.pixelTop=y-m.scrollHeight

-	m.style.display=""

-}

-function _CM()

-{

-	if( !parent.IsFullScrMode() ) return;

-	if(!PPTSld.event.ctrlKey) {

-		ShowMenu()

-		return false

-	} else

-		HideMenu()

-}

-function BuildMenu()

-{

-	if( PPTSld.document.all.item("ctxtmenu") ) return

-	var mObj=CreateItem( PPTSld.document.body )

-	mObj.id="ctxtmenu"

-	mObj.style.visibility="hidden"

-	var s=mObj.style

-	s.position="absolute"

-	s.cursor="default"

-	s.width="120px"

-	SetCMBorder(mObj,"menu","black")

-	var iObj=CreateItem( mObj )

-	SetCMBorder( iObj, "threedhighlight","threedshadow" )

-	iObj.style.padding=2

-	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )

-	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )

-	CreateSeparator( iObj )

-	CreateMenuItem( iObj,sEnd,M_End,M_True )

-	mObj.style.visibility="visible"

-}

-function Cancel() { window.event.cancelBubble=true; window.event.returnValue=false }

-function Highlight() { ChangeClr("activecaption","threedhighlight") }

-function Deselect() { ChangeClr("threedface","menutext") }

-function Perform()

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() )

-		e.Action()

-	else

-		PPTSld.event.cancelBubble=true

-}

-function ChangeClr( bg,clr )

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() ) {

-		e.style.backgroundColor=bg

-		e.style.color=clr

-	}

-}

-function M_HasPrevSld() { return( parent.HasPrevSld() ) }

-function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }

-function M_GoPrevSld() { if( gIsEndShow ) { history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }

-function M_True() { return true }

-function M_End() { window.close( self ) }

-function CreateMenuItem( node,text,action,eval )

-{

-	var e=CreateItem( node )

-	e.type="menuitem"

-	e.Action=action

-	e.IsActive=eval

-	e.innerHTML=text

-	if( !e.IsActive() )

-		e.style.color="threedshadow"

-	e.onclick=Perform

-	e.onmouseover=Highlight

-	e.onmouseout=Deselect

-	s=e.style;

-	s.fontFamily=sFont

-	s.fontSize="9pt"

-	s.paddingLeft=2

-}

-function CreateSeparator( node )

-{

-	var sObj=CreateItem( node )

-	SetCMBorder(sObj,"menu","menu")

-	var s=sObj.style

-	s.borderTopColor="threedshadow"

-	s.borderBottomColor="threedhighlight"

-	s.height=1

-	s.fontSize="0px"

-}

-function CreateItem( node )

-{

-	var elem=PPTSld.document.createElement("DIV")

-	node.insertBefore( elem )

-	return elem

-}

-function SetCMBorder( o,ltClr,rbClr )

-{

-	var s=o.style

-	s.backgroundColor="menu"

-	s.borderStyle="solid"

-	s.borderWidth=1

-	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr

-}

diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0029.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0029.html
deleted file mode 100644
index 9e7c597..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0029.html
+++ /dev/null
@@ -1,131 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="657"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O style='mso-line-spacing:"100 50 0";
- position:absolute;top:95.0%;left:2.62%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;color:black;
- mso-color-index:0;mso-ansi-language:EN-US;mso-field-code:meta16'><b>2</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;color:black;
- mso-color-index:0;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- lang=EN-US style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:
- EN-US'><span style='mso-spacerun:yes'> </span>What is MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s672774" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s672775" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s672774" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s672775" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Overview&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Participants&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Components&#13;</span></div>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Themes&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Plan Items&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:71.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>How Can You Help?</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0030.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0030.html
deleted file mode 100644
index 90e18c5..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0030.html
+++ /dev/null
@@ -1,100 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: What is MDT?">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:black;}
-.CT
-	{color:black;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="660"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master09.xml">
- <p:shaperange href="master09.xml#_x0000_s33793"/><![if !ppt]><p:shaperange
-  href="master09.xml#_x0000_s33977"/><![if !vml]><img border=0
- v:shapes="_x0000_s33977" src="master09_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master09.xml#_x0000_s33972"/><p:shaperange
-  href="master09.xml#_x0000_s33975"/>
- <div v:shape="_x0000_s33975" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:95.0%;left:1.68%;width:97.75%;height:3.0%'><span
- lang=EN-US style='font-size:72%;color:black;mso-color-index:0;mso-ansi-language:
- EN-US'>© Copyright 2007 by IBM Corp.; made available under the EPL v1.0 |<span
- style='mso-spacerun:yes'>  </span>March 6, 2007</span></div>
- <p:shaperange href="master09.xml#_x0000_s33980"/><![if !vml]><img border=0
- v:shapes="_x0000_s33980" src="master09_image004.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master09.xml#_x0000_m33800"/><v:shape id="_x0000_s675844" type="#_x0000_m33800"
-  style='position:absolute;left:30.75pt;top:134.375pt;width:626.375pt;height:115.75pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="centerTitle"/></v:shape><p:shaperange
-  href="master09.xml#_x0000_m33801"/><v:shape id="_x0000_s675845" type="#_x0000_m33801"
-  style='position:absolute;left:153.5pt;top:261.375pt;width:7in;height:109pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="subTitle" position="1"/></v:shape>
- <div v:shape="_x0000_s675844" class=CT style='position:absolute;top:25.5%;
- left:5.24%;width:85.2%;height:6.0%'>What is MDT?</div>
- <div v:shape="_x0000_s675845" class=CB>
- <div style='position:absolute;top:49.25%;left:22.28%;width:68.16%;height:4.5%'><span
- style='font-size:83%'>Short Talk&#13;</span></div>
- <div style='position:absolute;top:53.75%;left:22.28%;width:68.16%;height:4.5%'><span
- style='font-size:83%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:58.25%;left:22.28%;width:68.16%;height:4.5%'><span
- style='font-size:83%'>Kenn Hussey&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:22.28%;width:68.16%;height:4.5%'><span
- style='font-size:83%'>IBM Rational Software</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0031.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0031.html
deleted file mode 100644
index 50e84f5..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0031.html
+++ /dev/null
@@ -1,135 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Participants">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="662"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>4</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s677890" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s677891" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s677890" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Participants</div>
- <div v:shape="_x0000_s677891" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Project lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:khussey@ca.ibm.com"/><a
- href="mailto:khussey@ca.ibm.com" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Kenn
- Hussey</a>&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Committers currently
- from IBM and Borland&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:44.5%;left:8.23%;width:90.07%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.7%;width:97.29%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.77%'>§</span>Potential contributions
- from Soyatec, Topcased, and others&#13;</span></div>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Collaborations with EMF
- and GMF projects&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Advocated by Ed Merks
- and Richard Gronback</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0032.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0032.html
deleted file mode 100644
index a2d8cf6..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0032.html
+++ /dev/null
@@ -1,125 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Legal Notices">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="663"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>20</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s678914" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s678915" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s678914" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Legal Notices</div>
- <div v:shape="_x0000_s678915" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>UML is a trademark of
- the Object Management Group&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:8.23%;width:84.64%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.87%;width:97.12%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.96%'>§</span>XML is a trademark of
- the World Wide Web Consortium&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:44.5%;left:10.67%;width:87.45%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.78%'>§</span>Java and all Java-based
- trademarks are trademarks of Sun </span><span style='position:absolute;
- top:49.0%;left:10.67%;width:93.82%;height:4.5%'>Microsystems, Inc. in the
- United States, other countries, or both&#13;</span>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:58.0%;left:10.67%;width:92.5%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.63%'>§</span>Other company, product,
- or service names may be trademarks </span><span style='position:absolute;
- top:62.5%;left:10.67%;width:80.33%;height:4.5%'>or service marks of others</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0033.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0033.html
deleted file mode 100644
index 46af2c5..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0033.html
+++ /dev/null
@@ -1,138 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: How Can You Help?">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="664"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>19</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s679938" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s679939" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s679938" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>How Can You Help?</div>
- <div v:shape="_x0000_s679939" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Develop and use tools
- based on MDT components&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Report <p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=MDT"/><a
- href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=MDT" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>bugs</a>&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Participate in <p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt"/><a
- href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>newsgroup</a><span style='mso-spacerun:yes'> </span>discussions&#13;</span></div>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Write articles&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Become an MDT
- contributor!</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0034.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0034.html
deleted file mode 100644
index 6687d21..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0034.html
+++ /dev/null
@@ -1,162 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Overview">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="665"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>3</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s680962" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s680963" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s680962" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Overview</div>
- <div v:shape="_x0000_s680963" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:93.07%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.61%'>§</span><b>M</b>odel <b>D</b>evelopment <b>T</b>ools
- is an Eclipse <p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/modeling"/><a
- href="http://www.eclipse.org/modeling" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Modeling</a><span
- style='mso-spacerun:yes'> </span>subproject at </span><span style='position:
- absolute;top:31.25%;left:10.67%;width:80.33%;height:4.5%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/mdt"/><a
- href="http://www.eclipse.org/mdt" target="_blank"
- onclick="window.event.cancelBubble=true;">http://www.eclipse.org/mdt</a>&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:88.57%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.74%'>§</span>Inspired by
- the Eclipse communityÂ’s need for more end user </span><span style='position:
- absolute;top:44.5%;left:10.67%;width:80.33%;height:4.5%'>&quot;tooling&quot;
- from the Modeling project&#13;</span>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:53.5%;left:10.67%;width:83.89%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.9%'>§</span>Purpose of MDT is to
- provide extensible frameworks and </span><span style='position:absolute;
- top:58.0%;left:10.67%;width:86.89%;height:4.5%'>exemplary tools for the
- metamodels within the scope of the </span><span style='position:absolute;
- top:62.5%;left:10.67%;width:80.33%;height:4.5%'>Modeling project&#13;</span>
- <div style='position:absolute;top:66.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:71.25%;left:8.23%;width:88.2%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.76%;width:97.23%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.83%'>§</span>First release
- tentatively scheduled for June 2007 (Europa) </span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Focus of MDT is on big “M”
-  modeling within the Modeling top-level project.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Focus is limited to
-  EMF-based implementations of industry standard metamodels and GMF-based tools
-  to develop models based on those metamodels.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0035.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0035.html
deleted file mode 100644
index 0253d36..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0035.html
+++ /dev/null
@@ -1,131 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Components">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="666"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>5</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s681986" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s681987" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s681986" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Components</div>
- <div v:shape="_x0000_s681987" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>EMF Ontology Definition
- Metamodel (EODM)&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Object Constraint
- Language (OCL)&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Unified Modeling
- Language 2.x (UML2)&#13;</span></div>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>UML2 Tools&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>XML™ Schema Infoset
- Model (XSD)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0036.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0036.html
deleted file mode 100644
index c2d517b..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0036.html
+++ /dev/null
@@ -1,165 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Components – EODM">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="667"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>6</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s683010" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s683011" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s683010" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Components – EODM</div>
- <div v:shape="_x0000_s683011">
- <div class=B><span style='position:absolute;top:26.75%;left:10.67%;width:94.38%;
- height:4.5%'><span class=BB style='position:absolute;left:-2.57%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt.eodm"/><a
- href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt.eodm"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>EODM</a><span style='mso-spacerun:yes'> </span>is an implementation
- of the RDF(S)/OWL metamodels of </span><span style='position:absolute;
- top:31.25%;left:10.67%;width:93.82%;height:4.5%'>the <p:onmouseclick
-  hyperlinktype="url" location="ODM"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#ODM"
- target="_blank" onclick="window.event.cancelBubble=true;">Ontology Definition
- Metamodel (ODM)</a> OMG standard using </span><span style='position:absolute;
- top:35.75%;left:10.67%;width:90.63%;height:4.5%'>EMF with additional parsing,
- inference, model transformation, </span><span style='position:absolute;
- top:40.25%;left:10.67%;width:80.33%;height:4.5%'>and editing functions&#13;</span></div>
- <div class=B style='position:absolute;top:44.5%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:49.0%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>EODM
- provides&#13;</span></div>
- <div class=B1 style='position:absolute;top:54.5%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>an
- EMF-based RDF/OWL model&#13;</span></div>
- <div class=B1 style='position:absolute;top:60.0%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>an
- RDF/OWL parser&#13;</span></div>
- <div class=B1 style='position:absolute;top:65.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>an
- RDF/OWL reasoner&#13;</span></div>
- <div class=B1 style='position:absolute;top:71.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>an
- RDF/OWL transformer&#13;</span></div>
- <div class=B1 style='position:absolute;top:77.0%;left:13.29%;width:88.2%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.6%;width:96.39%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.74%'>§</span>a
- workbench which provides basic Eclipse editors for RDF/OWL</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Component lead is Lei Zhang
-  (lzhangl@cn.ibm.com).</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0037.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0037.html
deleted file mode 100644
index 442923b..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0037.html
+++ /dev/null
@@ -1,164 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Components – OCL">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="668"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>7</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s684034" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s684035" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s684034" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Components – OCL</div>
- <div v:shape="_x0000_s684035">
- <div class=B><span style='position:absolute;top:26.75%;left:10.67%;width:90.07%;
- height:4.5%'><span class=BB style='position:absolute;left:-2.7%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt.ocl"/><a
- href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt.ocl"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>OCL</a><span style='mso-spacerun:yes'> </span>is an implementation
- of the <p:onmouseclick hyperlinktype="url" location="OCL"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#OCL"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Object Constraint Language </a></span><span style='position:absolute;
- top:31.25%;left:10.67%;width:80.33%;height:4.5%'><p:onmouseclick
-  hyperlinktype="url" location="OCL"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#OCL"
- target="_blank" onclick="window.event.cancelBubble=true;">(OCL)</a> OMG
- standard for EMF-based models&#13;</span></div>
- <div class=B style='position:absolute;top:35.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:40.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>OCL
- provides&#13;</span></div>
- <div class=B1 style='position:absolute;top:45.5%;left:13.29%;width:83.89%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.79%;width:96.2%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.94%'>§</span>APIs
- for parsing and evaluating OCL constraints and queries&#13;</span></div>
- <div class=B1><span style='position:absolute;top:51.25%;left:16.47%;
- width:79.58%;height:4.0%'><span class=B1B style='position:absolute;left:-4.0%'>§</span>an
- Ecore implementation of the OCL abstract syntax model, </span><span
- style='position:absolute;top:55.25%;left:16.47%;width:81.08%;height:4.0%'>including
- support for serialization of parsed OCL expressions&#13;</span></div>
- <div class=B1><span style='position:absolute;top:60.75%;left:16.47%;
- width:82.58%;height:4.0%'><span class=B1B style='position:absolute;left:-3.85%'>§</span>a
- visitor API for analyzing/transforming the AST model of OCL </span><span
- style='position:absolute;top:64.75%;left:16.47%;width:74.53%;height:4.0%'>expressions&#13;</span></div>
- <div class=B1><span style='position:absolute;top:70.5%;left:16.47%;width:78.27%;
- height:4.0%'><span class=B1B style='position:absolute;left:-4.06%'>§</span>an
- extensibility API for clients to customize the parsing and </span><span
- style='position:absolute;top:74.5%;left:16.47%;width:74.53%;height:4.0%'>evaluation
- environments used by the parser</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Component lead is Christian
-  Damus (cdamus@ca.ibm.com).</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0038.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0038.html
deleted file mode 100644
index 1cb4ac7..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0038.html
+++ /dev/null
@@ -1,164 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Components – UML2">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="669"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>8</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s685058" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s685059" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s685058" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Components – UML2</div>
- <div v:shape="_x0000_s685059">
- <div class=B><span style='position:absolute;top:26.75%;left:10.67%;width:93.63%;
- height:4.5%'><span class=BB style='position:absolute;left:-2.6%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt.uml2"/><a
- href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt.uml2"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>UML2</a><span style='mso-spacerun:yes'> </span>is an EMF-based
- implementation of the <p:onmouseclick hyperlinktype="url" location="UML"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#UML"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Unified Modeling </a></span><span style='position:absolute;
- top:31.25%;left:10.67%;width:80.33%;height:4.5%'><p:onmouseclick
-  hyperlinktype="url" location="UML"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#UML"
- target="_blank" onclick="window.event.cancelBubble=true;">Language 2.x</a> OMG
- standard for the Eclipse platform&#13;</span></div>
- <div class=B style='position:absolute;top:35.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:40.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>UML2
- provides&#13;</span></div>
- <div class=B1><span style='position:absolute;top:45.5%;left:16.47%;width:77.52%;
- height:4.0%'><span class=B1B style='position:absolute;left:-4.1%'>§</span>a
- useable implementation of the metamodel to support the </span><span
- style='position:absolute;top:49.5%;left:16.47%;width:74.53%;height:4.0%'>development
- of modeling tools&#13;</span></div>
- <div class=B1><span style='position:absolute;top:55.25%;left:16.47%;
- width:79.58%;height:4.0%'><span class=B1B style='position:absolute;left:-4.0%'>§</span>a
- common XMI schema to facilitate interchange of semantic </span><span
- style='position:absolute;top:59.25%;left:16.47%;width:74.53%;height:4.0%'>models&#13;</span></div>
- <div class=B1 style='position:absolute;top:64.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>test
- cases as a means of validating the specification&#13;</span></div>
- <div class=B1><span style='position:absolute;top:70.5%;left:16.47%;width:82.02%;
- height:4.0%'><span class=B1B style='position:absolute;left:-3.88%'>§</span>validation
- rules as a means of defining and enforcing levels of </span><span
- style='position:absolute;top:74.5%;left:16.47%;width:74.53%;height:4.0%'>compliance
- </span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Component lead is Kenn
-  Hussey (khussey@ca.ibm.com).</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0039.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0039.html
deleted file mode 100644
index f479223..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0039.html
+++ /dev/null
@@ -1,155 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Components – XSD">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="670"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>10</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s686082" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s686083" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s686082" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Components – XSD</div>
- <div v:shape="_x0000_s686083">
- <div class=B><span style='position:absolute;top:26.75%;left:10.67%;width:93.25%;
- height:4.5%'><span class=BB style='position:absolute;left:-2.61%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt.xsd"/><a
- href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt.xsd"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>XSD</a><span style='mso-spacerun:yes'> </span>is a reference library
- that provides an API for use with any </span><span style='position:absolute;
- top:31.25%;left:10.67%;width:91.76%;height:4.5%'>code that examines, creates,
- or modifies documents based on </span><span style='position:absolute;
- top:35.75%;left:10.67%;width:80.33%;height:4.5%'>the <p:onmouseclick
-  hyperlinktype="url" href="http://www.w3.org/TR/XMLSchema-0"/><a
- href="http://www.w3.org/TR/XMLSchema-0" target="_blank"
- onclick="window.event.cancelBubble=true;">XML Schema</a> W3C standard&#13;</span></div>
- <div class=B style='position:absolute;top:40.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:44.5%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>XSD
- provides APIs for&#13;</span></div>
- <div class=B1 style='position:absolute;top:50.0%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>manipulating
- components of an XML Schema&#13;</span></div>
- <div class=B1><span style='position:absolute;top:55.75%;left:16.47%;
- width:87.26%;height:4.0%'><span class=B1B style='position:absolute;left:-3.64%'>§</span>manipulating
- the DOM-accessible representation of XML Schema </span><span style='position:
- absolute;top:59.75%;left:16.47%;width:74.53%;height:4.0%'>as a series of XML
- documents&#13;</span></div>
- <div class=B1><span style='position:absolute;top:65.25%;left:16.47%;
- width:80.71%;height:4.0%'><span class=B1B style='position:absolute;left:-3.94%'>§</span>keeping
- these representations in agreement as schemas are </span><span
- style='position:absolute;top:69.25%;left:16.47%;width:74.53%;height:4.0%'>modified</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Component lead is Ed Merks
-  (merks@ca.ibm.com).</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0040.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0040.html
deleted file mode 100644
index 065545a..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0040.html
+++ /dev/null
@@ -1,158 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Components – UML2 Tools">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="671"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>9</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s687106" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s687107" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s687106" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Components – UML2 Tools</div>
- <div v:shape="_x0000_s687107">
- <div class=B><span style='position:absolute;top:26.75%;left:10.67%;width:86.14%;
- height:4.5%'><span class=BB style='position:absolute;left:-2.82%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt.uml2tools"/><a
- href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt.uml2tools"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>UML2 Tools</a><span style='mso-spacerun:yes'> </span>is a set of
- GMF-based editors for viewing and </span><span style='position:absolute;
- top:31.25%;left:10.67%;width:80.33%;height:4.5%'>editing UML™ models&#13;</span></div>
- <div class=B style='position:absolute;top:35.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:40.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>UML2
- Tools provides editors for&#13;</span></div>
- <div class=B1 style='position:absolute;top:45.5%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>class
- diagrams&#13;</span></div>
- <div class=B1 style='position:absolute;top:51.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>component
- diagrams&#13;</span></div>
- <div class=B1 style='position:absolute;top:56.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>state
- machine diagrams&#13;</span></div>
- <div class=B1 style='position:absolute;top:62.5%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>activity
- diagrams &#13;</span></div>
- <div class=B style='position:absolute;top:67.0%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Component lead is Michael
-  Golubev (Michael.Golubev@borland.com).</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0041.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0041.html
deleted file mode 100644
index ed59db8..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0041.html
+++ /dev/null
@@ -1,144 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Themes – MDT 1.0">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="672"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>11</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s688130" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s688131" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s688130" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Themes – <p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/docs/plans/mdt_project_plan_1_0.html"/><a
- href="http://www.eclipse.org/modeling/mdt/docs/plans/mdt_project_plan_1_0.html"
- target="_blank" onclick="window.event.cancelBubble=true;">MDT 1.0</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s688131" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Appeal to a Broader
- Community&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Be a Better Platform
- &#13;</span></div>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Make Simpler to
- Use&#13;</span></div>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Restructure Modeling
- Components&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Increase Modeling
- Component Cohesion&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:71.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Enable Consistent
- Multi-language Support</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0042.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0042.html
deleted file mode 100644
index efd1586..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0042.html
+++ /dev/null
@@ -1,201 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Plan Items – EODM 2.0">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="673"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>12</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s689154" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s689155" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s689154" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Plan Items – EODM 2.0</div>
- <div v:shape="_x0000_s689155">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Appeal to a Broader Community&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Standard
- Compliance</a>&#13;</span></div>
- <div class=B1 style='position:absolute;top:37.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Dynamic
- Typing</a>&#13;</span></div>
- <div class=B1 style='position:absolute;top:43.5%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RDF/OWL
- Parsing and Serialization</a>&#13;</span></div>
- <div class=B1 style='position:absolute;top:49.0%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RDF/OWL
- Reasoning</a>&#13;</span></div>
- <div class=B style='position:absolute;top:53.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:58.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Increase Modeling Component Cohesion&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:63.5%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RDF/OWL
- Transformation to/from Ecore</a><span style='mso-special-format:lastCR;
- display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Standard Compliance -
-  Provide a new API that is compliant with the (to be adopted) 5th submission
-  of the ODM specification to the OMG.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Dynamic Typing - Provide
-  support for dynamic typing.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>RDF/OWL Parsing and
-  Serialization - Provide support for RDF/OWL parsing and serialization.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>RDF/OWL Reasoning - Provide
-  support for RDF/OWL reasoning.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>RDF/OWL Transformation
-  to/from Ecore - Provide a mechanism to transform RDF/OWL models to/from
-  Ecore.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0043.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0043.html
deleted file mode 100644
index 1c39d8d..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0043.html
+++ /dev/null
@@ -1,195 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Plan Items – OCL 1.1">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="674"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>13</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s690178" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s690179" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s690178" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Plan Items – OCL 1.1</div>
- <div v:shape="_x0000_s690179">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Appeal to a Broader Community&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Stand-alone
- Support</a>&#13;</span></div>
- <div class=B style='position:absolute;top:37.0%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:41.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Be a Better Platform&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:46.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Parsing
- API</a>&#13;</span></div>
- <div class=B1 style='position:absolute;top:52.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>EMF 2.3 /
- J2SE 5 Support</a>&#13;</span></div>
- <div class=B style='position:absolute;top:57.0%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6;visibility:hidden'><span
- class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='color:silver;mso-color-index:6;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:61.5%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Make Simpler to Use&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:66.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Improved
- Documentation</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Stand-alone Support -
-  Provide a stand-alone (Eclipse-free) OCL build.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Parsing API - Provide a
-  public API for parsing OCL documents, with the complete context declaration
-  syntax.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>EMF 2.3 / J2SE 5 Support -
-  Adopt EMF 2.3, including regeneration of the OCL metamodel.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Improved Documentation -
-  Develop a complete ProgrammerÂ’s Guide for the OCL component.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0044.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0044.html
deleted file mode 100644
index 0ef0ff9..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0044.html
+++ /dev/null
@@ -1,179 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Plan Items – OCL 1.1">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="675"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>14</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s691202" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s691203" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s691202" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Plan Items – OCL 1.1</div>
- <div v:shape="_x0000_s691203">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Restructure Modeling Components&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>LPG</a>&#13;</span></div>
- <div class=B style='position:absolute;top:37.0%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:41.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Increase Modeling Component Cohesion&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:46.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Integration
- with UML</a>&#13;</span></div>
- <div class=B style='position:absolute;top:51.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:55.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Enable Consistent Multi-language Support&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:61.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>ICU4J</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>LPG - Consume LPG runtime
-  library from the Orbit project.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Integration with UML -
-  Provide support for parsing and evaluating OCL constraints and expressions on
-  the UML metamodel.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>ICU4J - Isolate and minimize
-  dependency on ICU4J; ensure support for the “thin” variant of ICU4J.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0045.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0045.html
deleted file mode 100644
index 2579357..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0045.html
+++ /dev/null
@@ -1,197 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Plan Items – UML2 2.1">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="676"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>15</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s692226" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s692227" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s692226" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Plan Items – UML2 2.1</div>
- <div v:shape="_x0000_s692227">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Appeal to a Broader Community&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Static
- Profile Definition</a>&#13;</span></div>
- <div class=B style='position:absolute;top:37.0%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:41.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Be a Better Platform&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:46.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Ant Task
- for Ecore Importer</a>&#13;</span></div>
- <div class=B style='position:absolute;top:51.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:55.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Make Simpler to Use&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:61.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Create
- Child/Sibling Menu Reorganization</a>&#13;</span></div>
- <div class=B1 style='position:absolute;top:66.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Improved
- Documentation</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Static Profile Definition -
-  Provide a way to specify that a profile definition be generated using EMF;
-  this would allow, among other things, support for custom data types and
-  derived stereotype properties.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Ant Task for Ecore Importer
-  - Provide an Ant task for the UML Ecore importer, similar to those provided
-  for the Rose and Ecore importers in EMF.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Create Child/Sibling Menu
-  Reorganization - Reorganize the ‘Create Child’ and ‘Create Sibling’ menus of
-  the UML editor so that the items are grouped by feature.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Improved Documentation -
-  Improve documentation by updating the FAQ, enhancing the Javadoc, and
-  publishing new articles.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0046.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0046.html
deleted file mode 100644
index 2ca678a..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0046.html
+++ /dev/null
@@ -1,190 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Plan Items – UML2 2.1">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="677"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>16</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s693250" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s693251" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s693250" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Plan Items – UML2 2.1</div>
- <div v:shape="_x0000_s693251">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Increase Modeling Component Cohesion&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Eclipse
- 3.3 / EMF 2.3 Compatibility</a>&#13;</span></div>
- <div class=B1 style='position:absolute;top:37.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>XML
- Primitive Types</a>&#13;</span></div>
- <div class=B1 style='position:absolute;top:43.5%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Integration
- with OCL</a>&#13;</span></div>
- <div class=B style='position:absolute;top:48.0%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:52.5%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Enable Consistent Multi-language Support&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:58.0%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>BiDi
- Support</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Eclipse 3.3 / EMF 2.3
-  Compatibility - Maintain release currency concurrent with EMF 2.3 (and
-  Eclipse 3.3); make changes as required to align with EMF features and bug
-  fixes, in particular support for Java SE 5.0.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>XML Primitive Types -
-  Provide a model library to represent the types defined in the XMLType
-  metamodel in EMF; be sure to update Ecore/UML converters to make use of this
-  new library.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Integration with OCL -
-  Integrate support for parsing and evaluating OCL constraints and expressions;
-  consider providing a convenience method on Constraint for returning the
-  parsed representation of OCL expressions.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>BiDi Support - Provide
-  better support for BiDi languages.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0047.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0047.html
deleted file mode 100644
index bda49d1..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0047.html
+++ /dev/null
@@ -1,174 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Plan Items – UML2 Tools 1.0">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="678"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>17</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s694274" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s694275" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s694274" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Plan Items – UML2 Tools 1.0</div>
- <div v:shape="_x0000_s694275">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Appeal to a Broader Community&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Class
- Diagrams</a>&#13;</span></div>
- <div class=B1 style='position:absolute;top:37.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>State
- Machine Diagrams</a>&#13;</span></div>
- <div class=B1 style='position:absolute;top:43.5%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Component
- Diagrams</a>&#13;</span></div>
- <div class=B1 style='position:absolute;top:49.0%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Activity
- Diagrams</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Class Diagrams - Provide a
-  GMF-based editor for UML class diagrams.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>State Machine Diagrams -
-  Provide a GMF-based editor for UML state machine diagrams.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Component Diagrams - Provide
-  a GMF-based editor for UML component diagrams.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Activity Diagrams - Provide
-  a GMF-based editor for UML activity diagrams.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0048.html b/docs/presentations/EclipseCon2007_ShortTalk_files/slide0048.html
deleted file mode 100644
index 2674992..0000000
--- a/docs/presentations/EclipseCon2007_ShortTalk_files/slide0048.html
+++ /dev/null
@@ -1,157 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What is MDT?</title>
-<meta name=Description content="3/8/2007: Plan Items – XSD 2.3">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="679"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>18</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What is MDT?<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Short Talk<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- Copyright 2007 by IBM Corp.; made available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s695298" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s695299" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s695298" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Plan Items – XSD 2.3</div>
- <div v:shape="_x0000_s695299">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Appeal to a Broader Community&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Java™ SE
- 5.0 Support</a>&#13;</span></div>
- <div class=B style='position:absolute;top:37.0%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:41.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Increase Modeling Component Cohesion&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:46.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=152373" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>XSD2Ecore
- Enhancements</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Java SE 5.0 Support -
-  Exploit new Java language constructs; use generics (e.g. EList, EMap and
-  implementations); generate and merge Java 5 constructs; investigate
-  enumerations and annotations.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>XSD2Ecore Enhancements -
-  Improve ability to record complex content models as Ecore annotations.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk.html b/docs/presentations/EclipseCon2008_LongTalk.html
deleted file mode 100644
index 231767a..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk.html
+++ /dev/null
@@ -1,79 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link rel=File-List href="EclipseCon2008_LongTalk_files/filelist.xml">
-<link rel=Preview href="EclipseCon2008_LongTalk_files/preview.wmf">
-<link rel=Edit-Time-Data href="EclipseCon2008_LongTalk_files/editdata.mso">
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Subject>Long Talk</o:Subject>
-  <o:Author>Kenn Hussey</o:Author>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>119</o:Revision>
-  <o:TotalTime>7186</o:TotalTime>
-  <o:Created>2007-12-12T17:59:30Z</o:Created>
-  <o:LastSaved>2008-03-19T06:56:17Z</o:LastSaved>
-  <o:Category>Modeling</o:Category>
-  <o:PresentationFormat>On-screen Show (4:3)</o:PresentationFormat>
-  <o:Company>Embarcadero Technologies</o:Company>
-  <o:Slides>112</o:Slides>
-  <o:Notes>112</o:Notes>
-  <o:Version>12.00</o:Version>
- </o:DocumentProperties>
- <o:OfficeDocumentSettings>
-  <o:PixelsPerInch>80</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
-</xml><![endif]-->
-<link rel=Presentation-XML href="EclipseCon2008_LongTalk_files/pres.xml">
-<meta name=Description
-content="3/19/2008: Open Source Meets Open Specifications: Eclipse and the OMG™">
-<meta http-equiv=expires content=0>
-<![if !ppt]><script>
-<!--
-	var ver = 0, appVer = navigator.appVersion, msie = appVer.indexOf( "MSIE " )
-	var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0)
-	if( msie >= 0 )
-		ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) )
-	else
-		ver = parseInt( appVer )
-	browserSupported=0
-	if( !isMac && ver >= 4 && msie >= 0 ) {
-		browserSupported=1
-		window.location.replace( 'EclipseCon2008_LongTalk_files/frame.html'+document.location.hash )
-	}
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<script><!--
-
-if( browserSupported )
-	document.writeln('<div style="visibility:hidden">');
-
-//--></script><font face=Arial size=2><b>
-
-<p>This presentation contains content that your browser may not be able to show
-properly.</p>
-
-<p>If you would like to proceed anyway, click <a
-href="EclipseCon2008_LongTalk_files/frame.html">here</a>.</p>
-
-</b></font><script><!--
-
-if( browserSupported )
-	document.writeln('</div>');
-
-//--></script>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/buttons.gif b/docs/presentations/EclipseCon2008_LongTalk_files/buttons.gif
deleted file mode 100644
index 1f2c73c..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/buttons.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/filelist.xml b/docs/presentations/EclipseCon2008_LongTalk_files/filelist.xml
deleted file mode 100644
index 3bd0027..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/filelist.xml
+++ /dev/null
@@ -1,225 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:File HRef="master03.html"/>
- <o:File HRef="master03.xml"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="master03_image001.jpg"/>
- <o:File HRef="master03_image002.jpg"/>
- <o:File HRef="master15.html"/>
- <o:File HRef="master15.xml"/>
- <o:File HRef="master02.html"/>
- <o:File HRef="pres.xml"/>
- <o:File HRef="slide0001.html"/>
- <o:File HRef="master15_image003.gif"/>
- <o:File HRef="master15_image004.gif"/>
- <o:File HRef="slide0123.html"/>
- <o:File HRef="master03_image005.gif"/>
- <o:File HRef="master03_image006.gif"/>
- <o:File HRef="slide0032.html"/>
- <o:File HRef="slide0031.html"/>
- <o:File HRef="slide0033.html"/>
- <o:File HRef="slide0154.html"/>
- <o:File HRef="slide0034.html"/>
- <o:File HRef="slide0047.html"/>
- <o:File HRef="slide0048.html"/>
- <o:File HRef="slide0049.html"/>
- <o:File HRef="slide0050.html"/>
- <o:File HRef="slide0051.html"/>
- <o:File HRef="slide0053.html"/>
- <o:File HRef="slide0068.html"/>
- <o:File HRef="slide0052.html"/>
- <o:File HRef="slide0054.html"/>
- <o:File HRef="slide0056.html"/>
- <o:File HRef="slide0055.html"/>
- <o:File HRef="slide0057.html"/>
- <o:File HRef="slide0058.html"/>
- <o:File HRef="slide0059.html"/>
- <o:File HRef="slide0060.html"/>
- <o:File HRef="slide0061.html"/>
- <o:File HRef="slide0062.html"/>
- <o:File HRef="slide0063.html"/>
- <o:File HRef="slide0064.html"/>
- <o:File HRef="slide0065.html"/>
- <o:File HRef="slide0066.html"/>
- <o:File HRef="slide0067.html"/>
- <o:File HRef="slide0035.html"/>
- <o:File HRef="slide0069.html"/>
- <o:File HRef="slide0070.html"/>
- <o:File HRef="slide0071.html"/>
- <o:File HRef="slide0075.html"/>
- <o:File HRef="slide0073.html"/>
- <o:File HRef="slide0074.html"/>
- <o:File HRef="slide0076.html"/>
- <o:File HRef="slide0078.html"/>
- <o:File HRef="slide0099.html"/>
- <o:File HRef="slide0077.html"/>
- <o:File HRef="slide0081.html"/>
- <o:File HRef="slide0082.html"/>
- <o:File HRef="slide0100.html"/>
- <o:File HRef="slide0083.html"/>
- <o:File HRef="slide0084.html"/>
- <o:File HRef="slide0085.html"/>
- <o:File HRef="slide0086.html"/>
- <o:File HRef="slide0087.html"/>
- <o:File HRef="slide0088.html"/>
- <o:File HRef="slide0089.html"/>
- <o:File HRef="slide0090.html"/>
- <o:File HRef="slide0091.html"/>
- <o:File HRef="slide0092.html"/>
- <o:File HRef="slide0093.html"/>
- <o:File HRef="slide0094.html"/>
- <o:File HRef="slide0095.html"/>
- <o:File HRef="slide0096.html"/>
- <o:File HRef="slide0097.html"/>
- <o:File HRef="slide0098.html"/>
- <o:File HRef="slide0101.html"/>
- <o:File HRef="slide0102.html"/>
- <o:File HRef="slide0040.html"/>
- <o:File HRef="slide0155.html"/>
- <o:File HRef="slide0037.html"/>
- <o:File HRef="slide0037_image007.png"/>
- <o:File HRef="slide0037_image008.gif"/>
- <o:File HRef="slide0103.html"/>
- <o:File HRef="slide0103_image009.png"/>
- <o:File HRef="slide0103_image010.gif"/>
- <o:File HRef="slide0104.html"/>
- <o:File HRef="slide0104_image011.png"/>
- <o:File HRef="slide0104_image012.gif"/>
- <o:File HRef="slide0105.html"/>
- <o:File HRef="slide0105_image013.png"/>
- <o:File HRef="slide0105_image014.gif"/>
- <o:File HRef="slide0106.html"/>
- <o:File HRef="slide0106_image015.png"/>
- <o:File HRef="slide0106_image016.gif"/>
- <o:File HRef="slide0107.html"/>
- <o:File HRef="slide0107_image017.png"/>
- <o:File HRef="slide0107_image018.gif"/>
- <o:File HRef="slide0108.html"/>
- <o:File HRef="slide0108_image019.png"/>
- <o:File HRef="slide0108_image020.gif"/>
- <o:File HRef="slide0039.html"/>
- <o:File HRef="slide0039_image021.png"/>
- <o:File HRef="slide0039_image022.gif"/>
- <o:File HRef="slide0114.html"/>
- <o:File HRef="slide0114_image023.png"/>
- <o:File HRef="slide0114_image024.gif"/>
- <o:File HRef="slide0109.html"/>
- <o:File HRef="slide0109_image025.png"/>
- <o:File HRef="slide0109_image026.gif"/>
- <o:File HRef="slide0110.html"/>
- <o:File HRef="slide0110_image027.png"/>
- <o:File HRef="slide0110_image028.gif"/>
- <o:File HRef="slide0111.html"/>
- <o:File HRef="slide0111_image029.png"/>
- <o:File HRef="slide0111_image030.gif"/>
- <o:File HRef="slide0112.html"/>
- <o:File HRef="slide0112_image031.png"/>
- <o:File HRef="slide0112_image032.gif"/>
- <o:File HRef="slide0113.html"/>
- <o:File HRef="slide0113_image033.png"/>
- <o:File HRef="slide0113_image034.gif"/>
- <o:File HRef="slide0124.html"/>
- <o:File HRef="slide0156.html"/>
- <o:File HRef="slide0036.html"/>
- <o:File HRef="slide0036.xml"/>
- <o:File HRef="slide0036_image035.gif"/>
- <o:File HRef="slide0117.html"/>
- <o:File HRef="slide0117.xml"/>
- <o:File HRef="slide0117_image036.gif"/>
- <o:File HRef="slide0038.html"/>
- <o:File HRef="slide0130.html"/>
- <o:File HRef="slide0130_image037.gif"/>
- <o:File HRef="slide0130_image038.gif"/>
- <o:File HRef="slide0127.html"/>
- <o:File HRef="slide0127_image039.gif"/>
- <o:File HRef="slide0127_image040.gif"/>
- <o:File HRef="slide0131.html"/>
- <o:File HRef="slide0131_image041.gif"/>
- <o:File HRef="slide0131_image042.gif"/>
- <o:File HRef="slide0128.html"/>
- <o:File HRef="slide0128_image043.gif"/>
- <o:File HRef="slide0128_image044.gif"/>
- <o:File HRef="slide0134.html"/>
- <o:File HRef="slide0134_image045.gif"/>
- <o:File HRef="slide0134_image046.gif"/>
- <o:File HRef="slide0133.html"/>
- <o:File HRef="slide0133_image047.gif"/>
- <o:File HRef="slide0133_image048.gif"/>
- <o:File HRef="slide0135.html"/>
- <o:File HRef="slide0135_image049.gif"/>
- <o:File HRef="slide0135_image050.gif"/>
- <o:File HRef="slide0136.html"/>
- <o:File HRef="slide0136_image051.gif"/>
- <o:File HRef="slide0136_image052.gif"/>
- <o:File HRef="slide0137.html"/>
- <o:File HRef="slide0137_image053.gif"/>
- <o:File HRef="slide0137_image054.gif"/>
- <o:File HRef="slide0138.html"/>
- <o:File HRef="slide0138_image055.gif"/>
- <o:File HRef="slide0138_image056.gif"/>
- <o:File HRef="slide0139.html"/>
- <o:File HRef="slide0139_image057.gif"/>
- <o:File HRef="slide0139_image058.gif"/>
- <o:File HRef="slide0140.html"/>
- <o:File HRef="slide0140_image059.gif"/>
- <o:File HRef="slide0140_image060.gif"/>
- <o:File HRef="slide0141.html"/>
- <o:File HRef="slide0141_image061.gif"/>
- <o:File HRef="slide0141_image062.gif"/>
- <o:File HRef="slide0142.html"/>
- <o:File HRef="slide0142_image063.gif"/>
- <o:File HRef="slide0142_image064.gif"/>
- <o:File HRef="slide0143.html"/>
- <o:File HRef="slide0143_image065.gif"/>
- <o:File HRef="slide0143_image066.gif"/>
- <o:File HRef="slide0144.html"/>
- <o:File HRef="slide0144_image067.gif"/>
- <o:File HRef="slide0144_image068.gif"/>
- <o:File HRef="slide0145.html"/>
- <o:File HRef="slide0145_image069.gif"/>
- <o:File HRef="slide0145_image070.gif"/>
- <o:File HRef="slide0146.html"/>
- <o:File HRef="slide0146_image071.gif"/>
- <o:File HRef="slide0146_image072.gif"/>
- <o:File HRef="slide0147.html"/>
- <o:File HRef="slide0147_image073.gif"/>
- <o:File HRef="slide0147_image074.gif"/>
- <o:File HRef="slide0148.html"/>
- <o:File HRef="slide0148_image075.gif"/>
- <o:File HRef="slide0148_image076.gif"/>
- <o:File HRef="slide0150.html"/>
- <o:File HRef="slide0150_image077.gif"/>
- <o:File HRef="slide0150_image078.gif"/>
- <o:File HRef="slide0151.html"/>
- <o:File HRef="slide0151_image079.gif"/>
- <o:File HRef="slide0151_image080.gif"/>
- <o:File HRef="slide0152.html"/>
- <o:File HRef="slide0152_image081.gif"/>
- <o:File HRef="slide0152_image082.gif"/>
- <o:File HRef="slide0129.html"/>
- <o:File HRef="slide0129_image083.gif"/>
- <o:File HRef="slide0129_image084.gif"/>
- <o:File HRef="slide0153.html"/>
- <o:File HRef="slide0153_image085.gif"/>
- <o:File HRef="slide0153_image086.gif"/>
- <o:File HRef="slide0157.html"/>
- <o:File HRef="slide0157_image087.gif"/>
- <o:File HRef="slide0157_image088.gif"/>
- <o:File HRef="slide0149.html"/>
- <o:File HRef="slide0046.html"/>
- <o:File HRef="slide0122.html"/>
- <o:File HRef="slide0122_image089.png"/>
- <o:File HRef="slide0122_image090.gif"/>
- <o:File HRef="slide0122_image091.png"/>
- <o:File HRef="slide0122_image092.gif"/>
- <o:File HRef="slide0030.html"/>
- <o:File HRef="master01.html"/>
- <o:File HRef="master03_stylesheet.css"/>
- <o:File HRef="master15_stylesheet.css"/>
- <o:File HRef="script.js"/>
- <o:MainFile HRef="../EclipseCon2008_LongTalk.html"/>
- <o:File HRef="fullscreen.html"/>
- <o:File HRef="buttons.gif"/>
- <o:File HRef="frame.html"/>
- <o:File HRef="outline.html"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/frame.html b/docs/presentations/EclipseCon2008_LongTalk_files/frame.html
deleted file mode 100644
index 14ed762..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/frame.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<![if !ppt]><script src=script.js></script><script>
-<!--
-var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
-function Load()
-{
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(str) PPTSld.location.replace(escape(str));
-}
-//-->
-</script>
-<![endif]>
-</head>
-
-
-<frameset rows="*,25" border=0>
- <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust framespacing=1 frameborder=1>
-  <frame src=outline.html title="Outline" name=PPTOtl>
-  <frame src=slide0001.html title="Slide" name=PPTSld>
- </frameset>
- <frameset cols="25%,*" framespacing=1>
-  <frame src=outline.html title="Outline
-Navigation Bar" name=PPTOtlNav scrolling=no noresize>
-  <frame src=outline.html title="Slide
-Navigation Bar" name=PPTNav scrolling=no noresize>
- </frameset>
-</frameset>
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/fullscreen.html b/docs/presentations/EclipseCon2008_LongTalk_files/fullscreen.html
deleted file mode 100644
index e650eb4..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/fullscreen.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<script src=script.js></script><script><!--
-var SCREEN_MODE   = "FullScreen";
-function Load() {
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(!str) str = "slide0001.html";
-	PPTSld.location.replace(MHTMLPrefix+escape(str));
-}
-function Unload() {
-	if ( document.body.PPTSldFrameset != null )
-		document.body.PPTSldFrameset.frames[1].document.body.resume();
-}
-//-->
-</script>
-</head>
-
-<frameset rows="*" frameborder=0 onload="Load()" onunload="Unload()">
- <frame name=PPTSld>
-</frameset>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master01.html b/docs/presentations/EclipseCon2008_LongTalk_files/master01.html
deleted file mode 100644
index e72c7a7..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master01.html
+++ /dev/null
@@ -1,5053 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="115"/>
-</o:shapelayout>
-</head>
-
-<body>
-<v:background id="_x0000_s117761" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s117762" style='position:absolute;
- left:0;top:0;width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAEyX
-3WqhAwAAXQgAABAAAABkcnMvc2hhcGV4bWwueG1srFXNbuM2EL4X6DsQvBZZW0aymxirLJKg2RZw
-AyPOomeKoiLWFKmSlH9yzD5P0QIt0EveJg+QV+jMUIrdoiiKuj7IQ3I4P983nHn/YdMYtlI+aGdz
-nr0Zc6asdKW29zn/dHd9dMpZiMKWwjircr5VgX84//KL9+00tAwu2zBtc17H2E5HoyBr1YjwxrXK
-wlnlfCMiLP39qPUqKBtFBEeNGU3G47ejRmjLz8GUXS3auUdJ3qzmnuky5yfZZMKZFQ14vVUSYrg3
-imXjyVs+6jXTJQGRzJxchj4c8W/CKb1YQ45/ioRZ99FDMhm4dVc1OFQX3rt1rUQZcBv8jijEIVoL
-wWIsbc3itoVA69IDXg85/7ETPirfX0l6cHeXaICEWbH+zpVwTXTRARBiuql8c2gaaMdVFdvkHNjc
-4hcCF1O1iUzC5uTsXXY6hiMJZ8cn74AKCjN5R83Wh/hRuYMjYWgo5x7Yo+zEahYigrhzge6su9bG
-HJo25WjsoWbYOudnJ5MTCjhFRpYbDXQyo5ucA3jwS6BibXxtS1KJQpskQ4LGUrEgzVghcXPpyi1m
-W8A/UJ+ezn+vVXizAG3t/ANnay+gbAPWnOLMfGuhWs+y42PgONKCWObM758U+ye2a66codIXVoLV
-nEfOkngVYYXl4ppWxJldtBIVh0K523wvfNtTHaHIbtyiFq36O8aTLhVAggGNmBAXcQtv+0BIyNbK
-ZIS4mJaqugWc8TFmuxI3gwJS1DumTP4P7/ikG+FnBBcItySAS/rXtoQGSKIw99BtDWcQ5J0oFhAj
-8QUo+5i0lZjZS78k9crZeEFXChGQYeiidneMnQp62byzkswTEEgTCqGVcxnZSiC7r4VLBbrTuFTV
-X3WHngD3d6cXVfwHvf606K6Mv9vQkyi6xcOreA1pvC5uYJz0r6ZIXWGgDHaxQeC7gaZly7nwAplc
-do1u3A86gQo551zZo0+L1HCJY1YkpOnb5dyCE5xfXi+hy1q3IImzpfI47bAsmMS30ytiZcOWxbll
-9IP6hpYIutE4/ehs7p2rUMb48JkPHSwFnnaCM7rEtkZ44VhUgEqiIW7SKAFy9rVUVUGjHLDoZrbH
-qkMzvUzM06yphISALrwWUEayFj4oIp8wVWJP5+Xpp5enX9nL0y/Pj789P/7+/Pnz8+PPnLU6yvpa
-NNrAHDhFJAYrR9nkNLU3GfYMfdXYIxn6WbEjJtFF3W7ocjDpQnv+BwAAAP//AwBQSwMEFAAGAAgA
-AAAhAEGTug/ZAAAA/AAAAA8AAABkcnMvZG93bnJldi54bWxEj0tLAzEUhfeC/yFcwU2xSQcfZWxa
-aqkodFGmCm6vkzsPnNwMSezM/HuDC10ezuE7fKvNaDtxJh9axxoWcwWCuHSm5VrD+9vzzRJEiMgG
-O8ekYaIAm/XlxQpz4wYu6HyKtUgQDjlqaGLscylD2ZDFMHc9ceoq5y3GFH0tjcchwW0nM6XupcWW
-00ODPe0aKr9O31ZDVRwPalZ9PPHR3mazByW3k6u0vr4at48gIo3xfzyo/W65/yt/Ua9Gw90iy0BU
-L9Onb02BIZLXkPSSbBIFuf4BAAD//wMAUEsBAi0AFAAGAAgAAAAhAFrjEWb+AAAA4gEAABMAAAAA
-AAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEAMd1fYdIAAACP
-AQAACwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEATJfdaqEDAABd
-CAAAEAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQABgAIAAAAIQBBk7oP
-2QAAAPwAAAAPAAAAAAAAAAAAAAAAAPkFAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAQABAD1AAAA
-/wYAAAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s117762">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s117763" style='position:absolute;left:306pt;top:0;
- width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAEHu
-IuGfAwAAZggAABAAAABkcnMvc2hhcGV4bWwueG1srFXNbtw2EL4X6DsQvBbO/sSO14vIgW3UaYGN
-sfA66HkkUZa6FKmS1P746DxP0QINkIvfxg/gV+jMUPK6QVEU3e5BOxKHM9988/f23abWYqWcr6xJ
-5OjVUAplMptX5jaRH28uDyZS+AAmB22NSuRWefnu9Ntv3jZT3wi8bPy0SWQZQjMdDHxWqhr8K9so
-g2eFdTUEfHW3g8Ypr0yAgI5qPRgPh28GNVRGnqIps1o0c0dSdrWaO1HliTwajV9LYaBGr9cqQwy3
-WonRcHwsB51mvASIZGazpe/gwL+BkztYY4x/QSKMfe8wmBG6tRclOlRnztl1qSD39Bn9Dhhij9Yg
-WMLSlCJsGwSaB4ngNzvlqIG3diF6DFWk6w82xwvQBosUwHRTuHrfAMiOLQqB/l9PJm+QYym2iRwS
-cJiqTRAZHo1PjkcTOsrw7PDomNQosoiBNBvnw3tl98YjyFAiHWaPY4TVzIfoqndB7oy9rLTeN3iO
-UZt9zYh1Ik+OxkcMOCJjy3UVlBO6qhOJ5OEvkkq18b3JWSVApaOMXGrDxULJpgoJm3ObbynaFP+x
-AGLr/PdaxZ5Fakvr7qRYO8Cy9b+04JQU+keD1XoyOjzEHAd+4SxL4V6epC9PTFtfWM2lDyZDq4nE
-So7iRcA3KhdbNxBmZtFkpNgXys3mJ3BNl+qARXZlFyU06u8yHnW51iINZET7sAhb7O09KWFbKz2i
-9gJ9i+PMMYZcFdf4yd8h6l2t66jJWHoEHNL/AYMg1OBmzBsK1yygS/6vTI6TkMUep0CQN5AuECMn
-Dul2IWormJlzt2T1wppwxqGl4CnVOE7N7phGFg61eWsyNs+MUL5I8E02z4JYAaX5uYK5Unca56r4
-WrcfDnh/d3pWhH/Q607T9kK7mw33Rtou7p7FSwzj+eUK90rXPmkcDzCNKcOvCI8bCKeXyefggDK5
-bOuqtj9XkVSMOZHKHHxc4KbqcyzSyDQ/20QadEKLzFVLHLrGLliSYqkcrT2elBk1UadIJY45MLTA
-dHWnfuBXIl1XtAb5bO6sLUiOPNPzeWB0EwBpt7rKab4xX7QfFbIS0xA2cad8paWKAidmz0U7Mx1X
-LZnpZM48L50CMgR05irQ2KMlOK84+cypghc6Tw+/Pj38IZ4efn+8//x4/+Xx06fH+9+kaKqQlZdQ
-VxoXwoQ6vbdyMBpP4pzL/AtD39XmIPPd0tglJqYLn7txh6JvTv8EAAD//wMAUEsDBBQABgAIAAAA
-IQDYuoyt2AAAAPwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9LS8QwFIX3gv8hXMHN4CRTn9TJDKMg
-CoMMrYLba3P7wOamJLHT/nuDC10ezuE7fOvtZHsxkg+dYw2rpQJBXDnTcaPh/e3p4g5EiMgGe8ek
-YaYA283pyRpz445c0FjGRiQIhxw1tDEOuZShasliWLqBOHW18xZjir6RxuMxwW0vM6VupMWO00OL
-Az22VH2V31ZDXRz2alF/PPDBXmWLWyV3s6u1Pj+bdvcgIk3xf/wqS9WMf+Uv6sVouF5llyDq5/nT
-d6bAEMlrSHpJNomC3PwAAAD//wMAUEsBAi0AFAAGAAgAAAAhAFrjEWb+AAAA4gEAABMAAAAAAAAA
-AAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEAMd1fYdIAAACPAQAA
-CwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEAQe4i4Z8DAABmCAAA
-EAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQABgAIAAAAIQDYuoyt2AAA
-APwAAAAPAAAAAAAAAAAAAAAAAPcFAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAQABAD1AAAA/AYA
-AAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="dateTime" position="1"/></v:shapetype>
-
-<div v:shape="_x0000_s117763">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O style='text-align:right'><span style='font-size:50%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_m117764" style='position:absolute;left:90pt;top:54pt;
- width:5in;height:270pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
- filled="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" rotation="t" aspectratio="t" text="t" grouping="t"/>
- <p:placeholder type="slideImage" position="2"/></v:shapetype><v:shapetype
- id="_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
- height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'
- coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAECK
-I4cpBAAALxYAABAAAABkcnMvc2hhcGV4bWwueG1s7FjBbuM2EL0X6D8QvBZZW7az6zVWWSRBsy3g
-BkacRY8BLVGxGopUScpxcsx+T9ECu0Av+Zt8QH6hb0g5cYI9FJsih8YOII/M4XDmzbyZSO/eLyvF
-FtK60uiUJ6+6nEmdmbzUpyn/eHywNeTMeaFzoYyWKb+Qjr/f+f67d/XI1QybtRvVKZ97X486HZfN
-ZSXcK1NLjbXC2Ep43NrTTm2lk9oLj4Mq1el1u687lSg134EpvZjWE0tSdriYWFbmKd9OetucaVHh
-1COZwYdTJVnS7b3lnVYzbhLwZGyyM9e6I/6NO7kV54jxgSdMmw8WwSQ41uzPcaDctdacz6XIHf2M
-czvBxZW3Gs6SL/Wc+Ysajs5MfgHALlP+eyOsl5YjlmXK++3euAFG7iN2iJzNzn8xOfaLxhsgIkbL
-wlZPjYfsmKJgOP9tMhh0kduLlA/6+IOMYMRILj3LsL4NWJESzjLSSJLBMGp0oiekWlvnP0jzZK8Y
-GUq5RUpDpGIxdp6QvT+CjtPmoFTqqRCEIJV+qhl2Dgi3UY/3ngXLVYkUM1VWKQdg+ERUqWB+1HlQ
-8aJUUUaASocKopRT2fjlHuqFbFLdoAwin769gEFkQDs39pKzcytQy47qUHKmftYo4VAGnPlwM9h+
-00PG7frKbH1FN9W+UYEPQmewmnLPWRT3Pe6oXkxVCz/W0zojxVWhHC9/FbZuU+1RZYdmOhe1/FrG
-o24ogAgDGVHOT/0FCP9ESEIOVo3qm4ENYSE/lbDjEDaEoyCoBQACDqXO0d2CKNQpWqniLJfFsZhN
-0QxW9LM+aksx1nv2LEBbGO13w5aZcJQptEjdLsMwtSE0qkmjM5iPCCuCm3xydTbJPFsIytJdAYZC
-u9fYk8Vj3f6qVqEKG/cau4V/rBtqOuq1q7NmX9njZYB21kwv78QDhHJ3c4h50TJgFhkuRkDkaGLx
-K+wFDogRiIALsD1rqrIyv5URVkSdcqm3Pk5jO01Cd5pFrMO1SbnGETSebHmG3qnNNEicnUlLwyw2
-NGJBq0g1Ckg1jSVVXsqfwi3BrkoabmFtYo0pguwqv6+kgKluqFti76oxxRjiL86oMqduFaCjESgB
-UMyKX8axAZzXtWRRoP+tYGnGuoWtITOtHAohzJVCZPBu15YCVZXNhXUylFqAV4o1ndvrP26vP7Pb
-679urr7cXP198+nTzdWfnNWlz+YHoioV+vsQcd5Z2Up6w9i1Mrdm6IdKb2WOFpAqpIdC8zvsBB9c
-4ne4tjItnJyQMgqItsQc07b/mH2hbSGChxTEzN5QcDRrNhQE0/73FIykexa6rUbXQ7r1NnRDZ9vQ
-7cVMvGcabkn/TfKansMe0q2/oduGbi/mH8xnnG7JsDekVx2P+DbY8G3DtxfDt/gc95VnN7ynXL2i
-gujqnX8AAAD//wMAUEsDBBQABgAIAAAAIQAo+YAs2QAAAPwAAAAPAAAAZHJzL2Rvd25yZXYueG1s
-RI9RS8MwFIXfB/6HcAVfhktXnEpdNqYgE/Ywug18vTY3bbG5qUnc2n9v8EEfD+fwHb7lerCdOJMP
-rWMF81kGgrhyuuVawen4evsIIkRkjZ1jUjBSgPXqarLEQrsLl3Q+xFokCIcCFTQx9oWUoWrIYpi5
-njh1xnmLMUVfS+3xkuC2k3mW3UuLLaeHBnt6aaj6PHxbBabc77KpeX/mvb3Lpw+Z3IzOKHVzPWye
-QEQa4v/4hMet+forf1FvWsFini9AmO344VtdYojkFSS9JJtEQa5+AAAA//8DAFBLAQItABQABgAI
-AAAAIQBa4xFm/gAAAOIBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsB
-Ai0AFAAGAAgAAAAhADHdX2HSAAAAjwEAAAsAAAAAAAAAAAAAAAAALwEAAF9yZWxzLy5yZWxzUEsB
-Ai0AFAAGAAgAAAAhAECKI4cpBAAALxYAABAAAAAAAAAAAAAAAAAAKgIAAGRycy9zaGFwZXhtbC54
-bWxQSwECLQAUAAYACAAAACEAKPmALNkAAAD8AAAADwAAAAAAAAAAAAAAAACBBgAAZHJzL2Rvd25y
-ZXYueG1sUEsFBgAAAAAEAAQA9QAAAIcHAAAAAA==
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="body" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_m117765">
-
-<div class=N>Click to edit Master text styles&#13;</div>
-
-<div class=N1>Second level&#13;</div>
-
-<div class=N2>Third level&#13;</div>
-
-<div class=N3>Fourth level&#13;</div>
-
-<div class=N4>Fifth level</div>
-
-</div>
-
-<v:shapetype id="_x0000_s117766" style='position:absolute;left:0;top:684pt;
- width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:bottom' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAFSM
-bIWrAwAAawgAABAAAABkcnMvc2hhcGV4bWwueG1srFXbTiQ3EH2PlH+w/BqxcwmwMNpmBShsIs2i
-EcMqz9XdbsYZt92x3XPhkf2e1UZKpLzwN3wAv5Cqcg8ziVarKBOQoNwu1+Wcurx5u6qNWCgftLOZ
-HLzqS6Fs4Upt7zL54fbq4ESKEMGWYJxVmVyrIN+effvNm2YUGoGPbRg1mZzF2Ix6vVDMVA3hlWuU
-xbvK+RoiHv1dr/EqKBshoqPa9Ib9/nGvBm3lGZqyi2kz8SQV14uJF7rM5NFgeCyFhRq93qgCY7gz
-Sgz63/dlr9NMjwAjGbtiHrpw4N+EU3pYYo5/i0RY985jMgN06y5n6FCde++WMwVloM/ot8chbqK1
-GCzF0sxEXDcYaBU94nWfyV9b8FHhQZerTB52T5M+2tgmHDBxkS/fuxKfQxsdAgKjVeXrfdMhO66q
-BPpHVteZPDnG3z7DByO1iqLAq+Hp6wF9FAVqHB69RmI42BQD2Wh8iO+U2zseQYYy6ZFLzhEW4xAJ
-0q0LcmfdlTZm3+TRLoyM3deMWGby9Gh4xAGnyNhyrZFcYXSNqPbphzCDEVXKD7ZkOYI2ScYEjeXS
-IbKpXuLqwpVrepHjfyyA1Ej/vXKxgxHamfP3Uiw9YBEHqkAlhfnJYu2eDg4PkePIB2ZZCr97k+/e
-2La+dIYbAWyBVjOZS5HEy4gnKhdXNxDHdtoUpEi5EL+3q5/BNx3VEYvs2k1n0KgvMZ50uQASDMxZ
-iNO4xk7fExK2tTADRhxGpapuEGdqzcG2xM1GgSjqHHMm/4d3auwa/JjhQuGGBXTJ/7UtcRyyCOYO
-Z6+RAoO8hXyKMTJfiLKPSVvB2F74OatXzsZzfpJDIIZxptrtNc0tnGyT1hZsnoEgmkgITTEpolgA
-sftSuFygW40LVf1TdzMT8P329ryKX9HrbvP20vjbFbdE3k7vX8QrTOPlcI3LpeuaPE2FDWX4lQYE
-9Q0OLVtOwAMxOW9rXbtfdAIVc86ksgcfpmn8MsciT0jz3zaTFp3QNvN6jrPWuilLUsyVp91HZSEK
-6p1OkSobP1naYkbfqx/5SKAbTbuQ7ybeuYpkio/afDPBUuDpS3BGlzTWGC9akgpRSTTEVVosSM6u
-lqoqHJQbLNqx7bBqyUwnM/O8eSooMKBzrwHLqJiBD4rJZ0wV7Og8P356fvxdPD/+9vTwx9PDn08f
-Pz49fJai0bGYXUGtDW0KQmJj5WAwPEnjrQg7hr6r7UERul2xJSbRxdNuM+Vw34Xm7C8AAAD//wMA
-UEsDBBQABgAIAAAAIQAjck/g2AAAAPwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BS8MwGIbvgv8h
-fANvLmnAMuqyMWZlXgZu8+Ita762wSYpSWyzf2/woMeX9+V5edbbZAYyoQ/aWQHFkgFB2zilbSfg
-4/L6uAISorRKDs6igBsG2G7u79ayUm62J5zOsSMZYkMlBfQxjhWloenRyLB0I9rctc4bGXP0HVVe
-zhluBsoZK6mR2uaHXo6477H5On8bAVPJ48tVfx6P70Vb8+KQPGdJiIdF2j0DiZji/3hm9X5V/5W/
-qDcl4KngJZD2cLt6rU4yRPQCsl6WzaJANz8AAAD//wMAUEsBAi0AFAAGAAgAAAAhAFrjEWb+AAAA
-4gEAABMAAAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEA
-Md1fYdIAAACPAQAACwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEA
-VIxshasDAABrCAAAEAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQABgAI
-AAAAIQAjck/g2AAAAPwAAAAPAAAAAAAAAAAAAAAAAAMGAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAQABAD1AAAACAcAAAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="footer" position="4" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s117766">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s117767" style='position:absolute;left:306pt;top:684pt;
- width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:bottom' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhABpN
-DvS6AwAAiAgAABAAAABkcnMvc2hhcGV4bWwueG1srFXbbhs3EH0vkH8g+Bo40iq+yELWgW3EaQHV
-ECwHfebucq2NuOSW5OriR+d7ihZIgL74b/wB/oWeIVeWWhRFUdUGVkNyOHPmzIXv3q9qxRbSusro
-lCdv+pxJnZui0ncp/3R7dTDkzHmhC6GMlilfS8ffn7367l0zcg3DZe1GTcpn3jejXs/lM1kL98Y0
-UuOsNLYWHkt712usdFJ74eGoVr1Bv3/cq0Wl+RlM6cW0mViS8uvFxLKqSPlRMjjhTIsaXm9kDgx3
-SrKk/zbhvU4zXhJAMjb53HVwxL+BU1ixRIx/QsK0+WgRTAK35nIGh/LcWrOcSVE42obfXoC4QasB
-lrA0M+bXDYA6VVy3NSi7T/nPrbBeWo5oVginux2vwMw2ZofYWbb80RSwIFpvwIkYrUpb7xsR2TFl
-yeD/7XB4DNI5W6d8eIx/yIhHjOTKsxwKg9OThDZZDo3DoxNSpoAjEtJsrPMfpdkbFSNDKbdIaohU
-LMbOR1cbF+ROm6tKqX0pCDEqva8Ztkz56dHgKACOyILlukKKmapqsNqnv0gqlcwHXQQVLyoVZXCp
-dKghSjkVjl9dmGJN0Wb4RRnEjvrvJYxWBrUzY+85W1qBanZUh5Iz9YNGEZ8mh4fIsQ+LkGXO7O5J
-tnui2/rSqNARQuewmvKMsyheeqyoXEzdCD/W0yYnxU2h3K5+ErbpUu1RZNdmOhON/LuMR91Qa5EG
-MqKcn/o1Wn5PSoKthUqoyYS6w5SzAUMhyxtsUacm21pXUTNg2SAIIf0fMAhCLew48AbhJghwGX4r
-XWBABnGDkwHkrcimwBgSB7qtj9pSjPWFnQf10mh/HkLLhKNUY8rq7TFNMsy6SavzYD4wQvkiwTX5
-JPdsISjNLxUcKnWrcSHLv+puhgPub0/PS/8Pet1p1l4qe7sKvZG10/sX8QphvCyu8dx07ZPF8SBG
-MWXYBbzQQGKELsIHvM7buqrN5ypSiohTLvXBp2mcxSHDLIs8h2+bcg0X9LrZao7Bq800SJzNpaW3
-MEzLnFqoU6QCRwY0vWqqupffhyVRrip6G8PZxBpTkkzAqNs3gyzCjjvOqKqg6RbYokdTgpOYBL+K
-Dw1Ss6slyxLzcsNEO9YdUy2Z6eSQ9/ASlSIHoHNbCYUOnQnrZEh9YFSKHZ3nx1+eH7+y58ffnh6+
-PT38/vTly9PDr5w1lc9nV6KuFD0Y1OcbKwfJYBinXO52DL2u9UHuuicDGaHQ/BljjLKFssAXe5Q5
-fLeTD6Jrzv4AAAD//wMAUEsDBBQABgAIAAAAIQBcOt0g2AAAAPwAAAAPAAAAZHJzL2Rvd25yZXYu
-eG1sRI/BTsMwEETvSPyDtUjcqBNLLSjUrRAUhUsFKVy4beNNYhHbkW1S9++xOMBxNKM3euttMiOb
-yQftrIRyUQAj2zqlbS/h4/355g5YiGgVjs6ShDMF2G4uL9ZYKXeyDc2H2LMMsaFCCUOMU8V5aAcy
-GBZuIpu7znmDMUffc+XxlOFm5KIoVtygtvlhwIkeB2q/Dt9GwrwS8emoP/f7t7LbibJOXhRJyuur
-9HAPLFKK/+P6dbds5r/yF/WiJCxLcQusq89Hr1WDIZKXkPWybBYFvvkBAAD//wMAUEsBAi0AFAAG
-AAgAAAAhAFrjEWb+AAAA4gEAABMAAAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQ
-SwECLQAUAAYACAAAACEAMd1fYdIAAACPAQAACwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQ
-SwECLQAUAAYACAAAACEAGk0O9LoDAACICAAAEAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1s
-LnhtbFBLAQItABQABgAIAAAAIQBcOt0g2AAAAPwAAAAPAAAAAAAAAAAAAAAAABIGAABkcnMvZG93
-bnJldi54bWxQSwUGAAAAAAQABAD1AAAAFwcAAAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="slideNumber" position="5" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s117767">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O style='text-align:right'><span style='font-size:50%'>‹#›</span></div>
-
-</div>
-
-<p:notes id="1" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="116"/>
- </o:shapelayout><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s118786" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s118787" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s118788"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s118786">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>1</span></div>
- </div>
- <div v:shape="_x0000_s118788">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="123" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="117"/>
- </o:shapelayout><v:shape id="_x0000_s119810" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s119811"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s119812"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s119811">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s119812">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>2</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="32" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="118"/>
- </o:shapelayout><v:shape id="_x0000_s120834" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s120835"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s120836"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s120835">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s120836">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>3</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="31" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="119"/>
- </o:shapelayout><v:shape id="_x0000_s121858" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s121859"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s121860"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s121859">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s121860">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>4</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="33" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="120"/>
- </o:shapelayout><v:shape id="_x0000_s122882" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s122883"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s122884"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s122883">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s122884">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>5</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="154" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="121"/>
- </o:shapelayout><v:shape id="_x0000_s123906" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s123907"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s123908"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s123907">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s123908">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>6</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="34" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="122"/>
- </o:shapelayout><v:shape id="_x0000_s124930" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s124931"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s124932"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s124931">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s124932">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>7</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="47" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="123"/>
- </o:shapelayout><v:shape id="_x0000_s125954" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s125955"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s125956"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s125955">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s125956">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>8</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="48" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="124"/>
- </o:shapelayout><v:shape id="_x0000_s126978" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s126979"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s126980"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s126979">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s126980">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>9</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="49" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="125"/>
- </o:shapelayout><v:shape id="_x0000_s128002" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s128003"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s128004"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s128003">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s128004">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>10</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="50" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="126"/>
- </o:shapelayout><v:shape id="_x0000_s129026" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s129027"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s129028"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s129027">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s129028">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>11</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="51" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="127"/>
- </o:shapelayout><v:shape id="_x0000_s130050" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s130051"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s130052"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s130051">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s130052">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>12</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="53" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="128"/>
- </o:shapelayout><v:shape id="_x0000_s131074" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s131075"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s131076"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s131075">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s131076">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>13</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="68" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="129"/>
- </o:shapelayout><v:shape id="_x0000_s132098" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s132099"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s132100"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s132099">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s132100">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>14</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="52" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="130"/>
- </o:shapelayout><v:shape id="_x0000_s133122" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s133123"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s133124"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s133123">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s133124">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>15</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="54" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="131"/>
- </o:shapelayout><v:shape id="_x0000_s134146" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s134147"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s134148"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s134147">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s134148">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>16</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="56" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="132"/>
- </o:shapelayout><v:shape id="_x0000_s135170" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s135171"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s135172"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s135171">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s135172">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>17</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="55" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="133"/>
- </o:shapelayout><v:shape id="_x0000_s136194" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s136195"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s136196"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s136195">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s136196">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>18</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="57" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="134"/>
- </o:shapelayout><v:shape id="_x0000_s137218" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s137219"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s137220"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s137219">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s137220">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>19</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="58" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="135"/>
- </o:shapelayout><v:shape id="_x0000_s138242" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s138243"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s138244"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s138243">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s138244">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>20</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="59" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="136"/>
- </o:shapelayout><v:shape id="_x0000_s139266" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s139267"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s139268"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s139267">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s139268">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>21</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="60" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="137"/>
- </o:shapelayout><v:shape id="_x0000_s140290" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s140291"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s140292"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s140291">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s140292">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>22</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="61" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="138"/>
- </o:shapelayout><v:shape id="_x0000_s141314" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s141315"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s141316"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s141315">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s141316">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>23</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="62" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="139"/>
- </o:shapelayout><v:shape id="_x0000_s142338" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s142339"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s142340"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s142339">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s142340">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>24</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="63" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="140"/>
- </o:shapelayout><v:shape id="_x0000_s143362" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s143363"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s143364"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s143363">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s143364">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>25</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="64" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="141"/>
- </o:shapelayout><v:shape id="_x0000_s144386" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s144387"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s144388"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s144387">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s144388">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>26</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="65" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="142"/>
- </o:shapelayout><v:shape id="_x0000_s145410" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s145411"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s145412"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s145411">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s145412">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>27</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="66" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="143"/>
- </o:shapelayout><v:shape id="_x0000_s146434" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s146435"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s146436"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s146435">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s146436">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>28</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="67" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="144"/>
- </o:shapelayout><v:shape id="_x0000_s147458" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s147459"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s147460"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s147459">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s147460">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>29</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="35" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="145"/>
- </o:shapelayout><v:shape id="_x0000_s148482" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s148483"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s148484"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s148483">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s148484">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>30</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="69" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="146"/>
- </o:shapelayout><v:shape id="_x0000_s149506" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s149507"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s149508"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s149507">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s149508">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>31</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="70" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="147"/>
- </o:shapelayout><v:shape id="_x0000_s150530" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s150531"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s150532"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s150531">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s150532">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>32</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="71" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="148"/>
- </o:shapelayout><v:shape id="_x0000_s151554" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s151555"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s151556"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s151555">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s151556">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>33</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="75" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="149"/>
- </o:shapelayout><v:shape id="_x0000_s152578" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s152579"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s152580"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s152579">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s152580">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>34</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="73" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="150"/>
- </o:shapelayout><v:shape id="_x0000_s153602" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s153603"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s153604"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s153603">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s153604">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>35</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="74" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="151"/>
- </o:shapelayout><v:shape id="_x0000_s154626" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s154627"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s154628"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s154627">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s154628">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>36</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="76" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="152"/>
- </o:shapelayout><v:shape id="_x0000_s155650" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s155651"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s155652"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s155651">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s155652">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>37</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="78" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="153"/>
- </o:shapelayout><v:shape id="_x0000_s156674" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s156675"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s156676"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s156675">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s156676">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>38</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="99" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="154"/>
- </o:shapelayout><v:shape id="_x0000_s157698" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s157699"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s157700"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s157699">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s157700">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>39</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="77" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="155"/>
- </o:shapelayout><v:shape id="_x0000_s158722" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s158723"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s158724"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s158723">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s158724">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>40</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="81" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="156"/>
- </o:shapelayout><v:shape id="_x0000_s159746" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s159747"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s159748"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s159747">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s159748">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>41</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="82" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="157"/>
- </o:shapelayout><v:shape id="_x0000_s160770" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s160771"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s160772"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s160771">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s160772">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>42</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="100" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="158"/>
- </o:shapelayout><v:shape id="_x0000_s161794" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s161795"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s161796"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s161795">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s161796">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>43</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="83" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="159"/>
- </o:shapelayout><v:shape id="_x0000_s162818" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s162819"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s162820"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s162819">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s162820">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>44</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="84" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="160"/>
- </o:shapelayout><v:shape id="_x0000_s163842" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s163843"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s163844"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s163843">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s163844">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>45</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="85" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="161"/>
- </o:shapelayout><v:shape id="_x0000_s164866" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s164867"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s164868"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s164867">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s164868">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>46</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="86" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="162"/>
- </o:shapelayout><v:shape id="_x0000_s165890" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s165891"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s165892"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s165891">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s165892">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>47</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="87" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="163"/>
- </o:shapelayout><v:shape id="_x0000_s166914" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s166915"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s166916"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s166915">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s166916">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>48</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="88" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="164"/>
- </o:shapelayout><v:shape id="_x0000_s167938" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s167939"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s167940"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s167939">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s167940">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>49</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="89" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="165"/>
- </o:shapelayout><v:shape id="_x0000_s168962" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s168963"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s168964"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s168963">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s168964">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>50</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="90" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="166"/>
- </o:shapelayout><v:shape id="_x0000_s169986" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s169987"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s169988"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s169987">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s169988">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>51</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="91" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="167"/>
- </o:shapelayout><v:shape id="_x0000_s171010" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s171011"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s171012"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s171011">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s171012">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>52</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="92" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="168"/>
- </o:shapelayout><v:shape id="_x0000_s172034" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s172035"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s172036"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s172035">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s172036">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>53</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="93" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="169"/>
- </o:shapelayout><v:shape id="_x0000_s173058" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s173059"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s173060"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s173059">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s173060">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>54</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="94" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="170"/>
- </o:shapelayout><v:shape id="_x0000_s174082" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s174083"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s174084"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s174083">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s174084">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>55</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="95" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="171"/>
- </o:shapelayout><v:shape id="_x0000_s175106" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s175107"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s175108"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s175107">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s175108">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>56</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="96" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="172"/>
- </o:shapelayout><v:shape id="_x0000_s176130" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s176131"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s176132"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s176131">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s176132">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>57</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="97" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="173"/>
- </o:shapelayout><v:shape id="_x0000_s177154" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s177155"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s177156"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s177155">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s177156">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>58</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="98" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="174"/>
- </o:shapelayout><v:shape id="_x0000_s178178" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s178179"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s178180"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s178179">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s178180">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>59</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="101" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="175"/>
- </o:shapelayout><v:shape id="_x0000_s179202" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s179203"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s179204"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s179203">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s179204">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>60</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="102" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="176"/>
- </o:shapelayout><v:shape id="_x0000_s180226" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s180227"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s180228"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s180227">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s180228">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>61</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="40" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="177"/>
- </o:shapelayout><v:shape id="_x0000_s181250" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s181251"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s181252"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s181251">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s181252">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>62</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="155" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="178"/>
- </o:shapelayout><v:shape id="_x0000_s182274" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s182275"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s182276"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s182275">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s182276">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>63</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="37" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="179"/>
- </o:shapelayout><v:shape id="_x0000_s183298" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s183299"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s183300"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s183299">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s183300">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>64</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="103" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="180"/>
- </o:shapelayout><v:shape id="_x0000_s184322" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s184323"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s184324"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s184323">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s184324">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>65</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="104" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="181"/>
- </o:shapelayout><v:shape id="_x0000_s185346" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s185347"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s185348"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s185347">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s185348">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>66</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="105" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="182"/>
- </o:shapelayout><v:shape id="_x0000_s186370" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s186371"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s186372"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s186371">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s186372">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>67</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="106" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="183"/>
- </o:shapelayout><v:shape id="_x0000_s187394" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s187395"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s187396"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s187395">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s187396">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>68</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="107" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="184"/>
- </o:shapelayout><v:shape id="_x0000_s188418" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s188419"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s188420"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s188419">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s188420">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>69</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="108" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="185"/>
- </o:shapelayout><v:shape id="_x0000_s189442" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s189443"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s189444"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s189443">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s189444">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>70</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="39" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="186"/>
- </o:shapelayout><v:shape id="_x0000_s190466" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s190467"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s190468"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s190467">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s190468">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>71</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="114" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="187"/>
- </o:shapelayout><v:shape id="_x0000_s191490" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s191491"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s191492"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s191491">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s191492">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>72</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="109" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="188"/>
- </o:shapelayout><v:shape id="_x0000_s192514" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s192515"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s192516"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s192515">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s192516">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>73</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="110" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="189"/>
- </o:shapelayout><v:shape id="_x0000_s193538" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s193539"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s193540"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s193539">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s193540">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>74</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="111" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="190"/>
- </o:shapelayout><v:shape id="_x0000_s194562" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s194563"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s194564"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s194563">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s194564">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>75</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="112" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="191"/>
- </o:shapelayout><v:shape id="_x0000_s195586" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s195587"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s195588"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s195587">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s195588">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>76</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="113" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="192"/>
- </o:shapelayout><v:shape id="_x0000_s196610" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s196611"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s196612"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s196611">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s196612">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>77</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="124" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="193"/>
- </o:shapelayout><v:shape id="_x0000_s197634" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s197635"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s197636"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s197635">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s197636">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>78</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="156" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="194"/>
- </o:shapelayout><v:shape id="_x0000_s198658" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s198659"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s198660"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s198659">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s198660">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>79</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="36" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="195"/>
- </o:shapelayout><v:shape id="_x0000_s199682" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s199683"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s199684"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s199683">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s199684">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>80</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="117" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="196"/>
- </o:shapelayout><v:shape id="_x0000_s200706" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s200707"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s200708"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s200707">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s200708">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>81</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="38" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="197"/>
- </o:shapelayout><v:shape id="_x0000_s201730" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s201731"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s201732"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s201731">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s201732">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>82</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="130" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="198"/>
- </o:shapelayout><v:shape id="_x0000_s202754" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s202755"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s202756"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s202755">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s202756">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>83</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="127" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="199"/>
- </o:shapelayout><v:shape id="_x0000_s203778" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s203779"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s203780"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s203779">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s203780">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>84</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="131" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="200"/>
- </o:shapelayout><v:shape id="_x0000_s204802" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s204803"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s204804"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s204803">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s204804">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>85</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="128" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="201"/>
- </o:shapelayout><v:shape id="_x0000_s205826" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s205827"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s205828"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s205827">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s205828">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>86</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="134" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="202"/>
- </o:shapelayout><v:shape id="_x0000_s206850" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s206851"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s206852"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s206851">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s206852">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>87</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="133" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="203"/>
- </o:shapelayout><v:shape id="_x0000_s207874" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s207875"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s207876"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s207875">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s207876">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>88</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="135" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="204"/>
- </o:shapelayout><v:shape id="_x0000_s208898" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s208899"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s208900"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s208899">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s208900">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>89</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="136" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="205"/>
- </o:shapelayout><v:shape id="_x0000_s209922" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s209923"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s209924"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s209923">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s209924">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>90</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="137" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="206"/>
- </o:shapelayout><v:shape id="_x0000_s210946" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s210947"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s210948"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s210947">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s210948">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>91</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="138" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="207"/>
- </o:shapelayout><v:shape id="_x0000_s211970" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s211971"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s211972"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s211971">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s211972">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>92</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="139" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="208"/>
- </o:shapelayout><v:shape id="_x0000_s212994" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s212995"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s212996"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s212995">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s212996">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>93</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="140" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="209"/>
- </o:shapelayout><v:shape id="_x0000_s214018" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s214019"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s214020"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s214019">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s214020">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>94</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="141" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="210"/>
- </o:shapelayout><v:shape id="_x0000_s215042" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s215043"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s215044"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s215043">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s215044">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>95</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="142" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="211"/>
- </o:shapelayout><v:shape id="_x0000_s216066" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s216067"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s216068"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s216067">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s216068">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>96</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="143" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="212"/>
- </o:shapelayout><v:shape id="_x0000_s217090" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s217091"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s217092"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s217091">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s217092">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>97</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="144" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="213"/>
- </o:shapelayout><v:shape id="_x0000_s218114" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s218115"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s218116"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s218115">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s218116">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>98</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="145" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="214"/>
- </o:shapelayout><v:shape id="_x0000_s219138" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s219139"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s219140"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s219139">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s219140">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>99</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="146" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="215"/>
- </o:shapelayout><v:shape id="_x0000_s220162" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s220163"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s220164"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s220163">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s220164">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>100</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="147" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="216"/>
- </o:shapelayout><v:shape id="_x0000_s221186" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s221187"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s221188"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s221187">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s221188">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>101</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="148" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="217"/>
- </o:shapelayout><v:shape id="_x0000_s222210" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s222211"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s222212"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s222211">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s222212">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>102</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="150" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="218"/>
- </o:shapelayout><v:shape id="_x0000_s223234" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s223235"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s223236"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s223235">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s223236">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>103</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="151" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="219"/>
- </o:shapelayout><v:shape id="_x0000_s224258" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s224259"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s224260"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s224259">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s224260">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>104</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="152" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="220"/>
- </o:shapelayout><v:shape id="_x0000_s225282" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s225283"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s225284"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s225283">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s225284">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>105</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="129" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="221"/>
- </o:shapelayout><v:shape id="_x0000_s226306" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s226307"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s226308"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s226307">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s226308">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>106</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="153" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="222"/>
- </o:shapelayout><v:shape id="_x0000_s227330" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s227331"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s227332"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s227331">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s227332">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>107</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="157" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="223"/>
- </o:shapelayout><v:shape id="_x0000_s228354" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s228355"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s228356"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s228355">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s228356">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>108</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="149" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="224"/>
- </o:shapelayout><v:shape id="_x0000_s229378" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s229379"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s229380"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s229379">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s229380">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>109</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="46" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="225"/>
- </o:shapelayout><v:shape id="_x0000_s230402" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s230403"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s230404"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s230403">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s230404">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>110</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="122" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="226"/>
- </o:shapelayout><v:shape id="_x0000_s231426" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s231427"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s231428"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s231427">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s231428">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>111</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="30" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="227"/>
- </o:shapelayout><v:shape id="_x0000_s232450" type="#_x0000_m117764" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s232451"
-  type="#_x0000_m117765" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s232452"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s232451">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s232452">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>112</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master02.html b/docs/presentations/EclipseCon2008_LongTalk_files/master02.html
deleted file mode 100644
index 5a7a36a..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master02.html
+++ /dev/null
@@ -1,275 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="228"/>
-</o:shapelayout>
-</head>
-
-<body>
-<v:background id="_x0000_s233473" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s233474" style='position:absolute;
- left:0;top:0;width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAAjt
-I8SfAwAAWggAABAAAABkcnMvc2hhcGV4bWwueG1srFXNbhs3EL4X6DsQvBaOfmrXtpB1YBt1WkA1
-BMtBz1wu18uKS25Jrn58dJ6nSIAE6MVv4wfwK3RmuGupRVEUUXRYDcnh/HzfcOb1m3Vt2FL5oJ3N
-+OjVkDNlpSu0vcv4u9urgxPOQhS2EMZZlfGNCvzN2bffvG4moWFw2YZJk/EqxmYyGARZqVqEV65R
-Fs5K52sRYenvBo1XQdkoIjiqzWA8HP4wqIW2/AxM2eW8mXmU5PVy5pkuMv798PiQMytq8HqjJMRw
-ZxQb80Gnlm4ICGPq5CJ0sYj/E0vhxQoS/FsYzLq3HjIZgU93WYE3de69W1VKFAG3we+A4utDtRAp
-xtJULG4aiLIqPIB1n/HfW+Gj8t2VpAd3t1kGyJblq19cAddEGx2gICbr0tf7poF2XFmydcaByg1+
-IXAxUevIJGyOT49HJ0M4knB2eHQMPFCYyTtqNj7Et8rtHQlDQxn3QB1lJ5bTEBHErQt0Z92VNmbf
-tClHY/c1w1YZPz0aH1HAKTKyXGugkxldZxzAg18CFWvjR1uQShTaJBkSNJaKBWnGConrC1dsMNsc
-/oH69G6+vFbhwQK0lfP3nK28gLINWHOKM/OzhWo9HR0eAseRFsQyZ373JN89sW196QyVvrASrGY8
-cpbEywgrLBdXNyJO7byRqNgXyu36V+GbjuoIRXbt5pVo1L8xnnSpABIMaMSEOI8beNh7QkK2lmZE
-iItJocobwBkf42hb4qZXQIo6x5TJ1/COT7oWfkpwgXBDArikf20L6H4kCnMHrdZwBkHeinwOMRJf
-gLKPSVuJqb3wC1IvnY3ndCUXARmGFmq3x9ipoJfNWivJPAGBNKEQGjmTkS0FsvtSuFSgW40LVf5T
-t+8JcH97el7G/9DrTvP20vjbNT2JvJ3fv4hXkMbL4hpmSfdq8tQVespgFxsEvhtoWraYCS+QyUVb
-69r9phOokHPGlT14N08NlzhmeUKavm3GLTjB4eX1ArqsdXOSOFsoj6MOy4JJfDudIlY2bFkcWkbf
-q59oiaAbjaOPzmbeuRJljA+fed/BUuBpJzijC2xrhBfORAWoJBriOo0SIGdXS5UlNMoei3ZqO6xa
-NNPJxDzNmlJICOjcawFlJCvhgyLyCVMldnSeH/94fvzEnh8/Pj18fnr48+n9+6eHD5w1OsrqStTa
-wBw4QSR6Kwej8UlqbzLsGPqutgcydLNiS0yii7pd3+Vg0oXm7C8AAAD//wMAUEsDBBQABgAIAAAA
-IQBk9XX02QAAAPwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9NSwMxFEX3gv8hPMFNsYm12DI2LbVU
-FFyUqYLb5+TNB05ehiR2Zv59g4u6vNzLuZzVZrCtOJEPjWMN91MFgrhwpuFKw+fHy90SRIjIBlvH
-pGGkAJv19dUKM+N6zul0jJVIEA4Zaqhj7DIpQ1GTxTB1HXHqSuctxhR9JY3HPsFtK2dKPUqLDaeH
-Gjva1VT8HH+thjI/vKtJ+fXMBzufTRZKbkdXan17M2yfQEQa4v+4V/vdcn8p/1BvRsODWsxBlK/j
-t29MjiGS15D0kmwSBbk+AwAA//8DAFBLAQItABQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAAAAA
-AAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAhADHdX2HSAAAAjwEA
-AAsAAAAAAAAAAAAAAAAALwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAhAAjtI8SfAwAAWggA
-ABAAAAAAAAAAAAAAAAAAKgIAAGRycy9zaGFwZXhtbC54bWxQSwECLQAUAAYACAAAACEAZPV19NkA
-AAD8AAAADwAAAAAAAAAAAAAAAAD3BQAAZHJzL2Rvd25yZXYueG1sUEsFBgAAAAAEAAQA9QAAAP0G
-AAAAAA==
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s233474">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s233475" style='position:absolute;left:306pt;top:0;
- width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAPnM
-LkWkAwAAcAgAABAAAABkcnMvc2hhcGV4bWwueG1srFXNbhs3EL4X6DsQvBaOJP/EspB1YBt1WkAx
-BMtBz6NdrpcVl9ySXP346DxP0QIt0Ivfxg/gV+jMcGW5QREEUXRYzS6HM9988/fm7ao2YqF80M5m
-cvCqL4WyuSu0vc3kh5vLvaEUIYItwDirMrlWQb49/f67N80oNAIv2zBqMlnF2Ix6vZBXqobwyjXK
-4lnpfA0RX/1tr/EqKBshoqPa9Pb7/de9GrSVp2jKLqbNxJOUXy0mXugikwf94yMpLNTo9VrliOHW
-KHEge51augEIY+zyeeiwwJdgKTwsMcD/wBDWvfMYyQB9uosKvakz792yUlAE+ox+e4xvA9UiUsLS
-VCKuG0RZROTqLpO/teCj8hLDWG1vJnU0sQ02YNBitnzvCrwNbXRIBoxWpa93jYbsuLIU6P9gOHyN
-bEuxzmSfooCRWkWR49H+yfFgSEc5nh0eHZMahZkwkGbjQ3yn3M54BBnKpMc8coywGIeYXG1ckDvr
-LrUxuwbPMRq7qxmxzOTJ0f4RA07I2HKtMbnC6DqTSB7+EqlUKD/aglUiaJNk5NJYrhxKNpVLXJ27
-Yk3RzvAfCyA10dcXLnYvUls5fyfF0gPWcKAKVFKYny2W7sng8BBzHPmFsyyFf3kye3li2/rCGe4D
-sDlazSSWdRIvIr5Rubi6gTi20yYnxU2h3Kx+Ad90qY5YZFduWkGj/i/jSZdrLdFARkyI07jGLt+R
-Era1MANqLzC3ONg8YyhUeY2fqEcH21o3SZOxbBBwSN8CBkGowY+ZNxSuWUCX/K9tgTORxQ1OgSBv
-YDZFjJw4pNvHpK1gbM/9nNVLZ+MZhzaDQKnGwWq3xzS/cMJNWpuzeWaE8kVCaPJJHsUCKM3PFcyV
-utU4V+WnupvhgPe3p2dl/IxedzprL4y/WXFvzNrp3bN4iWE8v1zhhunaZ5bGA4xSyvArwuMGwull
-iwl4oEzO21rX7ledSMWYM6ns3odpmsOcYzFLTPOzzaRFJ7TSvJ7j0LVuypIUc+VpAfKkzKmJOkUq
-ccyBpVVm9J36iV+JdKNpIfLZxDtXkpx4pufzwOgmANLujC5ovjFftCkVspLSEFdpwXyipcoSJ+aG
-i3ZsO65aMtPJnHneQCXkCOjMazDYoxX4oDj5zKmCFzpPD78/Pfwlnh7+fLz/+/H+n8ePHx/v/5Ci
-0TGvLqHWBhfCkDp9Y2VvsD9Mcy4PLwz9UNu9PHRLY5uYlC58bscdiqE5/RcAAP//AwBQSwMEFAAG
-AAgAAAAhAP3cQ1bZAAAA/AAAAA8AAABkcnMvZG93bnJldi54bWxEj0tLAzEUhfeC/yFcwU2xifVR
-GZuWKohCkTLTgtvr5M4DJzdDEqcz/97gQpeHc/gO32oz2k4M5EPrWMP1XIEgLp1pudZwPLxcPYAI
-Edlg55g0TBRgsz4/W2Fm3IlzGopYiwThkKGGJsY+kzKUDVkMc9cTp65y3mJM0dfSeDwluO3kQql7
-abHl9NBgT88NlV/Ft9VQ5fudmlUfT7y3t4vZUsnt5CqtLy/G7SOISGP8H7/LQtXDX/mLejMabtTy
-DkT1On361uQYInkNSS/JJlGQ6x8AAAD//wMAUEsBAi0AFAAGAAgAAAAhAFrjEWb+AAAA4gEAABMA
-AAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEAMd1fYdIA
-AACPAQAACwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEA+cwuRaQD
-AABwCAAAEAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQABgAIAAAAIQD9
-3ENW2QAAAPwAAAAPAAAAAAAAAAAAAAAAAPwFAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAQABAD1
-AAAAAgcAAAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="dateTime" position="1" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s233475">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O style='text-align:right'><span style='font-size:50%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s233476" style='position:absolute;left:0;top:684pt;
- width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:bottom' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhADtc
-utWlAwAAaAgAABAAAABkcnMvc2hhcGV4bWwueG1srFXbbhs3EH0v0H8g+Fo4klxfhawD26jTAooh
-WA7yzOVyvay45Jbk6uJH53uKFmiAvPhv/AH+hcwMdy21CIKiqg3Yw+VwLufM5fWbVW3YQvmgnc34
-6NWQM2WlK7S9y/j726u9E85CFLYQxlmV8bUK/M3Z99+9bsahYfDYhnGT8SrGZjwYBFmpWoRXrlEW
-7krnaxHh6O8GjVdB2SgiOKrNYH84PBrUQlt+BqbsYtZMPUryejH1TBcZ/3F4fMSZFTV4vVESYrgz
-ih3wQaeWXggIY+LkPHSxiH8TS+HFEhL8WxjMurceMhmBT3dZgTd17r1bVkoUAT+D3wHF14dqIVKM
-palYXDcQZRk9gHWf8d9a4aOCgy5WGd/vniZ9sLHJNkDWLF++cwU8F210gIYYr0pf75oO2nFlycA/
-ULrO+MkR/A6HGIsYq1VkEkM7PR7hRyZB4+DwGFihYFMMqNn4EN8qt3M8DA1l3AORlKNYTEJESDcu
-0J11V9qYXZOnHI3d1QxbZvz0cP+QAk6RkeVaA7nM6BpQHeJPAhUr5SdbkEoU2iQZEjSWSgfJxnqJ
-qwtXrDHbHP5DAaQu+u+VC+0L0FbO33O29AKKOGAFKs7MLxZq93R0cAAcRzoQy5z57Zt8+8a29aUz
-1AjCSrCa8ZyzJF5GOGG5uLoRcWJnjUTFvlBuVx+EbzqqIxTZtZtVolFfYzzpUgEkGNCICXEW19Dm
-O0JCthZmRIiLcaHKG8AZW3O0KXHTKyBFnWPK5P/wjo1dCz8huEC4IQFc0n9tC5iFJApzB4PXcAZB
-3op8BjESX4Cyj0lbiYm98HNSL52N5/QkFwEZhoFqN9c4t2CyTVsryTwBgTShEBo5lZEtBLL7UrhU
-oBuNC1X+U7efCfB+c3texm/odbd5e2n87YpaIm9n9y/iFaTxcriGzdJ1TZ6mQk8ZfMUBgX0DQ8sW
-U+EFMjlva127X3UCFXLOuLJ772dp/BLHLE9I09824xac4Crzeg6z1roZSZzNlcfFh2XBJPZOp4iV
-DZ8srjCj79XPdETQjcZFSHdT71yJMsaHbd5PsBR4+hKc0QWONcILN6QCVBINcZUWC5CzraXKEgZl
-j0U7sR1WLZrpZGKeNk8pJAR07rWAMpKV8EER+YSpEls6z4+/Pz/+xZ4f/3x6+PT08Pnp48enhz84
-a3SU1ZWotcFNgUj0VvZG+ydpvMmwZeiH2u7J0O2KDTGJLpp2/ZSDfReasy8AAAD//wMAUEsDBBQA
-BgAIAAAAIQA2XsKS2AAAAPwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9RS8MwFIXfBf9DuIJvLmmF
-OrplQ2Zlvgzc9MW3u+a2DWuSksS2+/cGH/TxcA7f4VtvZ9OzkXzQzkrIFgIY2dopbVsJnx+vD0tg
-IaJV2DtLEq4UYLu5vVljqdxkjzSeYssSxIYSJXQxDiXnoe7IYFi4gWzqGucNxhR9y5XHKcFNz3Mh
-Cm5Q2/TQ4UC7jurL6dtIGIs8vpz11+HwnjVVnu1nn4tZyvu7+XkFLNIc/8eTqHbL6q/8Rb0pCY/i
-qQDW7K9nr9URQyQvIekl2SQKfPMDAAD//wMAUEsBAi0AFAAGAAgAAAAhAFrjEWb+AAAA4gEAABMA
-AAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEAMd1fYdIA
-AACPAQAACwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEAO1y61aUD
-AABoCAAAEAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQABgAIAAAAIQA2
-XsKS2AAAAPwAAAAPAAAAAAAAAAAAAAAAAP0FAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAQABAD1
-AAAAAgcAAAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="footer" position="2" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s233476">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s233477" style='position:absolute;left:306pt;top:684pt;
- width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:bottom' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhACRb
-pXO2AwAAhQgAABAAAABkcnMvc2hhcGV4bWwueG1srFXbbuM2EH0v0H8g+Fpkbae5OMYqiyRotgW8
-gRFn0WdKoiLVFKmSlC95zH5P0QJdYF/yN/mA/ELPkFLsFkVR1E0AeUgOZ86cufDtu3Wt2FJaVxmd
-8NGbIWdSZyav9H3CP95dH4w5c17oXCijZcI30vF3519/9baZuIbhsnaTJuGl981kMHBZKWvh3phG
-apwVxtbCY2nvB42VTmovPBzVanA4HJ4MalFpfg5TejlvZpak7GY5s6zKE/7t8PSUMy1qeL2VGTDc
-K8mO+aBTizcEYExNtnAdFvFvsORWrBDgn2Awbd5bRDKCT3NVwpu8sNasSilyR9vwOwj4eqgaSAlL
-UzK/aYDSqfymrcHXQ8J/boX10nKEskYs3e14BWa2ATsEztLVB5PDgmi9ASFisi5svW9EZMcUBSP/
-4/EJGOdsk/DxCf4hIx4xkWvPMigcnp2OaJNl0Dg6PiVlCjgiIc3GOv9emr1RMTKUcIuMhkjFcup8
-dNW7IHfaXFdK7UtBiFHpfc2wVcLPjg+PA+CILFiuK6SYqaoGq0P6i6RSyXyn86DiRaWiDC6VDjVE
-KafC8etLk28o2hS/KIPYTv+9hNHHoLY09oGzlRWoZkd1KDlTP2gU8dno6Ag59mERssyZ3T1Jd090
-W18ZFTpC6AxWE55yFsUrjxWVi6kb4ad63mSk2BfK3fpHYZsu1R5FdmPmpWjk32U86oZaizSQEeX8
-3G/Q73tSEmwt1YiaTKh7jDgbMOSyuMUWdepoW+sqagYsPYIQ0v8BgyDUwk4DbxBugwCX4bfSOaZj
-EHucDCDvRDoHxpA40G191JZiqi/tIqgXRvuLEFoqHKUaI1Zvj2mSYdbNWp0F84ERyhcJrslmmWdL
-QWl+reBQqVuNS1n8VbcfDri/Pb0o/D/odadpe6Xs3Tr0RtrOH17Fa4TxurjBW9O1TxrHg5jElGEX
-8EIDiQm6CB/wumjrqjY/VZFSRJxwqQ8+zuMsDhlmaeQ5fNuEa7igp81WCwxebeZB4mwhLT2EYVpm
-1EKdIhU4MqDpSVPVg/w+LIlyVdHDGM5m1piCZAJG3d4Psgg77jijqpymW2CLXkwJTmIS/Do+NEjN
-rpYsCszLnol2qjumWjLTySHv4SUqRAZAF7YSCh1aCutkSH1gVIodnZenX16efmcvT789P35+fvzy
-/OnT8+OvnDWVz8prUVeKHgzq897KwehwHKdc5nYMfVPrg8x1TwYyQqH5c8YYZQtlgS/2KHP4bicf
-RNec/wEAAP//AwBQSwMEFAAGAAgAAAAhAO6kgWjXAAAA/AAAAA8AAABkcnMvZG93bnJldi54bWxE
-j8FuwjAQRO+V+g/WVuqtOFAVUMAghED01iZUPS/xJo6I7dR2g/n7Wj3AcTSjN3rLddQdG8j51hoB
-41EGjExlZWsaAV/H/cscmA9oJHbWkIAreVivHh+WmEt7MQUNZWhYghifowAVQp9z7itFGv3I9mRS
-V1unMaToGi4dXhJcd3ySZVOusTXpQWFPW0XVufzVAtxWz78/i7Hspz8Rd/U+nmyphHh+ipsFsEAx
-3MeHj91bMdzKf9S7FPCazWbA6sP15FpZoA/kBCS9JJtEga/+AAAA//8DAFBLAQItABQABgAIAAAA
-IQBa4xFm/gAAAOIBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0A
-FAAGAAgAAAAhADHdX2HSAAAAjwEAAAsAAAAAAAAAAAAAAAAALwEAAF9yZWxzLy5yZWxzUEsBAi0A
-FAAGAAgAAAAhACRbpXO2AwAAhQgAABAAAAAAAAAAAAAAAAAAKgIAAGRycy9zaGFwZXhtbC54bWxQ
-SwECLQAUAAYACAAAACEA7qSBaNcAAAD8AAAADwAAAAAAAAAAAAAAAAAOBgAAZHJzL2Rvd25yZXYu
-eG1sUEsFBgAAAAAEAAQA9QAAABIHAAAAAA==
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="slideNumber" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s233477">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O style='text-align:right'><span style='font-size:50%'>‹#›</span></div>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master03.html b/docs/presentations/EclipseCon2008_LongTalk_files/master03.html
deleted file mode 100644
index 7fea29c..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master03.html
+++ /dev/null
@@ -1,68 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m1027" class=T>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m1028" style='tab-stops:.4427in'>
-
-<div class=B>Click to edit Master text styles&#13;</div>
-
-<div class=B1>Second level&#13;</div>
-
-<div class=B2>Third level&#13;</div>
-
-<div class=B3>Fourth level&#13;</div>
-
-<div class=B4>Fifth level</div>
-
-</div>
-
-<div v:shape="_x0000_s1030">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O><span style='mso-bidi-font-family:Arial;font-size:42%'>Open Source
-Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
-style='mso-bidi-font-family:Arial;font-size:42%'>|<span
-style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
-Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
-font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
-style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
-available under the EPL v1.0</span></div>
-
-</div>
-
-<div v:shape="_x0000_s1031" class=O style='mso-line-spacing:"100 50 0";
-mso-char-wrap:1;mso-kinsoku-overflow:1'><span style='mso-bidi-font-family:Arial;
-font-size:42%'><b>‹#›</b></span></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master03.xml b/docs/presentations/EclipseCon2008_LongTalk_files/master03.xml
deleted file mode 100644
index e4ef65a..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master03.xml
+++ /dev/null
@@ -1,157 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout><v:background id="_x0000_s1025" o:bwmode="white" fillcolor="white [0]">
-  <v:fill color2="#339 [5]"/>
- </v:background><p:shaperange id="Picture_x0020_8">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="Picture_x0020_8" o:spid="_x0000_s1026" type="#_x0000_t75"
-   alt="light4" style='position:absolute;left:0;top:495pt;width:10in;height:45pt;
-   visibility:visible;mso-wrap-style:square' o:userdrawn="t">
-   <v:imagedata src="master03_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_m1027">
-  <v:shapetype id="_x0000_m1027" style='position:absolute;left:54pt;top:84pt;
-   width:612pt;height:42pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:middle' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
-   filled="f" stroked="f">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:textbox style='mso-rotate-with-shape:t'/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m1028">
-  <v:shapetype id="_x0000_m1028" style='position:absolute;left:54pt;top:138pt;
-   width:612pt;height:342pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
-   filled="f" stroked="f">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:textbox style='mso-rotate-with-shape:t'/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="Picture_x0020_7">
-  <v:shape id="Picture_x0020_7" o:spid="_x0000_s1029" type="#_x0000_t75" alt="eclipsecon_2008"
-   style='position:absolute;left:14.75pt;top:0;width:262.125pt;height:76pt;
-   visibility:visible;mso-wrap-style:square' o:userdrawn="t">
-   <v:imagedata src="master03_image002.jpg" o:title="eclipsecon_2008"
-    croptop="8573f" cropbottom="8252f"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s1030">
-  <v:rect id="_x0000_s1030" style='position:absolute;left:114pt;top:509.875pt;
-   width:606pt;height:19.25pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:top' o:bwmode="black" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAPgS
-gEGRAwAAmQ0AABAAAABkcnMvc2hhcGV4bWwueG1s7FbLbus2EN0X6D8Q3Cd2EudlRAmcoGkXbmDE
-yTqgKCpmTZECSTt2lsn3FC3QC9xN/iYfkF/ozFB+pPeiKOpVgGghUdJw5syZmSOdnM0qw6bKB+1s
-xne225wpK12h7X3Gb28ut444C1HYQhhnVcbnKvCz0x9/OKm7oWaw2YZunfFRjHW31QpypCoRtl2t
-LLwrna9EhFt/36q9CspGESFQZVq77fZBqxLa8lNwZafDeuBxJa+mA890AVjae3ucWVFB1GslAcO9
-UeyYtxqztEMAjL6T49BgEf8FS+HFAyT4Dgaz7mIEMVTPe/cwUqIIgAGjtQjVAqAFfOnhCnQA8Cx/
-+NUVgDU3Qo4hK9Gdlb7aFBb6cWXJZgCm0zk8akOB5hk/6Bzud3b2EJ7oqllkEgwOD44PgFfOJFjs
-dsB8n/AnJGhZ+xB/Vm5jVAwdZdxDWShTMe2HiKysQmA46y61MZtSQDkau6kb9pDx4/3dfQKckJHn
-SkflmdFVxoFdOBKp2AE/2YJMotAmrSFBY4nzsoTkIetNYSFrOEup/ePs3BVzDJDDFboqTdj/7mr0
-FOreJEIlmgIlx/jChDiMcxiqDYMQRwsx2AgqzlElfD/j0MWwuKaFmRq6aluAgtBSmHuQK8NZocob
-kQ8fobYwH9j8PiZrJfr23I/JvHQ29mhLLoLizIAM2dVrnHvQg8HESnJP5NhhLRN9ciAjmwpwu7Ns
-EGqElcW5Kv9pS30EZqGWq7e9Mv6LXfM2n1wYfzMjWvPJ8HG5vIQ0ljdXoMdNd+Zp+kQX2LhO8gSD
-iB0luukEvI4nla7cbzpRChlnXNmt2yHoO7CHmXGWJ57pPMm4hRAo/16PQdisG9KKs7Hy+LFIWiNA
-/hvDWtJOi7Jv9KP6hW6RcqPx4wERrBt450paF9pHUCp4Gqp4YZQAp20azzRjyyFdTl1wRheoKUQi
-fmwUUJVqE2dJrYHxdSu1GFTiatK3DYETdNOsqR1YnNeqFBJw9rwW0FtyJHxQ1BG0WYk1m7eX399e
-/mJvL3++Pn15ffr6+vz8+vQHZ7WOcnQpKm0gtSPIbella2f3KGmLDGuOvhsMMvapfvGU3d3dMTwt
-LnTTPKGHqLvQV7jpo5QccX5Web3KjH3AMn5O7tqALxT//eR+wKp+Difo/bcSzJbHQolJlBfivH6T
-5BqfNMKNKzzw/K4jIExNv4CLXz/6Gzz9GwAA//8DAFBLAwQUAAYACAAAACEAiB+uUtgAAAD8AAAA
-DwAAAGRycy9kb3ducmV2LnhtbESPy07DMBBF90j8gzVI3VGnRIog1K2q8hR0QVpgPY0ncYQfkW3a
-hK+vxQKWozM6V2e+HIxmB/Khc1bAbJoBI1s72dlWwPvu4fIaWIhoJWpnScBIAZaL87M5ltIdbUWH
-bWxZkthQogAVY19yHmpFBsPU9WQTa5w3GNPpWy49HpPcaH6VZQU32Nm0oLCntaL6a/ttBGzUy6hN
-oVc/N48FveYfw/3mrRJicjGsboFFGuL/83rXfMa7P/irepapJctzYM3TuPedrDBE8gJSXopNEPji
-BAAA//8DAFBLAQItABQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29u
-dGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAhADHdX2HSAAAAjwEAAAsAAAAAAAAAAAAAAAAA
-LwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAhAPgSgEGRAwAAmQ0AABAAAAAAAAAAAAAAAAAA
-KgIAAGRycy9zaGFwZXhtbC54bWxQSwECLQAUAAYACAAAACEAiB+uUtgAAAD8AAAADwAAAAAAAAAA
-AAAAAADpBQAAZHJzL2Rvd25yZXYueG1sUEsFBgAAAAAEAAQA9QAAAO4GAAAAAA==
-" o:userdrawn="t" filled="f" stroked="f">
-   <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s1031">
-  <v:shapetype id="_x0000_s1031" style='position:absolute;left:12pt;top:514.75pt;
-   width:79.25pt;height:25.25pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" o:bwmode="black"
-   o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAESC
-wWHlAwAATAkAABAAAABkcnMvc2hhcGV4bWwueG1srFXbbhs3EH0v0H8g+Fo4uliyHSHrwDbqtIBq
-CJaDPnO5XGsjLrklqZsfne8pWiAB+uK/8Qf4F3qGXNlqkAJBVT1IQ3E4lzNnZt68XdeaLZXzlTUZ
-773qcqaMtEVlbjP+/uby4IQzH4QphLZGZXyjPH97+v13b5qRbxgeGz9qMj4LoRl1Ol7OVC38K9so
-g7vSuloEHN1tp3HKKxNEgKNad/rd7lGnFpXhpzBlltNm4kiSV8uJY1WBWLqHA86MqOH1WknEcKsV
-63V5p9VLTwTiGFs5920w4luCKZxYIcN/xMGMfeeQSg9O7cUM7tSZc3Y1U6Lw9Df8dmKA21gNQqVY
-mhkLmwZhel1cLWoAdpfx3xbCBeU4cllnfNC+Tk9g5iVjj8xZvvrFFrCQayHngESM1qWr902J7Niy
-ZAigN+wPuijuJuNHw8Pjw/6QIhIjtQ5M0j3qMTgeciahcdjvHkGmhFMgpNk4H94pu3dQjAxl3KGk
-MVGxHPuQXG1dkDtjLyut90Ug5qjNvmbYKuOvh8CMCX2LPpHBxdhTkNFJXaHaTFd1xk+69En4Ent+
-NEVUCaLSSQas2kT4yxI4AIB9IyQAqSUTI8P63BYbcpDjF/xKjfrfewMTAjWbWXfH2coJtIkngivO
-9M8G3fG6NxiAXSEeBsPjPg5u9ybfvTGL+sLq2GrCSFjNeAC0UbwIOOG1tHUjwthMG0mKWwberH8V
-rmk5FMDeKzudiUZ9jUpJN5I4wUBGtA/TsMEk2ROSaGupe9S9SozNuZvHhGhwYLRMFkYCsRS4b+S5
-KukFpIkMbCmQ/XDLErDhRaNQ5TVM0ghBTwKIfGtF+jhmSiExKH6oPxxI37ZoehMT1SmkJLepRuz+
-j3wp11q4cSwQhOsowGX8rUyBAR/F1CWaM0R2I/IpkokMIVaEpL2LWWlNOIuNlQtPnMKWMC2kePI1
-SDUR40tECbDUeLHBXjS+GX3U4awMX9qNvZyq1N7miwvtbtaxrfPF9O5ZvEQqz4crrMy28/M05MQo
-1YraFSOVulWM0hewnS/qqrYfqgQriJRxZQ7eT9NG2aEDSyqLjBu4oA3tqjlYYew0SpzNlaN9jjWL
-VqJ+bRWpm/CXoc2sqzv1UzwS7Lqi/R7vJs7akmSKLg2q50kXkY0AWV0VNKPjgRa/AiaJ2mGd1iWI
-vaulttMugrIYmxapBZlp5Vj7HaKfuUqASHImnFeRXfGxEjs6Tw+/Pz18Yk8Pfz7ef368/+vx48fH
-+z84a6ogZ5eirjSW2gkhsbVy0OufpAH9713lUnXCKWOMqgVa4BvFosrhuxltx2ycvKd/AwAA//8D
-AFBLAwQUAAYACAAAACEASkviq9oAAAD8AAAADwAAAGRycy9kb3ducmV2LnhtbESPT0sDMRBH74Lf
-IYzgzSZqlbo2LVJZFDxs/wh6nG6mm6WbZE3S3W0/vcGDPQ5veD/edD6YhnXkQ+2shNuRAEa2dKq2
-lYTPTX4zARYiWoWNsyThSAHms8uLKWbK9XZF3TpWLElsyFCCjrHNOA+lJoNh5Fqyie2cNxjT6Suu
-PPZJbhp+J8QjN1jbtKCxpYWmcr8+GAlPNMau+DoVD4el6PVPsfn+WJykvL4aXp6BRRri+Xmfvy63
-+T/8U72r1CLux8B2b8etr9UKQyQvIeWl2ASBz34BAAD//wMAUEsBAi0AFAAGAAgAAAAhAFrjEWb+
-AAAA4gEAABMAAAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAA
-ACEAMd1fYdIAAACPAQAACwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAA
-ACEARILBYeUDAABMCQAAEAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQA
-BgAIAAAAIQBKS+Kr2gAAAPwAAAAPAAAAAAAAAAAAAAAAAD0GAABkcnMvZG93bnJldi54bWxQSwUG
-AAAAAAQABAD1AAAARAcAAAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:textbox style='mso-rotate-with-shape:t'/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master03_image001.jpg b/docs/presentations/EclipseCon2008_LongTalk_files/master03_image001.jpg
deleted file mode 100644
index 6218aec..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master03_image001.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master03_image002.jpg b/docs/presentations/EclipseCon2008_LongTalk_files/master03_image002.jpg
deleted file mode 100644
index 75fd8f6..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master03_image002.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master03_image005.gif b/docs/presentations/EclipseCon2008_LongTalk_files/master03_image005.gif
deleted file mode 100644
index dfff65e..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master03_image005.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master03_image006.gif b/docs/presentations/EclipseCon2008_LongTalk_files/master03_image006.gif
deleted file mode 100644
index 01317e4..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master03_image006.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master03_stylesheet.css b/docs/presentations/EclipseCon2008_LongTalk_files/master03_stylesheet.css
deleted file mode 100644
index 96a9af3..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master03_stylesheet.css
+++ /dev/null
@@ -1,340 +0,0 @@
-body

-	{width:534px;

-	height:400px;}

-.TB

-	{mso-special-format:nobullet•;}

-.T

-	{text-align:left;

-	font-family:Arial;

-	mso-bidi-font-family:Arial;

-	mso-hansi-font-family:Arial;

-	color:#2F2672;

-	font-size:133%;}

-.BB

-	{mso-special-format:bullet•;}

-.B

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;

-	mso-margin-left-alt:109;}

-.B1B

-	{mso-special-format:bulletw;

-	font-family:Wingdings;}

-.B1

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:95%;

-	mso-margin-left-alt:395;

-	mso-text-indent-alt:252;}

-.B2B

-	{mso-special-format:bullet§;

-	font-family:Wingdings;}

-.B2

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:85%;

-	mso-margin-left-alt:613;

-	mso-text-indent-alt:504;}

-.B3B

-	{mso-special-format:bullet\F0AA;

-	font-family:Wingdings;}

-.B3

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:76%;

-	mso-margin-left-alt:826;

-	mso-text-indent-alt:685;}

-.B4B

-	{mso-special-format:bullet\F0AB;

-	font-family:Wingdings;}

-.B4

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:76%;

-	mso-margin-left-alt:1081;

-	mso-text-indent-alt:935;}

-.NB

-	{mso-special-format:nobullet•;}

-.N

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N1B

-	{mso-special-format:nobullet•;}

-.N1

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N2B

-	{mso-special-format:nobullet•;}

-.N2

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N3B

-	{mso-special-format:nobullet•;}

-.N3

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N4N

-	{mso-special-format:nobullet•;}

-.N4

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.OB

-	{mso-special-format:nobullet•;}

-.O

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;}

-.O1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.O2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.O3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.O4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.CBB

-	{mso-special-format:nobullet•;}

-.CB

-	{text-align:center;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;}

-.CB1B

-	{mso-special-format:nobulletw;

-	font-family:Wingdings;}

-.CB1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:95%;

-	mso-margin-left-alt:252;

-	mso-text-indent-alt:252;}

-.CB2B

-	{mso-special-format:nobullet§;

-	font-family:Wingdings;}

-.CB2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:85%;

-	mso-margin-left-alt:504;

-	mso-text-indent-alt:504;}

-.CB3B

-	{mso-special-format:nobullet\F0AA;

-	font-family:Wingdings;}

-.CB3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:685;

-	mso-text-indent-alt:685;}

-.CB4B

-	{mso-special-format:nobullet\F0AB;

-	font-family:Wingdings;}

-.CB4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:935;

-	mso-text-indent-alt:935;}

-.CTB

-	{mso-special-format:nobullet•;}

-.CT

-	{text-align:left;

-	font-family:Arial;

-	mso-bidi-font-family:Arial;

-	mso-hansi-font-family:Arial;

-	color:#2F2672;

-	font-size:133%;}

-.HB

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:95%;

-	mso-margin-left-alt:109;}

-.HB1B

-	{mso-special-format:bulletw;

-	font-family:Wingdings;}

-.HB1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:85%;

-	mso-margin-left-alt:395;

-	mso-text-indent-alt:252;}

-.HB2B

-	{mso-special-format:bullet§;

-	font-family:Wingdings;}

-.HB2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:613;

-	mso-text-indent-alt:504;}

-.HB3B

-	{mso-special-format:bullet\F0AA;

-	font-family:Wingdings;}

-.HB3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:66%;

-	mso-margin-left-alt:826;

-	mso-text-indent-alt:685;}

-.HB4B

-	{mso-special-format:bullet\F0AB;

-	font-family:Wingdings;}

-.HB4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:66%;

-	mso-margin-left-alt:1081;

-	mso-text-indent-alt:935;}

-.QB

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:85%;

-	mso-margin-left-alt:109;}

-.QB1B

-	{mso-special-format:bulletw;

-	font-family:Wingdings;}

-.QB1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:395;

-	mso-text-indent-alt:252;}

-.QB2B

-	{mso-special-format:bullet§;

-	font-family:Wingdings;}

-.QB2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:66%;

-	mso-margin-left-alt:613;

-	mso-text-indent-alt:504;}

-.QB3B

-	{mso-special-format:bullet\F0AA;

-	font-family:Wingdings;}

-.QB3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:57%;

-	mso-margin-left-alt:826;

-	mso-text-indent-alt:685;}

-.QB4B

-	{mso-special-format:bullet\F0AB;

-	font-family:Wingdings;}

-.QB4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:57%;

-	mso-margin-left-alt:1081;

-	mso-text-indent-alt:935;}

-.defaultB

-	{mso-special-format:nobullet•;}

-.default

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-ascii-font-family:Arial;

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-weight:normal;

-	font-style:normal;

-	text-decoration:none;

-	text-shadow:none;

-	text-effect:none;

-	mso-fareast-hint:no;

-	layout-flow:horizontal;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;

-	mso-text-raise:0%;

-	mso-line-spacing:"100 0 0";

-	mso-margin-left-alt:0;

-	mso-text-indent-alt:0;

-	mso-char-wrap:1;

-	mso-kinsoku-overflow:1;

-	direction:ltr;

-	mso-word-wrap:1;

-	mso-vertical-align-special:baseline;

-	mso-ansi-language:EN-US;}

-a:link

-	{color:#009999 !important;}

-a:active

-	{color:#333399 !important;}

-a:visited

-	{color:#99CC00 !important;}

diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master15.html b/docs/presentations/EclipseCon2008_LongTalk_files/master15.html
deleted file mode 100644
index 57f1b89..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master15.html
+++ /dev/null
@@ -1,65 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master15_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_s2052">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O><span style='mso-bidi-font-family:Arial;font-size:54%'>© 2008 by
-Embarcadero Technologies; made available under the EPL v1.0 |<span
-style='mso-spacerun:yes'>  </span>March </span><span style='mso-bidi-font-family:
-Arial;font-size:54%'>18, </span><span style='mso-bidi-font-family:Arial;
-font-size:54%'>2008</span></div>
-
-</div>
-
-<div v:shape="_x0000_m2053" class=T>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m2054" style='tab-stops:.4427in'>
-
-<div class=B>Click to edit Master text styles&#13;</div>
-
-<div class=B1>Second level&#13;</div>
-
-<div class=B2>Third level&#13;</div>
-
-<div class=B3>Fourth level&#13;</div>
-
-<div class=B4>Fifth level</div>
-
-</div>
-
-<div v:shape="_x0000_s2055" class=O style='mso-char-wrap:1;mso-kinsoku-overflow:
-1'><span style='mso-bidi-font-family:Arial;font-size:58%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master15.xml b/docs/presentations/EclipseCon2008_LongTalk_files/master15.xml
deleted file mode 100644
index 0fdda60..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master15.xml
+++ /dev/null
@@ -1,155 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="2"/>
- </o:shapelayout><v:background id="_x0000_s2049" o:bwmode="white" fillcolor="white [0]">
-  <v:fill color2="#339 [5]"/>
- </v:background><p:shaperange id="Picture_x0020_2">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="Picture_x0020_2" o:spid="_x0000_s2050" type="#_x0000_t75"
-   alt="light4" style='position:absolute;left:0;top:495pt;width:10in;height:45pt;
-   visibility:visible;mso-wrap-style:square' o:userdrawn="t">
-   <v:imagedata src="master03_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="Picture_x0020_5">
-  <v:shape id="Picture_x0020_5" o:spid="_x0000_s2051" type="#_x0000_t75" alt="eclipsecon_2008"
-   style='position:absolute;left:14.75pt;top:0;width:262.125pt;height:76pt;
-   visibility:visible;mso-wrap-style:square' o:userdrawn="t">
-   <v:imagedata src="master03_image002.jpg" o:title="eclipsecon_2008"
-    croptop="8573f" cropbottom="8252f"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s2052">
-  <v:rect id="_x0000_s2052" style='position:absolute;left:3.625pt;top:508.375pt;
-   width:716.5pt;height:22.875pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:top' o:bwmode="black" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAAOO
-lmd6AwAAowsAABAAAABkcnMvc2hhcGV4bWwueG1s7FbNbts4EL4v0HcgeE/9k9iIjSqFEzTtwVsY
-cXoOKIqKWVOkQNKOnWPyPItdYAv0krfJA+QVOjOU7aQoFov6VKA6yCNzOPPNx5lPevN2VRm2VD5o
-ZzPeed3mTFnpCm2vM/7p8vzgmLMQhS2EcVZlfK0Cf3vy6o839TDUDDbbMKwzPouxHrZaQc5UJcJr
-VysLa6XzlYjw6K9btVdB2SgiJKpMq9tu91uV0JafQCi7nNYTj5b8uJx4pgvAAlCsqCDnhZKA4Noo
-NuCtxin5CwAxdnIeGiTi/yApvLiB8l6AYNadzSCHGnnvbmZKFAEQYLYWYdrAs4Au/bmDHAA6y2/+
-dAVgzY2Qc6hJDFelr/aFhXFcWbJVxo/67UM4i3XG+0e9/mH/EMGJoVpFJmF50B4Mej2gTIJHd9Du
-dbqEPuFAz9qH+F65vTExDJRxD4dCdYrlOETkZJcC01l3ro3ZlwCq0dh9w7AbYKjX7RHghIwiVzoq
-z4yuMn7cxiuRiuf/zhbkEoU2yYYCjSXOyxKKh6r3hYWs4Ryl1o+rU1esMUEOv9BTabp+uqcxUqhH
-iwgn0RxQCowLJsRpXMNI7ZmEONoIwV5QcYoq4ccZhy4G44IMszT0q20B6kGmMNcgVYazQpWXIp/e
-wtl2jo7g8JiPyVuJsT31c3IvnY0j2pKLoDgzIEF2t4xTD2owWVhJ4YkcO61lok9OZGRLAWE72wah
-Rth5nKrye1/qI3ALtdytjsr4H37Nar44M/5yRbTmi+nt1jyHMrYPH0GLm+7M0/SJIbBxkcQJBhE7
-SgzTDXidLypduc86UQoVZ1zZg09T0HZgr3OI3OWJZ7ovMm4hBUq/13OQNeumZHE2Vx5fFKDfoDUC
-pL9xrCXttCj5Rt+qD/SIlBuNLw5wt27inSvJLrSPoFRtmsg0Vtu53A5acEYXKCPEG75bFLCTjiOu
-kjwDyc+91GY2iZ7F2DacLTBMY1MHsLiuVSkkQBt5LaCd5Ez4oKgJaLMSz3yeHv56eviXPT3883j3
-5fHu6+P9/ePd35zVOsrZuai0gWqOkZNNlINO9zjJiQzPAv0wGVTs05HFE5auqyvGrrbXc7tZ2K0m
-C++0Nd3BxN0MdRn6DjP8Ki3BQhXPjBLQZ7/7YyMlL/rjFzxUbL7fc/7dnL84RxjRmj4INh8C9G1w
-8g0AAP//AwBQSwMEFAAGAAgAAAAhALevktnVAAAA+gAAAA8AAABkcnMvZG93bnJldi54bWxEj01L
-w0AQQO+C/2EZwZvdqBBs2m0p4hdawbR6H7PTJLgfYXdtN/76Dh70OPOGN7z5Mlsj9hRi752Cy0kB
-glzjde9aBe/b+4sbEDGh02i8IwUjRVguTk/mWGl/cDXtN6kVLHGxQgVdSkMlZWw6shgnfiDHbOeD
-xcRjaKUOeGC5NfKqKEppsXf8ocOBbjtqvjbfVsG6ex6NLc3qZ/pQ0sv1R75bv9VKnZ/l1QxEopz+
-j/Vrbmn6B39VT5pbOGX3OH6GXtcYEwUFvOFURiAXRwAAAP//AwBQSwECLQAUAAYACAAAACEAWuMR
-Zv4AAADiAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQAx3V9h0gAAAI8BAAALAAAAAAAAAAAAAAAAAC8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQADjpZnegMAAKMLAAAQAAAAAAAAAAAAAAAAACoCAABkcnMvc2hhcGV4bWwueG1sUEsBAi0A
-FAAGAAgAAAAhALevktnVAAAA+gAAAA8AAAAAAAAAAAAAAAAA0gUAAGRycy9kb3ducmV2LnhtbFBL
-BQYAAAAABAAEAPUAAADUBgAAAAA=
-" o:userdrawn="t" filled="f" stroked="f">
-   <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_m2053">
-  <v:shapetype id="_x0000_m2053" style='position:absolute;left:54pt;top:84pt;
-   width:612pt;height:42pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:middle' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
-   filled="f" stroked="f">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:textbox style='mso-rotate-with-shape:t'/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m2054">
-  <v:shapetype id="_x0000_m2054" style='position:absolute;left:54pt;top:138pt;
-   width:612pt;height:342pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
-   filled="f" stroked="f">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:textbox style='mso-rotate-with-shape:t'/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s2055">
-  <v:shapetype id="_x0000_s2055" style='position:absolute;left:542pt;top:19pt;
-   width:168pt;height:37.5pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAJEo
-VvetAwAASAgAABAAAABkcnMvc2hhcGV4bWwueG1srFXNbhs3EL4X6DsQvBaOtLLiKELWgW3UaQHF
-ECwHPc9yuV5GXHJLcmXJR+d5ihZogV78Nn4Av0JmyJWlBjkEcXXRkJyd+Wa++Xnzdt1otpLOK2ty
-nr0YciaNsKUy1zn/cHV+MOHMBzAlaGtkzjfS87fHP/7wpp36luHHxk/bnNchtNPBwItaNuBf2FYa
-fKusayDg0V0PWie9NAECOmr0YDQcHg0aUIYfoymzWrRzR5K4WM0dUyViyTgz0KDPSykQwbWWbMIH
-vVLSBwQxs2LpeyTwLUhKBzcY3n9AMGPfOYyDfNqzGr3JE+fsTS2h9HSNfgcR3RaoQZyEpa1Z2LSI
-0uvyomswW7c5/70DF6TjGMg65+P+6/QJmtmF6zFsVty8tyVagC5YTAdM15VrnhsR2bFVxdD/0WRy
-OB4is5ucj8bZIYoYDkzlOjCB76Ps8PCI3gUqjF8djV5GhUECQpqt8+GdtM8GxchQzh0SGgOF1cwH
-Su3OBbnT5rnRM9DXWM8iuOinUcgG06rJ+WRIv5QAYvdnU8ZkBFA6yQhGm0g3sUMch/WpLTeErMB/
-ZCzV/fdXGzYcpqG27pazGwdYeJ5KRnKmfzVYb6+z8Rj5CPEwfvlqhAe3/1Lsv5iuObM6Fi8YgVZz
-HjhL4lnAE1FrmxbCzCxaQYpbUq/Wv4Fre1oCFsSFXdTQyq+xk3QjWSkNkSofFmGDrfnMlERbK53F
-jFNbi1NZ0SVKcxHYCjDAbVnuXktZXSIf1HNZLPFip6W35ojQHmaM+//ASn3bgJvF5KJwGQV0Gf+V
-KXHWRTEVouYMoV5BsUCkkV1iNCRtCTNz6paRwMqacBJrtwBP9YAD0/TP+AlNJpxd884INJ941ETq
-l6nKnso8lvNO45vSigk+qcKXNvfS378W3Zl2V+vYQEW3uH0SzzGMp8MFbo6+x4rU7zBNxPWtT12G
-48iUc3BAfC67RjX2o0pJxZhzLs3Bh0WarntMs6TS5dygE1pVTi1xlBq7iBJnS+loseG+wSagTusV
-qQ/wytCK0upW/hKPlHStaNHFt7mztiKZ8NFQgKmx50rrBDzdeKtVSZcxX7QBJWYlVWxYp9WBdbyv
-JasKR+A2F93M9LnqyEwvR+bjbqlAIKATpwDLSNTgvIy1FXMqYU/n8f6Px/u/2eP9Xw93/zzc/fvw
-6dPD3Z+ctSqI+hwapXHCTygTWysH2SguVZgKv2fop+bjgfBxb+0TkyZ1nI3bmYjrzLfHnwEAAP//
-AwBQSwMEFAAGAAgAAAAhAOjfvg7VAAAA+gAAAA8AAABkcnMvZG93bnJldi54bWxEj0FLAzEQRu9C
-/0OYgpdikxapsjYtVRCFHspWweu4mewubiZLkra7/97Qgx6HN7yPt94OrhNnCrH1rGExVyCIK29a
-rjV8frzePYKICdlg55k0jBRhu5ncrLEw/sIlnY+pFlnCsUANTUp9IWWsGnIY574nzsz64DDlM9TS
-BLxkuevkUqmVdNhyXmiwp5eGqp/jyWmw5WGvZvbrmQ/ufjl7UHI3eqv17XTYPYFINKT/55NfWfR/
-8Kp6N7llAcK+jd+hNSXGREFDjsupGYHc/AIAAP//AwBQSwECLQAUAAYACAAAACEAWuMRZv4AAADi
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQAx
-3V9h0gAAAI8BAAALAAAAAAAAAAAAAAAAAC8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCR
-KFb3rQMAAEgIAAAQAAAAAAAAAAAAAAAAACoCAABkcnMvc2hhcGV4bWwueG1sUEsBAi0AFAAGAAgA
-AAAhAOjfvg7VAAAA+gAAAA8AAAAAAAAAAAAAAAAABQYAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-BAAEAPUAAAAHBwAAAAA=
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:textbox style='mso-rotate-with-shape:t'/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master15_image003.gif b/docs/presentations/EclipseCon2008_LongTalk_files/master15_image003.gif
deleted file mode 100644
index dfff65e..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master15_image003.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master15_image004.gif b/docs/presentations/EclipseCon2008_LongTalk_files/master15_image004.gif
deleted file mode 100644
index 01317e4..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master15_image004.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/master15_stylesheet.css b/docs/presentations/EclipseCon2008_LongTalk_files/master15_stylesheet.css
deleted file mode 100644
index 96a9af3..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/master15_stylesheet.css
+++ /dev/null
@@ -1,340 +0,0 @@
-body

-	{width:534px;

-	height:400px;}

-.TB

-	{mso-special-format:nobullet•;}

-.T

-	{text-align:left;

-	font-family:Arial;

-	mso-bidi-font-family:Arial;

-	mso-hansi-font-family:Arial;

-	color:#2F2672;

-	font-size:133%;}

-.BB

-	{mso-special-format:bullet•;}

-.B

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;

-	mso-margin-left-alt:109;}

-.B1B

-	{mso-special-format:bulletw;

-	font-family:Wingdings;}

-.B1

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:95%;

-	mso-margin-left-alt:395;

-	mso-text-indent-alt:252;}

-.B2B

-	{mso-special-format:bullet§;

-	font-family:Wingdings;}

-.B2

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:85%;

-	mso-margin-left-alt:613;

-	mso-text-indent-alt:504;}

-.B3B

-	{mso-special-format:bullet\F0AA;

-	font-family:Wingdings;}

-.B3

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:76%;

-	mso-margin-left-alt:826;

-	mso-text-indent-alt:685;}

-.B4B

-	{mso-special-format:bullet\F0AB;

-	font-family:Wingdings;}

-.B4

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:76%;

-	mso-margin-left-alt:1081;

-	mso-text-indent-alt:935;}

-.NB

-	{mso-special-format:nobullet•;}

-.N

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N1B

-	{mso-special-format:nobullet•;}

-.N1

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N2B

-	{mso-special-format:nobullet•;}

-.N2

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N3B

-	{mso-special-format:nobullet•;}

-.N3

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N4N

-	{mso-special-format:nobullet•;}

-.N4

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.OB

-	{mso-special-format:nobullet•;}

-.O

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;}

-.O1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.O2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.O3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.O4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.CBB

-	{mso-special-format:nobullet•;}

-.CB

-	{text-align:center;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;}

-.CB1B

-	{mso-special-format:nobulletw;

-	font-family:Wingdings;}

-.CB1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:95%;

-	mso-margin-left-alt:252;

-	mso-text-indent-alt:252;}

-.CB2B

-	{mso-special-format:nobullet§;

-	font-family:Wingdings;}

-.CB2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:85%;

-	mso-margin-left-alt:504;

-	mso-text-indent-alt:504;}

-.CB3B

-	{mso-special-format:nobullet\F0AA;

-	font-family:Wingdings;}

-.CB3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:685;

-	mso-text-indent-alt:685;}

-.CB4B

-	{mso-special-format:nobullet\F0AB;

-	font-family:Wingdings;}

-.CB4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:935;

-	mso-text-indent-alt:935;}

-.CTB

-	{mso-special-format:nobullet•;}

-.CT

-	{text-align:left;

-	font-family:Arial;

-	mso-bidi-font-family:Arial;

-	mso-hansi-font-family:Arial;

-	color:#2F2672;

-	font-size:133%;}

-.HB

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:95%;

-	mso-margin-left-alt:109;}

-.HB1B

-	{mso-special-format:bulletw;

-	font-family:Wingdings;}

-.HB1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:85%;

-	mso-margin-left-alt:395;

-	mso-text-indent-alt:252;}

-.HB2B

-	{mso-special-format:bullet§;

-	font-family:Wingdings;}

-.HB2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:613;

-	mso-text-indent-alt:504;}

-.HB3B

-	{mso-special-format:bullet\F0AA;

-	font-family:Wingdings;}

-.HB3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:66%;

-	mso-margin-left-alt:826;

-	mso-text-indent-alt:685;}

-.HB4B

-	{mso-special-format:bullet\F0AB;

-	font-family:Wingdings;}

-.HB4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:66%;

-	mso-margin-left-alt:1081;

-	mso-text-indent-alt:935;}

-.QB

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:85%;

-	mso-margin-left-alt:109;}

-.QB1B

-	{mso-special-format:bulletw;

-	font-family:Wingdings;}

-.QB1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:395;

-	mso-text-indent-alt:252;}

-.QB2B

-	{mso-special-format:bullet§;

-	font-family:Wingdings;}

-.QB2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:66%;

-	mso-margin-left-alt:613;

-	mso-text-indent-alt:504;}

-.QB3B

-	{mso-special-format:bullet\F0AA;

-	font-family:Wingdings;}

-.QB3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:57%;

-	mso-margin-left-alt:826;

-	mso-text-indent-alt:685;}

-.QB4B

-	{mso-special-format:bullet\F0AB;

-	font-family:Wingdings;}

-.QB4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:57%;

-	mso-margin-left-alt:1081;

-	mso-text-indent-alt:935;}

-.defaultB

-	{mso-special-format:nobullet•;}

-.default

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-ascii-font-family:Arial;

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-weight:normal;

-	font-style:normal;

-	text-decoration:none;

-	text-shadow:none;

-	text-effect:none;

-	mso-fareast-hint:no;

-	layout-flow:horizontal;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;

-	mso-text-raise:0%;

-	mso-line-spacing:"100 0 0";

-	mso-margin-left-alt:0;

-	mso-text-indent-alt:0;

-	mso-char-wrap:1;

-	mso-kinsoku-overflow:1;

-	direction:ltr;

-	mso-word-wrap:1;

-	mso-vertical-align-special:baseline;

-	mso-ansi-language:EN-US;}

-a:link

-	{color:#009999 !important;}

-a:active

-	{color:#333399 !important;}

-a:visited

-	{color:#99CC00 !important;}

diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/outline.html b/docs/presentations/EclipseCon2008_LongTalk_files/outline.html
deleted file mode 100644
index 9f18d6b..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/outline.html
+++ /dev/null
@@ -1,2564 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<script src=script.js></script><script><!--
-if( !(IsWin("PPTOtl")||IsWin("PPTNav")||IsWin("PPTOtlNav")) )
-{
-	obj = GetObj("Main-File")
-	parent.location.href=obj.href
-}
-var gOtlHiliteClr="#ffffff",gOtlNormalClr="#000000",gOtlActiveClr="#ffff00",gSelected="",gTxtState=false,gChildEntryTable=new Array()
-function Load()
-{
-	if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
-	if( g_supportsPPTHTML ) {
-		if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true; return }
-		if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); parent.gOtlNavLoaded=true; return }
-	}
-}
-function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
-function LoadNav( oId,UpdFunc )
-{
-	document.ondragstart=CancelDrag
-	document.onselectstart=CancelDrag
-	document.body.style.margin=2
-	UpdFunc()
-	obj=document.all.item(oId)
-	obj.style.display="block"
-	obj.style.visibility="visible"
-	document.bgColor="threedface"
-	if( parent.frames["PPTNts"] )
-		notesBtn.style.display = ""
-	if( parent.gHasNarration )
-		nb_voiceBorder.style.display = ""
-}
-function LoadOtl()
-{
-	var otl=GetObj("OtlObj")
-	otl.style.display="block"
-	otl.style.visibility="visible"
-	if( gOtlActiveClr == "" ) gOtlActiveClr=document.linkColor
-	if( gOtlHiliteClr == "" ) gOtlHiliteClr=document.fgColor
-	if( gOtlNormalClr == "" )
-		gOtlNormalClr=document.bgColor
-	else
-		document.bgColor=gOtlNormalClr
-	InitArray()
-	if( ObjExists( parent.gCurSld ) ) {
-		ChangeState( parent.gCurSld,gOtlNormalClr,gOtlHiliteClr )
-		gSelected=parent.gCurSld
-	}
-	else gSelected = -1
-	UpdOtl()
-}
-function UpdOtl(){ UpdIdx(parent.gCurSld) }
-function UpdIdx( idx )
-{
-	if( gSelected != idx ) {
-		if( gSelected > 0 )
-			ChangeState( gSelected,gOtlHiliteClr,gOtlNormalClr )
-		if( ObjExists( idx ) ) {
-			gSelected = idx
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-		}
-		else gSelected = -1
-	}
-	if( gTxtState != parent.gOtlTxtExp ) {
-		state = "block"
-		if( !parent.gOtlTxtExp )
-			state="none"
-		for(ii=0; ii<gChildEntryTable.length; ii++) {
-			obj=gChildEntryTable[ii];
-			if( obj.id == null ) continue;
-			if( obj.id.indexOf("PPTC") >= 0 )
-				obj.style.display=state;
-		}
-		gTxtState=parent.gOtlTxtExp
-		if( ObjExists( gSelected ) )
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-	}
-}
-function InitArray()
-{
-	count=0
-	var list=GetTags(document,"DIV");
-	for(ii=0; ii<list.length; ii++) {
-		obj=list.item(ii)
-		if( obj.id == null ) continue
-		if( obj.id.indexOf("PPTC") >= 0 )
-			gChildEntryTable[count++]=obj
-	}
-}
-function ChangeState( idx,fgColor,bgColor )
-{
-	obj=GetObj("PPTL"+idx)
-	obj.style.color=fgColor
-	obj=GetObj("PPTP"+idx)
-	obj.style.backgroundColor=bgColor
-}
-function ChgClr( o,clr ){ if( o.id != "PPTL"+gSelected ) o.style.color=clr }
-function Over( src ){ ChgClr(GetLink(src),gOtlActiveClr) }
-function Out( src ){ ChgClr(GetLink(src),gOtlHiliteClr) }
-function Follow(src){ window.location.href = GetLink(src).href; }
-function ObjExists( ii ) { obj=GetObj("PPTP"+ii ); return( obj ) }
-function GoToSld( href ){ UpdIdx(parent.GetSldNum(href)); parent.GoToSld( href ) }
-function CancelDrag(){ window.event.cancelBubble=true;window.event.returnValue=false}
-function GetLink(src)
-{
-   if(src.tagName=="A") return src
-   else return GetTags(src,"A").item(0)
-}
-function UpdNav()
-{
-	txt = "<center>";
-	if( parent.GetHrefObj( parent.gCurSld ).mOrigVis == 1 )
-		txt += "Slide " + parent.GetCurSldNum() + " of " + parent.GetNumSlds()
-	else
-		txt += "Hidden Slide"
-	txt += "</center>";
-	nav_text.innerHTML = txt;
-	if( !parent.HasPrevSld() )
-		gBtnArr["nb_prev"].Enabled(0)
-	else
-		gBtnArr["nb_prev"].Enabled(1)
-	if( !parent.HasNextSld() )
-		gBtnArr["nb_next"].Enabled(0)
-	else
-		gBtnArr["nb_next"].Enabled(1)
-	gBtnArr["nb_nts"].Enabled(1)
-	gBtnArr["nb_ntsBorder"].SetFlag( parent.gHasNts )
-	gBtnArr["nb_sldshw"].Enabled(1)
-	gBtnArr["nb_voice"].Enabled(1)
-}
-function ExecBtn()
-{
-	if (event.keyCode == 13)
-	{
-		BtnOnDown();
-		BtnOnUp();
-	}
-}
-function UpdOtlNav()
-{
-	gBtnArr["nb_otl"].SetEnabled();
-	if( parent.gOtlOpen )
-		gBtnArr["nb_otlTxt"].Enabled( true );
-	else
-		document.all.item("nb_otlTxtBorder").style.visibility = "hidden";
-}
-
-//--></script>
-<style>
-<!--.PTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;
-	padding-left:2px;
-	font-weight:bold;}
-.CTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;}
-a
-	{color:white;
-	text-decoration:none;}
-ul
-	{color:white;
-	margin-bottom:0px;
-	margin-left:20px;}
-.sldNum
-	{margin-top:5px;
-	color:white;}
-.button
-	{position:absolute;
-	width:32px;
-	height:20px;
-	border-style:solid;
-	border-width:1px;
-	border-color:threedface;}
--->
-</style>
-</head>
-
-<body onload="Load()" style='margin:2px'>
-
-<div id=NavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="ExecBtn()" style='display:none;visibility:hidden'>
-<table id="notesBtn" style='display:none;position:relative;width:55px' align=left cellpadding=0
- cellspacing=0>
- <td nowrap>
- <div id="nb_ntsElem" title="Show/Hide
-Notes" align=center style='position:relative;margin-left:5px;margin-right:5px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt; cursor:default'>
- <img src="notes_flag.gif" id="nb_nts" style='display:none'> &nbsp;Notes</div>
- <div id="nb_ntsBorder" title ="Show/Hide
-Notes" onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=1 style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
-
- </div>
- </td>
-</table>
-
-
-<table style='position:relative;width:70px' align=right cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_sldshwText" title="Full Screen Slide Show" align=center style='position:relative;margin-left:20px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt;cursor:default'>Slide
-Show</div>
- <div id="nb_sldshwBorder" title="Full Screen Slide Show" onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=5 style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_sldshw" style='position:relative;left:-254px'></div>
- </div>
- </td>
- <td>
- <div id="nb_voiceBorder" style='display:none;position:absolute;top:0;left:-40px;
- width:20px;height:20px' onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=4 class=button>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_voice" title="Pause/Play Narration" style='position:
- relative;left:-290px'></div>
- </div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_prevBorder" onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=2 class=button style='left:-30px'>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_prev" title="Previous Slide" style='position:relative;
- left:0px'></div>
- </div>
- <span id="nav_text" style='position:relative;top:3px;width:100px;font-family:
- Arial;color:buttontext;font-size:9pt'></span>
- <div id="nb_nextBorder" onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=3 class=button>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_next" title="Next Slide" style='position:relative;
- left:-90px'></div>
- </div>
- </td>
-</table>
-</div>
-
-<div id=OtlNavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="ExecBtn()" style='display:none;visibility:hidden'>
-
-<table style='position:relative;width:70px' align=left cellpadding=0 cellspacing=0>
- <td nowrap><div title="Show/Hide
-Outline" id="nb_otl" onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=11
- style='position:absolute;top:0%;left:0%;width:100%;height:100%;cursor:default'>
- <div id="nb_otlElem" align=center style='position:relative;padding:3px;font-family:Arial;
- color:buttontext;font-size:9pt'>Outline</div></div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td>
- <div style='position:absolute;left:-18px;width:24px;height:20px;border-style:
- solid;border-width:1px;border-color:threedface' onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=12 id="nb_otlTxtBorder">
- <div style='position:absolute;clip:rect(0px, 22px, 18px, 0px)'><img
- src=buttons.gif id="nb_otlTxt" title="Expand/Collapse Outline"
- style='position:relative;left:-157px'></div>
- </div>
- </td>
-</table>
-
-</div>
-
-<div id=OtlObj style='display:none;visibility:hidden;'>
-
-
-<table width="100%" style='font-family:Arial;font-size:9pt'>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>1</font></div>
-  </td>
-  <td width="100%">
-  <div id=PPTP1 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0001.html');" id=PPTL1>Open Source Meets Open
-  Specifications:<br>
-    Eclipse and the OMG™</a></font></div>
-  <div id=PPTC1 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Long Talk</li>
-   <br>
-   <br>
-   <li>Kenn Hussey</li>
-   <li>Embarcadero Technologies</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>2</font></div>
-  </td>
-  <td>
-  <div id=PPTP2 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0123.html');" id=PPTL2>Contents</a></font></div>
-  <div id=PPTC2 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Why</li>
-   <ul>
-    <li>Open Specifications + Open Source</li>
-   </ul>
-   <br>
-   <li>What</li>
-   <ul>
-    <li>OMG + Eclipse</li>
-   </ul>
-   <br>
-   <li>How</li>
-   <ul>
-    <li>Technology Adoption + Development</li>
-   </ul>
-   <br>
-   <li>Who</li>
-   <ul>
-    <li>Task Force Members + Project Committers</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>3</font></div>
-  </td>
-  <td>
-  <div id=PPTP3 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0032.html');" id=PPTL3>What Are Open
-  Specifications?</a></font></div>
-  <div id=PPTC3 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Specifications created and controlled, in an open and fair way, by an
-       association or standardization body aimed at supporting interoperability
-       and interchangeability</li>
-   <br>
-   <br>
-   <li>Open specifications are not controlled by a single company or individual
-       or by a group with discriminatory membership criteria</li>
-   <br>
-   <br>
-   <li>Specifications should not be confused with standards</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>4</font></div>
-  </td>
-  <td>
-  <div id=PPTP4 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0031.html');" id=PPTL4>What is Open Source?</a></font></div>
-  <div id=PPTC4 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>A set of principles and practices on how to write software</li>
-   <br>
-   <br>
-   <li>According to the Open Source Initiative, terms must include:</li>
-   <ul>
-    <li>Free Redistribution</li>
-    <li>Source Code</li>
-    <li>Derived Works</li>
-    <li>Integrity of The AuthorsÂ’ Source Code</li>
-    <li>No Discrimination Against Persons or Groups</li>
-    <li>No Discrimination Against Fields of Endeavor</li>
-    <li>Distribution of License</li>
-    <li>License Must Not Be Specific to a Product</li>
-    <li>License Must Not Restrict Other Software</li>
-    <li>License Must Be Technology-Neutral</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>5</font></div>
-  </td>
-  <td>
-  <div id=PPTP5 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0033.html');" id=PPTL5>Open Specifications +
-  Open Source</a></font></div>
-  <div id=PPTC5 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Industry standards lead to commoditization</li>
-   <ul>
-    <li>open specifications are interchange standards</li>
-   </ul>
-   <br>
-   <li>Reference implementations offer competitive advantage</li>
-   <ul>
-    <li>development cost savings</li>
-    <li>ease of gaining market share vs. closed platforms</li>
-    <li>reference platform influences adopters</li>
-   </ul>
-   <br>
-   <li>Reference implementations change rules for success</li>
-   <ul>
-    <li>shift towards solution-oriented products</li>
-    <li>leverage common infrastructure to create specialized products</li>
-    <li>ability to integrate becomes an opportunity as increased platform
-        adoption leads to more things to integrate</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>6</font></div>
-  </td>
-  <td>
-  <div id=PPTP6 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0154.html');" id=PPTL6>Contents</a></font></div>
-  <div id=PPTC6 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Why</li>
-   <ul>
-    <li>Open Specifications + Open Source</li>
-   </ul>
-   <br>
-   <li>What</li>
-   <ul>
-    <li>OMG + Eclipse</li>
-   </ul>
-   <br>
-   <li>How</li>
-   <ul>
-    <li>Technology Adoption + Development</li>
-   </ul>
-   <br>
-   <li>Who</li>
-   <ul>
-    <li>Task Force Members + Project Committers</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>7</font></div>
-  </td>
-  <td>
-  <div id=PPTP7 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0034.html');" id=PPTL7>What is the OMG?</a></font></div>
-  <div id=PPTC7 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The Object Management Group™ is an international, open membership,
-       not-for-profit computer industry consortium</li>
-   <br>
-   <br>
-   <li>OMG Task Forces develop enterprise integration standards for a wide
-       range of technologies, including:</li>
-   <ul>
-    <li>Real-time</li>
-    <li>Embedded and Specialized Systems</li>
-    <li>Analysis &amp; Design</li>
-    <li>Architecture-Driven Modernization</li>
-    <li>Middleware</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>8</font></div>
-  </td>
-  <td>
-  <div id=PPTP8 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0047.html');" id=PPTL8>Business Process
-  Definition Metamodel</a></font></div>
-  <div id=PPTC8 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>BPDM provides the capability to represent and model business processes
-       independent of notation or methodology, thus bringing these different
-       approaches together into a cohesive capability.</li>
-   <br>
-   <br>
-   <li>Version 1.0 finalization underway</li>
-   <br>
-   <br>
-   <li>FTF chaired by Antoine Lonjon (MEGA International)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>9</font></div>
-  </td>
-  <td>
-  <div id=PPTP9 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0048.html');" id=PPTL9>Business Process
-  Modeling Notation</a></font></div>
-  <div id=PPTC9 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>BPMN provides a standard visualization mechanism for business processes
-       defined in an execution-optimized business process language</li>
-   <br>
-   <br>
-   <li>Version 1.2 revision underway</li>
-   <br>
-   <br>
-   <li>RTF chaired by Stephen White (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>10</font></div>
-  </td>
-  <td>
-  <div id=PPTP10 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0049.html');" id=PPTL10>Business Process Model
-  and Notation</a></font></div>
-  <div id=PPTC10 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>BPMN2 will reconcile the BPMN and BPDM standards into a single language
-       that defines the notation, metamodel, and interchange format for
-       Business Process Diagrams (BPD) and represent the amalgamation of best
-       practices within the business modeling community</li>
-   <br>
-   <br>
-   <li>RFP response submission underway</li>
-   <br>
-   <br>
-   <li>Submission teams chaired by Stephen White (IBM) and Antoine Lonjon (MEGA
-       International)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>11</font></div>
-  </td>
-  <td>
-  <div id=PPTP11 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0050.html');" id=PPTL11>Diagram Definition</a></font></div>
-  <div id=PPTC11 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>DD will enable the definition and exchange of diagram syntax definitions
-       and their bindings to MOF-based abstract syntaxes</li>
-   <br>
-   <br>
-   <li>RFP response submission underway</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>12</font></div>
-  </td>
-  <td>
-  <div id=PPTP12 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0051.html');" id=PPTL12>Information Management
-  Metamodel</a></font></div>
-  <div id=PPTC12 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>IMM will enable modeling and interchange of the complete information
-       lifecycle as well as traceability among OO, Data, and XML models</li>
-   <br>
-   <br>
-   <li>RFP response submission underway</li>
-   <br>
-   <br>
-   <li>Submission team chaired by Harsh Sharma (MetLife)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>13</font></div>
-  </td>
-  <td>
-  <div id=PPTP13 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0053.html');" id=PPTL13>Meta Object Facility</a></font></div>
-  <div id=PPTC13 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>MOF is an extensible model driven integration framework for defining,
-       manipulating and integrating metadata™ and data in a platform
-       independent manner</li>
-   <br>
-   <br>
-   <li>Version 2.1 revision underway</li>
-   <br>
-   <br>
-   <li>RTF co-chaired by Jim Amsden (IBM), Pete Rivett (Adaptive), and Manfred
-       Koethe (88solutions)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>14</font></div>
-  </td>
-  <td>
-  <div id=PPTP14 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0068.html');" id=PPTL14>MOF Models to Text
-  Transformation Language</a></font></div>
-  <div id=PPTC14 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>MOF M2T addresses how to translate a model to various text artifacts
-       such as code, deployment specifications, reports, documents, etc.</li>
-   <br>
-   <br>
-   <li>Version 1.0 available</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>15</font></div>
-  </td>
-  <td>
-  <div id=PPTP15 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0052.html');" id=PPTL15>MOF 2.0 Facility and
-  Object Lifecycle</a></font></div>
-  <div id=PPTC15 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>MOF FOL separates out those aspects of MOF related to communicating with
-       and managing the &quot;facilities&quot; responsible for providing the
-       capabilities covered by the other MOF specifications</li>
-   <br>
-   <br>
-   <li>Version 1.0 finalization underway</li>
-   <br>
-   <br>
-   <li>FTF chaired by Pete Rivett (Adaptive)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>16</font></div>
-  </td>
-  <td>
-  <div id=PPTP16 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0054.html');" id=PPTL16>MOF Queries / Views /
-  Transforms</a></font></div>
-  <div id=PPTC16 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>MOF QVT addresses a technology neutral part of MOF and pertains to
-       queries on models, views on metamodels, and transformations of models</li>
-   <br>
-   <br>
-   <li>Version 1.1 revision underway</li>
-   <br>
-   <br>
-   <li>RTF co-chaired by Mariano Belaunde (France Telecom) and Sreedhar Reddy (TCS)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>17</font></div>
-  </td>
-  <td>
-  <div id=PPTP17 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0056.html');" id=PPTL17>Object Constraint
-  Language</a></font></div>
-  <div id=PPTC17 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>OCL specifies a formal language used to describe expressions on UML
-       models; these expressions typically specify invariant conditions that
-       must hold for the system being modeled or queries over objects described
-       in a model</li>
-   <br>
-   <br>
-   <li>Version 2.1 revision underway</li>
-   <br>
-   <br>
-   <li>RTF chaired by Mariano Belaunde (France Telecom)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>18</font></div>
-  </td>
-  <td>
-  <div id=PPTP18 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0055.html');" id=PPTL18>Ontology Definition
-  Metamodel</a></font></div>
-  <div id=PPTC18 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>ODM represents the foundation for an extremely important set of enabling
-       capabilities for Model Driven Architecture® (MDA®) based software
-       engineering, namely the formal grounding for representation, management,
-       interoperability, and application of business semantics</li>
-   <br>
-   <br>
-   <li>Version 1.0 finalization underway</li>
-   <br>
-   <br>
-   <li>FTF co-chaired by Evan Wallace (NIST) and Elisa Kendall (Sandpiper
-       Software)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>19</font></div>
-  </td>
-  <td>
-  <div id=PPTP19 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0057.html');" id=PPTL19>Production Rule
-  Representation</a></font></div>
-  <div id=PPTC19 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>PRR provides a standard production rule representation that is
-       compatible with rule engine vendors' definitions of production rules and
-       can be used for interchange of business rules amongst rule modeling
-       tools (and other tools that support rule modeling as a function of some
-       other task)</li>
-   <br>
-   <br>
-   <li>Version 1.0 finalization underway</li>
-   <br>
-   <br>
-   <li>FTF chaired by Christian de Sainte Marie (ILOG)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>20</font></div>
-  </td>
-  <td>
-  <div id=PPTP20 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0058.html');" id=PPTL20>Semantics of Business
-  Vocabulary and Business Rules</a></font></div>
-  <div id=PPTC20 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>SBVR defines the semantics of business vocabulary, business facts, and
-       business rules; as well as an XMI schema for the interchange of business
-       vocabularies and business rules among organizations and between software
-       tools</li>
-   <br>
-   <br>
-   <li>Version 1.1 revision underway</li>
-   <br>
-   <br>
-   <li>RTF co-chaired by Cheryl Estep (Business Rules Group) and Donald Chapin
-       (Business Semantics)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>21</font></div>
-  </td>
-  <td>
-  <div id=PPTP21 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0059.html');" id=PPTL21>Software Process
-  Engineering Metamodel</a></font></div>
-  <div id=PPTC21 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>SPEM is used to describe a concrete software development process or a
-       family of related software development processes</li>
-   <br>
-   <br>
-   <li>Version 2.0 adopted</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>22</font></div>
-  </td>
-  <td>
-  <div id=PPTP22 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0060.html');" id=PPTL22>OMG Systems Modeling
-  Language</a></font></div>
-  <div id=PPTC22 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>SysML is a general-purpose graphical modeling language for specifying,
-       analyzing, designing, and verifying complex systems that may include
-       hardware, software, information, personnel, procedures, and facilities</li>
-   <br>
-   <br>
-   <li>Version 1.1 revision underway</li>
-   <br>
-   <br>
-   <li>RTF co-chaired by Sanford Friedenthal (Lockheed Martin) and Roger
-       Burkhart (Deere &amp; Company)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>23</font></div>
-  </td>
-  <td>
-  <div id=PPTP23 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0061.html');" id=PPTL23>Unified Modeling
-  Language</a></font></div>
-  <div id=PPTC23 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML is a graphical language for visualizing, specifying, constructing,
-       and documenting the artifacts of distributed object systems</li>
-   <br>
-   <br>
-   <li>Version 2.2 revision underway</li>
-   <br>
-   <br>
-   <li>RTF co-chaired by Bran Selic (IBM) and Pete Rivett (Adaptive)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>24</font></div>
-  </td>
-  <td>
-  <div id=PPTP24 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0062.html');" id=PPTL24>UML Diagram
-  Interchange</a></font></div>
-  <div id=PPTC24 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML DI enables a smooth and seamless exchange of documents compliant to
-       the UML standard (referred to as UML models) between different software
-       tools</li>
-   <br>
-   <br>
-   <li>Version 1.1 revision underway</li>
-   <br>
-   <br>
-   <li>RTF chaired by Manfred Koethe (88solutions)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>25</font></div>
-  </td>
-  <td>
-  <div id=PPTP25 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0063.html');" id=PPTL25>UML Human-Usable
-  Textual Notation</a></font></div>
-  <div id=PPTC25 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>HUTN specifies a notation for expressing other specifications in terms
-       of the UML Profile for Enterprise Distributed Computing and its
-       companion UML Profile for CORBA</li>
-   <br>
-   <br>
-   <li>Version 1.0 available</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>26</font></div>
-  </td>
-  <td>
-  <div id=PPTP26 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0064.html');" id=PPTL26>UML Profile for
-  Modeling and Analysis of Real-time and Embedded Systems</a></font></div>
-  <div id=PPTC26 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>MARTE adds capabilities to UML for model-driven development of Real Time
-       and Embedded Systems (RTES); it provides support for specification,
-       design, and verification/validation stages</li>
-   <br>
-   <br>
-   <li>Version 1.0 finalization underway</li>
-   <br>
-   <br>
-   <li>FTF co-chaired by Sébastien Gerard (CEA), Bran Selic (IBM), and Laurent
-       Rioux (Thales)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>27</font></div>
-  </td>
-  <td>
-  <div id=PPTP27 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0065.html');" id=PPTL27>UML Testing Profile</a></font></div>
-  <div id=PPTC27 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The UML Testing Profile defines a language for designing, visualizing,
-       specifying, analyzing, constructing and documenting the artifacts of
-       test systems</li>
-   <br>
-   <br>
-   <li>Version 2.0 revision underway</li>
-   <br>
-   <br>
-   <li>RTF co-chaired by Ina Schieferdecker (Fraunhofer FOKUS) and Serge Lucio
-       (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>28</font></div>
-  </td>
-  <td>
-  <div id=PPTP28 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0066.html');" id=PPTL28>Workflow Management
-  Facility (WMF)</a></font></div>
-  <div id=PPTC28 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>WMF provides standard interfaces for workflow execution control,
-       monitoring, and interoperability between workflows defined and managed
-       independently of each other</li>
-   <br>
-   <br>
-   <li>Version 1.2 available</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>29</font></div>
-  </td>
-  <td>
-  <div id=PPTP29 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0067.html');" id=PPTL29>XML Metadata
-  Interchange</a></font></div>
-  <div id=PPTC29 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>XMI is a model driven XML Integration framework for defining,
-       interchanging, manipulating and integrating XML data and objects</li>
-   <br>
-   <br>
-   <li>Version 2.2 revision underway</li>
-   <br>
-   <br>
-   <li>RTF chaired by Manfred Koethe (88solutions) and Jim Amsden (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>30</font></div>
-  </td>
-  <td>
-  <div id=PPTP30 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0035.html');" id=PPTL30>What is Eclipse?</a></font></div>
-  <div id=PPTC30 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Eclipse is an open source community whose projects are focused on
-       building an extensible development platform, runtimes and application
-       frameworks for building, deploying and managing software across the
-       entire software lifecycle</li>
-   <br>
-   <br>
-   <li>The Eclipse projects can be conceptually organized into seven different
-       &quot;pillars&quot; or categories:</li>
-   <ul>
-    <li>Enterprise Development</li>
-    <li>Embedded and Device Development</li>
-    <li>Rich Client Platform</li>
-    <li>Rich Internet Applications</li>
-    <li>Application Frameworks</li>
-    <li>Application Lifecycle Management (ALM)</li>
-    <li>Service Oriented Architecture (SOA)</li>
-   </ul>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>31</font></div>
-  </td>
-  <td>
-  <div id=PPTP31 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0069.html');" id=PPTL31>Data Tools Platform</a></font></div>
-  <div id=PPTC31 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>DTP provides extensible frameworks and exemplary tools enabling the
-       development of offerings specific to particular data-centric
-       technologies</li>
-   <br>
-   <br>
-   <li>Mature top-level project</li>
-   <br>
-   <br>
-   <li>Lead is John Graham (Sybase)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>32</font></div>
-  </td>
-  <td>
-  <div id=PPTP32 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0070.html');" id=PPTL32>Model Base</a></font></div>
-  <div id=PPTC32 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Model Base is the foundation of DTP and consists of the database
-       definition model, SQL model, SQL query model, and SQL XML query model</li>
-   <br>
-   <br>
-   <li>Mature sub-project of DTP</li>
-   <br>
-   <br>
-   <li>Lead is Der Ping Chou (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>33</font></div>
-  </td>
-  <td>
-  <div id=PPTP33 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0071.html');" id=PPTL33>Eclipse Modeling
-  Project</a></font></div>
-  <div id=PPTC33 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>EMP focuses on the evolution and promotion of model-based development
-       technologies within the Eclipse community by providing a unified set of
-       modeling frameworks, tooling, and standards implementations</li>
-   <br>
-   <br>
-   <li>Mature top-level project</li>
-   <br>
-   <br>
-   <li>Leads are Richard Gronback (Borland) and Ed Merks (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>34</font></div>
-  </td>
-  <td>
-  <div id=PPTP34 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0075.html');" id=PPTL34>Eclipse Modeling
-  Framework</a></font></div>
-  <div id=PPTC34 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>EMF is a framework and code generation facility for building tools and
-       other applications based on a structured data model</li>
-   <br>
-   <br>
-   <li>Mature sub-project of EMP</li>
-   <br>
-   <br>
-   <li>Lead is Ed Merks (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>35</font></div>
-  </td>
-  <td>
-  <div id=PPTP35 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0073.html');" id=PPTL35>Eclipse Modeling
-  Framework Technology</a></font></div>
-  <div id=PPTC35 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>EMFT exists to incubate new technologies that extend or complement EMF</li>
-   <br>
-   <br>
-   <li>Incubating sub-project of EMP</li>
-   <br>
-   <br>
-   <li>Lead is Ed Merks (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>36</font></div>
-  </td>
-  <td>
-  <div id=PPTP36 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0074.html');" id=PPTL36>Ecore Tools</a></font></div>
-  <div id=PPTC36 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Ecore Tools provides a complete environment to create, edit and maintain
-       Ecore models</li>
-   <br>
-   <br>
-   <li>Incubating component of EMFT</li>
-   <br>
-   <br>
-   <li>Lead is David Sciamma (Anywhere Technologies)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>37</font></div>
-  </td>
-  <td>
-  <div id=PPTP37 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0076.html');" id=PPTL37>Generative Modeling
-  Technologies</a></font></div>
-  <div id=PPTC37 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>GMT aims to produce a set of prototypes in the area of Model Driven
-       Engineering (MDE); GMT is the official research incubator project of EMP</li>
-   <br>
-   <br>
-   <li>Incubating (non-conforming) sub-project of EMP</li>
-   <br>
-   <br>
-   <li>Lead is Jean Bezivin (Université de Nantes)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>38</font></div>
-  </td>
-  <td>
-  <div id=PPTP38 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0078.html');" id=PPTL38>UMLX</a></font></div>
-  <div id=PPTC38 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UMLX is a concrete graphical syntax to complement the MOF QVT model
-       transformation language</li>
-   <br>
-   <br>
-   <li>Incubating (non-conforming) component of GMT</li>
-   <br>
-   <br>
-   <li>Lead is Ed Willink (Thales)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>39</font></div>
-  </td>
-  <td>
-  <div id=PPTP39 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0099.html');" id=PPTL39>Graphical Modeling
-  Framework</a></font></div>
-  <div id=PPTC39 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>GMF provides a generative component and runtime infrastructure for
-       developing graphical editors based on EMF and GEF</li>
-   <br>
-   <br>
-   <li>Mature sub-project of EMP</li>
-   <br>
-   <br>
-   <li>Lead is Richard Gronback (Borland)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>40</font></div>
-  </td>
-  <td>
-  <div id=PPTP40 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0077.html');" id=PPTL40>Model to Model
-  Transformations</a></font></div>
-  <div id=PPTC40 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>M2M will deliver a framework for model-to-model transformation languages</li>
-   <br>
-   <br>
-   <li>Incubating sub-project of EMP</li>
-   <br>
-   <br>
-   <li>Lead is Frédéric Jouault (Université de Nantes)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>41</font></div>
-  </td>
-  <td>
-  <div id=PPTP41 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0081.html');" id=PPTL41>Model to Text
-  Transformations</a></font></div>
-  <div id=PPTC41 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>M2T focuses on the generation of textual artifacts from models; its
-       purpose is to provide implementations of industry standard and de facto
-       Eclipse standard model-to-text engines</li>
-   <br>
-   <br>
-   <li>Incubating sub-project of EMP</li>
-   <br>
-   <br>
-   <li>Lead is Paul Elder (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>42</font></div>
-  </td>
-  <td>
-  <div id=PPTP42 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0082.html');" id=PPTL42>Model Development
-  Tools</a></font></div>
-  <div id=PPTC42 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>MDT provides implementations of industry standard metamodels and
-       exemplary tools for developing models based on those metamodels</li>
-   <br>
-   <br>
-   <li>Incubating sub-project of EMP</li>
-   <br>
-   <br>
-   <li>Lead is Kenn Hussey (Embarcadero Technologies)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>43</font></div>
-  </td>
-  <td>
-  <div id=PPTP43 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0100.html');" id=PPTL43>Business Process Model
-  and Notation</a></font></div>
-  <div id=PPTC43 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>BPMN2 will provide a metamodel implementation based on the forthcoming
-       Business Process Model and Notation (BPMN 2.0) OMG specification</li>
-   <br>
-   <br>
-   <li>Incubating component of MDT</li>
-   <br>
-   <br>
-   <li>Lead is Kenn Hussey (Embarcadero Technologies)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>44</font></div>
-  </td>
-  <td>
-  <div id=PPTP44 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0083.html');" id=PPTL44>EMF Ontology
-  Definition Metamodel</a></font></div>
-  <div id=PPTC44 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>EODM is an implementation of RDF™(S)/OWL metamodels of the Ontology
-       Definition Metamodel (ODM) using EMF with additional parsing, inference,
-       model transformation and editing functions</li>
-   <br>
-   <br>
-   <li>Incubating component of MDT</li>
-   <br>
-   <br>
-   <li>Lead is Lei Zhang (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>45</font></div>
-  </td>
-  <td>
-  <div id=PPTP45 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0084.html');" id=PPTL45>Information Management
-  Metamodel</a></font></div>
-  <div id=PPTC45 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>IMM will provide metamodel/profile implementations based on the
-       forthcoming Information Management Metamodel (IMM) OMG specification</li>
-   <br>
-   <br>
-   <li>Incubating component of MDT</li>
-   <br>
-   <br>
-   <li>Lead is Kenn Hussey (Embarcadero Technologies)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>46</font></div>
-  </td>
-  <td>
-  <div id=PPTP46 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0085.html');" id=PPTL46>Object Constraint
-  Language</a></font></div>
-  <div id=PPTC46 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>OCL is an implementation of the Object Constraint Language (OCL) OMG
-       specification for EMF-based models</li>
-   <br>
-   <br>
-   <li>Mature component of MDT</li>
-   <br>
-   <br>
-   <li>Lead is Christian Damus (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>47</font></div>
-  </td>
-  <td>
-  <div id=PPTP47 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0086.html');" id=PPTL47>OCL Tools</a></font></div>
-  <div id=PPTC47 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>OCL Tools aims to provide first-class support for modelers working with
-       specifications containing expressions written in OCL</li>
-   <br>
-   <br>
-   <li>Incubating component of MDT</li>
-   <br>
-   <br>
-   <li>Lead is Miguel Garcia (Hamburg University of Technology)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>48</font></div>
-  </td>
-  <td>
-  <div id=PPTP48 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0087.html');" id=PPTL48>Semantics for Business
-  Vocabulary and Rules</a></font></div>
-  <div id=PPTC48 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>SBVR will provide a metamodel implementation and sample tools based on
-       the adopted Semantics of Business Vocabulary and Business Rules (SBVR)
-       OMG specification</li>
-   <br>
-   <br>
-   <li>Incubating component of MDT</li>
-   <br>
-   <br>
-   <li>Lead is Dave Carlson (XML Modeling)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>49</font></div>
-  </td>
-  <td>
-  <div id=PPTP49 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0088.html');" id=PPTL49>Unified Modeling
-  Language 2.x</a></font></div>
-  <div id=PPTC49 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML2 is an EMF-based implementation of the UML 2.x metamodel for the
-       Eclipse platform</li>
-   <br>
-   <br>
-   <li>Mature component of MDT</li>
-   <br>
-   <br>
-   <li>Lead is James Bruck (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>50</font></div>
-  </td>
-  <td>
-  <div id=PPTP50 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0089.html');" id=PPTL50>UML2 Tools</a></font></div>
-  <div id=PPTC50 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML2 Tools is a set of GMF-based editors for viewing and editing UML
-       models</li>
-   <br>
-   <br>
-   <li>Incubating component of MDT</li>
-   <br>
-   <br>
-   <li>Lead is Michael Golubev (Borland)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>51</font></div>
-  </td>
-  <td>
-  <div id=PPTP51 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0090.html');" id=PPTL51>XML Schema Infoset
-  Model</a></font></div>
-  <div id=PPTC51 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>XSD is a library that provides an API for manipulating the components of
-       an XML Schema as described by the W3C XML Schema specifications, as well
-       as an API for manipulating the DOM™-accessible representation of XML</li>
-   <br>
-   <br>
-   <li>Mature component of MDT</li>
-   <br>
-   <br>
-   <li>Lead is Ed Merks (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>52</font></div>
-  </td>
-  <td>
-  <div id=PPTP52 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0091.html');" id=PPTL52>Textual Modeling
-  Framework</a></font></div>
-  <div id=PPTC52 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>TMF will provide a parser that instantiates a model from a textual
-       representation based on a specified metamodel and a feature-rich Eclipse
-       editor that is aware of the corresponding specified concrete syntax</li>
-   <br>
-   <br>
-   <li>Incubating (non-conforming) sub-project of EMP</li>
-   <br>
-   <br>
-   <li>Leads are Frédéric Jouault (Université de Nantes) and Sven Efftinge (itemis
-       AG)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>53</font></div>
-  </td>
-  <td>
-  <div id=PPTP53 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0092.html');" id=PPTL53>Eclipse Technology
-  Project</a></font></div>
-  <div id=PPTC53 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>ETP encapsulates three separate activity streams, Research, Incubators,
-       and Education, all overseen by a single Project Management Committee
-       (PMC)</li>
-   <br>
-   <br>
-   <li>Mature top-level project</li>
-   <br>
-   <br>
-   <li>Lead is Bjorn Freeman-Benson (Eclipse Foundation)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>54</font></div>
-  </td>
-  <td>
-  <div id=PPTP54 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0093.html');" id=PPTL54>Eclipse Process
-  Framework</a></font></div>
-  <div id=PPTC54 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>EPF aims at producing a customizable software process engineering
-       framework, with exemplary process content and tools, supporting a broad
-       variety of project types and development styles</li>
-   <br>
-   <br>
-   <li>Mature sub-project of ETP</li>
-   <br>
-   <br>
-   <li>Lead is Per Kroll (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>55</font></div>
-  </td>
-  <td>
-  <div id=PPTP55 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0094.html');" id=PPTL55>Java Workflow Tooling</a></font></div>
-  <div id=PPTC55 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>JWT aims to build design time, development time, and runtime workflow
-       tools in order to provide a complete, flexible, interoperable Business
-       Process Management (BPM) platform</li>
-   <br>
-   <br>
-   <li>Incubating sub-project of ETP</li>
-   <br>
-   <br>
-   <li>Leads are Marc Dutoo (Open Wide) and Florian Lautenbacher (University of
-       Augsburg)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>56</font></div>
-  </td>
-  <td>
-  <div id=PPTP56 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0095.html');" id=PPTL56>SOA Tools Platform</a></font></div>
-  <div id=PPTC56 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>STP provides frameworks and exemplary, extensible tools that enable the
-       design, configuration, assembly, deployment, monitoring, and management
-       of software designed around a Service Oriented Architecture (SOA)</li>
-   <br>
-   <br>
-   <li>Incubating top-level project</li>
-   <br>
-   <br>
-   <li>Lead is Oisin Hurley (Iona)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>57</font></div>
-  </td>
-  <td>
-  <div id=PPTP57 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0096.html');" id=PPTL57>STP BPMN Modeler</a></font></div>
-  <div id=PPTC57 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>BPMN provides an editor and a set of tools to model business process
-       diagrams using BPMN notation</li>
-   <br>
-   <br>
-   <li>Incubating sub-project of STP</li>
-   <br>
-   <br>
-   <li>Lead is Hugues Malphettes (Intalio)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>58</font></div>
-  </td>
-  <td>
-  <div id=PPTP58 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0097.html');" id=PPTL58>Test and Performance
-  Tools Platform (TPTP)</a></font></div>
-  <div id=PPTC58 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>TPTP provides an open platform supplying powerful frameworks and
-       services that allow software developers to build unique test and
-       performance tools, both open source and commercial, that can be easily
-       integrated with the platform and with other tools</li>
-   <br>
-   <br>
-   <li>Mature top-level project</li>
-   <br>
-   <br>
-   <li>Lead is Oliver Cole (OC Systems)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>59</font></div>
-  </td>
-  <td>
-  <div id=PPTP59 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0098.html');" id=PPTL59>Testing Tools</a></font></div>
-  <div id=PPTC59 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Testing Tools provides frameworks for building testing tools by
-       extending TPTP with testing editors, deployment and execution of tests,
-       execution environments and associated execution history analysis and
-       reporting</li>
-   <br>
-   <br>
-   <li>Mature sub-project of TPTP</li>
-   <br>
-   <br>
-   <li>Lead is Paul Slauenwhite (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>60</font></div>
-  </td>
-  <td>
-  <div id=PPTP60 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0101.html');" id=PPTL60>Web Tools Platform</a></font></div>
-  <div id=PPTC60 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>WTP extends the Eclipse platform with tools for developing Web and Java
-       EE applications, including source and graphical editors for a variety of
-       languages, wizards and built-in applications to simplify development,
-       and tools and APIs to support deploying, running, and testing
-       applications</li>
-   <br>
-   <br>
-   <li>Mature top-level project</li>
-   <br>
-   <br>
-   <li>Lead is David Williams (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>61</font></div>
-  </td>
-  <td>
-  <div id=PPTP61 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0102.html');" id=PPTL61>Source Editing</a></font></div>
-  <div id=PPTC61 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Source Editing provides source editing support for typical
-       &quot;web&quot; languages and the mixing of them, with a focus on making
-       the editors extensible and easily reusable</li>
-   <br>
-   <br>
-   <li>Mature sub-project of WTP</li>
-   <br>
-   <br>
-   <li>Lead is Nitin Dahyabhai (IBM)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>62</font></div>
-  </td>
-  <td>
-  <div id=PPTP62 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0040.html');" id=PPTL62>OMG + Eclipse</a></font></div>
-  <div id=PPTC62 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Eclipse is a contributing member of the OMG, which means that it has
-       voting rights in both the Domain Technical Committee (DTC) and Platform
-       Technical Committee (PTC)</li>
-   <br>
-   <br>
-   <li>Natural intersection between Eclipse project categories and OMG
-       technology areas</li>
-   <br>
-   <br>
-   <li>Eclipse projects/sub-projects/components not considered reference
-       implementations of OMG specifications</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>63</font></div>
-  </td>
-  <td>
-  <div id=PPTP63 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0155.html');" id=PPTL63>Contents</a></font></div>
-  <div id=PPTC63 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Why</li>
-   <ul>
-    <li>Open Specifications + Open Source</li>
-   </ul>
-   <br>
-   <li>What</li>
-   <ul>
-    <li>OMG + Eclipse</li>
-   </ul>
-   <br>
-   <li>How</li>
-   <ul>
-    <li>Technology Adoption + Development</li>
-   </ul>
-   <br>
-   <li>Who</li>
-   <ul>
-    <li>Task Force Members + Project Committers</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>64</font></div>
-  </td>
-  <td>
-  <div id=PPTP64 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0037.html');" id=PPTL64>OMG Technology
-  Adoption Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>65</font></div>
-  </td>
-  <td>
-  <div id=PPTP65 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0103.html');" id=PPTL65>OMG Request For
-  Information Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>66</font></div>
-  </td>
-  <td>
-  <div id=PPTP66 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0104.html');" id=PPTL66>OMG Request For
-  Proposal Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>67</font></div>
-  </td>
-  <td>
-  <div id=PPTP67 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0105.html');" id=PPTL67>OMG Request For
-  Proposal Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>68</font></div>
-  </td>
-  <td>
-  <div id=PPTP68 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0106.html');" id=PPTL68>OMG Specification
-  Adoption Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>69</font></div>
-  </td>
-  <td>
-  <div id=PPTP69 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0107.html');" id=PPTL69>OMG Specification
-  Finalization Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>70</font></div>
-  </td>
-  <td>
-  <div id=PPTP70 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0108.html');" id=PPTL70>OMG Specification
-  Revision Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>71</font></div>
-  </td>
-  <td>
-  <div id=PPTP71 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0039.html');" id=PPTL71>Eclipse Development
-  Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>72</font></div>
-  </td>
-  <td>
-  <div id=PPTP72 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0114.html');" id=PPTL72>Eclipse Project Review
-  Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>73</font></div>
-  </td>
-  <td>
-  <div id=PPTP73 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0109.html');" id=PPTL73>Eclipse Project
-  Declaration Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>74</font></div>
-  </td>
-  <td>
-  <div id=PPTP74 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0110.html');" id=PPTL74>Eclipse Project
-  Creation Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>75</font></div>
-  </td>
-  <td>
-  <div id=PPTP75 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0111.html');" id=PPTL75>Eclipse Project
-  Graduation Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>76</font></div>
-  </td>
-  <td>
-  <div id=PPTP76 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0112.html');" id=PPTL76>Eclipse Project
-  Promotion Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>77</font></div>
-  </td>
-  <td>
-  <div id=PPTP77 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0113.html');" id=PPTL77>Eclipse Project
-  Termination Process</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>78</font></div>
-  </td>
-  <td>
-  <div id=PPTP78 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0124.html');" id=PPTL78>Technology Adoption +
-  Development</a></font></div>
-  <div id=PPTC78 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Both Eclipse and the OMG operate on a principle of one organization, one
-       vote</li>
-   <br>
-   <br>
-   <li>Obvious similarities between Eclipse and OMG processes</li>
-   <ul>
-    <li>Project Review ~ Specification Adoption</li>
-    <li>Project Creation ~ Request For Proposal</li>
-    <li>Project Graduation ~ Specification Finalization</li>
-    <li>Project Promotion ~ Specification Revision</li>
-   </ul>
-   <br>
-   <li>Releases of Eclipse projects are not synchronized with availability OMG
-       specification versions</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>79</font></div>
-  </td>
-  <td>
-  <div id=PPTP79 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0156.html');" id=PPTL79>Contents</a></font></div>
-  <div id=PPTC79 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Why</li>
-   <ul>
-    <li>Open Specifications + Open Source</li>
-   </ul>
-   <br>
-   <li>What</li>
-   <ul>
-    <li>OMG + Eclipse</li>
-   </ul>
-   <br>
-   <li>How</li>
-   <ul>
-    <li>Technology Adoption + Development</li>
-   </ul>
-   <br>
-   <li>Who</li>
-   <ul>
-    <li>Task Force Members + Project Committers</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>80</font></div>
-  </td>
-  <td>
-  <div id=PPTP80 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0036.html');" id=PPTL80>OMG Membership Matrix</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>81</font></div>
-  </td>
-  <td>
-  <div id=PPTP81 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0117.html');" id=PPTL81>OMG Membership Matrix</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>82</font></div>
-  </td>
-  <td>
-  <div id=PPTP82 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0038.html');" id=PPTL82>Eclipse Membership</a></font></div>
-  <div id=PPTC82 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Associate</li>
-   <ul>
-    <li>organizations that are a non-for-profit organization, standards body,
-        university, research institute or publisher which participates in the
-        development of the Eclipse ecosystem</li>
-   </ul>
-   <br>
-   <li>Add-in Provider</li>
-   <ul>
-    <li>organizations that view Eclipse as an important part of their corporate
-        and product strategy</li>
-   </ul>
-   <br>
-   <li>Strategic</li>
-   <ul>
-    <li>organizations that view Eclipse as a strategic platform and are
-        investing developer and other resources to further develop the Eclipse
-        technology</li>
-   </ul>
-   <br>
-   <li>Committer</li>
-   <ul>
-    <li>individuals that are the core developers of the Eclipse projects and
-        can commit changes to project source code</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>83</font></div>
-  </td>
-  <td>
-  <div id=PPTP83 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0130.html');" id=PPTL83>IMM (SQL) and Model
-  Base</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>84</font></div>
-  </td>
-  <td>
-  <div id=PPTP84 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0127.html');" id=PPTL84>MOF (EMOF) and EMF</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>85</font></div>
-  </td>
-  <td>
-  <div id=PPTP85 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0131.html');" id=PPTL85>MOF 2.0 FOL and EMF</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>86</font></div>
-  </td>
-  <td>
-  <div id=PPTP86 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0128.html');" id=PPTL86>XMI and EMF</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>87</font></div>
-  </td>
-  <td>
-  <div id=PPTP87 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0134.html');" id=PPTL87>MOF (EMOF) and Ecore
-  Tools</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>88</font></div>
-  </td>
-  <td>
-  <div id=PPTP88 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0133.html');" id=PPTL88>DD and GMF</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>89</font></div>
-  </td>
-  <td>
-  <div id=PPTP89 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0135.html');" id=PPTL89>MOF QVT and UMLX</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>90</font></div>
-  </td>
-  <td>
-  <div id=PPTP90 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0136.html');" id=PPTL90>MOF QVT and M2M</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>91</font></div>
-  </td>
-  <td>
-  <div id=PPTP91 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0137.html');" id=PPTL91>MOF M2T and M2T</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>92</font></div>
-  </td>
-  <td>
-  <div id=PPTP92 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0138.html');" id=PPTL92>BPMN 2.0 and BPMN2</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>93</font></div>
-  </td>
-  <td>
-  <div id=PPTP93 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0139.html');" id=PPTL93>ODM and EODM</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>94</font></div>
-  </td>
-  <td>
-  <div id=PPTP94 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0140.html');" id=PPTL94>IMM and MDT IMM</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>95</font></div>
-  </td>
-  <td>
-  <div id=PPTP95 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0141.html');" id=PPTL95>OCL and MDT OCL</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>96</font></div>
-  </td>
-  <td>
-  <div id=PPTP96 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0142.html');" id=PPTL96>OCL and OCL Tools</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>97</font></div>
-  </td>
-  <td>
-  <div id=PPTP97 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0143.html');" id=PPTL97>SBVR and MDT SBVR</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>98</font></div>
-  </td>
-  <td>
-  <div id=PPTP98 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0144.html');" id=PPTL98>MOF (CMOF) and UML2</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>99</font></div>
-  </td>
-  <td>
-  <div id=PPTP99 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0145.html');" id=PPTL99>UML and UML2</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>100</font></div>
-  </td>
-  <td>
-  <div id=PPTP100 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0146.html');" id=PPTL100>UML and UML2 Tools</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>101</font></div>
-  </td>
-  <td>
-  <div id=PPTP101 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0147.html');" id=PPTL101>UML DI and UML2 Tools</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>102</font></div>
-  </td>
-  <td>
-  <div id=PPTP102 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0148.html');" id=PPTL102>IMM (XSD) and XSD</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>103</font></div>
-  </td>
-  <td>
-  <div id=PPTP103 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0150.html');" id=PPTL103>UML HUTN and TMF</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>104</font></div>
-  </td>
-  <td>
-  <div id=PPTP104 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0151.html');" id=PPTL104>SPEM and EPF</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>105</font></div>
-  </td>
-  <td>
-  <div id=PPTP105 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0152.html');" id=PPTL105>WMF and JWT</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>106</font></div>
-  </td>
-  <td>
-  <div id=PPTP106 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0129.html');" id=PPTL106>BPMN and STP BPMN</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>107</font></div>
-  </td>
-  <td>
-  <div id=PPTP107 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0153.html');" id=PPTL107>UML Testing Profile
-  and Testing Tools</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>108</font></div>
-  </td>
-  <td>
-  <div id=PPTP108 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0157.html');" id=PPTL108>IMM (XSD) and Source
-  Editing</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>109</font></div>
-  </td>
-  <td>
-  <div id=PPTP109 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0149.html');" id=PPTL109>Task Force Members +
-  Project Committers</a></font></div>
-  <div id=PPTC109 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Eclipse membership includes individuals whereas OMG membership is
-       limited to (paying) organizations</li>
-   <br>
-   <br>
-   <li>Eclipse project committers are typically developers whereas OMG task
-       force members are often architects or business people</li>
-   <br>
-   <br>
-   <li>Not enough overlap between organizations implementing projects at
-       Eclipse and those defining corresponding specifications at the OMG</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>110</font></div>
-  </td>
-  <td>
-  <div id=PPTP110 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0046.html');" id=PPTL110>What Next?</a></font></div>
-  <div id=PPTC110 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>What</li>
-   <ul>
-    <li>Make OMG specifications more consumable</li>
-    <li>Ensure Eclipse projects conform to applicable OMG specifications</li>
-    <li>Recognize Eclipse projects as reference implementations</li>
-   </ul>
-   <br>
-   <li>How</li>
-   <ul>
-    <li>Base specifications on de facto standards (Eclipse technology)</li>
-    <li>Align timing of OMG technology adoption and Eclipse development</li>
-   </ul>
-   <br>
-   <li>Who</li>
-   <ul>
-    <li>Remove platform/domain OMG membership restriction</li>
-    <li>Resolve dissonance between Eclipse developers and OMG architects</li>
-    <li>Ensure overlap of Eclipse project committers and OMG task force members</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>111</font></div>
-  </td>
-  <td>
-  <div id=PPTP111 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0122.html');" id=PPTL111><br>
-    Eclipse/OMG Symposium</a></font></div>
-  <div id=PPTC111 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Thursday, March 20</li>
-   <li>10:10 a.m. in Room 201</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>112</font></div>
-  </td>
-  <td>
-  <div id=PPTP112 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0030.html');" id=PPTL112>Legal Notices</a></font></div>
-  <div id=PPTC112 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Business Process Modeling Notation, BPMN, MOF, Object Management Group, OMG,
-       OMG SysML, and Unified Modeling Language are trademarks of the Object
-       Management Group</li>
-   <br>
-   <br>
-   <li>Model Driven Architecture, MDA, UML, XMI, and the OMG Logo are
-       registered trademarks of the Object Management Group</li>
-   <br>
-   <br>
-   <li>DOM, Metadata, RDF, and XML are trademarks of the World Wide Web
-       Consortium; marks of W3C are registered and held by its host
-       institutions MIT, ERCIM, and Keio</li>
-   <br>
-   <br>
-   <li>Java and all Java-based trademarks are trademarks of Sun Microsystems,
-       Inc. in the United States, other countries, or both</li>
-   <br>
-   <br>
-   <li>Other company, product, or service names may be trademarks or service
-       marks of others</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
-</table>
-
-
-
-</div>
-
-<div style='display:none'><a href=master03.html></a><a href=master03.xml></a><a
-href=preview.wmf></a><a href="master03_image001.jpg"></a><a
-href="master03_image002.jpg"></a><a href=master15.html></a><a
-href=master15.xml></a><a href=master02.html></a><a href=pres.xml></a><a
-href=slide0001.html></a><a href="master15_image003.gif"></a><a
-href="master15_image004.gif"></a><a href=slide0123.html></a><a
-href="master03_image005.gif"></a><a href="master03_image006.gif"></a><a
-href=slide0032.html></a><a href=slide0031.html></a><a href=slide0033.html></a><a
-href=slide0154.html></a><a href=slide0034.html></a><a href=slide0047.html></a><a
-href=slide0048.html></a><a href=slide0049.html></a><a href=slide0050.html></a><a
-href=slide0051.html></a><a href=slide0053.html></a><a href=slide0068.html></a><a
-href=slide0052.html></a><a href=slide0054.html></a><a href=slide0056.html></a><a
-href=slide0055.html></a><a href=slide0057.html></a><a href=slide0058.html></a><a
-href=slide0059.html></a><a href=slide0060.html></a><a href=slide0061.html></a><a
-href=slide0062.html></a><a href=slide0063.html></a><a href=slide0064.html></a><a
-href=slide0065.html></a><a href=slide0066.html></a><a href=slide0067.html></a><a
-href=slide0035.html></a><a href=slide0069.html></a><a href=slide0070.html></a><a
-href=slide0071.html></a><a href=slide0075.html></a><a href=slide0073.html></a><a
-href=slide0074.html></a><a href=slide0076.html></a><a href=slide0078.html></a><a
-href=slide0099.html></a><a href=slide0077.html></a><a href=slide0081.html></a><a
-href=slide0082.html></a><a href=slide0100.html></a><a href=slide0083.html></a><a
-href=slide0084.html></a><a href=slide0085.html></a><a href=slide0086.html></a><a
-href=slide0087.html></a><a href=slide0088.html></a><a href=slide0089.html></a><a
-href=slide0090.html></a><a href=slide0091.html></a><a href=slide0092.html></a><a
-href=slide0093.html></a><a href=slide0094.html></a><a href=slide0095.html></a><a
-href=slide0096.html></a><a href=slide0097.html></a><a href=slide0098.html></a><a
-href=slide0101.html></a><a href=slide0102.html></a><a href=slide0040.html></a><a
-href=slide0155.html></a><a href=slide0037.html></a><a
-href="slide0037_image007.png"></a><a href="slide0037_image008.gif"></a><a
-href=slide0103.html></a><a href="slide0103_image009.png"></a><a
-href="slide0103_image010.gif"></a><a href=slide0104.html></a><a
-href="slide0104_image011.png"></a><a href="slide0104_image012.gif"></a><a
-href=slide0105.html></a><a href="slide0105_image013.png"></a><a
-href="slide0105_image014.gif"></a><a href=slide0106.html></a><a
-href="slide0106_image015.png"></a><a href="slide0106_image016.gif"></a><a
-href=slide0107.html></a><a href="slide0107_image017.png"></a><a
-href="slide0107_image018.gif"></a><a href=slide0108.html></a><a
-href="slide0108_image019.png"></a><a href="slide0108_image020.gif"></a><a
-href=slide0039.html></a><a href="slide0039_image021.png"></a><a
-href="slide0039_image022.gif"></a><a href=slide0114.html></a><a
-href="slide0114_image023.png"></a><a href="slide0114_image024.gif"></a><a
-href=slide0109.html></a><a href="slide0109_image025.png"></a><a
-href="slide0109_image026.gif"></a><a href=slide0110.html></a><a
-href="slide0110_image027.png"></a><a href="slide0110_image028.gif"></a><a
-href=slide0111.html></a><a href="slide0111_image029.png"></a><a
-href="slide0111_image030.gif"></a><a href=slide0112.html></a><a
-href="slide0112_image031.png"></a><a href="slide0112_image032.gif"></a><a
-href=slide0113.html></a><a href="slide0113_image033.png"></a><a
-href="slide0113_image034.gif"></a><a href=slide0124.html></a><a
-href=slide0156.html></a><a href=slide0036.html></a><a href=slide0036.xml></a><a
-href="slide0036_image035.gif"></a><a href=slide0117.html></a><a
-href=slide0117.xml></a><a href="slide0117_image036.gif"></a><a
-href=slide0038.html></a><a href=slide0130.html></a><a
-href="slide0130_image037.gif"></a><a href="slide0130_image038.gif"></a><a
-href=slide0127.html></a><a href="slide0127_image039.gif"></a><a
-href="slide0127_image040.gif"></a><a href=slide0131.html></a><a
-href="slide0131_image041.gif"></a><a href="slide0131_image042.gif"></a><a
-href=slide0128.html></a><a href="slide0128_image043.gif"></a><a
-href="slide0128_image044.gif"></a><a href=slide0134.html></a><a
-href="slide0134_image045.gif"></a><a href="slide0134_image046.gif"></a><a
-href=slide0133.html></a><a href="slide0133_image047.gif"></a><a
-href="slide0133_image048.gif"></a><a href=slide0135.html></a><a
-href="slide0135_image049.gif"></a><a href="slide0135_image050.gif"></a><a
-href=slide0136.html></a><a href="slide0136_image051.gif"></a><a
-href="slide0136_image052.gif"></a><a href=slide0137.html></a><a
-href="slide0137_image053.gif"></a><a href="slide0137_image054.gif"></a><a
-href=slide0138.html></a><a href="slide0138_image055.gif"></a><a
-href="slide0138_image056.gif"></a><a href=slide0139.html></a><a
-href="slide0139_image057.gif"></a><a href="slide0139_image058.gif"></a><a
-href=slide0140.html></a><a href="slide0140_image059.gif"></a><a
-href="slide0140_image060.gif"></a><a href=slide0141.html></a><a
-href="slide0141_image061.gif"></a><a href="slide0141_image062.gif"></a><a
-href=slide0142.html></a><a href="slide0142_image063.gif"></a><a
-href="slide0142_image064.gif"></a><a href=slide0143.html></a><a
-href="slide0143_image065.gif"></a><a href="slide0143_image066.gif"></a><a
-href=slide0144.html></a><a href="slide0144_image067.gif"></a><a
-href="slide0144_image068.gif"></a><a href=slide0145.html></a><a
-href="slide0145_image069.gif"></a><a href="slide0145_image070.gif"></a><a
-href=slide0146.html></a><a href="slide0146_image071.gif"></a><a
-href="slide0146_image072.gif"></a><a href=slide0147.html></a><a
-href="slide0147_image073.gif"></a><a href="slide0147_image074.gif"></a><a
-href=slide0148.html></a><a href="slide0148_image075.gif"></a><a
-href="slide0148_image076.gif"></a><a href=slide0150.html></a><a
-href="slide0150_image077.gif"></a><a href="slide0150_image078.gif"></a><a
-href=slide0151.html></a><a href="slide0151_image079.gif"></a><a
-href="slide0151_image080.gif"></a><a href=slide0152.html></a><a
-href="slide0152_image081.gif"></a><a href="slide0152_image082.gif"></a><a
-href=slide0129.html></a><a href="slide0129_image083.gif"></a><a
-href="slide0129_image084.gif"></a><a href=slide0153.html></a><a
-href="slide0153_image085.gif"></a><a href="slide0153_image086.gif"></a><a
-href=slide0157.html></a><a href="slide0157_image087.gif"></a><a
-href="slide0157_image088.gif"></a><a href=slide0149.html></a><a
-href=slide0046.html></a><a href=slide0122.html></a><a
-href="slide0122_image089.png"></a><a href="slide0122_image090.gif"></a><a
-href="slide0122_image091.png"></a><a href="slide0122_image092.gif"></a><a
-href=slide0030.html></a><a href=master01.html></a><a
-href="master03_stylesheet.css"></a><a href="master15_stylesheet.css"></a><a
-href=script.js></a><a href="../EclipseCon2008_LongTalk.html"></a><a
-href=fullscreen.html></a><a href=buttons.gif></a><a href=frame.html></a><a
-href=outline.html></a></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/pres.xml b/docs/presentations/EclipseCon2008_LongTalk_files/pres.xml
deleted file mode 100644
index fc414e3..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/pres.xml
+++ /dev/null
@@ -1,143 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <p:presentation sizeof="screen" gridspacingx="49152" gridspacingy="49152"
-  subsetembed="1">
-  <p:master id="3" slidesn="0,0" type="main" href="master03.html"
-   xmlhref="master03.xml" template="Blank Presentation" layout="title_body"
-   slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-   </p:schemes>
-  </p:master>
-  <p:master id="15" slidesn="0,0" type="main" href="master15.html"
-   xmlhref="master15.xml" template="1_Blank Presentation" layout="title_body"
-   slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-   </p:schemes>
-  </p:master>
-  <p:master id="1" slidesn="1C8898D,FBDDA4A0" type="notes" href="master01.html"
-   layout="notes" slots="header,dateTime,slideImage,body,footer,slideNumber"/>
-  <p:master id="2" slidesn="1C8898D,FD8AB860" type="handout"
-   href="master02.html" layout="handout"
-   slots="header,dateTime,footer,slideNumber"/>
-  <p:slide id="1" slidesn="0,0" href="slide0001.html" masterhref="master15.html"/>
-  <p:slide id="123" slidesn="0,0" href="slide0123.html"/>
-  <p:slide id="32" slidesn="0,0" href="slide0032.html"/>
-  <p:slide id="31" slidesn="0,0" href="slide0031.html"/>
-  <p:slide id="33" slidesn="0,0" href="slide0033.html"/>
-  <p:slide id="154" slidesn="0,0" href="slide0154.html"/>
-  <p:slide id="34" slidesn="0,0" href="slide0034.html"/>
-  <p:slide id="47" slidesn="0,0" href="slide0047.html"/>
-  <p:slide id="48" slidesn="0,0" href="slide0048.html"/>
-  <p:slide id="49" slidesn="0,0" href="slide0049.html"/>
-  <p:slide id="50" slidesn="0,0" href="slide0050.html"/>
-  <p:slide id="51" slidesn="0,0" href="slide0051.html"/>
-  <p:slide id="53" slidesn="0,0" href="slide0053.html"/>
-  <p:slide id="68" slidesn="0,0" href="slide0068.html"/>
-  <p:slide id="52" slidesn="0,0" href="slide0052.html"/>
-  <p:slide id="54" slidesn="0,0" href="slide0054.html"/>
-  <p:slide id="56" slidesn="0,0" href="slide0056.html"/>
-  <p:slide id="55" slidesn="0,0" href="slide0055.html"/>
-  <p:slide id="57" slidesn="0,0" href="slide0057.html"/>
-  <p:slide id="58" slidesn="0,0" href="slide0058.html"/>
-  <p:slide id="59" slidesn="0,0" href="slide0059.html"/>
-  <p:slide id="60" slidesn="0,0" href="slide0060.html"/>
-  <p:slide id="61" slidesn="0,0" href="slide0061.html"/>
-  <p:slide id="62" slidesn="0,0" href="slide0062.html"/>
-  <p:slide id="63" slidesn="0,0" href="slide0063.html"/>
-  <p:slide id="64" slidesn="0,0" href="slide0064.html"/>
-  <p:slide id="65" slidesn="0,0" href="slide0065.html"/>
-  <p:slide id="66" slidesn="0,0" href="slide0066.html"/>
-  <p:slide id="67" slidesn="0,0" href="slide0067.html"/>
-  <p:slide id="35" slidesn="0,0" href="slide0035.html"/>
-  <p:slide id="69" slidesn="0,0" href="slide0069.html"/>
-  <p:slide id="70" slidesn="0,0" href="slide0070.html"/>
-  <p:slide id="71" slidesn="0,0" href="slide0071.html"/>
-  <p:slide id="75" slidesn="0,0" href="slide0075.html"/>
-  <p:slide id="73" slidesn="0,0" href="slide0073.html"/>
-  <p:slide id="74" slidesn="0,0" href="slide0074.html"/>
-  <p:slide id="76" slidesn="0,0" href="slide0076.html"/>
-  <p:slide id="78" slidesn="0,0" href="slide0078.html"/>
-  <p:slide id="99" slidesn="0,0" href="slide0099.html"/>
-  <p:slide id="77" slidesn="0,0" href="slide0077.html"/>
-  <p:slide id="81" slidesn="0,0" href="slide0081.html"/>
-  <p:slide id="82" slidesn="0,0" href="slide0082.html"/>
-  <p:slide id="100" slidesn="0,0" href="slide0100.html"/>
-  <p:slide id="83" slidesn="0,0" href="slide0083.html"/>
-  <p:slide id="84" slidesn="0,0" href="slide0084.html"/>
-  <p:slide id="85" slidesn="0,0" href="slide0085.html"/>
-  <p:slide id="86" slidesn="0,0" href="slide0086.html"/>
-  <p:slide id="87" slidesn="0,0" href="slide0087.html"/>
-  <p:slide id="88" slidesn="0,0" href="slide0088.html"/>
-  <p:slide id="89" slidesn="0,0" href="slide0089.html"/>
-  <p:slide id="90" slidesn="0,0" href="slide0090.html"/>
-  <p:slide id="91" slidesn="0,0" href="slide0091.html"/>
-  <p:slide id="92" slidesn="0,0" href="slide0092.html"/>
-  <p:slide id="93" slidesn="0,0" href="slide0093.html"/>
-  <p:slide id="94" slidesn="0,0" href="slide0094.html"/>
-  <p:slide id="95" slidesn="0,0" href="slide0095.html"/>
-  <p:slide id="96" slidesn="0,0" href="slide0096.html"/>
-  <p:slide id="97" slidesn="0,0" href="slide0097.html"/>
-  <p:slide id="98" slidesn="0,0" href="slide0098.html"/>
-  <p:slide id="101" slidesn="0,0" href="slide0101.html"/>
-  <p:slide id="102" slidesn="0,0" href="slide0102.html"/>
-  <p:slide id="40" slidesn="0,0" href="slide0040.html"/>
-  <p:slide id="155" slidesn="0,0" href="slide0155.html"/>
-  <p:slide id="37" slidesn="0,0" href="slide0037.html"/>
-  <p:slide id="103" slidesn="0,0" href="slide0103.html"/>
-  <p:slide id="104" slidesn="0,0" href="slide0104.html"/>
-  <p:slide id="105" slidesn="0,0" href="slide0105.html"/>
-  <p:slide id="106" slidesn="0,0" href="slide0106.html"/>
-  <p:slide id="107" slidesn="0,0" href="slide0107.html"/>
-  <p:slide id="108" slidesn="0,0" href="slide0108.html"/>
-  <p:slide id="39" slidesn="0,0" href="slide0039.html"/>
-  <p:slide id="114" slidesn="0,0" href="slide0114.html"/>
-  <p:slide id="109" slidesn="0,0" href="slide0109.html"/>
-  <p:slide id="110" slidesn="0,0" href="slide0110.html"/>
-  <p:slide id="111" slidesn="0,0" href="slide0111.html"/>
-  <p:slide id="112" slidesn="0,0" href="slide0112.html"/>
-  <p:slide id="113" slidesn="0,0" href="slide0113.html"/>
-  <p:slide id="124" slidesn="0,0" href="slide0124.html"/>
-  <p:slide id="156" slidesn="0,0" href="slide0156.html"/>
-  <p:slide id="36" slidesn="0,0" href="slide0036.html" xmlhref="slide0036.xml"/>
-  <p:slide id="117" slidesn="0,0" href="slide0117.html" xmlhref="slide0117.xml"/>
-  <p:slide id="38" slidesn="0,0" href="slide0038.html"/>
-  <p:slide id="130" slidesn="0,0" href="slide0130.html"/>
-  <p:slide id="127" slidesn="0,0" href="slide0127.html"/>
-  <p:slide id="131" slidesn="0,0" href="slide0131.html"/>
-  <p:slide id="128" slidesn="0,0" href="slide0128.html"/>
-  <p:slide id="134" slidesn="0,0" href="slide0134.html"/>
-  <p:slide id="133" slidesn="0,0" href="slide0133.html"/>
-  <p:slide id="135" slidesn="0,0" href="slide0135.html"/>
-  <p:slide id="136" slidesn="0,0" href="slide0136.html"/>
-  <p:slide id="137" slidesn="0,0" href="slide0137.html"/>
-  <p:slide id="138" slidesn="0,0" href="slide0138.html"/>
-  <p:slide id="139" slidesn="0,0" href="slide0139.html"/>
-  <p:slide id="140" slidesn="0,0" href="slide0140.html"/>
-  <p:slide id="141" slidesn="0,0" href="slide0141.html"/>
-  <p:slide id="142" slidesn="0,0" href="slide0142.html"/>
-  <p:slide id="143" slidesn="0,0" href="slide0143.html"/>
-  <p:slide id="144" slidesn="0,0" href="slide0144.html"/>
-  <p:slide id="145" slidesn="0,0" href="slide0145.html"/>
-  <p:slide id="146" slidesn="0,0" href="slide0146.html"/>
-  <p:slide id="147" slidesn="0,0" href="slide0147.html"/>
-  <p:slide id="148" slidesn="0,0" href="slide0148.html"/>
-  <p:slide id="150" slidesn="0,0" href="slide0150.html"/>
-  <p:slide id="151" slidesn="0,0" href="slide0151.html"/>
-  <p:slide id="152" slidesn="0,0" href="slide0152.html"/>
-  <p:slide id="129" slidesn="0,0" href="slide0129.html"/>
-  <p:slide id="153" slidesn="0,0" href="slide0153.html"/>
-  <p:slide id="157" slidesn="0,0" href="slide0157.html"/>
-  <p:slide id="149" slidesn="0,0" href="slide0149.html"/>
-  <p:slide id="46" slidesn="0,0" href="slide0046.html"/>
-  <p:slide id="122" slidesn="0,0" href="slide0122.html"/>
-  <p:slide id="30" slidesn="0,0" href="slide0030.html"/>
-  <p:viewstate type="slideView" restoredleft="156" restoredtop="946"
-   vertbarstate="2" manualadjusttop="t" hideoutlineicons="t"/>
-  <p:kinsoku language="Japanese" level="levelOne"/>
-  <p:pptdocumentsettings framecolors="WhiteTextOnBlack" hideslideanimation="t"
-   browsersupport="v4"/>
- </p:presentation>
- <o:shapedefaults v:ext="edit" spidmax="233478"/>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/preview.wmf b/docs/presentations/EclipseCon2008_LongTalk_files/preview.wmf
deleted file mode 100644
index 48bf496..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/script.js b/docs/presentations/EclipseCon2008_LongTalk_files/script.js
deleted file mode 100644
index 8632702..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/script.js
+++ /dev/null
@@ -1,856 +0,0 @@
-function LoadSld()

-{

-	var sld=GetObj("SlideObj")

-	if( !g_supportsPPTHTML ) {

-		sld.style.visibility="visible"

-		return

-	}

-	if( MakeNotesVis() ) return

-	runAnimations = _InitAnimations();

-	if( IsWin("PPTSld") )

-		parent.SldUpdated(GetSldId())

-	g_origSz=parseInt(SlideObj.style.fontSize)

-	g_origH=sld.style.posHeight

-	g_origW=sld.style.posWidth

-	g_scaleHyperlinks=(document.all.tags("AREA").length>0)

-	if( g_scaleHyperlinks )

-		InitHLinkArray()

-	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )

-		document.body.scroll="no"

-	_RSW()

-	if( IsWin("PPTSld") && parent.IsFullScrMode() )

-		FullScrInit();

-	

-	MakeSldVis();

-	ChkAutoAdv()

-

-	if( runAnimations )

-	{

-		if( document.all("NSPlay") )

-			document.all("NSPlay").autoStart = false;

-		if( sld.filters && sld.filters.revealtrans )

-			setTimeout( "document.body.start()", sld.filters.revealtrans.duration * 1000 );

-		else

-			document.body.start();

-	}

-}

-function MakeSldVis()

-{

-	var fTrans=g_showAnimation && SldHasTrans()

-	if( fTrans )

-	{

-		if( g_bgSound ) {

-			idx=g_bgSound.indexOf(",");

-			pptSound.src=g_bgSound.substr( 0, idx );

-			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));

-		}

-		SlideObj.filters.revealtrans.Apply()

-    }

-	SlideObj.style.visibility="visible"

-	if( fTrans )

-		SlideObj.filters.revealtrans.Play()

-}

-function MakeNotesVis()

-{

-	if( !IsNts() ) return false

-	SlideObj.style.display="none"

-	nObj = document.all.item("NotesObj")

-	parent.SetHasNts(0)

-	if( nObj ) {

-		nObj.style.display=""

-		parent.SetHasNts(1)

-	}

-	return 1

-}

-function ChkAutoAdv()

-{

-	if(SldHasTrans())

-		SlideObj.onfilterchange=AutoAdv

-	else

-		AutoAdv()

-}

-function AutoAdv()

-{

-	if(!IsWin("PPTSld") || !gUseSldTimings )return

-	var sld=GetCurSld()

-	if( (sld.mAdvDelay>0) && !parent.IsFramesMode() )

-		setTimeout("parent.GoToNextSld()",sld.mAdvDelay)

-}

-function GetObj(id)

-{

-	if(g_supportsPPTHTML) return document.all(id);

-	else return document.getElementById(id);

-}

-function SldHasTrans() { return SlideObj.style.filter != ""; }

-function GetSldId() { return sId=location.href.substring(location.href.lastIndexOf('/')+1) }

-function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }

-function IsWin( name ) { return window.name == name }

-function IsNts() { return IsWin("PPTNts") }

-function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }

-function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }

-function SupportsPPTHTML()

-{

-	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0

-	if( msie >= 0 )

-		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )

-	else

-		ver=parseInt(appVer)

-	return( ver >= 4 && msie >= 0 )

-}

-function _RSW()

-{

-	if( !g_supportsPPTHTML || IsNts() ||

-	  ( !g_scaleInFrame && (!IsWin("PPTSld") || !parent.IsFullScrMode()) ) )

-		return

-        var padding=0;

-        if( IsWin("PPTSld") && parent.IsFramesMode() ) padding=6

-	cltWidth=document.body.clientWidth-padding

-	cltHeight=document.body.clientHeight-padding

-	factor=(1.0*cltWidth)/g_origW

-	if( cltHeight < g_origH*factor )

-		factor=(1.0*cltHeight)/g_origH

-	newSize = g_origSz * factor

-	if( newSize < 1 ) newSize=1

-	s=SlideObj.style

-	s.fontSize=newSize+"px"

-	s.posWidth=g_origW*factor

-	s.posHeight=g_origH*factor

-	s.posLeft=(cltWidth-s.posWidth+padding)/2

-	s.posTop=(cltHeight-s.posHeight+padding)/2

-	if( g_scaleHyperlinks )

-		ScaleHyperlinks( factor )

-}

-function _InitAnimations()

-{

-	animRuntimeInstalled = ''+document.body.localTime != 'undefined';

-	isFullScreen = (window.name == "PPTSld") && !parent.IsFramesMode();

-	g_animUseRuntime = g_showAnimation && animRuntimeInstalled && !(isFullScreen && parent.IsSldVisited());

-	if( g_animUseRuntime ) {

-		collSeq = document.all.tags("seq");

-		if( collSeq != null ) {

-			for(ii=0;ii<collSeq.length;ii++) {

-				if( collSeq[ii].getAttribute( "p:nodeType" ) == "mainSeq" ) {

-					g_animMainSequence = collSeq[ii];

-					break;

-				}

-			}

-		}

-		if( g_animItemsToHide && document.body.playAnimations != false ) {

-			for(jj = 0; jj < g_animItemsToHide.length; jj++) {

-				if( hideObj = GetObj(g_animItemsToHide[jj]) )

-					hideObj.runtimeStyle.visibility="hidden";

-			}

-		}

-		if( g_animInteractiveItems ){

-			for(jj = 0; jj < g_animInteractiveItems.length; jj++) {

-				if( triggerObj = GetObj(g_animInteractiveItems[jj]) )

-					triggerObj.runtimeStyle.cursor="hand";

-			}

-		}

-		if( gUseSldTimings && ''+g_animSlideTime != 'undefined' ) {

-			adjustedTime = document.body.calculateAutoAdvanceTimes( g_animSlideTime, g_animEffectTimings );

-			if( IsWin("PPTSld") && adjustedTime != g_animSlideTime ) {

-			   var sld = GetCurSld();

-			   sld.mAdvDelay = adjustedTime * 1000;

-			}

-		}

-	}

-	return g_animUseRuntime;

-}

-gSldJump = 0, gSldJumpTrack = 0, gSldJumpIdx = "";

-function _KPH()

-{

-	if( IsNts() ) return;

-	if( !parent.IsFramesMode() && event.keyCode == 27 && !HideMenu() )

-		parent.window.close( self );

-	else if( event.keyCode == 32 ) {

-		if( window.name == "PPTSld" )

-			parent.PPTSld.DocumentOnClick();

-		else

-			parent.GoToNextSld();

-	}

-	CatchNumKeys( parent, event );

-}

-function CatchNumKeys( win, event ) {

-	if( win.IsFullScrMode() && (48<=event.keyCode) && (event.keyCode<=57) ) {

-		gSldJump = 1;

-		gSldJumpIdx += (event.keyCode-48).toString();

-	}

-	if( win.IsFullScrMode() && gSldJump && event.keyCode == 13 ) {

-		var numSlds = parent.GetSldList().mList.length

-		if ( gSldJumpIdx > numSlds )

-			gSldJumpIdx = numSlds;

-		if ( gSldJumpIdx >= 0 ) {

-			if ( gSldJumpIdx == 0 )

-				gSldJumpIdx = 1;

-			var jumpTo = parseInt(gSldJumpIdx);

-			gSldJump = 0; gSldJumpIdx = "";

-			win.GoToSld( parent.GetSldList().mList[jumpTo-1].mSldHref )

-		}

-	}

-}

-function _KDH()

-{

-	if( event.keyCode == 8 ) {

-		event.returnValue = 0;

-		parent.GoToPrevSld();

-	}

-}

-function DocumentOnClick()

-{

-	if( IsNts() || parent.HideMenu() ) return;

-	if( ( g_allowAdvOnClick && !parent.IsFramesMode() ) ||

-	    (event && (event.keyCode==32) ) )

-		parent.GoToNextSld();

-}

-

-var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = 1, gId="", g_bgSound="",

-    g_scaleHyperlinks = false, g_allowAdvOnClick = 1, g_showInBrowser = 0, gLoopCont = 0, gUseSldTimings = 1;

-var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && ( (window.name=="PPTSld" && !parent.IsFramesMode()) || g_showInBrowser );var g_animManager = null;

-var g_animUseRuntime = false;

-var g_animItemsToHide, g_animInteractiveItems, g_animSlideTime;

-var g_animMainSequence = null;

-var ENDSHOW_MESG="End of slide show, click to exit.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=112, SCRIPT_HREF="script.js", FULLSCR_HREF="fullscreen.html";

-var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = 0, gHasNarration = 0, gOtlOpen = true

-window.gPPTHTML=SupportsPPTHTML()

-var gMainDoc=new Array(new hrefList("slide0001.html",1,-1,1),new hrefList("slide0123.html",1,-1,1),new hrefList("slide0032.html",1,-1,1),new hrefList("slide0031.html",1,-1,1),new hrefList("slide0033.html",1,-1,1),new hrefList("slide0154.html",1,-1,1),new hrefList("slide0034.html",1,-1,1),new hrefList("slide0047.html",1,-1,1),new hrefList("slide0048.html",1,-1,1),new hrefList("slide0049.html",1,-1,1),new hrefList("slide0050.html",1,-1,1),new hrefList("slide0051.html",1,-1,1),new hrefList("slide0053.html",1,-1,1),new hrefList("slide0068.html",1,-1,1),new hrefList("slide0052.html",1,-1,1),new hrefList("slide0054.html",1,-1,1),new hrefList("slide0056.html",1,-1,1),new hrefList("slide0055.html",1,-1,1),new hrefList("slide0057.html",1,-1,1),new hrefList("slide0058.html",1,-1,1),new hrefList("slide0059.html",1,-1,1),new hrefList("slide0060.html",1,-1,1),new hrefList("slide0061.html",1,-1,1),new hrefList("slide0062.html",1,-1,1),new hrefList("slide0063.html",1,-1,1),new hrefList("slide0064.html",1,-1,1),new hrefList("slide0065.html",1,-1,1),new hrefList("slide0066.html",1,-1,1),new hrefList("slide0067.html",1,-1,1),new hrefList("slide0035.html",1,-1,1),new hrefList("slide0069.html",1,-1,1),new hrefList("slide0070.html",1,-1,1),new hrefList("slide0071.html",1,-1,1),new hrefList("slide0075.html",1,-1,1),new hrefList("slide0073.html",1,-1,1),new hrefList("slide0074.html",1,-1,1),new hrefList("slide0076.html",1,-1,1),new hrefList("slide0078.html",1,-1,1),new hrefList("slide0099.html",1,-1,1),new hrefList("slide0077.html",1,-1,1),new hrefList("slide0081.html",1,-1,1),new hrefList("slide0082.html",1,-1,1),new hrefList("slide0100.html",1,-1,1),new hrefList("slide0083.html",1,-1,1),new hrefList("slide0084.html",1,-1,1),new hrefList("slide0085.html",1,-1,1),new hrefList("slide0086.html",1,-1,1),new hrefList("slide0087.html",1,-1,1),new hrefList("slide0088.html",1,-1,1),new hrefList("slide0089.html",1,-1,1),new hrefList("slide0090.html",1,-1,1),new hrefList("slide0091.html",1,-1,1),new hrefList("slide0092.html",1,-1,1),new hrefList("slide0093.html",1,-1,1),new hrefList("slide0094.html",1,-1,1),new hrefList("slide0095.html",1,-1,1),new hrefList("slide0096.html",1,-1,1),new hrefList("slide0097.html",1,-1,1),new hrefList("slide0098.html",1,-1,1),new hrefList("slide0101.html",1,-1,1),new hrefList("slide0102.html",1,-1,1),new hrefList("slide0040.html",1,-1,1),new hrefList("slide0155.html",1,-1,1),new hrefList("slide0037.html",1,-1,1),new hrefList("slide0103.html",1,-1,1),new hrefList("slide0104.html",1,-1,1),new hrefList("slide0105.html",1,-1,1),new hrefList("slide0106.html",1,-1,1),new hrefList("slide0107.html",1,-1,1),new hrefList("slide0108.html",1,-1,1),new hrefList("slide0039.html",1,-1,1),new hrefList("slide0114.html",1,-1,1),new hrefList("slide0109.html",1,-1,1),new hrefList("slide0110.html",1,-1,1),new hrefList("slide0111.html",1,-1,1),new hrefList("slide0112.html",1,-1,1),new hrefList("slide0113.html",1,-1,1),new hrefList("slide0124.html",1,-1,1),new hrefList("slide0156.html",1,-1,1),new hrefList("slide0036.html",1,-1,1),new hrefList("slide0117.html",1,-1,1),new hrefList("slide0038.html",1,-1,1),new hrefList("slide0130.html",1,-1,1),new hrefList("slide0127.html",1,-1,1),new hrefList("slide0131.html",1,-1,1),new hrefList("slide0128.html",1,-1,1),new hrefList("slide0134.html",1,-1,1),new hrefList("slide0133.html",1,-1,1),new hrefList("slide0135.html",1,-1,1),new hrefList("slide0136.html",1,-1,1),new hrefList("slide0137.html",1,-1,1),new hrefList("slide0138.html",1,-1,1),new hrefList("slide0139.html",1,-1,1),new hrefList("slide0140.html",1,-1,1),new hrefList("slide0141.html",1,-1,1),new hrefList("slide0142.html",1,-1,1),new hrefList("slide0143.html",1,-1,1),new hrefList("slide0144.html",1,-1,1),new hrefList("slide0145.html",1,-1,1),new hrefList("slide0146.html",1,-1,1),new hrefList("slide0147.html",1,-1,1),new hrefList("slide0148.html",1,-1,1),new hrefList("slide0150.html",1,-1,1),new hrefList("slide0151.html",1,-1,1),new hrefList("slide0152.html",1,-1,1),new hrefList("slide0129.html",1,-1,1),new hrefList("slide0153.html",1,-1,1),new hrefList("slide0157.html",1,-1,1),new hrefList("slide0149.html",1,-1,1),new hrefList("slide0046.html",1,-1,1),new hrefList("slide0122.html",1,-1,1),new hrefList("slide0030.html",1,-1,1));

-function FullScrInit()

-{

-	g_allowAdvOnClick = GetCurSld().mAdvOnClk

-	document.body.style.backgroundColor="black"

-	document.oncontextmenu=parent._CM;

-	document.onkeydown = _KDH;

-	document.ondragstart=Cancel

-	document.onselectstart=Cancel

-	self.focus()

-}

-function Redirect( frmId )

-{

-	var str=document.location.hash,idx=str.indexOf('#'), sId=GetSldId()

-	if(idx>=0) str=str.substr(1);

-	if( window.name != frmId && ( sId != str) ) {

-		obj = GetObj("Main-File")

-		window.location.href=obj.href+"#"+sId

-		return 1

-	}

-	return 0

-}

-var MHTMLPrefix = CalculateMHTMLPrefix();

-function CalculateMHTMLPrefix()

-{

-	if ( document.location.protocol == 'mhtml:') {

-		href=new String(document.location.href)

-		Start=href.indexOf('!')+1

-		End=href.lastIndexOf('/')+1

-		if (End < Start)

-			return href.substring(0, Start)

-		else

-		return href.substring(0, End)

-	}

-	return '';

-}

-function GetTags(base,tag)

-{

-	if(g_supportsPPTHTML) return base.all.tags(tag);

-	else return base.getElementsByTagName(tag);

-}

-function UpdNtsPane(){ if(frames["PPTNts"]) PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }

-function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }

-function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }

-function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }

-function SetHasNts( fVal )

-{

-	if( gHasNts != fVal ) {

-		gHasNts=fVal

-		UpdNavPane()

-	}

-}

-function ToggleOtlText()

-{

-	gOtlTxtExp=!gOtlTxtExp

-	UpdOtlPane()

-}

-function ClearMedia()

-{

-	if (PPTSld.pptSound) PPTSld.pptSound.loop = 0;

-}

-function FullScreen()

-{

-	if ( PPTSld.g_animUseRuntime )

-		PPTSld.document.body.pause();

-	ClearMedia();

-	var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;

-	if(PPTNav.event.ctrlKey) {

-		var w = (window.screen.availWidth * 1.0) / 2.0

-		var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW

-		win = window.open( MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w + ",height=" + h );

-		if( win.document.body && PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-	else

-	{

-		win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );

-		if( win.document.body && PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-}

-function ToggleVNarration()

-{

-	rObj=PPTSld.document.all("NSPlay")

-	if( rObj && !PPTSld.g_animUseRuntime ) {

-		if( (rObj.playState == 1)||(rObj.playState == 0) )

-			rObj.Play()

-		else if( rObj.playState == 2 )

-			rObj.Pause()

-		else

-			return;

-	}

-	else if( PPTSld.g_animUseRuntime )

-	{

-		narObj = PPTSld.document.all("narrationID")

-		if( narObj )

-			narObj.togglePause()

-	}

-}

-function GetCurSldNum()

-{

-	obj=GetHrefObj(gCurSld)

-	if( obj.mOrigVis == 1 )

-		return obj.mSldIdx

-	else

-		return gCurSld

-}

-function GetNumSlds()

-{

-	if( GetHrefObj(gCurSld).mOrigVis == 1 )

-		return GetSldList().mNumVisSlds;

-	else

-		return GetSldList().mList.length

-}

-function GetSldNum( href )

-{

-	for(ii=0; ii<GetSldList().mList.length; ii++) {

-		if ( GetSldList().mList[ii].mSldHref == href )

-			return ii+1

-	}

-	return 1

-}

-function GetHrefObj( sldIdx ){ return GetSldList().mList[sldIdx-1] }

-function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }

-function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }

-function GoToNextSld()

-{

-	ii=gCurSld + 1

-	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {

-		if( ii<=GetSldList().mList.length ) {

-			obj=GetHrefObj(ii)

-			obj.mVis=1

-			GoToSldNum(ii)

-			return

-		}

-	}

-	else {

-		obj=GetHrefObj( ii )

-		while ( obj && ( obj.mOrigVis == 0 ) )

-			obj=GetHrefObj(++ii)

-		if( obj && obj.mOrigVis ) {

-			GoToSldNum(ii)

-			return

-		}

-	}

-	if( gSldStack.length > 1 )

-		PopSldList();

-	else if( !IsFramesMode() ) {

-		if( gLoopCont )

-			GoToFirst()

-		else

-			EndShow()

-	}

-}

-function GoToPrevSld()

-{

-	ii=gCurSld-1

-	if( ii > 0 ) {

-		obj=GetHrefObj(ii)

-		while ( obj && ( obj.mVis == 0 ) && ( ii>0 ) )

-			obj=GetHrefObj(--ii)

-		if( ii == 0 ) ii=1

-			GoToSldNum(ii)

-	}

-}

-function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }

-function GoToLast()

-{

-	ii=GetSldList().mList.length

-	if( ii != gCurSld )

-		GoToSld( GetHrefObj(ii).mSldHref )

-}

-function GoToSldNum( num )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	obj = GetHrefObj( num )

-	obj.mVis=1

-	gPrevSld=gCurSld

-	gCurSld = num;

-	PPTSld.location.replace(MHTMLPrefix+obj.mSldHref)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function GoToSld( href )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	GetHrefObj( GetSldNum(href) ).mVis=1

-	PPTSld.location.replace(MHTMLPrefix+href)

-}

-function SldUpdated( id )

-{

-	if( id == GetHrefObj(gCurSld).mSldHref ) return

-	gPrevSld=gCurSld

-	gCurSld=GetSldNum(id)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }

-function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }

-function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }

-function CloseWindow() {

-	if( HideMenu() ) return;

-	var event = PPTSld.event;

-	if( !IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) )

-		window.close( self );

-	CatchNumKeys( self, event );

-}

-function Unload() { gIsEndShow=0; }

-function SetupEndShow() {

-	gIsEndShow=1;

-	PPTSld.document.body.scroll="no";

-	PPTSld.document.onkeypress=CloseWindow;

-	PPTSld.document.onclick=CloseWindow;

-	PPTSld.document.oncontextmenu=_CM;

-}

-function EndShow()

-{

-	if( IsFramesMode() ) return

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	doc=PPTSld.document

-	var dir = doc.body.dir

-	if( dir != "rtl" ) dir = "ltr";

-	doc.open()

-	doc.writeln('<html><body dir=' + dir + ' bgcolor=black onload=parent.SetupEndShow() onunload=parent.Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')

-	doc.close()

-}

-function SetSldVisited(){ GetSldList().mList[gCurSld-1].mVisited=true }

-function IsSldVisited(){ return GetSldList().mList[gCurSld-1].mVisited }

-function hrefList( sldHref, visible, advDelay, advClk )

-{

-	this.mSldHref= this.mNtsHref = sldHref

-	this.mOrigVis= this.mVis = visible

-	this.mVisited= false

-	this.mAdvDelay= advDelay

-	this.mAdvOnClk= advClk

-}

-function SldList(arr,curSld,fEnd)

-{

-	this.mCurSld = curSld;

-	this.mList = new Array();

-	var idx = 1;

-	for(ii=0;ii<arr.length;ii++) {

-		this.mList[ii] = new hrefList( arr[ii].mSldHref, arr[ii].mOrigVis, arr[ii].mAdvDelay, arr[ii].mAdvOnClk );

-		if( arr[ii].mOrigVis )

-			this.mList[ii].mSldIdx = idx++;

-	}

-	this.mNumVisSlds = idx-1;

-	this.fEndShow = fEnd;

-}

-function GetSldList() {	return gSldStack[gSldStack.length-1] }

-function GetCurSld() { return parent.GetSldList().mList[parent.gCurSld - 1] }

-gSldStack = new Array();

-gSldStack[0] = new SldList(gMainDoc,gCurSld,1)

-function ToggleOtlPane()

-{

-	frmset=document.all("PPTHorizAdjust")

-	frm=document.all("PPTOtl")

-	if( gOtlOpen )

-		frmset.cols="*,100%"

-	else

-		frmset.cols="25%,*"

-	gOtlOpen=!gOtlOpen

-	frm.noResize=!frm.noResize

-	UpdOtNavPane()

-}

-function ToggleNtsPane()

-{

-	frmset=document.all("PPTVertAdjust")

-	frm=document.all("PPTNts")

-	if( gNtsOpen )

-		frmset.rows="100%,*"

-	else

-		frmset.rows="*,20%"

-	gNtsOpen=!gNtsOpen

-	UpdNtsPane()

-}

-function ViewCustomShow(idx,fEnd)

-{

-	if( !IsFullScrMode() ) return;

-	var sldList = new Array();

-	var custShow = custShowList[idx-1];

-	var jj = 0;

-	for( ii=0;ii<custShow.length;ii++ ) {

-		if( custShow[ii] <= gMainDoc.length )

-			sldList[jj++] = gMainDoc[custShow[ii]-1];

-	}

-	if (sldList.length > 0) {

-	PushSldList(sldList,fEnd);

-	gCurSld = 1;

-	}

-	else

-		if( PPTSld.event ) PPTSld.event.cancelBubble=true

-}

-function PushSldList(arr,fEnd) {

-	var ii = gSldStack.length;

-	gSldStack[ii] = new SldList(arr,gCurSld,fEnd);

-	GoToSld( gSldStack[ii].mList[0].mSldHref );

-}

-function PopSldList() {

-	if (gSldStack[gSldStack.length-1].fEndShow)

-		EndShow()

-	else {

-	gCurSld = gSldStack[gSldStack.length-1].mCurSld;

-	gSldStack[gSldStack.length-1] = null;

-	gSldStack.length--;

-	var sldList = gSldStack[gSldStack.length-1];

-	GoToSld( sldList.mList[gCurSld - 1].mSldHref );

-	}

-}

-var custShowList=new Array();

-function ImgBtn( oId,bId,w,action )

-{

-	var t=this

-	t.Perform    = _IBP

-	t.SetActive  = _IBSetA

-	t.SetInactive= _IBSetI

-	t.SetPressed = _IBSetP

-	t.SetDisabled= _IBSetD

-	t.Enabled    = _IBSetE

-	t.ChangeIcon = null

-	t.UserAction = action

-	t.ChgState   = _IBUI

-	t.mObjId   = oId

-	t.mBorderId= bId

-	t.mWidth   = w

-	t.mIsOn    = t.mCurState = 0

-}

-function _IBSetA()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetI()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetP()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gShadowClr,gHiliteClr,2 )

-		obj.style.posLeft+=1; obj.style.posTop+=1

-	}

-}

-function _IBSetD()

-{

-	obj=this.ChgState( gFaceClr,gFaceClr,0 )

-	obj.style.posTop=0

-}

-function _IBSetE( state )

-{

-	var t=this

-	GetObj( t.mBorderId ).style.visibility="visible"

-	if( state != t.mIsOn ) {

-		t.mIsOn=state

-		if( state )

-			t.SetInactive()

-		else

-			t.SetDisabled()

-	}

-}

-function _IBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-		if( t.ChangeIcon ) {

-			obj=GetObj(t.mObjId)

-			if( t.ChangeIcon() )

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth

-			else

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth

-		}

-		t.SetActive()

-	}

-}

-function _IBUI( clr1,clr2,nextState )

-{

-	var t=this

-	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )

-	obj=GetObj( t.mObjId )

-	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop

-	t.mCurState=nextState

-	return obj

-}

-function TxtBtn( oId,oeId,action,chkState )

-{

-	var t=this

-	t.Perform    = _TBP

-	t.SetActive  = _TBSetA

-	t.SetInactive= _TBSetI

-	t.SetPressed = _TBSetP

-	t.SetDisabled= _TBSetD

-	t.SetEnabled = _TBSetE

-	t.GetState   = chkState

-	t.UserAction = action

-	t.ChgState   = _TBUI

-	t.mObjId      = oId

-	t.m_elementsId= oeId

-	t.mIsOn       = 1

-}

-function _TBSetA()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gHiliteClr,gShadowClr,0,0 )

-}

-function _TBSetI()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-}

-function _TBSetP()

-{

-	if( this.mIsOn )

-		this.ChgState( gShadowClr,gHiliteClr,1,1 )

-}

-function _TBSetD()

-{

-	this.ChgState( gFaceClr,gFaceClr,0,0 )

-	this.mIsOn = 0

-}

-function _TBSetE()

-{

-	var t=this

-	if( !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-	else

-		t.ChgState( gShadowClr,gHiliteClr,1,1 )

-	t.mIsOn = 1

-}

-function _TBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-        if( !t.GetState )

-            return

-		if( t.GetState() )

-			t.SetPressed()

-		else

-			t.SetActive()

-	}

-}

-function _TBUI( clr1,clr2,lOffset,tOffset )

-{

-	SetBorder( GetObj( this.mObjId ),clr1,clr2 )

-	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )

-}

-function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }

-function SetBorder( obj, upperLeft, lowerRight )

-{

-	s=obj.style;

-	s.borderStyle      = "solid"

-	s.borderWidth      = 1

-	s.borderLeftColor  = s.borderTopColor = upperLeft

-	s.borderBottomColor= s.borderRightColor = lowerRight

-}

-function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }

-function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }

-function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }

-function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }

-function BtnOnUp()

-{

-	b=GetBtnObj()

-	if( b != null )

-		b.Perform()

-	else

-		Upd()

-}

-function GetNtsState(){ return parent.gNtsOpen }

-function GetOtlState(){ return parent.gOtlOpen }

-function GetOtlTxtState(){ return parent.gOtlTxtExp }

-function NtsBtnSetFlag( fVal )

-{

-	s=document.all.item( this.m_flagId ).style

-	s.display="none"

-	if( fVal )

-		s.display=""

-	else

-		s.display="none"

-}

-function _BSetA_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetActive() }

-function _BSetI_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetInactive() }

-function _BSetP_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetPressed() }

-function _BSetA_BorderImg()

-{

-	b = gBtnArr[this.mBorderId]

-	if( b != null && this.mIsOn && !b.GetState() ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _BSetI_BorderImg()

-{

-	b = gBtnArr[this.mBorderId]

-	if( b != null && this.mIsOn && !b.GetState() ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"

-var gBtnArr = new Array()

-gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_otlElem"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_nts"] = new ImgBtn( "nb_nts","nb_ntsBorder",10,parent.ToggleNtsPane )

-gBtnArr["nb_nts"].SetActive = _BSetA_BorderImg;

-gBtnArr["nb_nts"].SetInactive = _BSetI_BorderImg;

-gBtnArr["nb_ntsBorder"] = new TxtBtn( "nb_ntsBorder","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_ntsElem"] = new TxtBtn( "nb_ntsBorder","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_prevBorder"] = gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )

-gBtnArr["nb_nextBorder"] = gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )

-gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )

-gBtnArr["nb_sldshwBorder"] = new TxtBtn( "nb_sldshw","nb_sldshwBorder",parent.FullScreen,null )

-gBtnArr["nb_sldshwBorder"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwBorder"].SetInactive = _BSetI_Border;

-gBtnArr["nb_sldshwText"] = new TxtBtn( "nb_sldshw","nb_sldshwText",parent.FullScreen,null )

-gBtnArr["nb_sldshwText"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwText"].SetInactive = _BSetI_Border;

-gBtnArr["nb_voice"] = gBtnArr["nb_voiceBorder"] = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )

-gBtnArr["nb_otlTxtBorder"] = gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )

-gBtnArr["nb_ntsBorder"].m_flagId= "nb_nts"

-gBtnArr["nb_ntsBorder"].SetFlag = NtsBtnSetFlag

-gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState

-var sNext="Next",sPrev="Previous",sEnd="End Show",sFont="Arial",sArrow="Arrow",sFreeform="Freeform",sRect="Rectangle",sOval="Oval"

-function ShowMenu()

-{

-	BuildMenu();

-	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

-	m = PPTSld.document.all.item("ctxtmenu")

-	m.style.pixelLeft=x

-	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )

-		m.style.pixelLeft=x-m.scrollWidth

-	m.style.pixelTop=y

-	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )

-		m.style.pixelTop=y-m.scrollHeight

-	m.style.display=""

-}

-function _CM()

-{

-	if( !parent.IsFullScrMode() ) return;

-	if(!PPTSld.event.ctrlKey) {

-		ShowMenu()

-		return false

-	} else

-		HideMenu()

-}

-function BuildMenu()

-{

-	if( PPTSld.document.all.item("ctxtmenu") ) return

-	var mObj=CreateItem( PPTSld.document.body )

-	mObj.id="ctxtmenu"

-	mObj.style.visibility="hidden"

-	var s=mObj.style

-	s.position="absolute"

-	s.cursor="default"

-	s.width="120px"

-	SetCMBorder(mObj,"menu","black")

-	var iObj=CreateItem( mObj )

-	SetCMBorder( iObj, "threedhighlight","threedshadow" )

-	iObj.style.padding=2

-	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )

-	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )

-	CreateSeparator( iObj )

-	CreateMenuItem( iObj,sEnd,M_End,M_True )

-	mObj.style.visibility="visible"

-}

-function Cancel() { window.event.cancelBubble=true; window.event.returnValue=false }

-function Highlight() { ChangeClr("activecaption","threedhighlight") }

-function Deselect() { ChangeClr("threedface","menutext") }

-function Perform()

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() )

-		e.Action()

-	else

-		PPTSld.event.cancelBubble=true

-}

-function ChangeClr( bg,clr )

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() ) {

-		e.style.backgroundColor=bg

-		e.style.color=clr

-	}

-}

-function M_HasPrevSld() { return( parent.HasPrevSld() ) }

-function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }

-function M_GoPrevSld() { if( gIsEndShow ) { gIsEndShow=0; history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }

-function M_True() { return true }

-function M_End() { window.close( self ) }

-function CreateMenuItem( node,text,action,eval )

-{

-	var e=CreateItem( node )

-	e.type="menuitem"

-	e.Action=action

-	e.IsActive=eval

-	e.innerHTML=text

-	if( !e.IsActive() )

-		e.style.color="threedshadow"

-	e.onclick=Perform

-	e.onmouseover=Highlight

-	e.onmouseout=Deselect

-	s=e.style;

-	s.fontFamily=sFont

-	s.fontSize="9pt"

-	s.paddingLeft=2

-}

-function CreateSeparator( node )

-{

-	var sObj=CreateItem( node )

-	SetCMBorder(sObj,"menu","menu")

-	var s=sObj.style

-	s.borderTopColor="threedshadow"

-	s.borderBottomColor="threedhighlight"

-	s.height=1

-	s.fontSize="0px"

-}

-function CreateItem( node )

-{

-	var elem=PPTSld.document.createElement("DIV")

-	node.insertBefore( elem )

-	return elem

-}

-function SetCMBorder( o,ltClr,rbClr )

-{

-	var s=o.style

-	s.backgroundColor="menu"

-	s.borderStyle="solid"

-	s.borderWidth=1

-	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr

-}

diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0001.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0001.html
deleted file mode 100644
index 374b367..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0001.html
+++ /dev/null
@@ -1,124 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description
-content="3/19/2008: Open Source Meets Open Specifications: Eclipse and the OMG™">
-<link rel=Stylesheet href="master15_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:black;}
-.CT
-	{color:#2F2672;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="3"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master15.xml">
- <p:shaperange href="master15.xml#_x0000_s2049"/><![if !ppt]><p:shaperange
-  href="master15.xml#Picture_x0020_2"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_2" src="master15_image003.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master15.xml#Picture_x0020_5"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_5" src="master15_image004.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master15.xml#_x0000_s2052"/>
- <div v:shape="_x0000_s2052">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.0%;left:1.49%;width:97.75%;
- height:3.0%'><span style='mso-bidi-font-family:Arial;font-size:54%'>© 2008 by
- Embarcadero Technologies; made available under the EPL v1.0 |<span
- style='mso-spacerun:yes'>  </span>March </span><span style='mso-bidi-font-family:
- Arial;font-size:54%'>18, </span><span style='mso-bidi-font-family:Arial;
- font-size:54%'>2008</span></div>
- </div>
- <![endif]><p:shaperange href="master15.xml#_x0000_m2053"/><v:shape id="_x0000_s3074"
-  type="#_x0000_m2053" style='position:absolute;left:54pt;top:126pt;width:612pt;
-  height:90pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="centerTitle" position="-1"/></v:shape><p:shaperange
-  href="master15.xml#_x0000_m2054"/><v:shape id="_x0000_s3075" type="#_x0000_m2054"
-  style='position:absolute;left:108pt;top:270pt;width:7in;height:138pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="subTitle" position="-1"/></v:shape>
- <div v:shape="_x0000_s3074" class=CT style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:25.75%;left:8.42%;width:85.95%;
- height:6.0%'>Open Source Meets Open Specifications:<br>
-  </span><span style='position:absolute;top:32.0%;left:8.42%;width:83.14%;
- height:6.0%'>Eclipse and the OMG™<span style='mso-special-format:lastCR;
- display:none'>&#13;</span></span></div>
- <div v:shape="_x0000_s3075" style='tab-stops:.4427in'>
- <div class=CB1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=CB2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=CB3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=CB4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=CB style='text-align:left;mso-line-spacing:"90 20 0";mso-char-wrap:
- 1;mso-kinsoku-overflow:1;position:absolute;top:50.5%;left:15.91%;width:68.16%;
- height:5.25%'>Long Talk&#13;</div>
- <div class=CB style='text-align:left;mso-line-spacing:"90 20 0";mso-char-wrap:
- 1;mso-kinsoku-overflow:1;position:absolute;top:56.25%;left:15.91%;width:68.16%;
- height:5.25%'>&#13;</div>
- <div class=CB style='text-align:left;mso-line-spacing:"90 20 0";mso-char-wrap:
- 1;mso-kinsoku-overflow:1;position:absolute;top:62.25%;left:15.91%;width:68.16%;
- height:5.25%'>Kenn Hussey&#13;</div>
- <div class=CB style='text-align:left;mso-line-spacing:"90 20 0";mso-char-wrap:
- 1;mso-kinsoku-overflow:1;position:absolute;top:68.0%;left:15.91%;width:68.16%;
- height:5.25%'>Embarcadero Technologies</div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0030.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0030.html
deleted file mode 100644
index a6703fc..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0030.html
+++ /dev/null
@@ -1,199 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Legal Notices">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="114"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s116738"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s116739" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s116738" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Legal
- Notices</div>
- <div v:shape="_x0000_s116739" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:25.75%;left:10.48%;width:82.77%;
- height:4.0%'><span style='font-size:75%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.48%'>•</span></span><span style='font-size:75%'><b>Business
- Process Modeling Notation</b></span><span style='font-size:75%'>, </span><span
- style='font-size:75%'><b>BPMN</b></span><span style='font-size:75%'>, </span><span
- style='font-size:75%'><b>MOF</b></span><span style='font-size:75%'>, </span><span
- style='font-size:75%'><b>Object </b></span></span><span style='position:absolute;
- top:29.0%;left:10.48%;width:88.2%;height:4.0%'><span style='font-size:75%'><b>Management
- Group</b></span><span style='font-size:75%'>, </span><span style='font-size:
- 75%'><b>OMG</b></span><span style='font-size:75%'>, </span><span
- style='font-size:75%'><b>OMG SysML</b></span><span style='font-size:75%'>, </span><span
- style='font-size:75%'>and </span><span style='font-size:75%'><b>Unified
- Modeling </b></span></span><span style='position:absolute;top:32.25%;
- left:10.48%;width:81.27%;height:4.0%'><span style='font-size:75%'><b>Language</b></span><span
- style='font-size:75%'> are trademarks of the Object Management Group&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:36.25%;left:8.42%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:75%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:75%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:40.25%;left:10.48%;width:94.19%;
- height:4.0%'><span style='font-size:75%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.18%'>•</span></span><span style='font-size:75%'><b>Model
- Driven Architecture</b></span><span style='font-size:75%'>, </span><span
- style='font-size:75%'><b>MDA</b></span><span style='font-size:75%'>, </span><span
- style='font-size:75%'><b>UML</b></span><span style='font-size:75%'>, </span><span
- style='font-size:75%'><b>XMI</b></span><span style='font-size:75%'>, and the </span><span
- style='font-size:75%'><b>OMG Logo</b></span><span style='font-size:75%'> </span><span
- style='font-size:75%'>are </span></span><span style='position:absolute;
- top:43.5%;left:10.48%;width:81.27%;height:4.0%'><span style='font-size:75%'>registered
- trademarks of the Object Management Group&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:47.5%;left:8.42%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:75%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:75%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:51.5%;left:10.48%;width:96.25%;
- height:4.0%'><span style='font-size:75%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.14%'>•</span></span><span style='font-size:75%'><b>DOM</b></span><span
- style='font-size:75%'>, </span><span style='font-size:75%'><b>Metadata</b></span><span
- style='font-size:75%'>, </span><span style='font-size:75%'><b>RDF</b></span><span
- style='font-size:75%'>, and </span><span style='font-size:75%'><b>XML</b></span><span
- style='font-size:75%'> are trademarks </span><span style='font-size:75%'>of
- the World Wide Web </span></span><span style='position:absolute;top:54.5%;
- left:10.48%;width:97.19%;height:4.0%'><span style='font-size:75%'>Consortium;
- marks of </span><span style='font-size:75%'><b><p:onmouseclick
-  hyperlinktype="url" href="http://www.w3.org/"/><a href="http://www.w3.org/"
- target="_parent" onclick="window.event.cancelBubble=true;">W3C</a></b></span><span
- style='font-size:75%'> are registered and held by its host institutions </span></span><span
- style='position:absolute;top:57.75%;left:10.48%;width:81.27%;height:4.0%'><span
- style='font-size:75%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.lcs.mit.edu/"/><a href="http://www.lcs.mit.edu/"
- target="_parent" onclick="window.event.cancelBubble=true;">MIT</a></span><span
- style='font-size:75%'>, </span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.ercim.org/"/><a
- href="http://www.ercim.org/" target="_parent"
- onclick="window.event.cancelBubble=true;">ERCIM,</a></span><span
- style='font-size:75%'> and </span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.keio.ac.jp/"/><a
- href="http://www.keio.ac.jp/" target="_parent"
- onclick="window.event.cancelBubble=true;">Keio</a></span><span
- style='font-size:75%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:61.75%;left:8.42%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:75%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:75%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:65.75%;left:10.48%;width:81.27%;
- height:4.0%'><span style='font-size:75%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:75%'><b>Java</b></span><span
- style='font-size:75%'> and all Java-based trademarks are trademarks of Sun </span></span><span
- style='position:absolute;top:69.0%;left:10.48%;width:84.45%;height:4.0%'><span
- style='font-size:75%'>Microsystems, Inc. in the United States, other
- countries, or both&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:73.0%;left:8.42%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:75%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:75%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:77.0%;left:10.48%;width:97.19%;
- height:4.0%'><span style='font-size:75%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.11%'>•</span></span><span style='font-size:75%'>Other
- company, product, or service names may be trademarks or service </span></span><span
- style='position:absolute;top:80.25%;left:10.48%;width:81.27%;height:4.0%'><span
- style='font-size:75%'>marks of others</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0031.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0031.html
deleted file mode 100644
index b47ba69..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0031.html
+++ /dev/null
@@ -1,186 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: What is Open Source?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="6"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s6146"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s6147" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s6146" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>What is
- Open Source?<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s6147" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:85.95%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.39%;width:97.82%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.44%'>•</span></span><span
- style='font-size:83%'>A set of principles and practices on how to write
- software&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:31.75%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:36.5%;left:8.42%;width:90.44%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.27%;width:97.92%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.32%'>•</span></span><span
- style='font-size:83%'>According to the </span><span style='font-size:83%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.opensource.org/"/><a
- href="http://www.opensource.org/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Open
- Source Initiative</a></span><span style='font-size:83%'>, terms must
- include:&#13;</span></span></div>
- <div class=B1 style='mso-margin-left-alt:574;mso-text-indent-alt:286;
- mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;top:41.75%;
- left:13.48%;width:78.27%;height:4.0%'><span style='position:absolute;
- top:0%;left:6.45%;width:93.54%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-6.9%'>1.</span></span><span
- style='font-size:90%'>Free Redistribution&#13;</span></span></div>
- <div class=B1 style='mso-margin-left-alt:574;mso-text-indent-alt:286;
- mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;top:46.75%;
- left:13.48%;width:78.27%;height:4.0%'><span style='position:absolute;
- top:0%;left:6.45%;width:93.54%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-6.9%'>2.</span></span><span
- style='font-size:90%'>Source Code&#13;</span></span></div>
- <div class=B1 style='mso-margin-left-alt:574;mso-text-indent-alt:286;
- mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;top:51.5%;left:13.48%;
- width:78.27%;height:4.0%'><span style='position:absolute;top:0%;left:6.45%;
- width:93.54%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-6.9%'>3.</span></span><span
- style='font-size:90%'>Derived Works&#13;</span></span></div>
- <div class=B1 style='mso-margin-left-alt:574;mso-text-indent-alt:286;
- mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;top:56.25%;
- left:13.48%;width:78.27%;height:4.0%'><span style='position:absolute;
- top:0%;left:6.45%;width:93.54%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-6.9%'>4.</span></span><span
- style='font-size:90%'>Integrity of The AuthorsÂ’ Source Code&#13;</span></span></div>
- <div class=B1 style='mso-margin-left-alt:574;mso-text-indent-alt:286;
- mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;top:61.0%;left:13.48%;
- width:78.27%;height:4.0%'><span style='position:absolute;top:0%;left:6.45%;
- width:93.54%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-6.9%'>5.</span></span><span
- style='font-size:90%'>No Discrimination Against Persons or Groups&#13;</span></span></div>
- <div class=B1 style='mso-margin-left-alt:574;mso-text-indent-alt:286;
- mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;top:66.0%;left:13.48%;
- width:78.27%;height:4.0%'><span style='position:absolute;top:0%;left:6.45%;
- width:93.54%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-6.9%'>6.</span></span><span
- style='font-size:90%'>No Discrimination Against Fields of Endeavor&#13;</span></span></div>
- <div class=B1 style='mso-margin-left-alt:574;mso-text-indent-alt:286;
- mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;top:70.75%;
- left:13.48%;width:78.27%;height:4.0%'><span style='position:absolute;
- top:0%;left:6.45%;width:93.54%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-6.9%'>7.</span></span><span
- style='font-size:90%'>Distribution of License&#13;</span></span></div>
- <div class=B1 style='mso-margin-left-alt:574;mso-text-indent-alt:286;
- mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;top:75.5%;left:13.48%;
- width:78.27%;height:4.0%'><span style='position:absolute;top:0%;left:6.45%;
- width:93.54%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-6.9%'>8.</span></span><span
- style='font-size:90%'>License Must Not Be Specific to a Product&#13;</span></span></div>
- <div class=B1 style='mso-margin-left-alt:574;mso-text-indent-alt:286;
- mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;top:80.25%;
- left:13.48%;width:78.27%;height:4.0%'><span style='position:absolute;
- top:0%;left:6.45%;width:93.54%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-6.9%'>9.</span></span><span
- style='font-size:90%'>License Must Not Restrict Other Software&#13;</span></span></div>
- <div class=B1 style='mso-margin-left-alt:574;mso-text-indent-alt:286;
- mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;top:85.25%;
- left:13.48%;width:78.27%;height:4.0%'><span style='position:absolute;
- top:0%;left:6.45%;width:93.54%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-6.9%'>10.</span></span><span
- style='font-size:90%'>License Must Be Technology-Neutral</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0032.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0032.html
deleted file mode 100644
index ce6f1b2..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0032.html
+++ /dev/null
@@ -1,136 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: What Are Open Specifications?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="5"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s5122"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s5123" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s5122" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>What Are
- Open Specifications?<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s5123" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:94.38%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.18%'>•</span>Specifications
- created and controlled, in an open and </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:89.88%;height:5.25%'>fair way, by an association
- or standardization body </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:81.27%;height:5.25%'>aimed at supporting interoperability
- and </span><span style='position:absolute;top:42.5%;left:10.48%;width:81.27%;
- height:5.25%'>interchangeability&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:55.25%;left:10.48%;width:87.45%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.35%'>•</span>Open
- specifications are not controlled by a single </span><span style='position:
- absolute;top:60.5%;left:10.48%;width:81.27%;height:5.25%'>company or
- individual or by a group with </span><span style='position:absolute;
- top:66.0%;left:10.48%;width:81.27%;height:5.25%'>discriminatory membership
- criteria&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:72.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:78.75%;left:8.42%;width:96.25%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.14%;width:98.05%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.18%'>•</span>Specifications should not be
- confused with standards <span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0033.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0033.html
deleted file mode 100644
index 0101b9c..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0033.html
+++ /dev/null
@@ -1,178 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Open Specifications + Open Source">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="7"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s7170"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s7171" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s7170" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Open
- Specifications + Open Source<span style='mso-special-format:lastCR;display:
- none'>&#13;</span></div>
- <div v:shape="_x0000_s7171" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%;font-family:
- Wingdings'>ü</span></span><span style='font-size:75%'>Industry standards lead
- to commoditization&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:31.25%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>open specifications are </span><span
- style='font-size:90%'><i>interchange</i></span><span style='font-size:90%'>
- standards<span style='mso-spacerun:yes'>  </span>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:36.0%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:41.0%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%;font-family:
- Wingdings'>ü</span></span><span style='font-size:75%'>Reference
- implementations offer competitive advantage&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:45.5%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>development cost
- savings&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>ease of gaining market
- share vs. closed platforms&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:54.25%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>reference platform
- influences adopters&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:58.5%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:63.5%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%;font-family:
- Wingdings'>ü</span></span><span style='font-size:75%'>Reference
- implementations change rules for success&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:68.0%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>shift towards
- solution-oriented products&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:72.25%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>leverage common
- infrastructure to create specialized products&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:76.75%;left:15.35%;width:87.45%;height:3.5%'><span
- style='font-size:80%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.78%;font-family:Wingdings'>w</span></span><span style='font-size:80%'>ability
- to integrate becomes an opportunity as increased platform adoption </span></span><span
- style='position:absolute;top:80.25%;left:15.35%;width:76.21%;height:3.5%'><span
- style='font-size:80%'>leads to more things to integrate</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0034.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0034.html
deleted file mode 100644
index b086602..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0034.html
+++ /dev/null
@@ -1,146 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: What is the OMG?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="9"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s9218"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s9219" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s9218" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>What is
- the OMG?<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s9219" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:94.0%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.19%'>•</span>The
- Object Management Group™ is an international, </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:89.13%;height:5.25%'>open membership,
- not-for-profit computer industry </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:81.27%;height:5.25%'>consortium&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:50.0%;left:10.48%;width:86.7%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.37%'>•</span>OMG
- Task Forces develop enterprise integration </span><span style='position:absolute;
- top:55.25%;left:10.48%;width:94.75%;height:5.25%'>standards for a wide range
- of technologies, including:&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.5%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span>Real-time&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:66.75%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span>Embedded
- and Specialized Systems&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:72.0%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span>Analysis
- &amp; Design&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:77.5%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span>Architecture-Driven
- Modernization&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:82.75%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span>Middleware<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0035.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0035.html
deleted file mode 100644
index 36664e6..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0035.html
+++ /dev/null
@@ -1,176 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: What is Eclipse?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="32"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s32770"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s32771" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s32770" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>What is
- Eclipse?<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s32771" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:91.19%;height:4.0%'><span
- style='font-size:75%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.25%'>•</span></span><span style='font-size:75%'>Eclipse is an open
- source community whose projects are focused on </span></span><span
- style='position:absolute;top:30.5%;left:10.48%;width:92.88%;height:4.0%'><span
- style='font-size:75%'>building an extensible development platform, runtimes
- and application </span></span><span style='position:absolute;top:34.5%;
- left:10.48%;width:92.32%;height:4.0%'><span style='font-size:75%'>frameworks
- for building, deploying and managing software across the </span></span><span
- style='position:absolute;top:38.5%;left:10.48%;width:81.27%;height:4.0%'><span
- style='font-size:75%'>entire software lifecycle&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.25%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:48.0%;left:10.48%;width:94.75%;height:4.0%'><span
- style='font-size:75%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.17%'>•</span></span><span style='font-size:75%'>The Eclipse projects
- can be conceptually organized into seven different </span></span><span
- style='position:absolute;top:52.0%;left:10.48%;width:81.27%;height:4.0%'><span
- style='font-size:75%'>&quot;pillars&quot; or categories:&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.75%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Enterprise
- Development&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.0%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Embedded and Device
- Development&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:65.25%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Rich Client
- Platform&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:69.75%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Rich Internet
- Applications&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:74.0%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Application
- Frameworks&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:78.25%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Application Lifecycle
- Management (ALM)&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:82.5%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Service Oriented
- Architecture (SOA)&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:87.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0036.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0036.html
deleted file mode 100644
index b951937..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0036.html
+++ /dev/null
@@ -1,739 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: OMG Membership Matrix">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml" href="slide0036.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><p:shaperange
-  href="slide0036.xml#_x0000_s83970"/><![if !vml]><img border=0
- v:shapes="Content_x0020_Placeholder_x0020_3,_x0000_s83972,_x0000_s83973,_x0000_s83974,_x0000_s83975,_x0000_s83976,_x0000_s83977,_x0000_s83978,_x0000_s83979,_x0000_s83980,_x0000_s83981,_x0000_s83982,_x0000_s83983,_x0000_s83984,_x0000_s83985,_x0000_s83986,_x0000_s83987,_x0000_s83988,_x0000_s83989,_x0000_s83990,_x0000_s83991,_x0000_s83992,_x0000_s83993,_x0000_s83994,_x0000_s83995,_x0000_s83996,_x0000_s83997,_x0000_s83998,_x0000_s83999,_x0000_s84000,_x0000_s84001,_x0000_s84002,_x0000_s84003,_x0000_s84004,_x0000_s84005,_x0000_s84006,_x0000_s84007,_x0000_s84008,_x0000_s84009,_x0000_s84010,_x0000_s84011,_x0000_s84012,_x0000_s84013,_x0000_s84014,_x0000_s84015,_x0000_s84016,_x0000_s84017,_x0000_s84018,_x0000_s84019,_x0000_s84020,_x0000_s84021,_x0000_s84022,_x0000_s84023,_x0000_s84024,_x0000_s84025,_x0000_s84026,_x0000_s84027,_x0000_s84028,_x0000_s84029,_x0000_s84030,_x0000_s84031,_x0000_s84032,_x0000_s84033,_x0000_s84034,_x0000_s84035,_x0000_s84036,_x0000_s84037,_x0000_s84038,_x0000_s84039,_x0000_s84040,_x0000_s84041,_x0000_s84042,_x0000_s84043,_x0000_s84044,_x0000_s84045,_x0000_s84046,_x0000_s84047,_x0000_s84048,_x0000_s84049,_x0000_s84050,_x0000_s84051,_x0000_s84052"
- src="slide0036_image035.gif" style='position:absolute;top:25.5%;left:7.3%;
- width:85.76%;height:57.25%'><![endif]>
- <div v:shape="_x0000_s83970" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.omg.org/memberservices/membershipmatrix.htm"/><a
- href="http://www.omg.org/memberservices/membershipmatrix.htm" target="_parent"
- onclick="window.event.cancelBubble=true;">OMG Membership Matrix</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s83972">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:29.0%;left:8.42%;width:10.29%;height:2.0%'><span style='font-size:33%;
- color:white'><b>&nbsp;</b></span></div>
- </div>
- <div v:shape="_x0000_s83973">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.25%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:white'><b><br>
-  </b></span></span><span style='position:absolute;top:28.0%;left:20.59%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Contributing</b></span></span></div>
- </div>
- <div v:shape="_x0000_s83974">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.25%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:white'><b><br>
-  </b></span></span><span style='position:absolute;top:28.0%;left:32.77%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Domain</b></span></span></div>
- </div>
- <div v:shape="_x0000_s83975">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.25%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:white'><b><br>
-  </b></span></span><span style='position:absolute;top:28.0%;left:44.94%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Platform</b></span></span></div>
- </div>
- <div v:shape="_x0000_s83976">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.25%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:white'><b><br>
-  </b></span></span><span style='position:absolute;top:28.0%;left:57.11%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Influencing<br>
-  </b></span></span><span style='position:absolute;top:30.0%;left:57.11%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Government
- </b></span></span><span style='position:absolute;top:31.75%;left:57.11%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>University</b></span></span></div>
- </div>
- <div v:shape="_x0000_s83977">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.25%;left:69.28%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:white'><b><br>
-  </b></span></span><span style='position:absolute;top:28.0%;left:69.28%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Trial</b></span></span></div>
- </div>
- <div v:shape="_x0000_s83978">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.25%;left:81.46%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:white'><b><br>
-  </b></span></span><span style='position:absolute;top:28.0%;left:81.46%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Analyst</b></span><span
- style='font-size:33%;color:white;mso-special-format:lastCR;display:none'><b>&#13;</b></span></span></div>
- </div>
- <div v:shape="_x0000_s83979">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:35.75%;left:8.42%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>DTC Meeting<br>
-  </b></span></span><span style='position:absolute;top:37.5%;left:8.42%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'><b>Attendance</b></span><span
- style='font-size:33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s83980">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:34.75%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s83981">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:34.75%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s83982">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:34.75%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s83983">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:34.75%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s83984">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:34.75%;left:69.28%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>YES<br>
-  </b></span></span><span style='position:absolute;top:36.5%;left:69.28%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'>(One person)</span></span></div>
- </div>
- <div v:shape="_x0000_s83985">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:34.75%;left:81.46%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>YES<br>
-  </b></span></span><span style='position:absolute;top:36.5%;left:80.89%;
- width:11.04%;height:2.0%'><span style='font-size:33%;color:black'>(One person
- twice </span></span><span style='position:absolute;top:38.25%;left:81.46%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'>per year)</span></span></div>
- </div>
- <div v:shape="_x0000_s83986">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:42.5%;left:8.42%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>DTC Vote</b></span><span
- style='font-size:33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s83987">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:42.5%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s83988">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:42.5%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s83989">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:42.5%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s83990">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:42.5%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s83991">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:42.5%;left:69.28%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s83992">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:42.5%;left:81.46%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s83993">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:47.75%;left:8.42%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>PTC Meeting<br>
-  </b></span></span><span style='position:absolute;top:49.5%;left:8.42%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'><b>Attendance</b></span><span
- style='font-size:33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s83994">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:46.75%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s83995">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:46.75%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s83996">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:46.75%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s83997">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:46.75%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s83998">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:46.75%;left:69.28%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>YES<br>
-  </b></span></span><span style='position:absolute;top:48.5%;left:69.28%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'>(One person)</span></span></div>
- </div>
- <div v:shape="_x0000_s83999">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:46.75%;left:81.46%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>YES<br>
-  </b></span></span><span style='position:absolute;top:48.5%;left:80.89%;
- width:11.04%;height:2.0%'><span style='font-size:33%;color:black'>(One person
- twice </span></span><span style='position:absolute;top:50.5%;left:81.46%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'>per year)</span></span></div>
- </div>
- <div v:shape="_x0000_s84000">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:54.75%;left:8.42%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>PTC Vote</b></span><span
- style='font-size:33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84001">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:54.75%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84002">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:54.75%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s84003">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:54.75%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84004">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:54.75%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s84005">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:54.75%;left:69.28%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s84006">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:54.75%;left:81.46%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s84007">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:60.75%;left:8.42%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>TF Attendance</b></span><span
- style='font-size:33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84008">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:59.0%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84009">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:59.0%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84010">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:59.0%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84011">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:59.0%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84012">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:59.0%;left:69.28%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>YES<br>
-  </b></span></span><span style='position:absolute;top:60.75%;left:69.28%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'>(One person)</span></span></div>
- </div>
- <div v:shape="_x0000_s84013">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:59.0%;left:81.46%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>YES<br>
-  </b></span></span><span style='position:absolute;top:60.75%;left:80.89%;
- width:11.04%;height:2.0%'><span style='font-size:33%;color:black'>(One person
- twice </span></span><span style='position:absolute;top:62.5%;left:81.46%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'>per year)</span></span></div>
- </div>
- <div v:shape="_x0000_s84014">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:66.75%;left:8.42%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>TF Vote</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84015">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:66.75%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84016">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:66.75%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84017">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:66.75%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84018">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:66.75%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84019">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:66.75%;left:69.28%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s84020">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:66.75%;left:81.46%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s84021">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:72.0%;left:8.42%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>Subcommittee<br>
-  </b></span></span><span style='position:absolute;top:73.75%;left:8.42%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'><b>Attendance</b></span><span
- style='font-size:33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s84022">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:71.0%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84023">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:71.0%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84024">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:71.0%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84025">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:71.0%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84026">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:71.0%;left:69.28%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>YES<br>
-  </b></span></span><span style='position:absolute;top:72.75%;left:69.28%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'>(One person)</span></span></div>
- </div>
- <div v:shape="_x0000_s84027">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:71.0%;left:81.46%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>YES<br>
-  </b></span></span><span style='position:absolute;top:72.75%;left:80.89%;
- width:11.04%;height:2.0%'><span style='font-size:33%;color:black'>(One person
- twice </span></span><span style='position:absolute;top:74.5%;left:81.46%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'>per year)</span></span></div>
- </div>
- <div v:shape="_x0000_s84028">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:78.0%;left:8.42%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>Subcommittee<br>
-  </b></span></span><span style='position:absolute;top:79.75%;left:8.42%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'><b>Vote</b></span><span
- style='font-size:33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s84029">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:78.75%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:78.75%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84031">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:78.75%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s84032">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:78.75%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s84033">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:78.75%;left:69.28%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s84034">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:78.75%;left:81.46%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0036.xml b/docs/presentations/EclipseCon2008_LongTalk_files/slide0036.xml
deleted file mode 100644
index f7f5b89..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0036.xml
+++ /dev/null
@@ -1,1903 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="82"/>
- </o:shapelayout><p:shaperange id="_x0000_s83970">
-  <v:shape id="_x0000_s83970" type="#_x0000_m1027" style='position:absolute;
-   left:54pt;top:84pt;width:612pt;height:42pt;visibility:visible;
-   mso-wrap-style:square;v-text-anchor:middle'>
-   <v:stroke o:forcedash="f"/>
-   <v:path arrowok="t"/>
-   <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-    verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-   <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-   <p:placeholder type="title" position="-1"/>
-  </v:shape><v:group id="_x0000_s83971" style='position:absolute;left:54pt;
-   top:138pt;width:612pt;height:306.375pt' coordorigin="432,1104" coordsize="4896,2451"
-   o:tableproperties="1" o:tablelimits="36pt 34.75pt 29.25pt 29.25pt 29.25pt 29.25pt 29.25pt 29.25pt 29.25pt"
-   o:gfxdata="UEsDBBQABgAIAAAAIQCTXr2S+wAAAOEBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRQU7DMBBF
-90jcwfIWxQ5dIISSdEHKEhAqBxjZk8RqMrY8JrS3x2nLggVFLC3r/f++plrvp1HMGNl5quWtKqVA
-Mt466mv5vn0q7qXgBGRh9IS1PCDLdXN9VW0PAVlkmriWQ0rhQWs2A07Aygek/NP5OEHKz9jrAGYH
-PepVWd5p4ykhpSItGbKpXrJAdBbFK8T0DFPu0TayxpVvvVE5SorHE7PU1hJCGJ2BlKX1TFZNXPiu
-cwZVG3lzpG4WSjdVix18jEls9rnytDLiyH8E/lxQnO1VJo+lPLjAFxouG5/Nfltt/SdFnP87u83Y
-G87fVvp4oOYLAAD//wMAUEsDBBQABgAIAAAAIQA4/SH/1gAAAJQBAAALAAAAX3JlbHMvLnJlbHOk
-kMFqwzAMhu+DvYPRfXGawxijTi+j0GvpHsDYimMaW0Yy2fr2M4PBMnrbUb/Q94l/f/hMi1qRJVI2
-sOt6UJgd+ZiDgffL8ekFlFSbvV0oo4EbChzGx4f9GRdb25HMsYhqlCwG5lrLq9biZkxWOiqY22Yi
-Tra2kYMu1l1tQD30/bPm3wwYN0x18gb45AdQl1tp5j/sFB2T0FQ7R0nTNEV3j6o9feQzro1iOWA1
-4Fm+Q8a1a8+Bvu/d/dMb2JY5uiPbhG/ktn4cqGU/er3pcvwCAAD//wMAUEsDBBQABgAIAAAAIQAc
-MoGOPgcAAONVAAAOAAAAZHJzL2Uyb0RvYy54bWzsXNtu4kYYvq/Udxj5qlXFcjJHBVYJOWildhdt
-kkq9HOwBrI7H1niSQKu+S5+lT9Z/BgcvB8djwwImvgnm4P/w/effdi4+zlyKngkPHI/1jOqHioEI
-szzbYZOe8fhwW2obKBCY2Zh6jPSMOQmMj/0ff7jwuzc175ZjlyAgwYKu3zOmQvjdcjmwpsTFwQfP
-Jwy+G3vcxQLe8knZ5yQgTGAB7FxarlUqzbKLHWb0gSB7vuPYnzqWIjvk8jPr8/OQI8fuGaaBGHDr
-GQOPCaCBhhRbZOpRm3BUN8rhr9dJ4O7kG6K/etafQSgw1hHY5vgFsFiRFTHvjoO6Vcm0rGRc5yqV
-WSjgT0H6GYhf65idZqvWaYRnLX4Ap29Tezbmbv8Cd73xeGdpgXmz3WhXwLRzELrVqDXhGETHXTIT
-O5O3gH6r1aqZlaqBLOBQb3eqtbbiANq9ahJaYVd2UuqQ1DUWGD1xJ4MZBR5RAj6Hu2JEwxdws7HD
-A/HVe5GmRSNw+vBY/UKeci/mlHyy+383BrVawzQvS62bm2bJrJu10lXFbJfajavrQef2ujqoX/5z
-UQb6356mPhhR6RiK8x13bHk4gdeBR5FkXK1W6qZy51P7XGozoq8yC46m4NWNFsTwAklLaTW78uy5
-PBrB65ArN6OBUMipN778UiHAAXKKZaIhrPR4D4nmr56h/NR2uABPWhCmkC0YEnOfjCHge8YvLitR
-oaIICIVg9v/7V6ELAamow19gJEVeCiQs4IeZNfV4z7AEDymIhdx7lH6k/Ce9DjKbhNCMEgDKxAKI
-h3SVCWLRz0QckO7LzMyd0RPYa7JiDcg0zB5ijr/GMtWHKyKl8Npm5gWShWXX4yqzZa89WaULm8r4
-DDNO7qMV+iche7PCqudk1U9sTJ+ghd9MwfmsKXceTCfMhYZ/zU8TKqR+PXkN6D5KxyFzMn1kjpq4
-xHyNYVTZdu6LIlJFkQxz9ndvfx64g2k+TerL1phOYAVAF5Ph3qMrRblMGboZ7YoCVwwowaBzmjnj
-kmE6D9aTURRuh41c0F0oU4XjmFntNDOMY5H5w7koHEMgNcbokzn5XT8M0G+EbBkR8lmfLgUso2wY
-K8lRI39lsJXjXeBRx751qFpvqI0cGVCOnjHtGdiyoJ4u1lcrv5TuBFOyKhkZpqcDutEfN/dHxTvz
-hJkRI2lSvUVIemQSaUfZbf/NREY8UMoiIdcT6ZFJwaXAyMijHyXKvJwONr1Hq2DpMdDsYfSISV//
-6QsjyIfrOh77eSVRAqe9bswyxq++JrnFHYkXx1JGQHOCeUozrHV29ValbR6us9M3j+znfvdE2u4n
-kYFGPi16ngikmDZdv0pGpGJr/Areh26AUpTiN1J2pOUZA5YYW0uAPn/RqQ3Hsru+8+ZDoTOxy4HU
-yEsBHO620NBDU7M/RGoto0dSdomZlxeJLKJEq1dOJMFiZbF+vVY/A2rgXVTs5T0IsT55aIwS42hZ
-2TbHoMjk23uZRNoRgZPBI49d3qF9Zj8YaS0v0rLSLVP6eW3p/8VCQ2sDrGmBxNywDff3sdCQ/Vyx
-0JCXglNdC9T3qONUsmKIlflj40bcI6xvo7bj+/UtR7K2fhCc9OalUGPrNZIYp8rLouLhFhXz/pnm
-u3zOIEmVIMX4EZEqZtm4Z2VOECP9SnOcrjGfcVXM9mC3PXa7KfLQcm7e9NccW+V9TP7QIBWDfzH4
-7zNznHp9ixlp5G3AUvTo4dk3n+bN2FTvJ61GXc32dUIKLhGp2CbyqIAV3rS3x8VPev+SwmWX/cZO
-CuVlhXH/NLI813XgmYv1Gw61uiu9ANK8hlLcbCErxAHqhJ7V5P0sm013lNK3V4dE2hGB2Jpw6CEx
-UeZlUngfeGRJl+mRScGl8JnVf9JyZngcvtToR/yp3ybxVhT9DwAA///sVltPwjAU/itNnzSGMNRE
-QugeVHgU4qKJj2ddZUu6bumOl/nr7YUwUBCmxJDoy7Kztt8533cuHaMnuepIpN1w2IWBnupwCAMM
-H0aRtdF/td9it2I2EAlqxqhQnbuIkuqN0X4QUBIz2qMkyTTWjAbUHpGAmSJYl+IRuFjnyriY49r9
-m8FbwtrAjyZKkFLoqjAhvGTcGaQWoI9XmJkQSscSXy+LpHb0+VR7PZD7Ja+KJimjZxdB/9zzs6vG
-1eJcbM67k4Z6hRHWUhgYh28eRjmQM8UoR23lNnzd42tF7ZbtOlrC0VPMizzPEIVYYbjQeB+eds2Y
-K4fdg78v8GPQQiVT0HC7Keqt4A2AS+K6LBNQPC20z4kFrAqZJeNMSmfwVOTiSmryDJJR4Fwo7M1b
-ZWmnbRRTMr5UfE0cVGV8buZGmvXdvHdtm3ayWln4Q2mbPyhO2yltp0t7mVp4acpxt079vWra2giL
-G/NmsjJ0N1wrKwPnn0bbK/Eb/wE/youd7PO5HpsrwZgzDWWa8WtAWLbNezkYnRZjDbkI3wEAAP//
-AwBQSwMEFAAGAAgAAAAhAHxh3xbDAAAA2gAAAA8AAABkcnMvZG93bnJldi54bWxEj0FrAjEUhO8F
-/0N4gpeiWaVUWY0iUouXQnUVr4/Nc7O4eVk2qab++qZQ6HGYmW+YxSraRtyo87VjBeNRBoK4dLrm
-SsGx2A5nIHxA1tg4JgXf5GG17D0tMNfuznu6HUIlEoR9jgpMCG0upS8NWfQj1xIn7+I6iyHJrpK6
-w3uC20ZOsuxVWqw5LRhsaWOovB6+rILL7Pkc4se04HjamerzUbxP3h5KDfpxPQcRKIb/8F97pxW8
-wO+VdAPk8gcAAP//AwBQSwECLQAUAAYACAAAACEAk169kvsAAADhAQAAEwAAAAAAAAAAAAAAAAAA
-AAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQA4/SH/1gAAAJQBAAALAAAAAAAA
-AAAAAAAAACwBAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQAcMoGOPgcAAONVAAAOAAAAAAAA
-AAAAAAAAACsCAABkcnMvZTJvRG9jLnhtbFBLAQItABQABgAIAAAAIQB8Yd8WwwAAANoAAAAPAAAA
-AAAAAAAAAAAAAJUJAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAQABADzAAAAhQoAAAAA
-">
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:rect id="_x0000_s83972" style='position:absolute;left:432;top:1104;
-    width:699;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCQ1PYl1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sTI9Na8JA
-EIbvBf/DMoXe6sZSSomuYgVpKT00Rg/eJtnJB2Znw+4aY399Fw+lx3fe4Xl5FqvRdGIg51vLCmbT
-BARxaXXLtYJ9vn18BeEDssbOMim4kofVcnK3wFTbC2c07EItIoR9igqaEPpUSl82ZNBPbU8cu8o6
-gyFGV0vt8BLhppNPSfIiDbYcFxrsadNQedqdjYKqSA5nHtf58fltyGfZcPj8+umUergf13MQgcbw
-/9l/b4q/8ob60AqiSfV+LVyrM/SB3O0STaMlyOUvAAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAJDU9iXWAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83973" style='position:absolute;left:1131;
-    top:1104;width:700;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDZ/ept1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SP0Ha5DYoNahC1qFuhVqhEBsUB9SWA7xNE6Jx5FtmrRfj9UFLO/c0bk6i9VgW3EiHxrHCh4m
-GQjiyumGawX73ct4DiJEZI2tY1JwpgCr5ehmgbl2PW/otI21SBAOOSowMXa5lKEyZDFMXEecuoPz
-FmOKvpbaY5/gtpXTLHuUFhtOCwY7Whuqvrc/VoFrd30xe/f385me2vKzKI5lf1Tq7nZ4fgIRaYj/
-z+bjUl7kX3lFvWkFyeTwev7yjd5giOSvl2SaLEEufwEAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDZ/ept1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83974" style='position:absolute;left:1831;
-    top:1104;width:699;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAtJfPP1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BSwMx
-EIXvgv8hjNCLtFkL2rI2LeJSFQ9CW2E9jpvp7tbNZElis/33hh7s8c0bvse3WA2mE0dyvrWs4G6S
-gSCurG65VvC5W4/nIHxA1thZJgUn8rBaXl8tMNc28oaO21CLBGGfo4ImhD6X0lcNGfQT2xOnbm+d
-wZCiq6V2GBPcdHKaZQ/SYMtpocGenhuqfra/RoHtdrGYvbvb+UxPTflVFIcyHpQa3QxPjyACDeHy
-XFJ8uf/4L8+oN60gmexfT9+u1Rv0gdz5kkyTJcjlHwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAtJfPP1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83975" style='position:absolute;left:2530;
-    top:1104;width:700;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBM8s721gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9NawIx
-EIbvBf9DmEIvpWbrocpqlNKl9ANK0RXscboZd1c3kyVJzfrvG7x4fOcdnpdnsRpMJ07kfGtZweM4
-A0FcWd1yrWBbvj7MQPiArLGzTArO5GG1HN0sMNc28ppOm1CLBGGfo4ImhD6X0lcNGfRj2xOnbm+d
-wZCiq6V2GBPcdHKSZU/SYMtpocGeXhqqjps/o8B2ZSymn+5+NtUTs/spisMuHpS6ux2e5yACDeH6
-/FHGr+9reUG9awXJZP92/nWtXqMP5C6XZJosQS7/AQAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAEzyzvbWAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83976" style='position:absolute;left:3230;
-    top:1104;width:699;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBN1scm1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9Na8JA
-EIbvhf6HZYReSt3UQ5XoKtJQWooXP0CPk+yYRLOzYXdr4r938WCP77zD8/LMFr1pxIWcry0reB8m
-IIgLq2suFey2X28TED4ga2wsk4IreVjMn59mmGrb8Zoum1CKCGGfooIqhDaV0hcVGfRD2xLH7mid
-wRCjK6V22EW4aeQoST6kwZrjQoUtfVZUnDd/RoFttl02/nWvk7Eemf0hy0777qTUy6BfTkEE6sP/
-82q5y/PyUd5RP1pBNDl+X3NX6zX6QO5+iabREuT8BgAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAE3WxybWAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83977" style='position:absolute;left:3929;
-    top:1104;width:700;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDKw74Y1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LbsIw
-EEX3lfgHa5DYVMUpi4ICBlVNoRU7HhIsp/GQhMbjyDYk/H0tFnR5547O1ZktOlOLKzlfWVbwOkxA
-EOdWV1wo2O+WLxMQPiBrrC2Tght5WMx7TzNMtW15Q9dtKESEsE9RQRlCk0rp85IM+qFtiGN3ss5g
-iNEVUjtsI9zUcpQkb9JgxXGhxIY+Ssp/txejwNa7Nhuv3fNkrEfmcMyy86E9KzXod+9TEIG68P+8
-/lzpfP8o76hvrSCanL5uP67SG/SB3P0STaMlyPkfAAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAMrDvhjWAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83978" style='position:absolute;left:4629;
-    top:1104;width:699;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQC587Nr1QAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/BbsIw
-EETvSP0Hayv1gopTDhAFDKoaVVTcgKr0uMRLEhqvI9slyd/X4lCOs7N6o7dc96YRV3K+tqzgZZKA
-IC6srrlU8Hl4f05B+ICssbFMCgbysF49jJaYadvxjq77UIoIYZ+hgiqENpPSFxUZ9BPbEsfubJ3B
-EKMrpXbYRbhp5DRJZtJgzXGhwpbeKip+9r9GgW0OXT7funE611Nz/M7zy7G7KPX02L8uQATqw/35
-i4eCNv/lDfWhFUST82Y4uVrv0Adyt0s0jZYgV38AAAD//wMAUEsBAi0AFAAGAAgAAAAhANvh9svu
-AAAAhQEAABMAAAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAA
-ACEAWvQsW78AAAAVAQAACwAAAAAAAAAAAAAAAAAfAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAA
-ACEAufOza9UAAAD5AAAADwAAAAAAAAAAAAAAAAAHAgAAZHJzL2Rvd25yZXYueG1sUEsFBgAAAAAD
-AAMAtwAAAAkDAAAAAA==
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83979" style='position:absolute;left:432;top:1469;
-    width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDDUFRi1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9NSwMx
-EIbvgv8hjODNZisisjYtW0EUEWG79uBtupn9oJvJkqTp1l9v6KEe33mH5+VZrCYziEjO95YVzGcZ
-COLa6p5bBd/V690TCB+QNQ6WScGJPKyW11cLzLU9cklxE1qRIOxzVNCFMOZS+rojg35mR+LUNdYZ
-DCm6VmqHxwQ3g7zPskdpsOe00OFILx3V+83BKGh22fbAU1H9PKxjNS/j9uPzd1Dq9mYqnkEEmsL/
-cxH5SzaX8ox61wqSSfN22rlel+gDufMlmSZLkMs/AAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAMNQVGLWAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83980" style='position:absolute;left:1131;
-    top:1469;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83981" style='position:absolute;left:1831;
-    top:1469;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83982" style='position:absolute;left:2530;
-    top:1469;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83983" style='position:absolute;left:3230;
-    top:1469;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83984" style='position:absolute;left:3929;
-    top:1469;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDzSaLs1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BS8NA
-EIXvgv9hGcGb3SSgSOy2BKHVglDbitjbmJ0modnZsLtpU3+9Sw/t8c0bvsc3ng6mFQdyvrGsIB0l
-IIhLqxuuFHxtZg/PIHxA1thaJgUn8jCd3N6MMdf2yCs6rEMlIoR9jgrqELpcSl/WZNCPbEccu511
-BkOMrpLa4THCTSuzJHmSBhuOCzV29FpTuV/3RkH/+LP9Xs4X/SKrtl0xT4t0GT6Vur8bihcQgYZw
-ff7I/jg1l/KMetcKosnu7fTrGr1CH8idL9E0WoKc/AMAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDzSaLs1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83985" style='position:absolute;left:4629;
-    top:1469;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDTZ/IP1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqJNKIJTWraJKFLrqA1ToboiniUU8jmynTf8eqwtY3rmjc3Wm88G24kQ+GMcK8lEG
-grhy2nCt4OP95eEZRIjIGlvHpOBCAeaz25spFtqdeUunXaxFgnAoUEETY1dIGaqGLIaR64hTd3Te
-YkzR11J7PCe4beU4y56kRcNpocGOFg1VP7veKugfvw779XLVr8b1oSuXeZmv40ap+7uhnICINMT/
-Z8PdZvH5V15Rb1pBMjm+Xr690VsMkfz1kkyTJcjZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDTZ/IP1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83986" style='position:absolute;left:432;top:1757;
-    width:699;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDZuuvO1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqFOEEAp1qxYJ8RCbNGTBbhpPEqvxOLLdNOXrsbooyzt3dK7OYjXZXozkg3GsYD7L
-QBDXThtuFXyXr3dPIEJE1tg7JgUnCrBaXl8tMNfuyAWN29iKBOGQo4IuxiGXMtQdWQwzNxCnrnHe
-YkzRt1J7PCa47eV9lj1Ki4bTQocDvXRU77cHq6DZZdWBp3X587AZy3kxVp9fv71StzfT+hlEpCn+
-P3szVB/mUp5R71pBMmneTjtvdIEhkj9fkmmyBLn8AwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANm6687WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83987" style='position:absolute;left:1131;
-    top:1757;width:700;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83988" style='position:absolute;left:1831;
-    top:1757;width:699;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83989" style='position:absolute;left:2530;
-    top:1757;width:700;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83990" style='position:absolute;left:3230;
-    top:1757;width:699;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83991" style='position:absolute;left:3929;
-    top:1757;width:700;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83992" style='position:absolute;left:4629;
-    top:1757;width:699;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83993" style='position:absolute;left:432;top:1990;
-    width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBjk/rF1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9NSwMx
-EIbvgv8hjODNZitSZW1a2kKpFC/btYK36Wb2AzeTNUm3W3+9oQd7fOcdnpdnOh9MK3pyvrGsYDxK
-QBAXVjdcKfjI1w8vIHxA1thaJgVn8jCf3d5MMdX2xBn1u1CJCGGfooI6hC6V0hc1GfQj2xHHrrTO
-YIjRVVI7PEW4aeVjkkykwYbjQo0drWoqvndHo6A8JPsjD4v862nZ5+Os32/ff1ul7u+GxSuIQEO4
-Pj//mM/t5L+8oN60gmhSbs4H1+gMfSB3uUTTaAly9gcAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQBjk/rF1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83994" style='position:absolute;left:1131;
-    top:1990;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83995" style='position:absolute;left:1831;
-    top:1990;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83996" style='position:absolute;left:2530;
-    top:1990;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83997" style='position:absolute;left:3230;
-    top:1990;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83998" style='position:absolute;left:3929;
-    top:1990;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDzSaLs1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BS8NA
-EIXvgv9hGcGb3SSgSOy2BKHVglDbitjbmJ0modnZsLtpU3+9Sw/t8c0bvsc3ng6mFQdyvrGsIB0l
-IIhLqxuuFHxtZg/PIHxA1thaJgUn8jCd3N6MMdf2yCs6rEMlIoR9jgrqELpcSl/WZNCPbEccu511
-BkOMrpLa4THCTSuzJHmSBhuOCzV29FpTuV/3RkH/+LP9Xs4X/SKrtl0xT4t0GT6Vur8bihcQgYZw
-ff7I/jg1l/KMetcKosnu7fTrGr1CH8idL9E0WoKc/AMAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDzSaLs1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s83999" style='position:absolute;left:4629;
-    top:1990;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDTZ/IP1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqJNKIJTWraJKFLrqA1ToboiniUU8jmynTf8eqwtY3rmjc3Wm88G24kQ+GMcK8lEG
-grhy2nCt4OP95eEZRIjIGlvHpOBCAeaz25spFtqdeUunXaxFgnAoUEETY1dIGaqGLIaR64hTd3Te
-YkzR11J7PCe4beU4y56kRcNpocGOFg1VP7veKugfvw779XLVr8b1oSuXeZmv40ap+7uhnICINMT/
-Z8PdZvH5V15Rb1pBMjm+Xr690VsMkfz1kkyTJcjZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDTZ/IP1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84000" style='position:absolute;left:432;top:2278;
-    width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCQ2qOA1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9NSwMx
-EIbvgv8hjODNZisisjYtrSCKCLJde+htupn9oJvJkqTprr/e0IMe33mH5+VZrEbTi0jOd5YVzGcZ
-COLK6o4bBd/l690TCB+QNfaWScFEHlbL66sF5tqeuaC4DY1IEPY5KmhDGHIpfdWSQT+zA3HqausM
-hhRdI7XDc4KbXt5n2aM02HFaaHGgl5aq4/ZkFNSHbHficV3uHzaxnBdx9/H50yt1ezOun0EEGsP/
-c/E17Yv4V15Q71pBMqnfpoPrdIE+kLtckmmyBLn8BQAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAJDao4DWAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84001" style='position:absolute;left:1131;
-    top:2278;width:700;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84002" style='position:absolute;left:1831;
-    top:2278;width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84003" style='position:absolute;left:2530;
-    top:2278;width:700;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84004" style='position:absolute;left:3230;
-    top:2278;width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84005" style='position:absolute;left:3929;
-    top:2278;width:700;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84006" style='position:absolute;left:4629;
-    top:2278;width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84007" style='position:absolute;left:432;top:2512;
-    width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAovic11QAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9NawIx
-EIbvQv9DmII3zSqlyNYotlAs0su69dDbuJn9oJvJksR19dcbPNjjO+/wvDzL9WBa0ZPzjWUFs2kC
-griwuuFKwU/+OVmA8AFZY2uZFFzIw3r1NFpiqu2ZM+r3oRIRwj5FBXUIXSqlL2oy6Ke2I45daZ3B
-EKOrpHZ4jnDTynmSvEqDDceFGjv6qKn425+MgvKYHE48bPLfl/c+n2X9Yfd9bZUaPw+bNxCBhvD/
-fPWZ0YtHeUd9aQXRpNxejq7RGfpA7n6JptES5OoGAAD//wMAUEsBAi0AFAAGAAgAAAAhANvh9svu
-AAAAhQEAABMAAAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAA
-ACEAWvQsW78AAAAVAQAACwAAAAAAAAAAAAAAAAAfAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAA
-ACEAKL4nNdUAAAD5AAAADwAAAAAAAAAAAAAAAAAHAgAAZHJzL2Rvd25yZXYueG1sUEsFBgAAAAAD
-AAMAtwAAAAkDAAAAAA==
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84008" style='position:absolute;left:1131;
-    top:2512;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84009" style='position:absolute;left:1831;
-    top:2512;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84010" style='position:absolute;left:2530;
-    top:2512;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84011" style='position:absolute;left:3230;
-    top:2512;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84012" style='position:absolute;left:3929;
-    top:2512;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDzSaLs1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BS8NA
-EIXvgv9hGcGb3SSgSOy2BKHVglDbitjbmJ0modnZsLtpU3+9Sw/t8c0bvsc3ng6mFQdyvrGsIB0l
-IIhLqxuuFHxtZg/PIHxA1thaJgUn8jCd3N6MMdf2yCs6rEMlIoR9jgrqELpcSl/WZNCPbEccu511
-BkOMrpLa4THCTSuzJHmSBhuOCzV29FpTuV/3RkH/+LP9Xs4X/SKrtl0xT4t0GT6Vur8bihcQgYZw
-ff7I/jg1l/KMetcKosnu7fTrGr1CH8idL9E0WoKc/AMAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDzSaLs1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84013" style='position:absolute;left:4629;
-    top:2512;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDTZ/IP1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqJNKIJTWraJKFLrqA1ToboiniUU8jmynTf8eqwtY3rmjc3Wm88G24kQ+GMcK8lEG
-grhy2nCt4OP95eEZRIjIGlvHpOBCAeaz25spFtqdeUunXaxFgnAoUEETY1dIGaqGLIaR64hTd3Te
-YkzR11J7PCe4beU4y56kRcNpocGOFg1VP7veKugfvw779XLVr8b1oSuXeZmv40ap+7uhnICINMT/
-Z8PdZvH5V15Rb1pBMjm+Xr690VsMkfz1kkyTJcjZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDTZ/IP1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84014" style='position:absolute;left:432;top:2800;
-    width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDppBdv1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/BTsMw
-EETvSPxDtEjcqFOEAKV1q4JAIOglDT30to03cUS8jmw3dfl6rB7gODurN3rzZTR9NpLznWUJ00kO
-GXFtVcethK/q9eYRMh+QFfaWScKJPCwXlxdzLJQ9cknjJrRZgrAvUIIOYSiE8LUmg35iB+LUNdYZ
-DCm6ViiHxwQ3vbjN83thsOO0oHGgZ0319+ZgJDT7fHvguKp2d09jNS3H7cf6p5fy+iquZpAFiuH/
-WT9Efvn8K8+odyUhmTRvp73rVIk+kDtfkmmyBLH4BQAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAOmkF2/WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84015" style='position:absolute;left:1131;
-    top:2800;width:700;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84016" style='position:absolute;left:1831;
-    top:2800;width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84017" style='position:absolute;left:2530;
-    top:2800;width:700;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84018" style='position:absolute;left:3230;
-    top:2800;width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84019" style='position:absolute;left:3929;
-    top:2800;width:700;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84020" style='position:absolute;left:4629;
-    top:2800;width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84021" style='position:absolute;left:432;top:3034;
-    width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQC+U88O1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9NawIx
-EIbvhf6HMEJvNatIsVuj2EJpKV7WrYXexs3sB24mSxLXtb/e4MEe33mH5+VZrAbTip6cbywrmIwT
-EMSF1Q1XCr7z98c5CB+QNbaWScGZPKyW93cLTLU9cUb9NlQiQtinqKAOoUul9EVNBv3YdsSxK60z
-GGJ0ldQOTxFuWjlNkidpsOG4UGNHbzUVh+3RKCj3ye7Iwzr/nb32+STrd1+bv1aph9GwfgERaAj/
-z5vwM50938or6lMriCblx3nvGp2hD+Sul2gaLUEuLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQC+U88O1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84022" style='position:absolute;left:1131;
-    top:3034;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84023" style='position:absolute;left:1831;
-    top:3034;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84024" style='position:absolute;left:2530;
-    top:3034;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84025" style='position:absolute;left:3230;
-    top:3034;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84026" style='position:absolute;left:3929;
-    top:3034;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDzSaLs1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BS8NA
-EIXvgv9hGcGb3SSgSOy2BKHVglDbitjbmJ0modnZsLtpU3+9Sw/t8c0bvsc3ng6mFQdyvrGsIB0l
-IIhLqxuuFHxtZg/PIHxA1thaJgUn8jCd3N6MMdf2yCs6rEMlIoR9jgrqELpcSl/WZNCPbEccu511
-BkOMrpLa4THCTSuzJHmSBhuOCzV29FpTuV/3RkH/+LP9Xs4X/SKrtl0xT4t0GT6Vur8bihcQgYZw
-ff7I/jg1l/KMetcKosnu7fTrGr1CH8idL9E0WoKc/AMAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDzSaLs1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84027" style='position:absolute;left:4629;
-    top:3034;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDTZ/IP1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqJNKIJTWraJKFLrqA1ToboiniUU8jmynTf8eqwtY3rmjc3Wm88G24kQ+GMcK8lEG
-grhy2nCt4OP95eEZRIjIGlvHpOBCAeaz25spFtqdeUunXaxFgnAoUEETY1dIGaqGLIaR64hTd3Te
-YkzR11J7PCe4beU4y56kRcNpocGOFg1VP7veKugfvw779XLVr8b1oSuXeZmv40ap+7uhnICINMT/
-Z8PdZvH5V15Rb1pBMjm+Xr690VsMkfz1kkyTJcjZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDTZ/IP1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84028" style='position:absolute;left:432;top:3322;
-    width:699;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDyt0Lt1QAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BSwMx
-EIXvgv8hjODNZisisjYtVRFFvGzXCt6mm9nN4mayJGm69dcbetDjmzd8j2+xmuwgEvnQO1YwnxUg
-iBune+4UfNTPV3cgQkTWODgmBUcKsFqeny2w1O7AFaVN7ESGcChRgYlxLKUMjSGLYeZG4ty1zluM
-OfpOao+HDLeDvC6KW2mx57xgcKRHQ833Zm8VtLtiu+dpXX/dPKR6XqXt2/vPoNTlxbS+BxFpiv/P
-n+kpGvlXnlCvWkE2aV+OO9/rCkMkf7pk02wJcvkLAAD//wMAUEsBAi0AFAAGAAgAAAAhANvh9svu
-AAAAhQEAABMAAAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAA
-ACEAWvQsW78AAAAVAQAACwAAAAAAAAAAAAAAAAAfAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAA
-ACEA8rdC7dUAAAD5AAAADwAAAAAAAAAAAAAAAAAHAgAAZHJzL2Rvd25yZXYueG1sUEsFBgAAAAAD
-AAMAtwAAAAkDAAAAAA==
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84029" style='position:absolute;left:1131;
-    top:3322;width:700;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84030" style='position:absolute;left:1831;
-    top:3322;width:699;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84031" style='position:absolute;left:2530;
-    top:3322;width:700;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84032" style='position:absolute;left:3230;
-    top:3322;width:699;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84033" style='position:absolute;left:3929;
-    top:3322;width:700;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84034" style='position:absolute;left:4629;
-    top:3322;width:699;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:line id="_x0000_s84035" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="1131,1104" to="1131,3555"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84036" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="1831,1104" to="1831,3555"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84037" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="2530,1104" to="2530,3555"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84038" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="3230,1104" to="3230,3555"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84039" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="3929,1104" to="3929,3555"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84040" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="4629,1104" to="4629,3555"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84041" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,1469" to="5328,1469"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBHXSM+zQAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9Ba8Mw
-DIXvhf0Ho8FurbMNwsjqljHo2sMuTUvOaqzEYbEcbK91//1MKewo6em99y3XyY7iTD4MjhU8LwoQ
-xK3TA/cKjofN/A1EiMgaR8ek4EoB1quH2RIr7S68p3Mde5FNOFSowMQ4VVKG1pDFsHATcb51zluM
-efS91B4v2dyO8qUoSmlx4JxgcKJPQ+1P/WsVfL8629TdVzJN2o5sNmV52KFST4/p4x1EpBT/xffv
-nVaQy3fb68kPeo8hkr9tMlwGA7n6AwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAAAIUBAAAT
-AAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAhAFr0LFu/
-AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAhAEddIz7N
-AAAA7AAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwADALcAAAAB
-AwAAAAA=
-" strokecolor="white [0]" strokeweight="3pt"/>
-   <v:line id="_x0000_s84042" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,1757" to="5328,1757"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84043" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,1990" to="5328,1990"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84044" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,2278" to="5328,2278"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84045" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,2512" to="5328,2512"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84046" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,2800" to="5328,2800"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84047" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,3034" to="5328,3034"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84048" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,3322" to="5328,3322"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84049" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,1104" to="432,3555"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84050" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="5328,1104" to="5328,3555"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84051" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,1104" to="5328,1104"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s84052" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,3555" to="5328,3555"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <p:placeholder type="object" position="-1"/>
-  </v:group></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0036_image035.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0036_image035.gif
deleted file mode 100644
index 35ea7e3..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0036_image035.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0037.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0037.html
deleted file mode 100644
index 3b8a217..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0037.html
+++ /dev/null
@@ -1,120 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: OMG Technology Adoption Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="66"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s67586"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s67586" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/gettingstarted/processintro.htm"/><a
- href="http://www.omg.org/gettingstarted/processintro.htm" target="_parent"
- onclick="window.event.cancelBubble=true;">OMG Technology Adoption Process</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s67587"
-  type="#_x0000_m1028" style='position:absolute;left:54pt;top:236.375pt;
-  width:612pt;height:145.25pt;visibility:visible;mso-wrap-style:square' o:spt="75"
-  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0037_image007.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Content_x0020_Placeholder_x0020_2"
- src="slide0037_image008.gif" style='position:absolute;top:43.75%;left:7.49%;
- width:85.01%;height:27.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0037_image007.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0037_image007.png
deleted file mode 100644
index dcf3b2e..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0037_image007.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0037_image008.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0037_image008.gif
deleted file mode 100644
index 62845d0..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0037_image008.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0038.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0038.html
deleted file mode 100644
index 508f98b..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0038.html
+++ /dev/null
@@ -1,173 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Eclipse Membership">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="84"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s86018"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s86019" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s86018" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Eclipse
- Membership<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s86019" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:75%'>Associate&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:31.25%;left:15.35%;width:79.77%;height:3.5%'><span
- style='font-size:80%'><span style='mso-special-format:bullet;position:absolute;
- left:-3.05%;font-family:Wingdings'>w</span></span><span style='font-size:80%'>organizations
- that are a non-for-profit organization, standards body, </span></span><span
- style='position:absolute;top:34.75%;left:15.35%;width:77.15%;height:3.5%'><span
- style='font-size:80%'>university, research institute or publisher which
- participates in the </span></span><span style='position:absolute;top:38.25%;
- left:15.35%;width:76.21%;height:3.5%'><span style='font-size:80%'>development
- of the Eclipse ecosystem&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:42.25%;left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:42%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:45.25%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:75%'>Add-in Provider&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:50.0%;left:15.35%;width:87.26%;height:3.5%'><span
- style='font-size:80%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.78%;font-family:Wingdings'>w</span></span><span style='font-size:80%'>organizations
- that view Eclipse as an important part of their corporate and </span></span><span
- style='position:absolute;top:53.5%;left:15.35%;width:76.21%;height:3.5%'><span
- style='font-size:80%'>product strategy&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:57.5%;left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:42%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:60.75%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:75%'>Strategic&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:65.25%;left:15.35%;width:84.64%;height:3.5%'><span
- style='font-size:80%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.87%;font-family:Wingdings'>w</span></span><span style='font-size:80%'>organizations
- that view Eclipse as a strategic platform and are investing </span></span><span
- style='position:absolute;top:69.0%;left:15.35%;width:85.2%;height:3.5%'><span
- style='font-size:80%'>developer and other resources to further develop the
- Eclipse technology&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:72.75%;left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:42%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:76.0%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:75%'>Committer&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:80.75%;left:15.35%;width:83.7%;height:3.5%'><span
- style='font-size:80%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.9%;font-family:Wingdings'>w</span></span><span style='font-size:80%'>individuals
- that are the core developers of the Eclipse projects and can </span></span><span
- style='position:absolute;top:84.25%;left:15.35%;width:76.21%;height:3.5%'><span
- style='font-size:80%'>commit changes to project source code</span><span
- style='font-size:80%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0039.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0039.html
deleted file mode 100644
index 957af9a..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0039.html
+++ /dev/null
@@ -1,120 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Eclipse Development Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="73"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s74754"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s74754" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/development_process.php"/><a
- href="http://www.eclipse.org/projects/dev_process/development_process.php"
- target="_parent" onclick="window.event.cancelBubble=true;">Eclipse Development
- Process</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s74755"
-  type="#_x0000_m1028" style='position:absolute;left:54pt;top:167.75pt;width:612pt;
-  height:282.5pt;visibility:visible;mso-wrap-style:square' o:spt="75"
-  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0039_image021.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_2" src="slide0039_image022.gif"
- style='position:absolute;top:31.0%;left:7.49%;width:85.01%;height:52.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0039_image021.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0039_image021.png
deleted file mode 100644
index 3a27ba8..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0039_image021.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0039_image022.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0039_image022.gif
deleted file mode 100644
index 0883a34..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0039_image022.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0040.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0040.html
deleted file mode 100644
index a827f88..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0040.html
+++ /dev/null
@@ -1,136 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: OMG + Eclipse">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="64"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s65538"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s65539" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s65538" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>OMG +
- Eclipse<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s65539" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:11.04%;width:92.32%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.83%;font-family:
- Wingdings'>ü</span>Eclipse is a contributing member of the OMG, which </span><span
- style='position:absolute;top:31.75%;left:10.48%;width:88.01%;height:5.25%'>means
- that it has voting rights in both the Domain </span><span style='position:
- absolute;top:37.25%;left:10.48%;width:91.76%;height:5.25%'>Technical Committee
- (DTC) and Platform Technical </span><span style='position:absolute;top:42.5%;
- left:10.48%;width:81.27%;height:5.25%'>Committee (PTC)&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:55.25%;left:11.04%;width:80.52%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.25%;font-family:
- Wingdings'>ü</span>Natural intersection between Eclipse project </span><span
- style='position:absolute;top:60.5%;left:10.48%;width:81.27%;height:5.25%'>categories
- and OMG technology areas&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:73.25%;left:11.42%;width:80.71%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.71%;font-family:
- Wingdings'>q</span>Eclipse projects/sub-projects/components not </span><span
- style='position:absolute;top:78.75%;left:10.48%;width:83.14%;height:5.25%'>considered
- reference implementations of OMG </span><span style='position:absolute;
- top:84.0%;left:10.48%;width:81.27%;height:5.25%'>specifications</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0046.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0046.html
deleted file mode 100644
index c744859..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0046.html
+++ /dev/null
@@ -1,180 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: What Next?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="112"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s114690"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s114691" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s114690" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>What Next?<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s114691" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:75%'>What&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:31.25%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Make OMG specifications
- more consumable&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:35.5%;left:12.92%;width:80.52%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.02%;width:96.74%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.12%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Ensure Eclipse projects
- conform to applicable OMG specifications</span>&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:39.75%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Recognize Eclipse
- projects as </span><span style='font-size:80%'><i>reference</i></span><span
- style='font-size:80%'> implementations&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:44.0%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:49.0%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:75%'>How&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:53.75%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Base specifications on
- de facto standards (Eclipse technology)&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:58.0%;left:12.92%;width:81.64%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.98%;width:97.01%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.07%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Align timing of OMG
- technology adoption and Eclipse development</span><span style='font-size:90%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.25%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.25%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:75%'>Who&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:71.75%;left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Remove platform/domain
- OMG membership restriction&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:76.0%;left:12.92%;width:84.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.86%;width:97.13%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.95%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Resolve dissonance
- between Eclipse developers and OMG architects&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:80.5%;left:12.92%;width:91.94%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.64%;width:97.35%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.71%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Ensure overlap of
- Eclipse project committers and OMG task force members</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0047.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0047.html
deleted file mode 100644
index 89f6ac2..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0047.html
+++ /dev/null
@@ -1,153 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description
-content="3/19/2008: Business Process Definition Metamodel">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="10"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s10242"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s10243" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s10242" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="BPDM"
-  href="http://www.omg.org/technology/documents/br_pm_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/br_pm_spec_catalog.htm#BPDM"
- target="_parent" onclick="window.event.cancelBubble=true;">Business Process
- Definition Metamodel</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s10243" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:94.75%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.17%'>•</span>BPDM
- provides the capability to represent and model </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:82.95%;height:5.25%'>business processes
- independent of notation or </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:96.81%;height:5.25%'>methodology, thus bringing these
- different approaches </span><span style='position:absolute;top:42.5%;
- left:10.48%;width:81.27%;height:5.25%'>together into a cohesive
- capability.&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 1.0 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/bpdm-ftf"/><a
- href="http://www.omg.org/issues/bpdm-ftf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>finalization</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:68.0%;left:8.42%;width:95.5%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.15%;width:98.03%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.2%'>•</span><p:onmouseclick
-  hyperlinktype="url" href="mailto:bpdm-ftf@omg.org"/><a
- href="mailto:bpdm-ftf@omg.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>FTF</a><span
- style='mso-spacerun:yes'> </span>chaired by <p:onmouseclick hyperlinktype="url"
-  href="mailto:antoine.lonjon@mega.com"/><a
- href="mailto:antoine.lonjon@mega.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Antoine
- Lonjon</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.mega.com/"/><a
- href="http://www.mega.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>MEGA
- International</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0048.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0048.html
deleted file mode 100644
index 16fb96c..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0048.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Business Process Modeling Notation">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="11"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s11266"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s11267" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s11266" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="BPMN"
-  href="http://www.omg.org/technology/documents/br_pm_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/br_pm_spec_catalog.htm#BPMN"
- target="_parent" onclick="window.event.cancelBubble=true;">Business Process
- Modeling Notation</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s11267" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:92.5%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.22%'>•</span>BPMN
- provides a standard visualization mechanism </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:84.83%;height:5.25%'>for business processes
- defined in an execution-</span><span style='position:absolute;top:37.25%;
- left:10.48%;width:81.27%;height:5.25%'>optimized business process
- language&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 1.2 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/bpmn-rtf"/><a
- href="http://www.omg.org/issues/bpmn-rtf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>revision</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url" href="mailto:bpmn-rtf@omg.org"/><a
- href="mailto:bpmn-rtf@omg.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RTF</a><span
- style='mso-spacerun:yes'> </span>chaired by <p:onmouseclick hyperlinktype="url"
-  href="mailto:wstephe@us.ibm.com"/><a href="mailto:wstephe@us.ibm.com"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Stephen White</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.ibm.com/"/><a href="http://www.ibm.com/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>IBM</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0049.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0049.html
deleted file mode 100644
index d61500d..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0049.html
+++ /dev/null
@@ -1,151 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Business Process Model and Notation">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="12"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s12290"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s12291" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s12290" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/cgi-bin/doc?bmi/2007-6-5"/><a
- href="http://www.omg.org/cgi-bin/doc?bmi/2007-6-5" target="_parent"
- onclick="window.event.cancelBubble=true;">Business Process Model and Notation</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s12291" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:96.25%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.14%'>•</span>BPMN2
- will reconcile the BPMN and BPDM standards </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:84.08%;height:5.25%'>into a single language that
- defines the notation, </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:86.51%;height:5.25%'>metamodel, and interchange format for
- Business </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:81.27%;height:5.25%'>Process Diagrams (BPD) and represent the </span><span
- style='position:absolute;top:47.75%;left:10.48%;width:90.44%;height:5.25%'>amalgamation
- of best practices within the business </span><span style='position:absolute;
- top:53.25%;left:10.48%;width:81.27%;height:5.25%'>modeling community&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:59.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:66.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>RFP response submission
- underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:72.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:78.75%;left:10.48%;width:90.63%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.27%'>•</span>Submission
- teams chaired by <p:onmouseclick hyperlinktype="url"
-  href="mailto:wstephe@us.ibm.com"/><a href="mailto:wstephe@us.ibm.com"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Stephen White</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.ibm.com/"/><a href="http://www.ibm.com/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>IBM</a>) </span><span style='position:absolute;top:84.0%;left:10.48%;
- width:81.27%;height:5.25%'>and <p:onmouseclick hyperlinktype="url"
-  href="mailto:antoine.lonjon@mega.com"/><a
- href="mailto:antoine.lonjon@mega.com" target="_parent"
- onclick="window.event.cancelBubble=true;">Antoine Lonjon</a> (<p:onmouseclick
-  hyperlinktype="url" href="http://www.mega.com/"/><a
- href="http://www.mega.com/" target="_parent"
- onclick="window.event.cancelBubble=true;">MEGA International</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0050.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0050.html
deleted file mode 100644
index 9ff9828..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0050.html
+++ /dev/null
@@ -1,124 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Diagram Definition">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="13"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s13314"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s13315" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s13314" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/cgi-bin/doc?ad/2007-9-2"/><a
- href="http://www.omg.org/cgi-bin/doc?ad/2007-9-2" target="_parent"
- onclick="window.event.cancelBubble=true;">Diagram Definition</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s13315" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:95.88%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.14%'>•</span>DD
- will enable the definition and exchange of diagram </span><span
- style='position:absolute;top:31.75%;left:10.48%;width:90.26%;height:5.25%'>syntax
- definitions and their bindings to MOF-based </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:81.27%;height:5.25%'>abstract syntaxes&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>RFP response submission underway</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0051.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0051.html
deleted file mode 100644
index 7b5d417..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0051.html
+++ /dev/null
@@ -1,142 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Information Management Metamodel">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="14"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s14338"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s14339" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s14338" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/cgi-bin/doc?ab/2005-12-2"/><a
- href="http://www.omg.org/cgi-bin/doc?ab/2005-12-2" target="_parent"
- onclick="window.event.cancelBubble=true;">Information Management Metamodel</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s14339" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:86.14%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.39%'>•</span>IMM
- will enable modeling and interchange of the </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:91.76%;height:5.25%'>complete information
- lifecycle as well as traceability </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:81.27%;height:5.25%'>among OO, Data, and XML
- models&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>RFP response submission
- underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:96.25%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.14%;width:98.05%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.18%'>•</span>Submission team chaired by <p:onmouseclick
-  hyperlinktype="url" href="mailto:hsharma@metlife.com"/><a
- href="mailto:hsharma@metlife.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Harsh
- Sharma</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.metlife.com/"/><a
- href="http://www.metlife.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>MetLife</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0052.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0052.html
deleted file mode 100644
index d701693..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0052.html
+++ /dev/null
@@ -1,153 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description
-content="3/19/2008: MOF 2.0 Facility and Object Lifecycle">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="17"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s17410"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s17411" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s17410" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="MOFFOL"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#MOFFOL"
- target="_parent" onclick="window.event.cancelBubble=true;">MOF 2.0 Facility
- and Object Lifecycle</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s17411" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:96.81%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.12%'>•</span>MOF
- FOL separates out those aspects of MOF related </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:91.19%;height:5.25%'>to communicating
- with and managing the &quot;facilities&quot; </span><span style='position:
- absolute;top:37.25%;left:10.48%;width:92.13%;height:5.25%'>responsible for
- providing the capabilities covered by </span><span style='position:absolute;
- top:42.5%;left:10.48%;width:81.27%;height:5.25%'>the other MOF
- specifications&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 1.0 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/mof-facility-ftf"/><a
- href="http://www.omg.org/issues/mof-facility-ftf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>finalization</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:68.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url" href="mailto:mof-facility-ftf@omg.org"/><a
- href="mailto:mof-facility-ftf@omg.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>FTF</a><span
- style='mso-spacerun:yes'> </span>chaired by <p:onmouseclick hyperlinktype="url"
-  href="mailto:pete.rivett@adaptive.com"/><a
- href="mailto:pete.rivett@adaptive.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Pete
- Rivett</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.adaptive.com/"/><a
- href="http://www.adaptive.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Adaptive</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0053.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0053.html
deleted file mode 100644
index 9f87f9c..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0053.html
+++ /dev/null
@@ -1,163 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Meta Object Facility">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="15"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s15362"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s15363" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s15362" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="MOF"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#MOF"
- target="_parent" onclick="window.event.cancelBubble=true;">Meta Object
- Facility</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s15363" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:81.64%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.52%'>•</span>MOF is
- an extensible model driven integration </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:92.32%;height:5.25%'>framework for defining,
- manipulating and integrating </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:83.89%;height:5.25%'>metadata™ and data in a platform
- independent </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:81.27%;height:5.25%'>manner&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 2.1 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/mof2core-rtf"/><a
- href="http://www.omg.org/issues/mof2core-rtf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>revision</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:68.0%;left:10.48%;width:88.95%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.31%'>•</span><p:onmouseclick
-  hyperlinktype="url" href="mailto:mof2core-rtf@omg.org"/><a
- href="mailto:mof2core-rtf@omg.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RTF</a><span
- style='mso-spacerun:yes'> </span>co-chaired by <p:onmouseclick
-  hyperlinktype="url" href="mailto:jamsden@us.ibm.com"/><a
- href="mailto:jamsden@us.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Jim Amsden</a><span
- style='mso-spacerun:yes'> </span>(<p:onmouseclick hyperlinktype="url"
-  href="http://www.ibm.com/"/><a href="http://www.ibm.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>IBM</a>), <p:onmouseclick
-  hyperlinktype="url" href="mailto:pete.rivett@adaptive.com"/><a
- href="mailto:pete.rivett@adaptive.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Pete
- Rivett</a><span style='mso-spacerun:yes'> </span></span><span
- style='position:absolute;top:73.25%;left:10.48%;width:81.27%;height:5.25%'>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.adaptive.com/"/><a
- href="http://www.adaptive.com/" target="_parent"
- onclick="window.event.cancelBubble=true;">Adaptive</a>), and <p:onmouseclick
-  hyperlinktype="url" href="mailto:koethe@88solutions.com"/><a
- href="mailto:koethe@88solutions.com" target="_parent"
- onclick="window.event.cancelBubble=true;">Manfred Koethe</a> (<p:onmouseclick
-  hyperlinktype="url" href="http://www.88solutions.com/"/><a
- href="http://www.88solutions.com/" target="_parent"
- onclick="window.event.cancelBubble=true;">88solutions</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0054.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0054.html
deleted file mode 100644
index c06e062..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0054.html
+++ /dev/null
@@ -1,155 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: MOF Queries / Views / Transforms">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="18"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s18434"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s18435" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s18434" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="MOF_QVT"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#MOF_QVT"
- target="_parent" onclick="window.event.cancelBubble=true;">MOF Queries / Views
- / Transforms</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s18435" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:87.64%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.35%'>•</span>MOF
- QVT addresses a technology neutral part of </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:88.2%;height:5.25%'>MOF and pertains to queries
- on models, views on </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:81.27%;height:5.25%'>metamodels, and transformations of
- models&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 1.1 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/qvt-rtf"/><a
- href="http://www.omg.org/issues/qvt-rtf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>revision</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:62.75%;left:10.48%;width:81.64%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.52%'>•</span>RTF
- co-chaired by <p:onmouseclick hyperlinktype="url"
-  href="mailto:mariano.belaunde@orange-ftgroup.com"/><a
- href="mailto:mariano.belaunde@orange-ftgroup.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Mariano
- Belaunde</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.francetelecom.com/en_EN/"/><a
- href="http://www.francetelecom.com/en_EN/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>France </a></span><span
- style='position:absolute;top:68.0%;left:10.48%;width:81.27%;height:5.25%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.francetelecom.com/en_EN/"/><a
- href="http://www.francetelecom.com/en_EN/" target="_parent"
- onclick="window.event.cancelBubble=true;">Telecom</a>) and <p:onmouseclick
-  hyperlinktype="url" href="mailto:sreedhar.reddy@tcs.com"/><a
- href="mailto:sreedhar.reddy@tcs.com" target="_parent"
- onclick="window.event.cancelBubble=true;">Sreedhar Reddy</a> (<p:onmouseclick
-  hyperlinktype="url" href="http://www.tcs.com/"/><a href="http://www.tcs.com/"
- target="_parent" onclick="window.event.cancelBubble=true;">TCS</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0055.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0055.html
deleted file mode 100644
index 1a0108c..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0055.html
+++ /dev/null
@@ -1,164 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Ontology Definition Metamodel">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="20"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s20482"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s20483" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s20482" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="ODM"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#ODM"
- target="_parent" onclick="window.event.cancelBubble=true;">Ontology Definition
- Metamodel</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s20483" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:85.76%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.4%'>•</span>ODM
- represents the foundation for an extremely </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:95.5%;height:5.25%'>important set of enabling
- capabilities for Model Driven </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:91.57%;height:5.25%'>Architecture® (MDA®) based
- software engineering, </span><span style='position:absolute;top:42.5%;
- left:10.48%;width:84.45%;height:5.25%'>namely the formal grounding for
- representation, </span><span style='position:absolute;top:47.75%;left:10.48%;
- width:85.39%;height:5.25%'>management, interoperability, and application of </span><span
- style='position:absolute;top:53.25%;left:10.48%;width:81.27%;height:5.25%'>business
- semantics&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:59.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:66.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 1.0 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/odm-ftf"/><a
- href="http://www.omg.org/issues/odm-ftf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>finalization</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:72.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:78.75%;left:10.48%;width:88.76%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.32%'>•</span><p:onmouseclick
-  hyperlinktype="url" href="mailto:odm-ftf@omg.org"/><a
- href="mailto:odm-ftf@omg.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>FTF</a><span
- style='mso-spacerun:yes'> </span>co-chaired by <p:onmouseclick
-  hyperlinktype="url" href="mailto:evan.wallace@nist.gov"/><a
- href="mailto:evan.wallace@nist.gov" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Evan
- Wallace</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.nist.gov/"/><a
- href="http://www.nist.gov/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>NIST</a>)
- and <p:onmouseclick hyperlinktype="url" href="mailto:ekendall@sandsoft.com"/><a
- href="mailto:ekendall@sandsoft.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Elisa </a></span><span
- style='position:absolute;top:84.0%;left:10.48%;width:81.27%;height:5.25%'><p:onmouseclick
-  hyperlinktype="url" href="mailto:ekendall@sandsoft.com"/><a
- href="mailto:ekendall@sandsoft.com" target="_parent"
- onclick="window.event.cancelBubble=true;">Kendall</a> (<p:onmouseclick
-  hyperlinktype="url" href="http://www.sandsoft.com/"/><a
- href="http://www.sandsoft.com/" target="_parent"
- onclick="window.event.cancelBubble=true;">Sandpiper Software</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0056.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0056.html
deleted file mode 100644
index 823daba..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0056.html
+++ /dev/null
@@ -1,153 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Object Constraint Language">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="19"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s19458"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s19459" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s19458" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="OCL"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#OCL"
- target="_parent" onclick="window.event.cancelBubble=true;">Object Constraint
- Language</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s19459" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:88.76%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.32%'>•</span>OCL
- specifies a formal language used to describe </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:85.2%;height:5.25%'>expressions on UML
- models; these expressions </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:95.5%;height:5.25%'>typically specify invariant conditions
- that must hold for </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:88.57%;height:5.25%'>the system being modeled or queries over objects </span><span
- style='position:absolute;top:47.75%;left:10.48%;width:81.27%;height:5.25%'>described
- in a model&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:54.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:60.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 2.1 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/ocl2-rtf"/><a
- href="http://www.omg.org/issues/ocl2-rtf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>revision</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:73.25%;left:8.42%;width:95.69%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.15%;width:98.04%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.19%'>•</span><p:onmouseclick
-  hyperlinktype="url" href="mailto:ocl2-rtf@omg.org"/><a
- href="mailto:ocl2-rtf@omg.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RTF</a><span
- style='mso-spacerun:yes'> </span>chaired by <p:onmouseclick hyperlinktype="url"
-  href="mailto:mariano.belaunde@orange-ftgroup.com"/><a
- href="mailto:mariano.belaunde@orange-ftgroup.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Mariano
- Belaunde</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.francetelecom.com/en_EN/"/><a
- href="http://www.francetelecom.com/en_EN/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>France
- Telecom</a>)<span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0057.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0057.html
deleted file mode 100644
index 78443ba..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0057.html
+++ /dev/null
@@ -1,151 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Production Rule Representation">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="21"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s21506"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s21507" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s21506" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="PRR"
-  href="http://www.omg.org/technology/documents/br_pm_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/br_pm_spec_catalog.htm#PRR"
- target="_parent" onclick="window.event.cancelBubble=true;">Production Rule
- Representation</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s21507" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:81.27%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span>PRR
- provides a standard production rule </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:87.26%;height:5.25%'>representation that is
- compatible with rule engine </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:89.32%;height:5.25%'>vendors' definitions of production
- rules and can be </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:92.13%;height:5.25%'>used for interchange of business rules amongst rule
- </span><span style='position:absolute;top:47.75%;left:10.48%;width:85.01%;
- height:5.25%'>modeling tools (and other tools that support rule </span><span
- style='position:absolute;top:53.25%;left:10.48%;width:81.27%;height:5.25%'>modeling
- as a function of some other task)&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:59.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:66.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 1.0 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/prr-ftf"/><a
- href="http://www.omg.org/issues/prr-ftf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>finalization</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:72.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:78.75%;left:8.42%;width:88.38%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.33%;width:97.88%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.38%'>•</span><p:onmouseclick
-  hyperlinktype="url" href="mailto:prr-ftf@omg.org"/><a
- href="mailto:prr-ftf@omg.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>FTF</a><span
- style='mso-spacerun:yes'> </span>chaired by <span lang=FR>Christian de Sainte
- Marie (</span><span lang=FR><p:onmouseclick hyperlinktype="url"
-  href="http://www.ilog.com/"/><a href="http://www.ilog.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>ILOG</a></span><span
- lang=FR>)</span><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0058.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0058.html
deleted file mode 100644
index 1754dde..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0058.html
+++ /dev/null
@@ -1,170 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description
-content="3/19/2008: Semantics of Business Vocabulary and Business Rules">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="22"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s22530"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s22531" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s22530" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:13.5%;left:8.42%;width:83.14%;
- height:6.0%'><p:onmouseclick hyperlinktype="url" location="SBVR"
-  href="http://www.omg.org/technology/documents/br_pm_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/br_pm_spec_catalog.htm#SBVR"
- target="_parent" onclick="window.event.cancelBubble=true;">Semantics of
- Business Vocabulary and </a></span><span style='position:absolute;top:19.75%;
- left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick hyperlinktype="url"
-  location="SBVR"
-  href="http://www.omg.org/technology/documents/br_pm_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/br_pm_spec_catalog.htm#SBVR"
- target="_parent" onclick="window.event.cancelBubble=true;">Business Rules</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- <div v:shape="_x0000_s22531" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:93.82%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.19%'>•</span>SBVR
- defines the semantics of business vocabulary, </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:94.75%;height:5.25%'>business facts, and
- business rules; as well as an XMI </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:93.63%;height:5.25%'>schema for the interchange
- of business vocabularies </span><span style='position:absolute;top:42.5%;
- left:10.48%;width:95.88%;height:5.25%'>and business rules among organizations
- and between </span><span style='position:absolute;top:47.75%;left:10.48%;
- width:81.27%;height:5.25%'>software tools&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:54.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:60.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 1.1 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/sbvr-rtf"/><a
- href="http://www.omg.org/issues/sbvr-rtf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>revision</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:73.25%;left:10.48%;width:87.26%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.36%'>•</span><p:onmouseclick
-  hyperlinktype="url" href="mailto:sbvr-rtf@omg.org"/><a
- href="mailto:sbvr-rtf@omg.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RTF</a><span
- style='mso-spacerun:yes'> </span>co-chaired by <p:onmouseclick
-  hyperlinktype="url" href="mailto:ckestep@earthlink.net"/><a
- href="mailto:ckestep@earthlink.net" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Cheryl
- Estep</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.businessrulesgroup.org/"/><a
- href="http://www.businessrulesgroup.org/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Business
- Rules </a></span><span style='position:absolute;top:78.75%;left:10.48%;
- width:87.82%;height:5.25%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.businessrulesgroup.org/"/><a
- href="http://www.businessrulesgroup.org/" target="_parent"
- onclick="window.event.cancelBubble=true;">Group</a>) and <p:onmouseclick
-  hyperlinktype="url" href="mailto:Donald.Chapin@BusinessSemantics.com"/><a
- href="mailto:Donald.Chapin@BusinessSemantics.com" target="_parent"
- onclick="window.event.cancelBubble=true;">Donald Chapin</a> (<p:onmouseclick
-  hyperlinktype="url" href="http://www.businesssemantics.com/"/><a
- href="http://www.businesssemantics.com/" target="_parent"
- onclick="window.event.cancelBubble=true;">Business Semantics</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0059.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0059.html
deleted file mode 100644
index 117cb4f..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0059.html
+++ /dev/null
@@ -1,130 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description
-content="3/19/2008: Software Process Engineering Metamodel">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="23"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s23554"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s23555" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s23554" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:87.45%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="SPEM"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#SPEM"
- target="_parent" onclick="window.event.cancelBubble=true;">Software Process
- Engineering Metamodel</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s23555" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:82.02%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.51%'>•</span>SPEM
- is used to describe a concrete software </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:91.76%;height:5.25%'>development process or a
- family of related software </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:81.27%;height:5.25%'>development processes&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 2.0 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/spec/SPEM/2.0/Beta2"/><a
- href="http://www.omg.org/spec/SPEM/2.0/Beta2" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>adopted</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0060.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0060.html
deleted file mode 100644
index 8f771a4..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0060.html
+++ /dev/null
@@ -1,158 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: OMG Systems Modeling Language">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="24"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s24578"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s24579" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s24578" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="OMGSysML"
-  href="http://www.omg.org/technology/documents/domain_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/domain_spec_catalog.htm#OMGSysML"
- target="_parent" onclick="window.event.cancelBubble=true;">OMG Systems
- Modeling Language</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s24579" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:84.83%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.42%'>•</span>SysML
- is a general-purpose graphical modeling </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:88.76%;height:5.25%'>language for specifying,
- analyzing, designing, and </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:96.06%;height:5.25%'>verifying complex systems that may
- include hardware, </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:88.38%;height:5.25%'>software, information, personnel, procedures, and </span><span
- style='position:absolute;top:47.75%;left:10.48%;width:81.27%;height:5.25%'>facilities&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:54.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:60.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 1.1 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/sysml-rtf"/><a
- href="http://www.omg.org/issues/sysml-rtf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>revision</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:73.25%;left:10.48%;width:89.13%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.31%'>•</span>RTF
- co-chaired by <p:onmouseclick hyperlinktype="url"
-  href="mailto:sanford.friedenthal@lmco.com"/><a
- href="mailto:sanford.friedenthal@lmco.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Sanford
- Friedenthal</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.lockheedmartin.com/"/><a
- href="http://www.lockheedmartin.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Lockheed </a></span><span
- style='position:absolute;top:78.75%;left:10.48%;width:85.39%;height:5.25%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.lockheedmartin.com/"/><a
- href="http://www.lockheedmartin.com/" target="_parent"
- onclick="window.event.cancelBubble=true;">Martin</a>) and <p:onmouseclick
-  hyperlinktype="url" href="mailto:BurkhartRogerM@JohnDeere.com"/><a
- href="mailto:BurkhartRogerM@JohnDeere.com" target="_parent"
- onclick="window.event.cancelBubble=true;">Roger Burkhart</a> (<p:onmouseclick
-  hyperlinktype="url" href="http://www.deere.com/"/><a
- href="http://www.deere.com/" target="_parent"
- onclick="window.event.cancelBubble=true;">Deere &amp; Company</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0061.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0061.html
deleted file mode 100644
index c64f394..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0061.html
+++ /dev/null
@@ -1,156 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Unified Modeling Language">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="25"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s25602"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s25603" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s25602" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="UML"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#UML"
- target="_parent" onclick="window.event.cancelBubble=true;">Unified Modeling
- Language</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s25603" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:97.37%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.11%'>•</span>UML is
- a graphical language for visualizing, specifying, </span><span
- style='position:absolute;top:31.75%;left:10.48%;width:81.27%;height:5.25%'>constructing,
- and documenting the artifacts of </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:81.27%;height:5.25%'>distributed object
- systems&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 2.2 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/uml2-rtf"/><a
- href="http://www.omg.org/issues/uml2-rtf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>revision</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:62.75%;left:10.48%;width:91.76%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.24%'>•</span><p:onmouseclick
-  hyperlinktype="url" href="mailto:uml2-rtf@omg.org"/><a
- href="mailto:uml2-rtf@omg.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RTF</a><span
- style='mso-spacerun:yes'> </span>co-chaired by <p:onmouseclick
-  hyperlinktype="url" href="mailto:bran.selic@gmail.com"/><a
- href="mailto:bran.selic@gmail.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Bran Selic</a><span
- style='mso-spacerun:yes'> </span>(<p:onmouseclick hyperlinktype="url"
-  href="http://www.ibm.com/"/><a href="http://www.ibm.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>IBM</a>)
- and <p:onmouseclick hyperlinktype="url" href="mailto:pete.rivett@adaptive.com"/><a
- href="mailto:pete.rivett@adaptive.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Pete
- Rivett</a><span style='mso-spacerun:yes'> </span></span><span
- style='position:absolute;top:68.0%;left:10.48%;width:81.27%;height:5.25%'>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.adaptive.com/"/><a
- href="http://www.adaptive.com/" target="_parent"
- onclick="window.event.cancelBubble=true;">Adaptive</a>)<span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0062.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0062.html
deleted file mode 100644
index ed147de..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0062.html
+++ /dev/null
@@ -1,149 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: UML Diagram Interchange">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="26"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s26626"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s26627" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s26626" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="UML_DI"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#UML_DI"
- target="_parent" onclick="window.event.cancelBubble=true;">UML Diagram
- Interchange</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s26627" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:95.13%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.16%'>•</span>UML DI
- enables a smooth and seamless exchange of </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:96.25%;height:5.25%'>documents compliant to the
- UML standard (referred to </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:86.89%;height:5.25%'>as UML models) between different
- software tools&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 1.1 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/uml2di-rtf"/><a
- href="http://www.omg.org/issues/uml2di-rtf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>revision</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url" href="mailto:uml2di-rtf@omg.org"/><a
- href="mailto:uml2di-rtf@omg.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RTF</a><span
- style='mso-spacerun:yes'> </span>chaired by <p:onmouseclick hyperlinktype="url"
-  href="mailto:koethe@88solutions.com"/><a href="mailto:koethe@88solutions.com"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Manfred Koethe</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.88solutions.com/"/><a
- href="http://www.88solutions.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>88solutions</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0063.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0063.html
deleted file mode 100644
index c2c3268..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0063.html
+++ /dev/null
@@ -1,132 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: UML Human-Usable Textual Notation">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="27"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s27650"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s27651" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s27650" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="HUTN"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#HUTN"
- target="_parent" onclick="window.event.cancelBubble=true;">UML Human-Usable
- Textual Notation</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s27651" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:83.14%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.47%'>•</span>HUTN
- specifies a notation for expressing other </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:81.27%;height:5.25%'>specifications in terms of
- the UML Profile for </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:92.69%;height:5.25%'>Enterprise Distributed Computing and
- its companion </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:81.27%;height:5.25%'>UML Profile for CORBA&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 1.0 <p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.omg.org/technology/documents/formal/hutn.htm"/><a
- href="http://www.omg.org/technology/documents/formal/hutn.htm" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>available</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0064.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0064.html
deleted file mode 100644
index adbff56..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0064.html
+++ /dev/null
@@ -1,171 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description
-content="3/19/2008: UML Profile for Modeling and Analysis of Real-time and Embedded Systems">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="28"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s28674"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s28675" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s28674" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:13.5%;left:8.42%;width:97.19%;
- height:6.0%'><p:onmouseclick hyperlinktype="url" location="UML_for_MARTE"
-  href="http://www.omg.org/technology/documents/profile_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/profile_catalog.htm#UML_for_MARTE"
- target="_parent" onclick="window.event.cancelBubble=true;">UML Profile for
- Modeling and Analysis of Real-</a></span><span style='position:absolute;
- top:19.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="UML_for_MARTE"
-  href="http://www.omg.org/technology/documents/profile_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/profile_catalog.htm#UML_for_MARTE"
- target="_parent" onclick="window.event.cancelBubble=true;">time and Embedded
- Systems</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- <div v:shape="_x0000_s28675" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:88.95%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.31%'>•</span>MARTE
- adds capabilities to UML for model-driven </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:91.57%;height:5.25%'>development of Real Time and
- Embedded Systems </span><span style='position:absolute;top:37.25%;left:10.48%;
- width:92.5%;height:5.25%'>(RTES); it provides support for specification,
- design, </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:81.27%;height:5.25%'>and verification/validation stages&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 1.0 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/marte-ftf"/><a
- href="http://www.omg.org/issues/marte-ftf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>finalization</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:68.0%;left:10.48%;width:87.82%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.34%'>•</span><p:onmouseclick
-  hyperlinktype="url" href="mailto:marte-ftf@omg.org"/><a
- href="mailto:marte-ftf@omg.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>FTF</a><span
- style='mso-spacerun:yes'> </span>co-chaired by <p:onmouseclick
-  hyperlinktype="url" href="mailto:Sebastien.GERARD@cea.fr"/><a
- href="mailto:Sebastien.GERARD@cea.fr" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Sébastien
- Gerard</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.cea.fr/"/><a href="http://www.cea.fr/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>CEA</a>), <p:onmouseclick hyperlinktype="url"
-  href="mailto:bran.selic@gmail.com"/><a href="mailto:bran.selic@gmail.com"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Bran </a></span><span style='position:absolute;top:73.25%;
- left:10.48%;width:81.27%;height:5.25%'><p:onmouseclick hyperlinktype="url"
-  href="mailto:bran.selic@gmail.com"/><a href="mailto:bran.selic@gmail.com"
- target="_parent" onclick="window.event.cancelBubble=true;">Selic</a> (<p:onmouseclick
-  hyperlinktype="url" href="http://www.ibm.com/"/><a href="http://www.ibm.com/"
- target="_parent" onclick="window.event.cancelBubble=true;">IBM</a>), and <p:onmouseclick
-  hyperlinktype="url" href="mailto:Laurent.Rioux@thalesgroup.com"/><a
- href="mailto:Laurent.Rioux@thalesgroup.com" target="_parent"
- onclick="window.event.cancelBubble=true;">Laurent Rioux</a> (<p:onmouseclick
-  hyperlinktype="url" href="http://www.thalesgroup.com/"/><a
- href="http://www.thalesgroup.com/" target="_parent"
- onclick="window.event.cancelBubble=true;">Thales</a>)<span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0065.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0065.html
deleted file mode 100644
index fd76ee6..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0065.html
+++ /dev/null
@@ -1,157 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: UML Testing Profile">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="29"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s29698"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s29699" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s29698" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="UML_for_Testing"
-  href="http://www.omg.org/technology/documents/profile_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/profile_catalog.htm#UML_for_Testing"
- target="_parent" onclick="window.event.cancelBubble=true;">UML Testing Profile</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s29699" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:84.08%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.44%'>•</span>The
- UML Testing Profile defines a language for </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:81.27%;height:5.25%'>designing, visualizing,
- specifying, analyzing, </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:87.45%;height:5.25%'>constructing and documenting the
- artifacts of test </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:81.27%;height:5.25%'>systems&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 2.0 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/uml-testing-profile-rtf"/><a
- href="http://www.omg.org/issues/uml-testing-profile-rtf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>revision</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:68.0%;left:10.48%;width:89.7%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.29%'>•</span><p:onmouseclick
-  hyperlinktype="url" href="mailto:uml-testing-profile-rtf@omg.org"/><a
- href="mailto:uml-testing-profile-rtf@omg.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RTF</a><span
- style='mso-spacerun:yes'> </span>co-chaired by <p:onmouseclick
-  hyperlinktype="url" href="mailto:schieferdecker@fokus.fraunhofer.de"/><a
- href="mailto:schieferdecker@fokus.fraunhofer.de" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Ina
- Schieferdecker</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.fokus.fraunhofer.de/home/"/><a
- href="http://www.fokus.fraunhofer.de/home/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Fraunhofer
- </a></span><span style='position:absolute;top:73.25%;left:10.48%;width:81.27%;
- height:5.25%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.fokus.fraunhofer.de/home/"/><a
- href="http://www.fokus.fraunhofer.de/home/" target="_parent"
- onclick="window.event.cancelBubble=true;">FOKUS</a>) and Serge Lucio (<p:onmouseclick
-  hyperlinktype="url" href="http://www.ibm.com/"/><a href="http://www.ibm.com/"
- target="_parent" onclick="window.event.cancelBubble=true;">IBM</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0066.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0066.html
deleted file mode 100644
index f138e43..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0066.html
+++ /dev/null
@@ -1,132 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Workflow Management Facility (WMF)">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="30"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s30722"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s30723" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s30722" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="Workflow"
-  href="http://www.omg.org/technology/documents/br_pm_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/br_pm_spec_catalog.htm#Workflow"
- target="_parent" onclick="window.event.cancelBubble=true;">Workflow Management
- Facility (WMF)</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s30723" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:83.52%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.46%'>•</span>WMF
- provides standard interfaces for workflow </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:87.45%;height:5.25%'>execution control,
- monitoring, and interoperability </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:81.27%;height:5.25%'>between workflows defined
- and managed </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:81.27%;height:5.25%'>independently of each other&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 1.2 <p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.omg.org/technology/documents/formal/workflow_management.htm"/><a
- href="http://www.omg.org/technology/documents/formal/workflow_management.htm"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>available</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0067.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0067.html
deleted file mode 100644
index 7cee246..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0067.html
+++ /dev/null
@@ -1,156 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: XML Metadata Interchange">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="31"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s31746"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s31747" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s31746" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="XMI"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#XMI"
- target="_parent" onclick="window.event.cancelBubble=true;">XML Metadata
- Interchange</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s31747" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:93.63%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.2%'>•</span>XMI is
- a model driven XML Integration framework for </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:93.07%;height:5.25%'>defining,
- interchanging, manipulating and integrating </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:81.27%;height:5.25%'>XML data and objects&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 2.2 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/issues/mof2xmi-rtf"/><a
- href="http://www.omg.org/issues/mof2xmi-rtf" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>revision</a><span
- style='mso-spacerun:yes'> </span>underway&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:62.75%;left:10.48%;width:96.25%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.14%'>•</span><p:onmouseclick
-  hyperlinktype="url" href="mailto:mof2xmi-rtf@omg.org"/><a
- href="mailto:mof2xmi-rtf@omg.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RTF</a><span
- style='mso-spacerun:yes'> </span>chaired by <p:onmouseclick hyperlinktype="url"
-  href="mailto:koethe@88solutions.com"/><a href="mailto:koethe@88solutions.com"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Manfred Koethe</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.88solutions.com/"/><a
- href="http://www.88solutions.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>88solutions</a>)
- and <p:onmouseclick hyperlinktype="url" href="mailto:jamsden@us.ibm.com"/><a
- href="mailto:jamsden@us.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Jim </a></span><span
- style='position:absolute;top:68.0%;left:10.48%;width:81.27%;height:5.25%'><p:onmouseclick
-  hyperlinktype="url" href="mailto:jamsden@us.ibm.com"/><a
- href="mailto:jamsden@us.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;">Amsden</a> (<p:onmouseclick
-  hyperlinktype="url" href="http://www.ibm.com/"/><a href="http://www.ibm.com/"
- target="_parent" onclick="window.event.cancelBubble=true;">IBM</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0068.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0068.html
deleted file mode 100644
index b064804..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0068.html
+++ /dev/null
@@ -1,132 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description
-content="3/19/2008: MOF Models to Text Transformation Language">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="16"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s16386"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s16387" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s16386" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:97.37%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" location="MOFM2T"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#MOFM2T"
- target="_parent" onclick="window.event.cancelBubble=true;">MOF Models to Text
- Transformation Language</a><span style='mso-special-format:lastCR;display:
- none'>&#13;</span></div>
- <div v:shape="_x0000_s16387" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:86.89%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.37%'>•</span>MOF
- M2T addresses how to translate a model to </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:83.33%;height:5.25%'>various text artifacts such
- as code, deployment </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:81.27%;height:5.25%'>specifications, reports, documents,
- etc.&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Version 1.0 <p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/spec/MOFM2T/1.0/"/><a
- href="http://www.omg.org/spec/MOFM2T/1.0/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>available</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0069.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0069.html
deleted file mode 100644
index 39506bc..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0069.html
+++ /dev/null
@@ -1,147 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Data Tools Platform">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="33"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s33794"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s33795" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s33794" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=datatools"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=datatools"
- target="_parent" onclick="window.event.cancelBubble=true;">Data Tools Platform</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s33795" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:92.69%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.22%'>•</span>DTP
- provides extensible frameworks and exemplary </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:95.5%;height:5.25%'>tools enabling the
- development of offerings specific to </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:81.27%;height:5.25%'>particular data-centric
- technologies&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>top-level
- project&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:jograham@sybase.com"/><a
- href="mailto:jograham@sybase.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>John
- Graham</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.sybase.com/"/><a
- href="http://www.sybase.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Sybase</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0070.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0070.html
deleted file mode 100644
index 4dd1901..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0070.html
+++ /dev/null
@@ -1,147 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Model Base">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="34"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s34818"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s34819" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s34818" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=datatools.modelbase"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=datatools.modelbase"
- target="_parent" onclick="window.event.cancelBubble=true;">Model Base</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s34819" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:93.07%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.21%'>•</span>Model
- Base is the foundation of DTP and consists of </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:96.06%;height:5.25%'>the database
- definition model, SQL model, SQL query </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:81.27%;height:5.25%'>model, and SQL XML query
- model&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>sub-project of
- DTP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:dpchou@us.ibm.com"/><a
- href="mailto:dpchou@us.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Der Ping
- Chou</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.ibm.com/"/><a href="http://www.ibm.com/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>IBM</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0071.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0071.html
deleted file mode 100644
index f2fc8d0..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0071.html
+++ /dev/null
@@ -1,156 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Eclipse Modeling Project">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="35"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s35842"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s35843" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s35842" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling"
- target="_parent" onclick="window.event.cancelBubble=true;">Eclipse Modeling
- Project</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s35843" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:84.26%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.44%'>•</span>EMP
- focuses on the evolution and promotion of </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:88.95%;height:5.25%'>model-based development
- technologies within the </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:83.33%;height:5.25%'>Eclipse community by providing a
- unified set of </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:81.27%;height:5.25%'>modeling frameworks, tooling, and <i>standards </i></span><span
- style='position:absolute;top:47.75%;left:10.48%;width:81.27%;height:5.25%'><i>implementations&#13;</i></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:54.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:60.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>top-level
- project&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:73.25%;left:10.48%;width:94.75%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.17%'>•</span>Leads
- are <p:onmouseclick hyperlinktype="url"
-  href="mailto:richard.gronback@borland.com"/><a
- href="mailto:richard.gronback@borland.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Richard
- Gronback</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.borland.com/"/><a
- href="http://www.borland.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Borland</a>)
- and <p:onmouseclick hyperlinktype="url" href="mailto:merks@ca.ibm.com"/><a
- href="mailto:merks@ca.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Ed Merks</a><span
- style='mso-spacerun:yes'> </span></span><span style='position:absolute;
- top:78.75%;left:10.48%;width:81.27%;height:5.25%'>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.ibm.com/"/><a href="http://www.ibm.com/"
- target="_parent" onclick="window.event.cancelBubble=true;">IBM</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0073.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0073.html
deleted file mode 100644
index 1a767c6..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0073.html
+++ /dev/null
@@ -1,145 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description
-content="3/19/2008: Eclipse Modeling Framework Technology">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="37"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s37890"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s37891" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s37890" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:85.76%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emft"
- target="_parent" onclick="window.event.cancelBubble=true;">Eclipse Modeling
- Framework Technology</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s37891" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:96.06%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.14%'>•</span>EMFT
- exists to incubate new technologies that extend </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:81.27%;height:5.25%'>or complement
- EMF&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:44.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>sub-project of
- EMP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:51.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:57.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:merks@ca.ibm.com"/><a
- href="mailto:merks@ca.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Ed Merks</a><span
- style='mso-spacerun:yes'> </span>(<p:onmouseclick hyperlinktype="url"
-  href="http://www.ibm.com/"/><a href="http://www.ibm.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>IBM</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0074.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0074.html
deleted file mode 100644
index 100eafe..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0074.html
+++ /dev/null
@@ -1,146 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Ecore Tools">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="38"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s38914"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s38915" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s38914" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/lists.php?list=bycomponent&amp;param=modeling.emft&amp;param2=modeling.emft.ecoretools"/><a
- href="http://www.eclipse.org/projects/lists.php?list=bycomponent&amp;param=modeling.emft&amp;param2=modeling.emft.ecoretools"
- target="_parent" onclick="window.event.cancelBubble=true;">Ecore Tools</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s38915" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:86.14%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.39%'>•</span>Ecore
- Tools provides a complete environment to </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:81.27%;height:5.25%'>create, edit and maintain
- Ecore models&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:44.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>component of
- EMFT&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:51.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:57.5%;left:8.42%;width:90.63%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.27%;width:97.93%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.32%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:david.sciamma@anyware-tech.com"/><a
- href="mailto:david.sciamma@anyware-tech.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>David
- Sciamma</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.anyware-tech.com/"/><a
- href="http://www.anyware-tech.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Anywhere
- Technologies</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0075.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0075.html
deleted file mode 100644
index 127cef1..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0075.html
+++ /dev/null
@@ -1,145 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Eclipse Modeling Framework">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="36"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s36866"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s36867" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s36866" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.emf"
- target="_parent" onclick="window.event.cancelBubble=true;">Eclipse Modeling
- Framework</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s36867" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:91.38%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.25%'>•</span>EMF is
- a framework and code generation facility for </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:84.83%;height:5.25%'>building tools and
- other applications based on a </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:81.27%;height:5.25%'>structured data model&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>sub-project of
- EMP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:merks@ca.ibm.com"/><a
- href="mailto:merks@ca.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Ed Merks</a><span
- style='mso-spacerun:yes'> </span>(<p:onmouseclick hyperlinktype="url"
-  href="http://www.ibm.com/"/><a href="http://www.ibm.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>IBM</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0076.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0076.html
deleted file mode 100644
index ce56ff7..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0076.html
+++ /dev/null
@@ -1,152 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Generative Modeling Technologies">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="39"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s39938"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s39939" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s39938" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmt"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmt"
- target="_parent" onclick="window.event.cancelBubble=true;">Generative Modeling
- Technologies</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s39939" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:97.19%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.11%'>•</span>GMT
- aims to produce a set of prototypes in the area of </span><span
- style='position:absolute;top:31.75%;left:10.48%;width:93.25%;height:5.25%'>Model
- Driven Engineering (MDE); GMT is the official </span><span style='position:
- absolute;top:37.25%;left:10.48%;width:81.27%;height:5.25%'>research incubator
- project of EMP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:87.26%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.36%;width:97.85%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.41%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-conforming.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-conforming.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>non-conforming</a>) sub-project of EMP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:Jean.Bezivin@univ-nantes.fr"/><a
- href="mailto:Jean.Bezivin@univ-nantes.fr" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Jean
- Bezivin</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.univ-nantes.fr/"/><a
- href="http://www.univ-nantes.fr/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Université
- de Nantes</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0077.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0077.html
deleted file mode 100644
index a3964e6..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0077.html
+++ /dev/null
@@ -1,146 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Model to Model Transformations">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="42"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s43010"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s43011" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s43010" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.m2m"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.m2m"
- target="_parent" onclick="window.event.cancelBubble=true;">Model to Model
- Transformations</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s43011" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:86.51%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.38%'>•</span>M2M
- will deliver a framework for model-to-model </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:81.27%;height:5.25%'>transformation
- languages&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:44.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>sub-project of
- EMP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:51.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:57.5%;left:8.42%;width:85.76%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.4%;width:97.81%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.45%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:frederic.jouault@univ-nantes.fr"/><a
- href="mailto:frederic.jouault@univ-nantes.fr" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Frédéric
- Jouault</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.univ-nantes.fr/"/><a
- href="http://www.univ-nantes.fr/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Université
- de Nantes</a>)<span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0078.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0078.html
deleted file mode 100644
index 9375e44..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0078.html
+++ /dev/null
@@ -1,149 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: UMLX">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="40"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s40962"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s40963" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s40962" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://dev.eclipse.org/viewcvs/indextech.cgi/~checkout~/gmt-home/subprojects/UMLX/index.html"/><a
- href="http://dev.eclipse.org/viewcvs/indextech.cgi/~checkout~/gmt-home/subprojects/UMLX/index.html"
- target="_parent" onclick="window.event.cancelBubble=true;">UMLX</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s40963" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:92.5%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.22%'>•</span>UMLX
- is a concrete graphical syntax to complement </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:81.46%;height:5.25%'>the MOF QVT model
- transformation language&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:44.5%;left:8.42%;width:87.45%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.35%;width:97.85%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.4%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-conforming.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-conforming.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>non-conforming</a>) component of GMT&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:51.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:57.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:Ed.Willink@thalesgroup.com"/><a
- href="mailto:Ed.Willink@thalesgroup.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Ed Willink</a><span
- style='mso-spacerun:yes'> </span>(<p:onmouseclick hyperlinktype="url"
-  href="http://www.thalesgroup.com/"/><a href="http://www.thalesgroup.com/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Thales</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0081.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0081.html
deleted file mode 100644
index 371b77d..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0081.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Model to Text Transformations">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="43"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s44034"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s44035" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s44034" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.m2t"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.m2t"
- target="_parent" onclick="window.event.cancelBubble=true;">Model to Text
- Transformations</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s44035" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:96.81%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.12%'>•</span>M2T
- focuses on the generation of textual artifacts from </span><span
- style='position:absolute;top:31.75%;left:10.48%;width:92.32%;height:5.25%'>models;
- its purpose is to provide implementations of </span><span style='position:
- absolute;top:37.25%;left:10.48%;width:84.83%;height:5.25%'>industry standard
- and de facto Eclipse standard </span><span style='position:absolute;
- top:42.5%;left:10.48%;width:81.27%;height:5.25%'>model-to-text engines&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>sub-project of
- EMP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:68.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:pelder@ca.ibm.com"/><a
- href="mailto:pelder@ca.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Paul Elder</a><span
- style='mso-spacerun:yes'> </span>(<p:onmouseclick hyperlinktype="url"
-  href="http://www.ibm.com/"/><a href="http://www.ibm.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>IBM</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0082.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0082.html
deleted file mode 100644
index abdddd8..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0082.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Model Development Tools">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="44"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s45058"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s45059" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s45058" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt"
- target="_parent" onclick="window.event.cancelBubble=true;">Model Development
- Tools</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s45059" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:91.57%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.24%'>•</span>MDT
- provides implementations of industry standard </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:85.2%;height:5.25%'>metamodels and
- exemplary tools for developing </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:81.27%;height:5.25%'>models based on those
- metamodels&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>sub-project of
- EMP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:92.69%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.22%;width:97.97%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.26%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:Kenn.Hussey@embarcadero.com"/><a
- href="mailto:Kenn.Hussey@embarcadero.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Kenn
- Hussey</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.embarcadero.com/"/><a
- href="http://www.embarcadero.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Embarcadero
- Technologies</a>)<span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0083.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0083.html
deleted file mode 100644
index d1a5bf8..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0083.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: EMF Ontology Definition Metamodel">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="46"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s47106"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s47107" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s47106" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/modeling/mdt/?project=eodm"/><a
- href="http://www.eclipse.org/modeling/mdt/?project=eodm" target="_parent"
- onclick="window.event.cancelBubble=true;">EMF Ontology Definition Metamodel</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s47107" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:83.33%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.47%'>•</span>EODM
- is an implementation of RDF™(S)/OWL </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:88.95%;height:5.25%'>metamodels of the Ontology
- Definition Metamodel </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:92.88%;height:5.25%'>(ODM) using EMF with additional
- parsing, inference, </span><span style='position:absolute;top:42.5%;
- left:10.48%;width:81.27%;height:5.25%'>model transformation and editing
- functions&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>component of
- MDT&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:68.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:lzhangl@cn.ibm.com"/><a
- href="mailto:lzhangl@cn.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Lei Zhang</a><span
- style='mso-spacerun:yes'> </span>(<p:onmouseclick hyperlinktype="url"
-  href="http://www.ibm.com/"/><a href="http://www.ibm.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>IBM</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0084.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0084.html
deleted file mode 100644
index ad0963b..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0084.html
+++ /dev/null
@@ -1,147 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Information Management Metamodel">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="47"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s48130"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s48131" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s48130" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/modeling/mdt/?project=imm"/><a
- href="http://www.eclipse.org/modeling/mdt/?project=imm" target="_parent"
- onclick="window.event.cancelBubble=true;">Information Management Metamodel</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s48131" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:92.13%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.23%'>•</span>IMM
- will provide metamodel/profile implementations </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:91.01%;height:5.25%'>based on the
- forthcoming Information Management </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:81.27%;height:5.25%'>Metamodel (IMM) OMG
- specification&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>component of
- MDT&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:92.69%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.22%;width:97.97%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.26%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:Kenn.Hussey@embarcadero.com"/><a
- href="mailto:Kenn.Hussey@embarcadero.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Kenn
- Hussey</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.embarcadero.com/"/><a
- href="http://www.embarcadero.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Embarcadero
- Technologies</a>)<span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0085.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0085.html
deleted file mode 100644
index f354683..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0085.html
+++ /dev/null
@@ -1,145 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Object Constraint Language">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="48"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s49154"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s49155" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s49154" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/modeling/mdt/?project=ocl"/><a
- href="http://www.eclipse.org/modeling/mdt/?project=ocl" target="_parent"
- onclick="window.event.cancelBubble=true;">Object Constraint Language</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s49155" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:89.32%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.3%'>•</span>OCL is
- an implementation of the Object Constraint </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:91.38%;height:5.25%'>Language (OCL) OMG
- specification for EMF-based </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:81.27%;height:5.25%'>models&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>component of
- MDT&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:cdamus@ca.ibm.com"/><a
- href="mailto:cdamus@ca.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Christian
- Damus</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.ibm.com/"/><a href="http://www.ibm.com/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>IBM</a>)<span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0086.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0086.html
deleted file mode 100644
index bccb58a..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0086.html
+++ /dev/null
@@ -1,149 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: OCL Tools">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="49"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s50178"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s50179" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s50178" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/?project=ocltools"/><a
- href="http://www.eclipse.org/modeling/mdt/?project=ocltools" target="_parent"
- onclick="window.event.cancelBubble=true;">OCL Tools</a><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s50179" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:85.76%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.4%'>•</span>OCL
- Tools aims to provide first-class support for </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:84.26%;height:5.25%'>modelers working
- with specifications containing </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:81.27%;height:5.25%'>expressions written in
- OCL&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>component of
- MDT&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:62.75%;left:10.48%;width:81.27%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span>Lead
- is <p:onmouseclick hyperlinktype="url" href="mailto:miguel.garcia@tuhh.de"/><a
- href="mailto:miguel.garcia@tuhh.de" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Miguel
- Garcia</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.tuhh.de/"/><a href="http://www.tuhh.de/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Hamburg University of </a></span><span style='position:absolute;
- top:68.0%;left:10.48%;width:81.27%;height:5.25%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.tuhh.de/"/><a href="http://www.tuhh.de/"
- target="_parent" onclick="window.event.cancelBubble=true;">Technology</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0087.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0087.html
deleted file mode 100644
index 934a786..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0087.html
+++ /dev/null
@@ -1,149 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description
-content="3/19/2008: Semantics for Business Vocabulary and Rules">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="50"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s51202"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s51203" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s51202" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:96.06%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/modeling/mdt/?project=sbvr"/><a
- href="http://www.eclipse.org/modeling/mdt/?project=sbvr" target="_parent"
- onclick="window.event.cancelBubble=true;">Semantics for Business Vocabulary
- and Rules</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s51203" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:92.32%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.23%'>•</span>SBVR
- will provide a metamodel implementation and </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:86.7%;height:5.25%'>sample tools based on the
- adopted Semantics of </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:88.76%;height:5.25%'>Business Vocabulary and Business Rules
- (SBVR) </span><span style='position:absolute;top:42.5%;left:10.48%;width:81.27%;
- height:5.25%'>OMG specification&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>component of
- MDT&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:68.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:dcarlson@xmlmodeling.com"/><a
- href="mailto:dcarlson@xmlmodeling.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Dave
- Carlson</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.xmlmodeling.com/"/><a
- href="http://www.xmlmodeling.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>XML
- Modeling</a>)<span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0088.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0088.html
deleted file mode 100644
index 5306f90..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0088.html
+++ /dev/null
@@ -1,144 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Unified Modeling Language 2.x">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="51"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s52226"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s52227" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s52226" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/modeling/mdt/?project=uml2"/><a
- href="http://www.eclipse.org/modeling/mdt/?project=uml2" target="_parent"
- onclick="window.event.cancelBubble=true;">Unified Modeling Language 2.x</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s52227" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:91.19%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.25%'>•</span>UML2
- is an EMF-based implementation of the UML </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:81.27%;height:5.25%'>2.x metamodel for the
- Eclipse platform&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:44.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>component of
- MDT&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:51.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:57.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:jbruck@ca.ibm.com"/><a
- href="mailto:jbruck@ca.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>James
- Bruck</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.ibm.com/"/><a href="http://www.ibm.com/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>IBM</a>)<span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0089.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0089.html
deleted file mode 100644
index 78db279..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0089.html
+++ /dev/null
@@ -1,145 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: UML2 Tools">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="52"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s53250"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s53251" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s53250" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/?project=uml2tools"/><a
- href="http://www.eclipse.org/modeling/mdt/?project=uml2tools" target="_parent"
- onclick="window.event.cancelBubble=true;">UML2 Tools</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s53251" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:95.5%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.15%'>•</span>UML2
- Tools is a set of GMF-based editors for viewing </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:81.27%;height:5.25%'>and editing UML
- models&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:44.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>component of
- MDT&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:51.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:57.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:Michael.Golubev@borland.com"/><a
- href="mailto:Michael.Golubev@borland.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Michael
- Golubev</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.borland.com/"/><a
- href="http://www.borland.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Borland</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0090.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0090.html
deleted file mode 100644
index 77e7afe..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0090.html
+++ /dev/null
@@ -1,149 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: XML Schema Infoset Model">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="53"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s54274"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s54275" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s54274" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/modeling/mdt/?project=xsd"/><a
- href="http://www.eclipse.org/modeling/mdt/?project=xsd" target="_parent"
- onclick="window.event.cancelBubble=true;">XML Schema Infoset Model</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s54275" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:94.56%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.17%'>•</span>XSD is
- a library that provides an API for manipulating </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:92.88%;height:5.25%'>the components of
- an XML Schema as described by </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:91.38%;height:5.25%'>the W3C XML Schema
- specifications, as well as an </span><span style='position:absolute;
- top:42.5%;left:10.48%;width:81.27%;height:5.25%'>API for manipulating the
- DOM™-accessible </span><span style='position:absolute;top:47.75%;left:10.48%;
- width:81.27%;height:5.25%'>representation of XML&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:54.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:60.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>component of
- MDT&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:73.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:merks@ca.ibm.com"/><a
- href="mailto:merks@ca.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Ed Merks</a><span
- style='mso-spacerun:yes'> </span>(<p:onmouseclick hyperlinktype="url"
-  href="http://www.ibm.com/"/><a href="http://www.ibm.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>IBM</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0091.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0091.html
deleted file mode 100644
index d0017f9..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0091.html
+++ /dev/null
@@ -1,161 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Textual Modeling Framework">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="54"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s55298"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s55299" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s55298" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.tmf"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.tmf"
- target="_parent" onclick="window.event.cancelBubble=true;">Textual Modeling
- Framework</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s55299" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:89.7%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.29%'>•</span>TMF
- will provide a parser that instantiates a model </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:88.95%;height:5.25%'>from a textual
- representation based on a specified </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:89.32%;height:5.25%'>metamodel and a feature-rich
- Eclipse editor that is </span><span style='position:absolute;top:42.5%;
- left:10.48%;width:94.75%;height:5.25%'>aware of the corresponding specified
- concrete syntax&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:87.26%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.36%;width:97.85%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.41%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-conforming.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-conforming.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>non-conforming</a>) sub-project of EMP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:68.0%;left:10.48%;width:96.62%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.13%'>•</span>Leads
- are <p:onmouseclick hyperlinktype="url"
-  href="mailto:frederic.jouault@univ-nantes.fr"/><a
- href="mailto:frederic.jouault@univ-nantes.fr" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Frédéric
- Jouault</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.univ-nantes.fr/"/><a
- href="http://www.univ-nantes.fr/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Université
- de Nantes</a>) and </span><span style='position:absolute;top:73.25%;
- left:10.48%;width:81.27%;height:5.25%'><p:onmouseclick hyperlinktype="url"
-  href="mailto:sven@efftinge.de"/><a href="mailto:sven@efftinge.de"
- target="_parent" onclick="window.event.cancelBubble=true;">Sven Efftinge</a> (<p:onmouseclick
-  hyperlinktype="url" href="http://www.itemis.de/"/><a
- href="http://www.itemis.de/" target="_parent"
- onclick="window.event.cancelBubble=true;">itemis AG</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0092.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0092.html
deleted file mode 100644
index c5ca1f6..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0092.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Eclipse Technology Project">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="55"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s56322"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s56323" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s56322" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=technology"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=technology"
- target="_parent" onclick="window.event.cancelBubble=true;">Eclipse Technology
- Project</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s56323" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:89.32%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.3%'>•</span>ETP
- encapsulates three separate activity streams, </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:95.13%;height:5.25%'>Research,
- Incubators, and Education, all overseen by </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:85.2%;height:5.25%'>a single Project Management
- Committee (PMC)&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>top-level
- project&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:95.31%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.16%;width:98.03%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.2%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:bjorn.freeman-benson@eclipse.org"/><a
- href="mailto:bjorn.freeman-benson@eclipse.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Bjorn
- Freeman-Benson</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/"/><a
- href="http://www.eclipse.org/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Eclipse
- Foundation</a>)<span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0093.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0093.html
deleted file mode 100644
index f11fe87..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0093.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Eclipse Process Framework">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="56"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s57346"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s57347" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s57346" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.epf"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.epf"
- target="_parent" onclick="window.event.cancelBubble=true;">Eclipse Process
- Framework</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s57347" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:84.64%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.43%'>•</span>EPF
- aims at producing a customizable software </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:85.01%;height:5.25%'>process engineering
- framework, with exemplary </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:94.38%;height:5.25%'>process content and tools, supporting a
- broad variety </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:81.27%;height:5.25%'>of project types and development styles&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>sub-project of
- ETP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:68.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:pkroll@us.ibm.com"/><a
- href="mailto:pkroll@us.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Per Kroll</a><span
- style='mso-spacerun:yes'> </span>(<p:onmouseclick hyperlinktype="url"
-  href="http://www.ibm.com/"/><a href="http://www.ibm.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>IBM</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0094.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0094.html
deleted file mode 100644
index afa14fc..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0094.html
+++ /dev/null
@@ -1,158 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Java Workflow Tooling">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="57"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s58370"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s58371" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s58370" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.jwt"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=technology.jwt"
- target="_parent" onclick="window.event.cancelBubble=true;">Java Workflow
- Tooling</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s58371" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:96.25%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.14%'>•</span>JWT
- aims to build design time, development time, and </span><span
- style='position:absolute;top:31.75%;left:10.48%;width:94.94%;height:5.25%'>runtime
- workflow tools in order to provide a complete, </span><span style='position:
- absolute;top:37.25%;left:10.48%;width:95.69%;height:5.25%'>flexible,
- interoperable Business Process Management </span><span style='position:absolute;
- top:42.5%;left:10.48%;width:81.27%;height:5.25%'>(BPM) platform&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>sub-project of
- ETP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:68.0%;left:10.48%;width:84.83%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.42%'>•</span>Leads
- are <p:onmouseclick hyperlinktype="url" href="mailto:mdutoo@yahoo.fr"/><a
- href="mailto:mdutoo@yahoo.fr" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Marc Dutoo</a><span
- style='mso-spacerun:yes'> </span>(<p:onmouseclick hyperlinktype="url"
-  href="http://www.openwide.fr/"/><a href="http://www.openwide.fr/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Open Wide</a>) and <p:onmouseclick hyperlinktype="url"
-  href="mailto:lautenbacher@ds-lab.org"/><a
- href="mailto:lautenbacher@ds-lab.org" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Florian </a></span><span
- style='position:absolute;top:73.25%;left:10.48%;width:81.27%;height:5.25%'><p:onmouseclick
-  hyperlinktype="url" href="mailto:lautenbacher@ds-lab.org"/><a
- href="mailto:lautenbacher@ds-lab.org" target="_parent"
- onclick="window.event.cancelBubble=true;">Lautenbacher</a> (<p:onmouseclick
-  hyperlinktype="url" href="http://www.uni-augsburg.de/en/"/><a
- href="http://www.uni-augsburg.de/en/" target="_parent"
- onclick="window.event.cancelBubble=true;">University of Augsburg</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0095.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0095.html
deleted file mode 100644
index ac90360..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0095.html
+++ /dev/null
@@ -1,150 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: SOA Tools Platform">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="58"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s59394"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s59395" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s59394" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=stp"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=stp"
- target="_parent" onclick="window.event.cancelBubble=true;">SOA Tools Platform</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s59395" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:93.63%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.2%'>•</span>STP
- provides frameworks and exemplary, extensible </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:94.56%;height:5.25%'>tools that enable
- the design, configuration, assembly, </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:95.88%;height:5.25%'>deployment, monitoring, and
- management of software </span><span style='position:absolute;top:42.5%;
- left:10.48%;width:86.7%;height:5.25%'>designed around a Service Oriented
- Architecture </span><span style='position:absolute;top:47.75%;left:10.48%;
- width:81.27%;height:5.25%'>(SOA)&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:54.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:60.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>top-level
- project&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:73.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:ohurley@iona.com"/><a
- href="mailto:ohurley@iona.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Oisin
- Hurley</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.iona.com/"/><a
- href="http://www.iona.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Iona</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0096.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0096.html
deleted file mode 100644
index 5ba2917..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0096.html
+++ /dev/null
@@ -1,144 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: STP BPMN Modeler">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="59"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s60418"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s60419" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s60418" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/stp/bpmn/index.php"/><a
- href="http://www.eclipse.org/stp/bpmn/index.php" target="_parent"
- onclick="window.event.cancelBubble=true;">STP BPMN Modeler</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s60419" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:92.69%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.22%'>•</span>BPMN
- provides an editor and a set of tools to model </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:87.45%;height:5.25%'>business process
- diagrams using BPMN notation&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:44.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>sub-project of
- STP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:51.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:57.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:hmalphettes@intalio.com"/><a
- href="mailto:hmalphettes@intalio.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Hugues
- Malphettes</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.intalio.com/"/><a
- href="http://www.intalio.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Intalio</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0097.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0097.html
deleted file mode 100644
index f6f140c..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0097.html
+++ /dev/null
@@ -1,153 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description
-content="3/19/2008: Test and Performance Tools Platform (TPTP)">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="60"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s61442"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s61443" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s61442" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:94.19%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=tptp"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=tptp"
- target="_parent" onclick="window.event.cancelBubble=true;">Test and
- Performance Tools Platform (TPTP)</a><span style='mso-special-format:lastCR;
- display:none'>&#13;</span></div>
- <div v:shape="_x0000_s61443" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:92.13%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.23%'>•</span>TPTP
- provides an open platform supplying powerful </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:81.27%;height:5.25%'>frameworks and
- services that allow software </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:96.62%;height:5.25%'>developers to build unique test and
- performance tools, </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:93.82%;height:5.25%'>both open source and commercial, that can be easily
- </span><span style='position:absolute;top:47.75%;left:10.48%;width:84.26%;
- height:5.25%'>integrated with the platform and with other tools&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:54.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:60.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>top-level
- project&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:73.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:oec@ocsystems.com"/><a
- href="mailto:oec@ocsystems.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Oliver
- Cole</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.ocsystems.com/"/><a
- href="http://www.ocsystems.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>OC Systems</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0098.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0098.html
deleted file mode 100644
index a48ae37..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0098.html
+++ /dev/null
@@ -1,150 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Testing Tools">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="61"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s62466"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s62467" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s62466" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=tptp.test"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=tptp.test"
- target="_parent" onclick="window.event.cancelBubble=true;">Testing Tools</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s62467" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:95.88%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.14%'>•</span>Testing
- Tools provides frameworks for building testing </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:81.27%;height:5.25%'>tools by extending
- TPTP with testing editors, </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:81.27%;height:5.25%'>deployment and execution of tests,
- execution </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:83.52%;height:5.25%'>environments and associated execution history </span><span
- style='position:absolute;top:47.75%;left:10.48%;width:81.27%;height:5.25%'>analysis
- and reporting&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:54.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:60.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>sub-project of
- TPTP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:73.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:paules@ca.ibm.com"/><a
- href="mailto:paules@ca.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Paul
- Slauenwhite</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.ibm.com/"/><a href="http://www.ibm.com/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>IBM</a>)<span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0099.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0099.html
deleted file mode 100644
index bbe4b36..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0099.html
+++ /dev/null
@@ -1,147 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Graphical Modeling Framework">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="41"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s41986"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s41987" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s41986" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmf"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=modeling.gmf"
- target="_parent" onclick="window.event.cancelBubble=true;">Graphical Modeling
- Framework</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s41987" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:91.57%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.24%'>•</span>GMF
- provides a generative component and runtime </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:92.32%;height:5.25%'>infrastructure for
- developing graphical editors based </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:81.27%;height:5.25%'>on EMF and GEF&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>sub-project of
- EMP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:richard.gronback@borland.com"/><a
- href="mailto:richard.gronback@borland.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Richard
- Gronback</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.borland.com/"/><a
- href="http://www.borland.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Borland</a>)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0100.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0100.html
deleted file mode 100644
index e492e98..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0100.html
+++ /dev/null
@@ -1,147 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Business Process Model and Notation">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="45"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s46082"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s46083" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s46082" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/modeling/mdt/?project=bpmn2"/><a
- href="http://www.eclipse.org/modeling/mdt/?project=bpmn2" target="_parent"
- onclick="window.event.cancelBubble=true;">Business Process Model and Notation</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s46083" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:87.45%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.35%'>•</span>BPMN2
- will provide a metamodel implementation </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:90.26%;height:5.25%'>based on the forthcoming
- Business Process Model </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:81.27%;height:5.25%'>and Notation (BPMN 2.0) OMG
- specification&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/incubation-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Incubating</a><span style='mso-spacerun:yes'> </span>component of
- MDT&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:92.69%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.22%;width:97.97%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.26%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:Kenn.Hussey@embarcadero.com"/><a
- href="mailto:Kenn.Hussey@embarcadero.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Kenn
- Hussey</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.embarcadero.com/"/><a
- href="http://www.embarcadero.com/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Embarcadero
- Technologies</a>)<span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0101.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0101.html
deleted file mode 100644
index cceaff9..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0101.html
+++ /dev/null
@@ -1,152 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Web Tools Platform">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="62"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s63490"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s63491" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s63490" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools"/><a
- href="http://www.eclipse.org/projects/project_summary.php?projectid=webtools"
- target="_parent" onclick="window.event.cancelBubble=true;">Web Tools Platform</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s63491" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:84.08%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.44%'>•</span>WTP
- extends the Eclipse platform with tools for </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:93.07%;height:5.25%'>developing Web and Java EE
- applications, including </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:81.27%;height:5.25%'>source and graphical editors for a
- variety of </span><span style='position:absolute;top:42.5%;left:10.48%;
- width:96.44%;height:5.25%'>languages, wizards and built-in applications to
- simplify </span><span style='position:absolute;top:47.75%;left:10.48%;
- width:97.19%;height:5.25%'>development, and tools and APIs to support
- deploying, </span><span style='position:absolute;top:53.25%;left:10.48%;
- width:81.27%;height:5.25%'>running, and testing applications&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:59.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:66.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>top-level
- project&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:72.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:78.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:david_williams@us.ibm.com"/><a
- href="mailto:david_williams@us.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>David
- Williams</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.ibm.com/"/><a href="http://www.ibm.com/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>IBM</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0102.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0102.html
deleted file mode 100644
index b4f01a2..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0102.html
+++ /dev/null
@@ -1,147 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Source Editing">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="63"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s64514"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s64515" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s64514" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/webtools/sse/"/><a
- href="http://www.eclipse.org/webtools/sse/" target="_parent"
- onclick="window.event.cancelBubble=true;">Source Editing</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s64515" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:88.76%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.32%'>•</span>Source
- Editing provides source editing support for </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:96.62%;height:5.25%'>typical &quot;web&quot;
- languages and the mixing of them, with a </span><span style='position:absolute;
- top:37.25%;left:10.48%;width:87.45%;height:5.25%'>focus on making the editors
- extensible and easily </span><span style='position:absolute;top:42.5%;
- left:10.48%;width:81.27%;height:5.25%'>reusable&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:55.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/mature-phase.php"/><a
- href="http://www.eclipse.org/projects/dev_process/mature-phase.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Mature</a><span style='mso-spacerun:yes'> </span>sub-project of
- WTP&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:68.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Lead is <p:onmouseclick
-  hyperlinktype="url" href="mailto:nitind@us.ibm.com"/><a
- href="mailto:nitind@us.ibm.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Nitin
- Dahyabhai</a><span style='mso-spacerun:yes'> </span>(<p:onmouseclick
-  hyperlinktype="url" href="http://www.ibm.com/"/><a href="http://www.ibm.com/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>IBM</a>)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0103.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0103.html
deleted file mode 100644
index 5786fd1..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0103.html
+++ /dev/null
@@ -1,117 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: OMG Request For Information Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="67"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s68610"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s68610" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>OMG
- Request For Information Process<span style='mso-special-format:lastCR;
- display:none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s68611"
-  type="#_x0000_m1028" style='position:absolute;left:54pt;top:212.875pt;
-  width:612pt;height:192.25pt;visibility:visible;mso-wrap-style:square' o:spt="75"
-  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0103_image009.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_2" src="slide0103_image010.gif"
- style='position:absolute;top:39.5%;left:7.49%;width:85.01%;height:35.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0103_image009.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0103_image009.png
deleted file mode 100644
index 3a352d2..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0103_image009.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0103_image010.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0103_image010.gif
deleted file mode 100644
index a55f686..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0103_image010.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0104.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0104.html
deleted file mode 100644
index b86701d..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0104.html
+++ /dev/null
@@ -1,117 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: OMG Request For Proposal Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="68"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s69634"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s69634" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>OMG
- Request For Proposal Process<span style='mso-special-format:lastCR;display:
- none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s69635"
-  type="#_x0000_m1028" style='position:absolute;left:57pt;top:138pt;width:606pt;
-  height:342pt;visibility:visible;mso-wrap-style:square' o:spt="75"
-  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0104_image011.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_2" src="slide0104_image012.gif"
- style='position:absolute;top:25.5%;left:7.86%;width:84.08%;height:63.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0104_image011.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0104_image011.png
deleted file mode 100644
index 800251c..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0104_image011.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0104_image012.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0104_image012.gif
deleted file mode 100644
index 8522996..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0104_image012.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0105.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0105.html
deleted file mode 100644
index 7db4674..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0105.html
+++ /dev/null
@@ -1,117 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: OMG Request For Proposal Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="69"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s70658"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s70658" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>OMG
- Request For Proposal Process<span style='mso-special-format:lastCR;display:
- none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s70659"
-  type="#_x0000_m1028" style='position:absolute;left:54pt;top:236.875pt;
-  width:612pt;height:144.25pt;visibility:visible;mso-wrap-style:square' o:spt="75"
-  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0105_image013.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_2" src="slide0105_image014.gif"
- style='position:absolute;top:43.75%;left:7.49%;width:85.01%;height:26.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0105_image013.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0105_image013.png
deleted file mode 100644
index 1efba74..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0105_image013.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0105_image014.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0105_image014.gif
deleted file mode 100644
index b0edbc1..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0105_image014.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0106.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0106.html
deleted file mode 100644
index b9818e0..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0106.html
+++ /dev/null
@@ -1,117 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: OMG Specification Adoption Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="70"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s71682"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s71682" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>OMG
- Specification Adoption Process<span style='mso-special-format:lastCR;
- display:none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s71683"
-  type="#_x0000_m1028" style='position:absolute;left:93.125pt;top:138pt;
-  width:533.75pt;height:342pt;visibility:visible;mso-wrap-style:square' o:spt="75"
-  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0106_image015.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_2" src="slide0106_image016.gif"
- style='position:absolute;top:25.5%;left:12.92%;width:74.15%;height:63.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0106_image015.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0106_image015.png
deleted file mode 100644
index 25e1b14..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0106_image015.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0106_image016.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0106_image016.gif
deleted file mode 100644
index ff097af..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0106_image016.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0107.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0107.html
deleted file mode 100644
index 3cfd780..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0107.html
+++ /dev/null
@@ -1,118 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description
-content="3/19/2008: OMG Specification Finalization Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="71"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s72706"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s72706" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>OMG
- Specification Finalization Process<span style='mso-special-format:lastCR;
- display:none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s72707"
-  type="#_x0000_m1028" style='position:absolute;left:54pt;top:177.25pt;width:612pt;
-  height:263.5pt;visibility:visible;mso-wrap-style:square' o:spt="75"
-  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0107_image017.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_2" src="slide0107_image018.gif"
- style='position:absolute;top:32.75%;left:7.49%;width:85.01%;height:48.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0107_image017.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0107_image017.png
deleted file mode 100644
index 5ea958a..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0107_image017.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0107_image018.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0107_image018.gif
deleted file mode 100644
index 2528b87..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0107_image018.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0108.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0108.html
deleted file mode 100644
index 85def31..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0108.html
+++ /dev/null
@@ -1,117 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: OMG Specification Revision Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="72"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s73730"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s73730" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>OMG
- Specification Revision Process<span style='mso-special-format:lastCR;
- display:none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s73731"
-  type="#_x0000_m1028" style='position:absolute;left:54pt;top:177.25pt;width:612pt;
-  height:263.5pt;visibility:visible;mso-wrap-style:square' o:spt="75"
-  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0108_image019.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_2" src="slide0108_image020.gif"
- style='position:absolute;top:32.75%;left:7.49%;width:85.01%;height:48.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0108_image019.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0108_image019.png
deleted file mode 100644
index ab8311b..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0108_image019.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0108_image020.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0108_image020.gif
deleted file mode 100644
index fb6ec8f..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0108_image020.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0109.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0109.html
deleted file mode 100644
index 337798f..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0109.html
+++ /dev/null
@@ -1,118 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Eclipse Project Declaration Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="75"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s76802"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s76802" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Eclipse
- Project Declaration Process<span style='mso-special-format:lastCR;display:
- none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s76803"
-  type="#_x0000_m1028" style='position:absolute;left:82.875pt;top:225.375pt;
-  width:554.25pt;height:167.25pt;visibility:visible;mso-wrap-style:square'
-  o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
-  stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0109_image025.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_2" src="slide0109_image026.gif"
- style='position:absolute;top:41.75%;left:11.42%;width:76.96%;height:31.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0109_image025.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0109_image025.png
deleted file mode 100644
index 38855d7..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0109_image025.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0109_image026.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0109_image026.gif
deleted file mode 100644
index 1ba2a01..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0109_image026.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0110.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0110.html
deleted file mode 100644
index 404ff9c..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0110.html
+++ /dev/null
@@ -1,117 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Eclipse Project Creation Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="76"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s77826"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s77826" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Eclipse
- Project Creation Process<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s77827"
-  type="#_x0000_m1028" style='position:absolute;left:69.375pt;top:153.375pt;
-  width:581.25pt;height:311.25pt;visibility:visible;mso-wrap-style:square'
-  o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
-  stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0110_image027.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_2" src="slide0110_image028.gif"
- style='position:absolute;top:28.5%;left:9.55%;width:80.71%;height:57.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0110_image027.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0110_image027.png
deleted file mode 100644
index f54b612..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0110_image027.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0110_image028.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0110_image028.gif
deleted file mode 100644
index 949cde2..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0110_image028.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0111.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0111.html
deleted file mode 100644
index 86b67ff..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0111.html
+++ /dev/null
@@ -1,116 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Eclipse Project Graduation Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="77"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s78850"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s78850" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Eclipse
- Project Graduation Process<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s78851"
-  type="#_x0000_m1028" style='position:absolute;left:70pt;top:138pt;width:580pt;
-  height:342pt;visibility:visible;mso-wrap-style:square' o:spt="75"
-  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0111_image029.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_2" src="slide0111_image030.gif"
- style='position:absolute;top:25.5%;left:9.73%;width:80.52%;height:63.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0111_image029.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0111_image029.png
deleted file mode 100644
index aaac4b8..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0111_image029.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0111_image030.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0111_image030.gif
deleted file mode 100644
index 4d1a82f..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0111_image030.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0112.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0112.html
deleted file mode 100644
index 7b56f54..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0112.html
+++ /dev/null
@@ -1,116 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Eclipse Project Promotion Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="78"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s79874"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s79874" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Eclipse
- Project Promotion Process<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s79875"
-  type="#_x0000_m1028" style='position:absolute;left:78.25pt;top:138pt;width:563.5pt;
-  height:342pt;visibility:visible;mso-wrap-style:square' o:spt="75"
-  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0112_image031.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_2" src="slide0112_image032.gif"
- style='position:absolute;top:25.5%;left:10.86%;width:78.27%;height:63.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0112_image031.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0112_image031.png
deleted file mode 100644
index 43964e8..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0112_image031.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0112_image032.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0112_image032.gif
deleted file mode 100644
index a483fa7..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0112_image032.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0113.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0113.html
deleted file mode 100644
index 621d29a..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0113.html
+++ /dev/null
@@ -1,117 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Eclipse Project Termination Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="79"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s80898"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s80898" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Eclipse
- Project Termination Process<span style='mso-special-format:lastCR;display:
- none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s80899"
-  type="#_x0000_m1028" style='position:absolute;left:124.375pt;top:138pt;
-  width:471.25pt;height:342pt;visibility:visible;mso-wrap-style:square' o:spt="75"
-  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0113_image033.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_4" src="slide0113_image034.gif"
- style='position:absolute;top:25.5%;left:17.22%;width:65.54%;height:63.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0113_image033.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0113_image033.png
deleted file mode 100644
index 9a1c2f9..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0113_image033.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0113_image034.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0113_image034.gif
deleted file mode 100644
index bbe63ca..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0113_image034.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0114.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0114.html
deleted file mode 100644
index 5ed233f..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0114.html
+++ /dev/null
@@ -1,116 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Eclipse Project Review Process">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="74"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s75778"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape>
- <div v:shape="_x0000_s75778" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Eclipse
- Project Review Process<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s75779"
-  type="#_x0000_m1028" style='position:absolute;left:54pt;top:195.125pt;
-  width:612pt;height:227.75pt;visibility:visible;mso-wrap-style:square' o:spt="75"
-  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0114_image023.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_3" src="slide0114_image024.gif"
- style='position:absolute;top:36.25%;left:7.49%;width:85.01%;height:42.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0114_image023.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0114_image023.png
deleted file mode 100644
index 60655e2..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0114_image023.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0114_image024.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0114_image024.gif
deleted file mode 100644
index 7be6066..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0114_image024.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0117.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0117.html
deleted file mode 100644
index 80f5dd7..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0117.html
+++ /dev/null
@@ -1,674 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: OMG Membership Matrix">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml" href="slide0117.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><p:shaperange
-  href="slide0117.xml#_x0000_s84994"/><![if !vml]><img border=0
- v:shapes="Content_x0020_Placeholder_x0020_3,_x0000_s84996,_x0000_s84997,_x0000_s84998,_x0000_s84999,_x0000_s85000,_x0000_s85001,_x0000_s85002,_x0000_s85003,_x0000_s85004,_x0000_s85005,_x0000_s85006,_x0000_s85007,_x0000_s85008,_x0000_s85009,_x0000_s85010,_x0000_s85011,_x0000_s85012,_x0000_s85013,_x0000_s85014,_x0000_s85015,_x0000_s85016,_x0000_s85017,_x0000_s85018,_x0000_s85019,_x0000_s85020,_x0000_s85021,_x0000_s85022,_x0000_s85023,_x0000_s85024,_x0000_s85025,_x0000_s85026,_x0000_s85027,_x0000_s85028,_x0000_s85029,_x0000_s85030,_x0000_s85031,_x0000_s85032,_x0000_s85033,_x0000_s85034,_x0000_s85035,_x0000_s85036,_x0000_s85037,_x0000_s85038,_x0000_s85039,_x0000_s85040,_x0000_s85041,_x0000_s85042,_x0000_s85043,_x0000_s85044,_x0000_s85045,_x0000_s85046,_x0000_s85047,_x0000_s85048,_x0000_s85049,_x0000_s85050,_x0000_s85051,_x0000_s85052,_x0000_s85053,_x0000_s85054,_x0000_s85055,_x0000_s85056,_x0000_s85057,_x0000_s85058,_x0000_s85059,_x0000_s85060,_x0000_s85061,_x0000_s85062,_x0000_s85063,_x0000_s85064,_x0000_s85065,_x0000_s85066,_x0000_s85067,_x0000_s85068"
- src="slide0117_image036.gif" style='position:absolute;top:25.5%;left:7.3%;
- width:85.76%;height:52.0%'><![endif]>
- <div v:shape="_x0000_s84994" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.omg.org/memberservices/membershipmatrix.htm"/><a
- href="http://www.omg.org/memberservices/membershipmatrix.htm" target="_parent"
- onclick="window.event.cancelBubble=true;">OMG Membership Matrix</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s84996">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:29.0%;left:8.42%;width:10.29%;height:2.0%'><span style='font-size:33%;
- color:white'><b>&nbsp;</b></span></div>
- </div>
- <div v:shape="_x0000_s84997">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.25%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:white'><b><br>
-  </b></span></span><span style='position:absolute;top:28.0%;left:20.59%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Contributing</b></span></span></div>
- </div>
- <div v:shape="_x0000_s84998">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.25%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:white'><b><br>
-  </b></span></span><span style='position:absolute;top:28.0%;left:32.77%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Domain</b></span></span></div>
- </div>
- <div v:shape="_x0000_s84999">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.25%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:white'><b><br>
-  </b></span></span><span style='position:absolute;top:28.0%;left:44.94%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Platform</b></span></span></div>
- </div>
- <div v:shape="_x0000_s85000">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.25%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:white'><b><br>
-  </b></span></span><span style='position:absolute;top:28.0%;left:57.11%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Influencing<br>
-  </b></span></span><span style='position:absolute;top:30.0%;left:57.11%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Government
- </b></span></span><span style='position:absolute;top:31.75%;left:57.11%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>University</b></span></span></div>
- </div>
- <div v:shape="_x0000_s85001">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.25%;left:69.28%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:white'><b><br>
-  </b></span></span><span style='position:absolute;top:28.0%;left:69.28%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Trial</b></span></span></div>
- </div>
- <div v:shape="_x0000_s85002">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.25%;left:81.46%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:white'><b><br>
-  </b></span></span><span style='position:absolute;top:28.0%;left:81.46%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:white'><b>Analyst</b></span><span
- style='font-size:33%;color:white;mso-special-format:lastCR;display:none'><b>&#13;</b></span></span></div>
- </div>
- <div v:shape="_x0000_s85003">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:35.0%;left:8.42%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>SIG<br>
-  </b></span></span><span style='position:absolute;top:36.75%;left:8.42%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'><b>Attendance</b></span><span
- style='font-size:33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s85004">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:34.75%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85005">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:34.75%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85006">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:34.75%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85007">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:34.75%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85008">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:34.75%;left:69.28%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>YES<br>
-  </b></span></span><span style='position:absolute;top:36.5%;left:69.28%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'>(One person)</span></span></div>
- </div>
- <div v:shape="_x0000_s85009">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:34.75%;left:81.46%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>YES<br>
-  </b></span></span><span style='position:absolute;top:36.5%;left:81.46%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'><b>&nbsp;</b></span><span
- style='font-size:33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s85010">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:41.25%;left:8.42%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>SIG Vote</b></span><span
- style='font-size:33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85011">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:41.25%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85012">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:41.25%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85013">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:41.25%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85014">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:41.25%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85015">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:41.25%;left:69.28%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s85016">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:41.25%;left:81.46%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s85017">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:46.75%;left:8.42%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>TC Documents</b></span><span
- style='font-size:33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85018">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:46.75%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85019">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:46.75%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85020">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:46.75%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85021">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:46.75%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85022">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:46.75%;left:69.28%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85023">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:46.75%;left:81.46%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85024">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:51.0%;left:8.42%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>Can hold an<br>
-  </b></span></span><span style='position:absolute;top:52.75%;left:8.42%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'><b>OMG Board
- of<br>
-  </b></span></span><span style='position:absolute;top:54.5%;left:8.42%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'><b>Directors
- seat</b></span><span style='font-size:33%;color:black;mso-special-format:lastCR;
- display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s85025">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:52.75%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85026">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:52.75%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85027">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:52.75%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85028">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:52.75%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s85029">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:52.75%;left:69.28%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s85030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:52.75%;left:81.46%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s85031">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:57.75%;left:8.42%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>Can hold an<br>
-  </b></span></span><span style='position:absolute;top:59.5%;left:8.42%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'><b>Architecture<br>
-  </b></span></span><span style='position:absolute;top:61.25%;left:8.42%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'><b>Board
- seat</b></span><span style='font-size:33%;color:black;mso-special-format:lastCR;
- display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s85032">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:59.5%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85033">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:59.5%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85034">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:59.5%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85035">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:59.5%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s85036">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:59.5%;left:69.28%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s85037">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:59.5%;left:81.46%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s85038">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:64.25%;left:8.42%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>Can propose<br>
-  </b></span></span><span style='position:absolute;top:66.0%;left:8.42%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'><b>Technology<br>
-  </b></span></span><span style='position:absolute;top:68.0%;left:8.42%;
- width:10.29%;height:2.0%'><span style='font-size:33%;color:black'><b>for
- Adoption</b></span><span style='font-size:33%;color:black;mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s85039">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:66.0%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85040">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:66.0%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85041">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:66.0%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85042">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:66.0%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s85043">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:66.0%;left:69.28%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s85044">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:66.0%;left:81.46%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'>NO</span></div>
- </div>
- <div v:shape="_x0000_s85045">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:72.0%;left:8.05%;width:11.23%;
- height:2.0%'><span style='font-size:33%;color:black'><b>Send/Receive On </b></span></span><span
- style='position:absolute;top:73.75%;left:8.23%;width:10.86%;height:2.0%'><span
- style='font-size:33%;color:black'><b>OMG Email Lists</b></span><span
- style='font-size:33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s85046">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:71.0%;left:20.59%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85047">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:71.0%;left:32.77%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85048">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:71.0%;left:44.94%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85049">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:71.0%;left:57.11%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s85050">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:71.0%;left:69.28%;width:10.29%;
- height:2.0%'><span style='font-size:33%;color:black'><b>YES<br>
-  </b></span></span><span style='position:absolute;top:72.75%;left:68.35%;
- width:12.17%;height:2.0%'><span style='font-size:33%;color:black'>(Send to
- lists only in </span></span><span style='position:absolute;top:74.5%;
- left:69.28%;width:10.29%;height:2.0%'><span style='font-size:33%;color:black'>first
- year)</span></span></div>
- </div>
- <div v:shape="_x0000_s85051">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:center;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:71.0%;left:81.46%;width:10.29%;height:2.0%'><span
- style='font-size:33%;color:black'><b>YES</b></span><span style='font-size:
- 33%;color:black;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0117.xml b/docs/presentations/EclipseCon2008_LongTalk_files/slide0117.xml
deleted file mode 100644
index 13a2326..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0117.xml
+++ /dev/null
@@ -1,1719 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="83"/>
- </o:shapelayout><p:shaperange id="_x0000_s84994">
-  <v:shape id="_x0000_s84994" type="#_x0000_m1027" style='position:absolute;
-   left:54pt;top:84pt;width:612pt;height:42pt;visibility:visible;
-   mso-wrap-style:square;v-text-anchor:middle'>
-   <v:stroke o:forcedash="f"/>
-   <v:path arrowok="t"/>
-   <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-    verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-   <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-   <p:placeholder type="title" position="-1"/>
-  </v:shape><v:group id="_x0000_s84995" style='position:absolute;left:54pt;
-   top:138pt;width:612pt;height:277.25pt' coordorigin="432,1104" coordsize="4896,2218"
-   o:tableproperties="1" o:tablelimits="29.25pt 29.25pt 29.25pt 29.25pt 29.25pt 29.25pt 29.25pt 29.25pt"
-   o:gfxdata="UEsDBBQABgAIAAAAIQCTXr2S+wAAAOEBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRQU7DMBBF
-90jcwfIWxQ5dIISSdEHKEhAqBxjZk8RqMrY8JrS3x2nLggVFLC3r/f++plrvp1HMGNl5quWtKqVA
-Mt466mv5vn0q7qXgBGRh9IS1PCDLdXN9VW0PAVlkmriWQ0rhQWs2A07Aygek/NP5OEHKz9jrAGYH
-PepVWd5p4ykhpSItGbKpXrJAdBbFK8T0DFPu0TayxpVvvVE5SorHE7PU1hJCGJ2BlKX1TFZNXPiu
-cwZVG3lzpG4WSjdVix18jEls9rnytDLiyH8E/lxQnO1VJo+lPLjAFxouG5/Nfltt/SdFnP87u83Y
-G87fVvp4oOYLAAD//wMAUEsDBBQABgAIAAAAIQA4/SH/1gAAAJQBAAALAAAAX3JlbHMvLnJlbHOk
-kMFqwzAMhu+DvYPRfXGawxijTi+j0GvpHsDYimMaW0Yy2fr2M4PBMnrbUb/Q94l/f/hMi1qRJVI2
-sOt6UJgd+ZiDgffL8ekFlFSbvV0oo4EbChzGx4f9GRdb25HMsYhqlCwG5lrLq9biZkxWOiqY22Yi
-Tra2kYMu1l1tQD30/bPm3wwYN0x18gb45AdQl1tp5j/sFB2T0FQ7R0nTNEV3j6o9feQzro1iOWA1
-4Fm+Q8a1a8+Bvu/d/dMb2JY5uiPbhG/ktn4cqGU/er3pcvwCAAD//wMAUEsDBBQABgAIAAAAIQDk
-e9/2xgYAAHlPAAAOAAAAZHJzL2Uyb0RvYy54bWzsXFtv4jgUfl9p/4OVp12tGC6FQlFhRKFFlWan
-VS8r7aNJDERr7MhxO2VW+1/2t8wvm2OTkpLSJk5bIK1fuBXOOT7X7xzbPfx8N6PolojQ56zjVD9V
-HESYyz2fTTrO9dVJqeWgUGLmYcoZ6ThzEjqfu7/+chi0j2v8ROAZQUCChe2g40ylDNrlcuhOyQyH
-n3hAGPxtzMUMS3grJuVAkJAwiSWwm9FyrVLZL8+wz5wuEGS3Q4GDqe9qsudCfeZ+vT0XyPc6Tt1B
-DLh1nD5nEmigc4pdMuXUIwLtOeXo20kSuD15QPQLd/8JI4FxFoE9gb+BLlZkRYwPBSy3qpiWtYxJ
-rmoxiwUEU5D+DsSvHdQP9pu1g0b0q8UX4Ofrln03FrPuIW7z8fjF0gLz/VajVQHTzkHoZqO2D69B
-dNwmd/LF5F2g32w2a/VK1UEucNhr1Cr1uuYAq7tfSWSFl7JTUkekBlhidCP8HGaUeEQJ+BxuyxGN
-nsDNxr4I5QX/pkyLRuD00Wv9DfWTSzmn5NTr/tvo12qNer1Xah4f75fqe/Va6ahSb5VajaNB/+Bk
-UO3v9f47LAP9hz/TH4yocgzNeSh8T72cwHOfU6QYV6uVvbp25137XK1mRO9llgJNwdbNSgtMrdfj
-6se7I+7N1asRPJ8L7WY0lFpz+k2g/qg1IEDlFKtEQ1jp+hISzfeOo/3U84UET1oQppAtGJLzgIwh
-4DvOHzNWolJHERCKlNn98b/WLgSkpg6PwEiJvBRIusAPM3fKRcdxpYgoyIXcryj9SPuP+RpUNolU
-M0pRUC4WQDyiq03wpPZzEQdNd1VmFv7oBuw1WbEGZBrmnWOBL55kml1dMSmtr3VmXmjSWjYZV7kt
-O+CqSlubqviMMk7hoxXwk1TYzFr1PVn1lI3pDUD4xym4mDVlyKE7YTMA/Ak/TamQ2evJfUB3kRmH
-3Mn0mvm645LzBMO4sr0YF8WkbJGMcvabw58r4WNaTJMGChrTCYwA6KIzfPXoMiiXhqGb064onMk+
-JRjWbNJn9Bim8zCZjOJw22zkwtqlNtXL2rHY/FFfFLUhkBqfWE/u5Hd5OkyESDHrUk/CEMqDdpIk
-lrNZV1hpaFVbF3Lqeyc+1WMNPYkjfSrQLaYdB7su1NHF2Grlm8qNoDvWpSJH15TTfZS42Zr7v48v
-DbWcSjs20+sXSKsPNSeDjK+HMPCwrC5vnl7MPQVlLzc76DMG0i9x7kfTUWoueEYzmYpTNgYZcUo2
-Ymrc9tsZIyiAvRvOfl9Jj8DpVadiOeM3+0oee+Tm9Y40pMkuc2LgnD7iTCVtlF4KifzQX1xavJS3
-HqY60DN5LPat9YA+lXZM4Em8tIJFc4/gt5Bs4rW9U+UUESVs1ZuswpZbpGmjgNTMscxKX8+yoJQt
-2X1Dyyhe2b7qowF3b9QEPlyxXzriMYiiOAVnKy/KXAUadRhoYhkuj0FxrKT1dcqAS0wqm75tOX+L
-gyQW6zxzRiincgyCwIaaOqmUvfKZZ6RU2rueh96RN20XeqR6wjIY+5ghdawXgGACb+z+UOjszyE6
-4lh4iI8LJ/zAF8SVXIQoJNh0hzPVvqaRrghahJc8wfeqmxVbarUWk9Z3lFnV7qly1xgiPnv42QKb
-N1dY9jBZlp2dnk7kCRa7oIdH/C36iU5gRcc8Iiyl0haEwBPzBMMtsZ5wp74EDHEjkrs8uw/dFrDN
-Ih91CNDomEYq8lum2A/YP1rlrL/hlfv8oLkPGdRO0x5lg1NRi2hk1yKaoiKaQPCAh8UDBVfEnTJO
-+SR5VWP38Qxc7UI9jwfqqn1iFBWnufW4L7VoxQSy7R4pggWa5aSu3yKaLFeyzUt1quJNHW+DBdqw
-V/pYyrHoxaKX1X+5sN15jEFPsMz1l5B8yhfEJXB7E50xpPZ6juFaPEVf/NCejcl9zSM16S8tsJ2c
-aWtIvK+hboltWh95YtXcUwy4ZAAhm9bRu4uhnwAAAP//xFJNT8MwDP0rlk9MaFrhhCbSA2KcKyoO
-HN026yJlaeX4sPDrcVLEx4EJISEuduw4z37PuaXtXGfTMJAfg8FeGDc5xcVo3lMYDdqwfmoR4ovB
-m6pC6AxeIQyOJRmsMBd7EhdA0mz31FuDl8ew9pLRNgrXFECpn3dtjmXJ5nfdX7TSFm+453n8gsFF
-a8MAMoF3USJMwSdQ4nvHUSBZ4tUXgjqJapwpn+6mIeVxpG94kUX6JS72/b7TulKhokZpJXlbdvL/
-u1LmDTE9fvsvfq7nB1RR57xGWT79Jtl1vviRaT64/p6EPsd6nre76+mB6WjrVwAAAP//AwBQSwME
-FAAGAAgAAAAhAMBXvInDAAAA2gAAAA8AAABkcnMvZG93bnJldi54bWxEj0FrAjEUhO+C/yE8wZtm
-FRHZGqWI1lLxsLZ4fm5ed1c3L9sk6vrvm4LQ4zAz3zDzZWtqcSPnK8sKRsMEBHFudcWFgq/PzWAG
-wgdkjbVlUvAgD8tFtzPHVNs7Z3Q7hEJECPsUFZQhNKmUPi/JoB/ahjh639YZDFG6QmqH9wg3tRwn
-yVQarDgulNjQqqT8crgaBUezz3+u22znHqf1qso+Jm/n1irV77WvLyACteE//Gy/awUT+LsSb4Bc
-/AIAAP//AwBQSwECLQAUAAYACAAAACEAk169kvsAAADhAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0Nv
-bnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQA4/SH/1gAAAJQBAAALAAAAAAAAAAAAAAAA
-ACwBAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQDke9/2xgYAAHlPAAAOAAAAAAAAAAAAAAAA
-ACsCAABkcnMvZTJvRG9jLnhtbFBLAQItABQABgAIAAAAIQDAV7yJwwAAANoAAAAPAAAAAAAAAAAA
-AAAAAB0JAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAQABADzAAAADQoAAAAA
-">
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:rect id="_x0000_s84996" style='position:absolute;left:432;top:1104;
-    width:699;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCQ1PYl1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sTI9Na8JA
-EIbvBf/DMoXe6sZSSomuYgVpKT00Rg/eJtnJB2Znw+4aY399Fw+lx3fe4Xl5FqvRdGIg51vLCmbT
-BARxaXXLtYJ9vn18BeEDssbOMim4kofVcnK3wFTbC2c07EItIoR9igqaEPpUSl82ZNBPbU8cu8o6
-gyFGV0vt8BLhppNPSfIiDbYcFxrsadNQedqdjYKqSA5nHtf58fltyGfZcPj8+umUergf13MQgcbw
-/9l/b4q/8ob60AqiSfV+LVyrM/SB3O0STaMlyOUvAAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAJDU9iXWAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84997" style='position:absolute;left:1131;
-    top:1104;width:700;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDZ/ept1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SP0Ha5DYoNahC1qFuhVqhEBsUB9SWA7xNE6Jx5FtmrRfj9UFLO/c0bk6i9VgW3EiHxrHCh4m
-GQjiyumGawX73ct4DiJEZI2tY1JwpgCr5ehmgbl2PW/otI21SBAOOSowMXa5lKEyZDFMXEecuoPz
-FmOKvpbaY5/gtpXTLHuUFhtOCwY7Whuqvrc/VoFrd30xe/f385me2vKzKI5lf1Tq7nZ4fgIRaYj/
-z+bjUl7kX3lFvWkFyeTwev7yjd5giOSvl2SaLEEufwEAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDZ/ept1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84998" style='position:absolute;left:1831;
-    top:1104;width:699;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAtJfPP1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BSwMx
-EIXvgv8hjNCLtFkL2rI2LeJSFQ9CW2E9jpvp7tbNZElis/33hh7s8c0bvse3WA2mE0dyvrWs4G6S
-gSCurG65VvC5W4/nIHxA1thZJgUn8rBaXl8tMNc28oaO21CLBGGfo4ImhD6X0lcNGfQT2xOnbm+d
-wZCiq6V2GBPcdHKaZQ/SYMtpocGenhuqfra/RoHtdrGYvbvb+UxPTflVFIcyHpQa3QxPjyACDeHy
-XFJ8uf/4L8+oN60gmexfT9+u1Rv0gdz5kkyTJcjlHwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAtJfPP1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s84999" style='position:absolute;left:2530;
-    top:1104;width:700;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBM8s721gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9NawIx
-EIbvBf9DmEIvpWbrocpqlNKl9ANK0RXscboZd1c3kyVJzfrvG7x4fOcdnpdnsRpMJ07kfGtZweM4
-A0FcWd1yrWBbvj7MQPiArLGzTArO5GG1HN0sMNc28ppOm1CLBGGfo4ImhD6X0lcNGfRj2xOnbm+d
-wZCiq6V2GBPcdHKSZU/SYMtpocGeXhqqjps/o8B2ZSymn+5+NtUTs/spisMuHpS6ux2e5yACDeH6
-/FHGr+9reUG9awXJZP92/nWtXqMP5C6XZJosQS7/AQAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAEzyzvbWAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85000" style='position:absolute;left:3230;
-    top:1104;width:699;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBN1scm1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9Na8JA
-EIbvhf6HZYReSt3UQ5XoKtJQWooXP0CPk+yYRLOzYXdr4r938WCP77zD8/LMFr1pxIWcry0reB8m
-IIgLq2suFey2X28TED4ga2wsk4IreVjMn59mmGrb8Zoum1CKCGGfooIqhDaV0hcVGfRD2xLH7mid
-wRCjK6V22EW4aeQoST6kwZrjQoUtfVZUnDd/RoFttl02/nWvk7Eemf0hy0777qTUy6BfTkEE6sP/
-82q5y/PyUd5RP1pBNDl+X3NX6zX6QO5+iabREuT8BgAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAE3WxybWAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85001" style='position:absolute;left:3929;
-    top:1104;width:700;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDKw74Y1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LbsIw
-EEX3lfgHa5DYVMUpi4ICBlVNoRU7HhIsp/GQhMbjyDYk/H0tFnR5547O1ZktOlOLKzlfWVbwOkxA
-EOdWV1wo2O+WLxMQPiBrrC2Tght5WMx7TzNMtW15Q9dtKESEsE9RQRlCk0rp85IM+qFtiGN3ss5g
-iNEVUjtsI9zUcpQkb9JgxXGhxIY+Ssp/txejwNa7Nhuv3fNkrEfmcMyy86E9KzXod+9TEIG68P+8
-/lzpfP8o76hvrSCanL5uP67SG/SB3P0STaMlyPkfAAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAMrDvhjWAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85002" style='position:absolute;left:4629;
-    top:1104;width:699;height:365;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQC587Nr1QAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/BbsIw
-EETvSP0Hayv1gopTDhAFDKoaVVTcgKr0uMRLEhqvI9slyd/X4lCOs7N6o7dc96YRV3K+tqzgZZKA
-IC6srrlU8Hl4f05B+ICssbFMCgbysF49jJaYadvxjq77UIoIYZ+hgiqENpPSFxUZ9BPbEsfubJ3B
-EKMrpXbYRbhp5DRJZtJgzXGhwpbeKip+9r9GgW0OXT7funE611Nz/M7zy7G7KPX02L8uQATqw/35
-i4eCNv/lDfWhFUST82Y4uVrv0Adyt0s0jZYgV38AAAD//wMAUEsBAi0AFAAGAAgAAAAhANvh9svu
-AAAAhQEAABMAAAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAA
-ACEAWvQsW78AAAAVAQAACwAAAAAAAAAAAAAAAAAfAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAA
-ACEAufOza9UAAAD5AAAADwAAAAAAAAAAAAAAAAAHAgAAZHJzL2Rvd25yZXYueG1sUEsFBgAAAAAD
-AAMAtwAAAAkDAAAAAA==
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85003" style='position:absolute;left:432;top:1469;
-    width:699;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCajJQo1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BS8NA
-EIXvgv9hGcGb3VREJHZbqiAW8WAae+htmp1sQrOzYXeTpv56lx70+OYN3+NbrCbbiZF8aB0rmM8y
-EMSV0y0bBd/l290TiBCRNXaOScGZAqyW11cLzLU7cUHjNhqRIBxyVNDE2OdShqohi2HmeuLU1c5b
-jCl6I7XHU4LbTt5n2aO02HJaaLCn14aq43awCupDtht4Wpf7h5exnBfj7uPzp1Pq9mZaP4OINMX/
-ZzKD2Xz9lRfURitIJvX7+eBbXWCI5C+XZJosQS5/AQAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAJqMlCjWAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85004" style='position:absolute;left:1131;
-    top:1469;width:700;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85005" style='position:absolute;left:1831;
-    top:1469;width:699;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85006" style='position:absolute;left:2530;
-    top:1469;width:700;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85007" style='position:absolute;left:3230;
-    top:1469;width:699;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85008" style='position:absolute;left:3929;
-    top:1469;width:700;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDzSaLs1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BS8NA
-EIXvgv9hGcGb3SSgSOy2BKHVglDbitjbmJ0modnZsLtpU3+9Sw/t8c0bvsc3ng6mFQdyvrGsIB0l
-IIhLqxuuFHxtZg/PIHxA1thaJgUn8jCd3N6MMdf2yCs6rEMlIoR9jgrqELpcSl/WZNCPbEccu511
-BkOMrpLa4THCTSuzJHmSBhuOCzV29FpTuV/3RkH/+LP9Xs4X/SKrtl0xT4t0GT6Vur8bihcQgYZw
-ff7I/jg1l/KMetcKosnu7fTrGr1CH8idL9E0WoKc/AMAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDzSaLs1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85009" style='position:absolute;left:4629;
-    top:1469;width:699;height:233;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBjngXL1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvhf6HMIXeanaFStkaZSnU1pPVlqK3cTNmFzfJkszq+u8bPNTjmzd8j286H2wrThRi452CfJSB
-IFd53Tij4Of7/ekFRGR0GlvvSMGFIsxn93dTLLQ/uzWdNmxEgrhYoIKauSukjFVNFuPId+RSd/DB
-IqcYjNQBzwluWznOsom02Li0UGNHbzVVx01vFfTP293varHsl2Oz68pFXuYr/lLq8WEoX0EwDXx7
-Nt5Osu1/eUV9agXJ5PBx2YdGrzEyheslmSZLkLM/AAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAGOeBcvWAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85010" style='position:absolute;left:432;top:1702;
-    width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBNzNDS1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9NS8NA
-EIbvgv9hGcGb3VSCSOy2tEJRRA9p7MHbNDv5oNnZsLtNE3+9Sw/1+M47PC/PYjWaTgzkfGtZwXyW
-gCAurW65VvBdbB+eQfiArLGzTAom8rBa3t4sMNP2zDkNu1CLCGGfoYImhD6T0pcNGfQz2xPHrrLO
-YIjR1VI7PEe46eRjkjxJgy3HhQZ7em2oPO5ORkF1SPYnHtfFT7oZink+7D8+fzul7u/G9QuIQGP4
-f55S/tqm1/KCetcKokn1Nh1cq3P0gdzlEk2jJcjlHwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQBNzNDS1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85011" style='position:absolute;left:1131;
-    top:1702;width:700;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85012" style='position:absolute;left:1831;
-    top:1702;width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85013" style='position:absolute;left:2530;
-    top:1702;width:700;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85014" style='position:absolute;left:3230;
-    top:1702;width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85015" style='position:absolute;left:3929;
-    top:1702;width:700;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85016" style='position:absolute;left:4629;
-    top:1702;width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85017" style='position:absolute;left:432;top:1936;
-    width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDPWFuF1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9NS8NA
-EIbvgv9hmYI3u6mISOy2tIJURJA07cHbNDv5wOxs2N2kib/epYd6fOcdnpdnuR5NKwZyvrGsYDFP
-QBAXVjdcKTjkb/fPIHxA1thaJgUTeVivbm+WmGp75oyGfahEhLBPUUEdQpdK6YuaDPq57YhjV1pn
-MMToKqkdniPctPIhSZ6kwYbjQo0dvdZU/Ox7o6A8Jceex03+/bgd8kU2HD8+f1ul7mbj5gVEoDH8
-P++++sNUXssL6l0riCblbjq5RmfoA7nLJZpGS5CrPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDPWFuF1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85018" style='position:absolute;left:1131;
-    top:1936;width:700;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBxf6uT0wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/BTsMw
-EETvSPyDtUjcqEMPqAp1qwoFgVQ4JJT7Em9ii3gd2SZN/h6rBzjOzuqN3nY/u0FMFKL1rOB+VYAg
-br223Cs4fTzfbUDEhKxx8EwKFoqw311fbbHU/sw1TU3qRYZwLFGBSWkspYytIYdx5Ufi3HU+OEw5
-hl7qgOcMd4NcF8WDdGg5Lxgc6clQ+938OAX1GKbK2uEUG3Pwbn4/VuvqqNTtzXx4BJFoTv/Pn5uF
-u7e/8oJ61QqySfeyfAWra4yJwuWSTbMlyN0vAAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAA
-AIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAh
-AFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAh
-AHF/q5PTAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwAD
-ALcAAAAHAwAAAAA=
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85019" style='position:absolute;left:1831;
-    top:1936;width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBxf6uT0wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/BTsMw
-EETvSPyDtUjcqEMPqAp1qwoFgVQ4JJT7Em9ii3gd2SZN/h6rBzjOzuqN3nY/u0FMFKL1rOB+VYAg
-br223Cs4fTzfbUDEhKxx8EwKFoqw311fbbHU/sw1TU3qRYZwLFGBSWkspYytIYdx5Ufi3HU+OEw5
-hl7qgOcMd4NcF8WDdGg5Lxgc6clQ+938OAX1GKbK2uEUG3Pwbn4/VuvqqNTtzXx4BJFoTv/Pn5uF
-u7e/8oJ61QqySfeyfAWra4yJwuWSTbMlyN0vAAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAA
-AIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAh
-AFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAh
-AHF/q5PTAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwAD
-ALcAAAAHAwAAAAA=
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85020" style='position:absolute;left:2530;
-    top:1936;width:700;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBxf6uT0wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/BTsMw
-EETvSPyDtUjcqEMPqAp1qwoFgVQ4JJT7Em9ii3gd2SZN/h6rBzjOzuqN3nY/u0FMFKL1rOB+VYAg
-br223Cs4fTzfbUDEhKxx8EwKFoqw311fbbHU/sw1TU3qRYZwLFGBSWkspYytIYdx5Ufi3HU+OEw5
-hl7qgOcMd4NcF8WDdGg5Lxgc6clQ+938OAX1GKbK2uEUG3Pwbn4/VuvqqNTtzXx4BJFoTv/Pn5uF
-u7e/8oJ61QqySfeyfAWra4yJwuWSTbMlyN0vAAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAA
-AIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAh
-AFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAh
-AHF/q5PTAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwAD
-ALcAAAAHAwAAAAA=
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85021" style='position:absolute;left:3230;
-    top:1936;width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBxf6uT0wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/BTsMw
-EETvSPyDtUjcqEMPqAp1qwoFgVQ4JJT7Em9ii3gd2SZN/h6rBzjOzuqN3nY/u0FMFKL1rOB+VYAg
-br223Cs4fTzfbUDEhKxx8EwKFoqw311fbbHU/sw1TU3qRYZwLFGBSWkspYytIYdx5Ufi3HU+OEw5
-hl7qgOcMd4NcF8WDdGg5Lxgc6clQ+938OAX1GKbK2uEUG3Pwbn4/VuvqqNTtzXx4BJFoTv/Pn5uF
-u7e/8oJ61QqySfeyfAWra4yJwuWSTbMlyN0vAAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAA
-AIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAh
-AFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAh
-AHF/q5PTAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwAD
-ALcAAAAHAwAAAAA=
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85022" style='position:absolute;left:3929;
-    top:1936;width:700;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBxf6uT0wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/BTsMw
-EETvSPyDtUjcqEMPqAp1qwoFgVQ4JJT7Em9ii3gd2SZN/h6rBzjOzuqN3nY/u0FMFKL1rOB+VYAg
-br223Cs4fTzfbUDEhKxx8EwKFoqw311fbbHU/sw1TU3qRYZwLFGBSWkspYytIYdx5Ufi3HU+OEw5
-hl7qgOcMd4NcF8WDdGg5Lxgc6clQ+938OAX1GKbK2uEUG3Pwbn4/VuvqqNTtzXx4BJFoTv/Pn5uF
-u7e/8oJ61QqySfeyfAWra4yJwuWSTbMlyN0vAAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAA
-AIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAh
-AFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAh
-AHF/q5PTAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwAD
-ALcAAAAHAwAAAAA=
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85023" style='position:absolute;left:4629;
-    top:1936;width:699;height:234;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBxf6uT0wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/BTsMw
-EETvSPyDtUjcqEMPqAp1qwoFgVQ4JJT7Em9ii3gd2SZN/h6rBzjOzuqN3nY/u0FMFKL1rOB+VYAg
-br223Cs4fTzfbUDEhKxx8EwKFoqw311fbbHU/sw1TU3qRYZwLFGBSWkspYytIYdx5Ufi3HU+OEw5
-hl7qgOcMd4NcF8WDdGg5Lxgc6clQ+938OAX1GKbK2uEUG3Pwbn4/VuvqqNTtzXx4BJFoTv/Pn5uF
-u7e/8oJ61QqySfeyfAWra4yJwuWSTbMlyN0vAAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAA
-AIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAh
-AFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAh
-AHF/q5PTAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwAD
-ALcAAAAHAwAAAAA=
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85024" style='position:absolute;left:432;top:2170;
-    width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDfkLrp1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LbsIw
-EEX3lfgHayp1VxxQhaoUgygSbam6CSkLdkM8eYh4HNkmhH59LRbt8s4dnaszXw6mFT0531hWMBkn
-IIgLqxuuFHznm8dnED4ga2wtk4IreVguRndzTLW9cEb9LlQiQtinqKAOoUul9EVNBv3YdsSxK60z
-GGJ0ldQOLxFuWjlNkpk02HBcqLGjdU3FaXc2Cspjsj/zsMoPT699Psn6/efXT6vUw/2wegERaAj/
-z2+43Xazv/KG+tAKokn5fj26RmfoA7nbJZpGS5CLXwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDfkLrp1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85025" style='position:absolute;left:1131;
-    top:2170;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85026" style='position:absolute;left:1831;
-    top:2170;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85027" style='position:absolute;left:2530;
-    top:2170;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85028" style='position:absolute;left:3230;
-    top:2170;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85029" style='position:absolute;left:3929;
-    top:2170;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85030" style='position:absolute;left:4629;
-    top:2170;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85031" style='position:absolute;left:432;top:2458;
-    width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDOJBJB1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9NTwIx
-EIbvJv6HZky8SRdRQlYKQROjMVyWhYO3YTv7odvppi3L4q+n4SDHd97J8+aZLwfTip6cbywrGI8S
-EMSF1Q1XCrb5+8MMhA/IGlvLpOBEHpaL25s5ptoeOaN+EyoRIexTVFCH0KVS+qImg35kO+LYldYZ
-DDG6SmqHxwg3rXxMkqk02HBcqLGjt5qK383BKCj3ye7Awyr/fnrt83HW777Wf61S93fD6gVEoCFc
-n595+zOZ/JcX1KdWEE3Kj9PeNTpDH8hdLtE0WoJcnAEAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDOJBJB1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85032" style='position:absolute;left:1131;
-    top:2458;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBxf6uT0wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/BTsMw
-EETvSPyDtUjcqEMPqAp1qwoFgVQ4JJT7Em9ii3gd2SZN/h6rBzjOzuqN3nY/u0FMFKL1rOB+VYAg
-br223Cs4fTzfbUDEhKxx8EwKFoqw311fbbHU/sw1TU3qRYZwLFGBSWkspYytIYdx5Ufi3HU+OEw5
-hl7qgOcMd4NcF8WDdGg5Lxgc6clQ+938OAX1GKbK2uEUG3Pwbn4/VuvqqNTtzXx4BJFoTv/Pn5uF
-u7e/8oJ61QqySfeyfAWra4yJwuWSTbMlyN0vAAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAA
-AIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAh
-AFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAh
-AHF/q5PTAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwAD
-ALcAAAAHAwAAAAA=
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85033" style='position:absolute;left:1831;
-    top:2458;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBxf6uT0wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/BTsMw
-EETvSPyDtUjcqEMPqAp1qwoFgVQ4JJT7Em9ii3gd2SZN/h6rBzjOzuqN3nY/u0FMFKL1rOB+VYAg
-br223Cs4fTzfbUDEhKxx8EwKFoqw311fbbHU/sw1TU3qRYZwLFGBSWkspYytIYdx5Ufi3HU+OEw5
-hl7qgOcMd4NcF8WDdGg5Lxgc6clQ+938OAX1GKbK2uEUG3Pwbn4/VuvqqNTtzXx4BJFoTv/Pn5uF
-u7e/8oJ61QqySfeyfAWra4yJwuWSTbMlyN0vAAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAA
-AIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAh
-AFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAh
-AHF/q5PTAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwAD
-ALcAAAAHAwAAAAA=
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85034" style='position:absolute;left:2530;
-    top:2458;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBxf6uT0wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/BTsMw
-EETvSPyDtUjcqEMPqAp1qwoFgVQ4JJT7Em9ii3gd2SZN/h6rBzjOzuqN3nY/u0FMFKL1rOB+VYAg
-br223Cs4fTzfbUDEhKxx8EwKFoqw311fbbHU/sw1TU3qRYZwLFGBSWkspYytIYdx5Ufi3HU+OEw5
-hl7qgOcMd4NcF8WDdGg5Lxgc6clQ+938OAX1GKbK2uEUG3Pwbn4/VuvqqNTtzXx4BJFoTv/Pn5uF
-u7e/8oJ61QqySfeyfAWra4yJwuWSTbMlyN0vAAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAA
-AIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAh
-AFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAh
-AHF/q5PTAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwAD
-ALcAAAAHAwAAAAA=
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85035" style='position:absolute;left:3230;
-    top:2458;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBIYdpc0wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BasMw
-EEX3hd5BTKG7Rm4KpbhRQgguKYQu7OQAU2tiiVgjI6mOffuKLNrlnz+8z1ttJteLkUK0nhU8LwoQ
-xK3XljsFp+PH0xuImJA19p5JwUwRNuv7uxWW2l+5prFJncgQjiUqMCkNpZSxNeQwLvxAnLuzDw5T
-jqGTOuA1w10vl0XxKh1azgsGB9oZai/Nj1NQD2GsrO1PsTFb76avQ7WsDko9PkzbdxCJpvT/PO7t
-fHz5K2+oT60gm5z383ewusaYKNwu2TRbglz/AgAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAA
-AIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAh
-AFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAh
-AEhh2lzTAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwAD
-ALcAAAAHAwAAAAA=
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85036" style='position:absolute;left:3929;
-    top:2458;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBIYdpc0wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BasMw
-EEX3hd5BTKG7Rm4KpbhRQgguKYQu7OQAU2tiiVgjI6mOffuKLNrlnz+8z1ttJteLkUK0nhU8LwoQ
-xK3XljsFp+PH0xuImJA19p5JwUwRNuv7uxWW2l+5prFJncgQjiUqMCkNpZSxNeQwLvxAnLuzDw5T
-jqGTOuA1w10vl0XxKh1azgsGB9oZai/Nj1NQD2GsrO1PsTFb76avQ7WsDko9PkzbdxCJpvT/PO7t
-fHz5K2+oT60gm5z383ewusaYKNwu2TRbglz/AgAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAA
-AIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAh
-AFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAh
-AEhh2lzTAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwAD
-ALcAAAAHAwAAAAA=
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85037" style='position:absolute;left:4629;
-    top:2458;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBIYdpc0wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BasMw
-EEX3hd5BTKG7Rm4KpbhRQgguKYQu7OQAU2tiiVgjI6mOffuKLNrlnz+8z1ttJteLkUK0nhU8LwoQ
-xK3XljsFp+PH0xuImJA19p5JwUwRNuv7uxWW2l+5prFJncgQjiUqMCkNpZSxNeQwLvxAnLuzDw5T
-jqGTOuA1w10vl0XxKh1azgsGB9oZai/Nj1NQD2GsrO1PsTFb76avQ7WsDko9PkzbdxCJpvT/PO7t
-fHz5K2+oT60gm5z383ewusaYKNwu2TRbglz/AgAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAA
-AIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAh
-AFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAh
-AEhh2lzTAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwAD
-ALcAAAAHAwAAAAA=
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85038" style='position:absolute;left:432;top:2746;
-    width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAi6tj31gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BS8NA
-EIXvgv9hGcGb3VRUJO22tIIo4iWNBXubZiebYHY27G7T1F/v0kM9vnnD9/jmy9F2YiAfWscKppMM
-BHHldMtGwVf5evcMIkRkjZ1jUnCiAMvF9dUcc+2OXNCwiUYkCIccFTQx9rmUoWrIYpi4njh1tfMW
-Y4reSO3xmOC2k/dZ9iQttpwWGuzppaHqZ3OwCup9tj3wuCp3D+uhnBbD9uPzt1Pq9mZczUBEGuP/
-s3k06+/+Up5R71pBMqnfTnvf6gJDJH++JNNkCXLxBwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhACLq2PfWAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85039" style='position:absolute;left:1131;
-    top:2746;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85040" style='position:absolute;left:1831;
-    top:2746;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85041" style='position:absolute;left:2530;
-    top:2746;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDRsd4O1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LTsMw
-EEX3SPyDNUjsqAOLqoS6FSAVKkDQB+16Gk/iiHgcbNMkf4/VBSzv3NG5OtN5bxtxJB9qxwquRxkI
-4sLpmisFn9vF1QREiMgaG8ekYKAA89n52RRz7Tpe03ETK5EgHHJUYGJscylDYchiGLmWOHWl8xZj
-ir6S2mOX4LaRN1k2lhZrTgsGW3o0VHxtfqyC7/1itXtZvfrl/r27fTqMzcdWPyh1edHf34GI1Mf/
-591k4PLtrzyhllpBMimfh4Ov9RpDJH+6JNNkCXL2CwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhANGx3g7WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85042" style='position:absolute;left:3230;
-    top:2746;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85043" style='position:absolute;left:3929;
-    top:2746;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85044" style='position:absolute;left:4629;
-    top:2746;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQDor6/B1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dTwIx
-EEXfTfwPzZj4Jl01IbpQiJogRBMEFnketsO2cduubd2Pf2/Dgz7euZNzc6bz3tSsJR+0swJuRxkw
-sqWT2lYC9sXi5gFYiGgl1s6SgIECzGeXF1PMpevsltpdrFiC2JCjABVjk3MeSkUGw8g1ZFN3ct5g
-TNFXXHrsEtzU/C7LxtygtmlBYUMvisqv3Y8R8H1YbD7fNu9+dVh3j6/Hsfoo5LMQ11f90wRYpD7+
-P7dLPRT3f+UZtZICkslpORy9llsMkfz5kkyTJfDZLwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQDor6/B1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#f3f9fa" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85045" style='position:absolute;left:432;top:3034;
-    width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:middle' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBSOGjP1gAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LbsIw
-EEX3lfoP1lRiVxwqVKEUg6AS6kPdhMCiuyGePEQ8jmwTQr++FgtY3rmjc3Xmy8G0oifnG8sKJuME
-BHFhdcOVgl2+eZ6B8AFZY2uZFFzIw3Lx+DDHVNszZ9RvQyUihH2KCuoQulRKX9Rk0I9tRxy70jqD
-IUZXSe3wHOGmlS9J8ioNNhwXauzovabiuD0ZBeUh2Z94WOW/03WfT7J+//3z1yo1ehpWbyACDeH+
-vJl9BeNv5RX1qRVEk/LjcnCNztAHctdLNI2WIBf/AAAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL
-7gAAAIUBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgA
-AAAhAFr0LFu/AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgA
-AAAhAFI4aM/WAAAA+QAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-AwADALcAAAAKAwAAAAA=
-" fillcolor="#bbe0e3 [4]" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85046" style='position:absolute;left:1131;
-    top:3034;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85047" style='position:absolute;left:1831;
-    top:3034;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85048" style='position:absolute;left:2530;
-    top:3034;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85049" style='position:absolute;left:3230;
-    top:3034;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85050" style='position:absolute;left:3929;
-    top:3034;width:700;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBQMn071wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI/LasMw
-EEX3hf6DmEJ3jexA2+BGCSaQtFmleVCa3dSa2CaWZKRx7Px9RRbt8s4dzuVM54NpxIV8qJ1VkI4S
-EGQLp2tbKjjsl08TEIHRamycJQVXCjCf3d9NMdOut1u67LgUEWJDhgoq5jaTMhQVGQwj15KN3cl5
-gxyjL6X22Ee4aeQ4SV6kwdrGhQpbWlRUnHedUdA9fx+/Nqt1tx6XxzZfpXm64U+lHh+G/A0E08D/
-z6/nXvrDX3lDfWgF0eT0fv3xtd5iYPK3SzSNliBnvwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQBQMn071wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:rect id="_x0000_s85051" style='position:absolute;left:4629;
-    top:3034;width:699;height:288;visibility:visible;mso-wrap-style:square;
-    v-text-anchor:top' o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQAhCx2o1wAAAPkAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9dS8NA
-EEXfBf/DMoJvdpOCUtJuSxCsFoTaasW+jdnJB2Znw+6mTf69Sx/08c4dzuUsVoNpxYmcbywrSCcJ
-COLC6oYrBR/vT3czED4ga2wtk4KRPKyW11cLzLQ9845O+1CJCGGfoYI6hC6T0hc1GfQT2xHHrrTO
-YIjRVVI7PEe4aeU0SR6kwYbjQo0dPdZU/Ox7o6C//zp+btebfjOtjl2+TvN0G96Uur0Z8jmIQEP4
-fz7MRi5f/8oL6kUriCbl8/jtGr1DH8hdLtE0WoJc/gIAAP//AwBQSwECLQAUAAYACAAAACEA2+H2
-y+4AAACFAQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAI
-AAAAIQBa9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAI
-AAAAIQAhCx2o1wAAAPkAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAMAAwC3AAAACwMAAAAA
-" fillcolor="#e7f3f4" stroked="f">
-    <v:fill alignshape="f"/>
-    <v:textbox style='mso-rotate-with-shape:t'/>
-   </v:rect><v:line id="_x0000_s85052" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="1131,1104" to="1131,3322"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85053" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="1831,1104" to="1831,3322"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85054" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="2530,1104" to="2530,3322"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85055" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="3230,1104" to="3230,3322"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85056" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="3929,1104" to="3929,3322"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85057" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="4629,1104" to="4629,3322"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85058" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,1469" to="5328,1469"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQBHXSM+zQAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9Ba8Mw
-DIXvhf0Ho8FurbMNwsjqljHo2sMuTUvOaqzEYbEcbK91//1MKewo6em99y3XyY7iTD4MjhU8LwoQ
-xK3TA/cKjofN/A1EiMgaR8ek4EoB1quH2RIr7S68p3Mde5FNOFSowMQ4VVKG1pDFsHATcb51zluM
-efS91B4v2dyO8qUoSmlx4JxgcKJPQ+1P/WsVfL8629TdVzJN2o5sNmV52KFST4/p4x1EpBT/xffv
-nVaQy3fb68kPeo8hkr9tMlwGA7n6AwAA//8DAFBLAQItABQABgAIAAAAIQDb4fbL7gAAAIUBAAAT
-AAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAhAFr0LFu/
-AAAAFQEAAAsAAAAAAAAAAAAAAAAAHwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAhAEddIz7N
-AAAA7AAAAA8AAAAAAAAAAAAAAAAABwIAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAAAwADALcAAAAB
-AwAAAAA=
-" strokecolor="white [0]" strokeweight="3pt"/>
-   <v:line id="_x0000_s85059" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,1702" to="5328,1702"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85060" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,1936" to="5328,1936"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85061" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,2170" to="5328,2170"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85062" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,2458" to="5328,2458"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85063" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,2746" to="5328,2746"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85064" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,3034" to="5328,3034"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85065" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,1104" to="432,3322"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85066" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="5328,1104" to="5328,3322"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85067" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,1104" to="5328,1104"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <v:line id="_x0000_s85068" style='position:absolute;visibility:visible;
-    mso-wrap-style:square;v-text-anchor:top' from="432,3322" to="5328,3322"
-    o:gfxdata="UEsDBBQABgAIAAAAIQDb4fbL7gAAAIUBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbHyQz07DMAyH
-70i8Q+QralM4IITa7kDhCAiNB7ASt43WOlEcyvb2pNu4IODoPz9/n1xv9vOkForiPDdwXVagiI23
-jocG3rdPxR0oScgWJ8/UwIEENu3lRb09BBKV0ywNjCmFe63FjDSjlD4Q50nv44wpl3HQAc0OB9I3
-VXWrjedEnIq03oC27qjHjympx31un0wiTQLq4bS4shrAECZnMGVTvbD9QSnOhDInjzsyuiBXWQP0
-r4R18jfgnHvJr4nOknrFmJ5xzhraRtHWf3Kkpfz/yGo5S+H73hkquyhdjr3R8m2lj09svwAAAP//
-AwBQSwMEFAAGAAgAAAAhAFr0LFu/AAAAFQEAAAsAAABfcmVscy8ucmVsc2zPwWrDMAwG4Ptg72B0
-X5TuUMaI01uh19I+gLGVxCy2jGSy9e1nemrHjpL4P0nD4SetZiPRyNnCruvBUPYcYp4tXC/Htw8w
-Wl0ObuVMFm6kcBhfX4Yzra62kC6xqGlKVgtLreUTUf1CyWnHhXKbTCzJ1VbKjMX5LzcTvvf9HuXR
-gPHJNKdgQU5hB+ZyK23zHztFL6w81c5zQp6m6P9TMfB3PtPWFCczVQtB9N4U2rp2HOA44NMz4y8A
-AAD//wMAUEsDBBQABgAIAAAAIQCuEwHI0QAAAOwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BawIx
-EIXvQv9DmEJvmm2hKlujbAvFXnpYFam36WbcLN1MliR1V399QxE8zsyb9963WA22FSfyoXGs4HGS
-gSCunG64VrDbvo/nIEJE1tg6JgVnCrBa3o0WmGvXc0mnTaxFMuGQowITY5dLGSpDFsPEdcTpdnTe
-Ykyjr6X22Cdz28qnLJtKiw2nBIMdvRmqfja/VsHnuji8XnRfbsu9kc+zXb0/fBVKPdwPxQuISEO8
-ia/fH1pBKn9cn799o0sMkfz/JsElMJDLPwAAAP//AwBQSwECLQAUAAYACAAAACEA2+H2y+4AAACF
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQBa
-9CxbvwAAABUBAAALAAAAAAAAAAAAAAAAAB8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCu
-EwHI0QAAAOwAAAAPAAAAAAAAAAAAAAAAAAcCAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAMAAwC3
-AAAABQMAAAAA
-" strokecolor="white [0]" strokeweight="1pt"/>
-   <p:placeholder type="object" position="-1"/>
-  </v:group></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0117_image036.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0117_image036.gif
deleted file mode 100644
index 73cdd03..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0117_image036.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0122.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0122.html
deleted file mode 100644
index 36c24b3..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0122.html
+++ /dev/null
@@ -1,168 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008:  Eclipse/OMG Symposium">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="113"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s115714"
-  type="#_x0000_m1027" style='position:absolute;left:36pt;top:21.625pt;width:9in;
-  height:90pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s115715" type="#_x0000_m1028"
-  style='position:absolute;left:36pt;top:120.875pt;width:318.125pt;height:50.375pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s115714" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:6.5%;left:5.99%;width:88.2%;height:6.0%'><br>
-  </span><span style='position:absolute;top:12.75%;left:5.99%;width:88.2%;
- height:6.0%'>Eclipse/OMG Symposium<span style='mso-special-format:lastCR;
- display:none'>&#13;</span></span></div>
- <div v:shape="_x0000_s115715" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:0;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:19.5%;left:5.99%;width:42.32%;height:5.25%'><span
- style='mso-special-format:nobullet;display:none'>•</span><b>Thursday, March
- 20&#13;</b></div>
- <div class=B style='mso-margin-left-alt:0;mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:26.0%;left:5.99%;width:44.38%;height:5.25%'><span
- style='mso-special-format:nobullet;display:none'>•</span><b>10:10 a.m. in Room
- 201</b></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s115716"
-  type="#_x0000_m1028" style='position:absolute;left:354pt;top:234pt;width:310.5pt;
-  height:126pt;visibility:visible;mso-wrap-style:square' o:spt="75"
-  o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0122_image089.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_5" src="slide0122_image090.gif"
- style='position:absolute;top:43.25%;left:49.25%;width:43.07%;height:23.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s115717" type="#_x0000_m1028"
-  style='position:absolute;left:60pt;top:234pt;width:251.75pt;height:130.625pt;
-  visibility:visible;mso-wrap-style:square' o:spt="75" o:preferrelative="t"
-  path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-  <v:stroke joinstyle="miter"/>
-  <v:imagedata src="slide0122_image091.png" o:title=""/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path arrowok="f" o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="t" position="f" selection="f"
-   cropping="f" verticies="f" text="t" adjusthandles="f" grouping="t"
-   shapetype="f"/>
-  <p:placeholder type="object" position="-1" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="Picture_x0020_6" src="slide0122_image092.gif"
- style='position:absolute;top:43.25%;left:8.42%;width:35.01%;height:24.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0122_image089.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0122_image089.png
deleted file mode 100644
index f2a03dd..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0122_image089.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0122_image090.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0122_image090.gif
deleted file mode 100644
index 8916fab..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0122_image090.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0122_image091.png b/docs/presentations/EclipseCon2008_LongTalk_files/slide0122_image091.png
deleted file mode 100644
index e35a35c..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0122_image091.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0122_image092.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0122_image092.gif
deleted file mode 100644
index 391c0f3..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0122_image092.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0123.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0123.html
deleted file mode 100644
index 987a7ef..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0123.html
+++ /dev/null
@@ -1,163 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Contents">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="4"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s4098"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s4099" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s4098" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Contents<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s4099" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'><b>Why&#13;</b></span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:31.75%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'><b>Open Specifications +
- Open Source&#13;</b></span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:36.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:42.0%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>What&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:47.25%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>OMG + Eclipse&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:52.0%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:57.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>How&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Technology Adoption +
- Development&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:72.75%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>Who&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:78.0%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Task Force Members +
- Project Committers</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0124.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0124.html
deleted file mode 100644
index a904c39..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0124.html
+++ /dev/null
@@ -1,159 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Technology Adoption + Development">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="80"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s81922"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s81923" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s81922" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Technology
- Adoption + Development<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s81923" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.67%;width:82.77%;height:4.5%'><span
- style='font-size:83%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.71%;font-family:Wingdings'>ü</span></span><span style='font-size:83%'>Both
- Eclipse and the OMG operate on a principle of one </span></span><span
- style='position:absolute;top:31.0%;left:10.48%;width:81.27%;height:4.5%'><span
- style='font-size:83%'>organization, one vote&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:36.25%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:41.5%;left:8.42%;width:87.82%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.55%;width:97.44%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.62%;font-family:
- Wingdings'>ü</span></span><span style='font-size:83%'>Obvious similarities
- between Eclipse and OMG processes&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:46.75%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Project Review ~
- Specification Adoption&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:51.5%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Project Creation ~
- Request For Proposal&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.5%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Project Graduation ~
- Specification Finalization&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.25%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Project Promotion ~
- Specification Revision&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:66.25%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:71.5%;left:11.04%;width:80.71%;height:4.5%'><span
- style='font-size:83%'><span style='mso-special-format:bullet;position:absolute;
- left:-3.24%;font-family:Wingdings'>q</span></span><span style='font-size:83%'>Releases
- of Eclipse projects are not synchronized with </span></span><span
- style='position:absolute;top:76.0%;left:10.48%;width:81.27%;height:4.5%'><span
- style='font-size:83%'>availability OMG specification versions</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0127.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0127.html
deleted file mode 100644
index d65ddf2..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0127.html
+++ /dev/null
@@ -1,315 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: MOF (EMOF) and EMF">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="86"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s88066"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:shapetype id="_x0000_t202"
-  coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s88067" type="#_x0000_t202" style='position:absolute;
-  left:342pt;top:294pt;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape>
- <div v:shape="_x0000_s88066" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>MOF (EMOF)
- and EMF<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s88067">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:48.5%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span></div>
- </div>
- <v:oval id="_x0000_s88068" style='position:absolute;left:60pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shape id="_x0000_s88069" type="#_x0000_t202" style='position:absolute;
-  left:480pt;top:294pt;width:160.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s88070" type="#_x0000_t202" style='position:absolute;
-  left:228pt;top:180pt;width:75.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s88071" type="#_x0000_t202" style='position:absolute;
-  left:150pt;top:198pt;width:61.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s88072" type="#_x0000_t202" style='position:absolute;
-  left:150pt;top:300pt;width:46.875pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s88073" style='position:absolute;left:240pt;
-  top:414pt;width:39.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s88074" style='position:absolute;left:150pt;top:264pt;
-  width:103.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:shape id="_x0000_s88075" type="#_x0000_t202" style='position:absolute;
-  left:84pt;top:324pt;width:165.875pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s88076" style='position:absolute;left:78pt;top:276pt;
-  width:56.25pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:shape id="_x0000_s88077" type="#_x0000_t202" style='position:absolute;
-  left:222pt;top:210pt;width:56.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s88078" type="#_x0000_t202" style='position:absolute;
-  left:102pt;top:234pt;width:118.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s88079" type="#_x0000_t202" style='position:absolute;
-  left:132pt;top:5in;width:58.875pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s88080" type="#_x0000_t202" style='position:absolute;
-  left:204pt;top:354pt;width:38.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s88081" type="#_x0000_t202" style='position:absolute;
-  left:150pt;top:396pt;width:59.625pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s88082" type="#_x0000_t202" style='position:absolute;
-  left:228pt;top:384pt;width:50.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s88068"
- src="slide0127_image039.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s88068">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s88069">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:67.6%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Embarcadero Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s88070">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:34.25%;left:32.58%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s88071">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:37.5%;left:21.91%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s88072">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:56.5%;left:21.91%;width:5.61%;
- height:2.75%'><span style='font-size:50%'>INRIA</span></div>
- </div>
- <div v:shape="_x0000_s88073">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:34.26%;width:4.3%;
- height:2.75%'><span style='font-size:50%'>XTG</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s88074">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:49.75%;left:21.91%;width:14.79%;
- height:2.75%'><span style='font-size:50%'>Hewlett-Packard</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s88075">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:60.75%;left:12.73%;width:25.09%;
- height:2.75%'><span style='font-size:50%'>Interactive Objects Software</span></div>
- </div>
- <div v:shape="_x0000_s88076">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:52.0%;left:11.79%;width:7.11%;
- height:2.75%'><span style='font-size:50%'>Fujistsu</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s88077">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:31.83%;width:7.11%;
- height:2.75%'><span style='font-size:50%'>Borland</span></div>
- </div>
- <div v:shape="_x0000_s88078">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:44.25%;left:15.16%;width:17.41%;
- height:2.75%'><span style='font-size:50%'>Fraunhofer FOKUS</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s88079">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:67.5%;left:19.28%;width:7.49%;
- height:2.75%'><span style='font-size:50%'>Red Hat</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s88080">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:66.5%;left:29.4%;width:4.11%;
- height:2.75%'><span style='font-size:50%'>SAP</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s88081">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:74.25%;left:21.91%;width:7.67%;
- height:2.75%'><span style='font-size:50%'>Softeam</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s88082">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:72.0%;left:32.58%;width:6.17%;
- height:2.75%'><span style='font-size:50%'>Unisys</span></div>
- </div>
- <v:oval id="_x0000_s88083" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s88083"
- src="slide0127_image040.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s88083">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0127_image039.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0127_image039.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0127_image039.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0127_image040.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0127_image040.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0127_image040.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0128.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0128.html
deleted file mode 100644
index 9b1eaec..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0128.html
+++ /dev/null
@@ -1,264 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: XMI and EMF">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="88"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s90114"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:shapetype id="_x0000_t202"
-  coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s90115" type="#_x0000_t202" style='position:absolute;
-  left:336pt;top:318pt;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape>
- <div v:shape="_x0000_s90114" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>XMI and
- EMF<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s90115">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:59.75%;left:47.75%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span></div>
- </div>
- <v:oval id="_x0000_s90116" style='position:absolute;left:60pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shape id="_x0000_s90117" type="#_x0000_t202" style='position:absolute;
-  left:276pt;top:276pt;width:160.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s90118" type="#_x0000_t202" style='position:absolute;
-  left:228pt;top:180pt;width:75.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s90119" type="#_x0000_t202" style='position:absolute;
-  left:156pt;top:192pt;width:61.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s90120" type="#_x0000_t202" style='position:absolute;
-  left:132pt;top:384pt;width:153.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s90121" style='position:absolute;left:228pt;
-  top:414pt;width:48.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s90122" style='position:absolute;left:96pt;top:252pt;
-  width:103.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:shape id="_x0000_s90123" type="#_x0000_t202" style='position:absolute;
-  left:78pt;top:312pt;width:164.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s90124" style='position:absolute;left:2in;top:348pt;
-  width:42.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s90125" style='position:absolute;left:132pt;top:282pt;
-  width:119.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:shape id="_x0000_s90126" type="#_x0000_t202" style='position:absolute;
-  left:174pt;top:222pt;width:101.25pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s90116"
- src="slide0128_image043.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s90116">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s90117">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:52.0%;left:39.32%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Embarcadero Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s90118">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:34.25%;left:32.58%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s90119">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:36.5%;left:22.65%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s90120">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:72.0%;left:19.28%;width:23.22%;
- height:2.75%'><span style='font-size:50%'>Select Business Solutions</span></div>
- </div>
- <div v:shape="_x0000_s90121">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:32.58%;width:5.8%;
- height:2.75%'><span style='font-size:50%'>UMTP</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s90122">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:47.5%;left:14.41%;width:14.79%;
- height:2.75%'><span style='font-size:50%'>Hewlett-Packard</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s90123">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:58.5%;left:11.79%;width:24.9%;
- height:2.75%'><span style='font-size:50%'>Mercury Computer Systems</span></div>
- </div>
- <div v:shape="_x0000_s90124">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:65.25%;left:20.97%;width:4.68%;
- height:2.75%'><span style='font-size:50%'>NIST</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s90125">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:53.0%;left:19.28%;width:17.6%;
- height:2.75%'><span style='font-size:50%'>MEGA International</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s90126">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:42.0%;left:25.09%;width:14.6%;
- height:2.75%'><span style='font-size:50%'>Axway Software</span></div>
- </div>
- <v:oval id="_x0000_s90127" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s90127"
- src="slide0128_image044.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s90127">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0128_image043.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0128_image043.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0128_image043.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0128_image044.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0128_image044.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0128_image044.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0129.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0129.html
deleted file mode 100644
index 9e3d9e2..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0129.html
+++ /dev/null
@@ -1,372 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: BPMN and STP BPMN">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="108"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s110594"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s110595"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s110595"
- src="slide0129_image083.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s110594" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>BPMN and
- STP BPMN<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s110595">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s110596" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s110597" type="#_x0000_t202" style='position:absolute;
-  left:528pt;top:300pt;width:46.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s110598" style='position:absolute;left:258pt;
-  top:180pt;width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110599" style='position:absolute;left:150pt;
-  top:186pt;width:99.25pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110600" style='position:absolute;left:186pt;
-  top:210pt;width:101.25pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110601" style='position:absolute;left:96pt;top:222pt;
-  width:88pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110602" style='position:absolute;left:210pt;
-  top:240pt;width:48.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110603" style='position:absolute;left:90pt;top:246pt;
-  width:39.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110604" style='position:absolute;left:90pt;top:276pt;
-  width:160.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110605" style='position:absolute;left:66pt;top:306pt;
-  width:103.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110606" style='position:absolute;left:156pt;
-  top:252pt;width:36.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110607" style='position:absolute;left:174pt;
-  top:306pt;width:83.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110608" style='position:absolute;left:78pt;top:330pt;
-  width:115.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110609" style='position:absolute;left:96pt;top:5in;
-  width:119.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110610" style='position:absolute;left:204pt;
-  top:336pt;width:42.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110611" style='position:absolute;left:120pt;
-  top:390pt;width:65.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110612" style='position:absolute;left:222pt;
-  top:366pt;width:51.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110613" style='position:absolute;left:174pt;
-  top:414pt;width:118.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110614" style='position:absolute;left:198pt;
-  top:390pt;width:45.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s110615" style='position:absolute;left:4in;top:420pt;
-  width:46.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s110596"
- src="slide0129_image084.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s110596">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s110597">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:56.5%;left:74.34%;width:5.43%;
- height:2.75%'><span style='font-size:50%'>Intalio</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110598">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:34.25%;left:36.89%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110599">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:35.25%;left:21.91%;width:14.23%;
- height:2.75%'><span style='font-size:50%'>Adobe Systems</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110600">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:26.77%;width:14.6%;
- height:2.75%'><span style='font-size:50%'>Axway Software</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110601">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:42.0%;left:14.41%;width:12.35%;
- height:2.75%'><span style='font-size:50%'>BEA Systems</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110602">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:45.25%;left:30.14%;width:5.8%;
- height:2.75%'><span style='font-size:50%'>BizAgi</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110603">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:46.5%;left:13.48%;width:4.3%;
- height:2.75%'><span style='font-size:50%'>EDS</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110604">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:52.0%;left:13.48%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Embarcadero Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110605">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:57.5%;left:10.11%;width:14.79%;
- height:2.75%'><span style='font-size:50%'>Hewlett-Packard</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110606">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:47.5%;left:22.65%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110607">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:57.5%;left:25.09%;width:11.42%;
- height:2.75%'><span style='font-size:50%'>KnowGravity</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110608">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:62.0%;left:11.79%;width:16.85%;
- height:2.75%'><span style='font-size:50%'>Lombardi Software</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110609">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:67.5%;left:14.41%;width:17.6%;
- height:2.75%'><span style='font-size:50%'>MEGA International</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110610">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:63.0%;left:29.4%;width:4.68%;
- height:2.75%'><span style='font-size:50%'>NIST</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110611">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:73.0%;left:17.6%;width:8.61%;
- height:2.75%'><span style='font-size:50%'>No Magic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110612">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:68.5%;left:31.83%;width:6.36%;
- height:2.75%'><span style='font-size:50%'>TIBCO</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110613">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:25.09%;width:17.79%;
- height:2.75%'><span style='font-size:50%'>Troux Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110614">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:73.0%;left:28.46%;width:5.24%;
- height:2.75%'><span style='font-size:50%'>ISUFI</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s110615">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:78.5%;left:41.01%;width:5.61%;
- height:2.75%'><span style='font-size:50%'>iGrafx</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0129_image083.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0129_image083.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0129_image083.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0129_image084.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0129_image084.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0129_image084.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0130.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0130.html
deleted file mode 100644
index 2c4f639..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0130.html
+++ /dev/null
@@ -1,268 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: IMM (SQL) and Model Base">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="85"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s87042"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s87043"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s87044" type="#_x0000_t202" style='position:absolute;
-  left:468pt;top:234pt;width:122pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s87045" type="#_x0000_t202" style='position:absolute;
-  left:342pt;top:294pt;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s87046" type="#_x0000_t202" style='position:absolute;
-  left:498pt;top:348pt;width:54.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s87047" type="#_x0000_t202" style='position:absolute;
-  left:3in;top:180pt;width:75.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s87048" style='position:absolute;left:150pt;
-  top:204pt;width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s87049" style='position:absolute;left:102pt;top:234pt;
-  width:160.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s87050" style='position:absolute;left:90pt;top:270pt;
-  width:92.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s87051" style='position:absolute;left:138pt;top:306pt;
-  width:119.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s87052" style='position:absolute;left:90pt;top:342pt;
-  width:138.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s87053" style='position:absolute;left:150pt;top:378pt;
-  width:65.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s87054" style='position:absolute;left:186pt;top:408pt;
-  width:120.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s87043"
- src="slide0130_image037.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s87042" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>IMM (SQL)
- and Model Base<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s87043">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s87044">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:44.25%;left:65.91%;width:17.97%;
- height:2.75%'><span style='font-size:50%'>Actuate Corporation</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s87045">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:48.5%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s87046">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:65.25%;left:70.22%;width:6.92%;
- height:2.75%'><span style='font-size:50%'>Sybase</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s87047">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:34.25%;left:31.08%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s87048">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:38.5%;left:21.91%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s87049">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:44.25%;left:15.16%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Embarcadero Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s87050">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:50.75%;left:13.48%;width:13.1%;
- height:2.75%'><span style='font-size:50%'>KDM Analytics</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s87051">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:57.5%;left:20.22%;width:17.6%;
- height:2.75%'><span style='font-size:50%'>MEGA International</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s87052">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:64.25%;left:13.48%;width:20.59%;
- height:2.75%'><span style='font-size:50%'>Model Driven Solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s87053">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:70.75%;left:21.91%;width:8.61%;
- height:2.75%'><span style='font-size:50%'>No Magic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s87054">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:76.5%;left:26.77%;width:17.79%;
- height:2.75%'><span style='font-size:50%'>Sandpiper Software</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <v:oval id="_x0000_s87055" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s87055"
- src="slide0130_image038.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s87055">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0130_image037.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0130_image037.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0130_image037.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0130_image038.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0130_image038.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0130_image038.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0131.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0131.html
deleted file mode 100644
index f40e31d..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0131.html
+++ /dev/null
@@ -1,201 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: MOF 2.0 FOL and EMF">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="87"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s89090"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:shapetype id="_x0000_t202"
-  coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s89091" type="#_x0000_t202" style='position:absolute;
-  left:336pt;top:324pt;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape>
- <div v:shape="_x0000_s89090" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>MOF 2.0
- FOL and EMF<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s89091">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:60.75%;left:47.75%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span></div>
- </div>
- <v:oval id="_x0000_s89092" style='position:absolute;left:60pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shape id="_x0000_s89093" type="#_x0000_t202" style='position:absolute;
-  left:282pt;top:270pt;width:160.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s89094" type="#_x0000_t202" style='position:absolute;
-  left:204pt;top:192pt;width:75.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s89095" type="#_x0000_t202" style='position:absolute;
-  left:150pt;top:234pt;width:61.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s89096" type="#_x0000_t202" style='position:absolute;
-  left:102pt;top:306pt;width:119.375pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s89097" type="#_x0000_t202" style='position:absolute;
-  left:186pt;top:378pt;width:42.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s89092"
- src="slide0131_image041.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s89092">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s89093">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:50.75%;left:40.26%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Embarcadero Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s89094">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:36.5%;left:29.4%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s89095">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:44.25%;left:21.91%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s89096">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:57.5%;left:15.16%;width:17.6%;
- height:2.75%'><span style='font-size:50%'>MEGA International</span></div>
- </div>
- <div v:shape="_x0000_s89097">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:70.75%;left:26.77%;width:4.68%;
- height:2.75%'><span style='font-size:50%'>NIST</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <v:oval id="_x0000_s89098" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s89098"
- src="slide0131_image042.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s89098">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0131_image041.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0131_image041.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0131_image041.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0131_image042.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0131_image042.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0131_image042.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0133.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0133.html
deleted file mode 100644
index f0c4e72..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0133.html
+++ /dev/null
@@ -1,229 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: DD and GMF">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="90"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s92162"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s92163"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s92164" type="#_x0000_t202" style='position:absolute;
-  left:336pt;top:294pt;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s92165" type="#_x0000_t202" style='position:absolute;
-  left:528pt;top:294pt;width:56.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s92166" style='position:absolute;left:222pt;
-  top:186pt;width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s92167" style='position:absolute;left:132pt;top:3in;
-  width:113.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s92168" style='position:absolute;left:162pt;top:252pt;
-  width:50.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s92169" style='position:absolute;left:108pt;top:294pt;
-  width:122.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s92170" style='position:absolute;left:156pt;top:342pt;
-  width:96pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s92171" style='position:absolute;left:222pt;top:390pt;
-  width:38.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s92163"
- src="slide0133_image047.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s92162" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>DD and GMF<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s92163">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s92164">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:47.75%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s92165">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:74.34%;width:7.11%;
- height:2.75%'><span style='font-size:50%'>Borland</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s92166">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:35.25%;left:31.83%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s92167">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:40.75%;left:19.28%;width:16.66%;
- height:2.75%'><span style='font-size:50%'>Deere &amp; Company</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s92168">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:47.5%;left:23.59%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>Fujitsu</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s92169">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:15.91%;width:17.97%;
- height:2.75%'><span style='font-size:50%'>Pathfinder Solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s92170">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:64.25%;left:22.65%;width:13.67%;
- height:2.75%'><span style='font-size:50%'>Sparx Systems</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s92171">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:73.0%;left:31.83%;width:4.11%;
- height:2.75%'><span style='font-size:50%'>TCS</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <v:oval id="_x0000_s92172" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s92172"
- src="slide0133_image048.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s92172">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0133_image047.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0133_image047.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0133_image047.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0133_image048.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0133_image048.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0133_image048.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0134.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0134.html
deleted file mode 100644
index a869c57..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0134.html
+++ /dev/null
@@ -1,315 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: MOF (EMOF) and Ecore Tools">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="89"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s91138"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:shapetype id="_x0000_t202"
-  coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s91139" type="#_x0000_t202" style='position:absolute;
-  left:198pt;top:294pt;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape>
- <div v:shape="_x0000_s91138" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>MOF (EMOF)
- and Ecore Tools<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s91139">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:28.46%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span></div>
- </div>
- <v:oval id="_x0000_s91140" style='position:absolute;left:60pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shape id="_x0000_s91141" type="#_x0000_t202" style='position:absolute;
-  left:480pt;top:294pt;width:141.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s91142" type="#_x0000_t202" style='position:absolute;
-  left:228pt;top:180pt;width:75.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s91143" type="#_x0000_t202" style='position:absolute;
-  left:150pt;top:198pt;width:61.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s91144" type="#_x0000_t202" style='position:absolute;
-  left:126pt;top:300pt;width:46.875pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s91145" style='position:absolute;left:240pt;
-  top:414pt;width:39.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s91146" style='position:absolute;left:150pt;top:264pt;
-  width:103.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:shape id="_x0000_s91147" type="#_x0000_t202" style='position:absolute;
-  left:84pt;top:324pt;width:165.875pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s91148" style='position:absolute;left:78pt;top:276pt;
-  width:56.25pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:shape id="_x0000_s91149" type="#_x0000_t202" style='position:absolute;
-  left:222pt;top:210pt;width:56.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s91150" type="#_x0000_t202" style='position:absolute;
-  left:102pt;top:234pt;width:118.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s91151" type="#_x0000_t202" style='position:absolute;
-  left:132pt;top:5in;width:58.875pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s91152" type="#_x0000_t202" style='position:absolute;
-  left:204pt;top:354pt;width:38.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s91153" type="#_x0000_t202" style='position:absolute;
-  left:150pt;top:396pt;width:59.625pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s91154" type="#_x0000_t202" style='position:absolute;
-  left:228pt;top:384pt;width:50.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s91140"
- src="slide0134_image045.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s91140">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s91141">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:67.6%;width:21.53%;
- height:2.75%'><span style='font-size:50%'>Anywhere Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s91142">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:34.25%;left:32.58%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s91143">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:37.5%;left:21.91%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s91144">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:56.5%;left:18.53%;width:5.61%;
- height:2.75%'><span style='font-size:50%'>INRIA</span></div>
- </div>
- <div v:shape="_x0000_s91145">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:34.26%;width:4.3%;
- height:2.75%'><span style='font-size:50%'>XTG</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s91146">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:49.75%;left:21.91%;width:14.79%;
- height:2.75%'><span style='font-size:50%'>Hewlett-Packard</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s91147">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:60.75%;left:12.73%;width:25.09%;
- height:2.75%'><span style='font-size:50%'>Interactive Objects Software</span></div>
- </div>
- <div v:shape="_x0000_s91148">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:52.0%;left:11.79%;width:7.11%;
- height:2.75%'><span style='font-size:50%'>Fujistsu</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s91149">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:31.83%;width:7.11%;
- height:2.75%'><span style='font-size:50%'>Borland</span></div>
- </div>
- <div v:shape="_x0000_s91150">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:44.25%;left:15.16%;width:17.41%;
- height:2.75%'><span style='font-size:50%'>Fraunhofer FOKUS</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s91151">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:67.5%;left:19.28%;width:7.49%;
- height:2.75%'><span style='font-size:50%'>Red Hat</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s91152">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:66.5%;left:29.4%;width:4.11%;
- height:2.75%'><span style='font-size:50%'>SAP</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s91153">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:74.25%;left:21.91%;width:7.67%;
- height:2.75%'><span style='font-size:50%'>Softeam</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s91154">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:72.0%;left:32.58%;width:6.17%;
- height:2.75%'><span style='font-size:50%'>Unisys</span></div>
- </div>
- <v:oval id="_x0000_s91155" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s91155"
- src="slide0134_image046.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s91155">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0134_image045.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0134_image045.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0134_image045.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0134_image046.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0134_image046.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0134_image046.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0135.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0135.html
deleted file mode 100644
index 7959fab..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0135.html
+++ /dev/null
@@ -1,281 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: MOF QVT and UMLX">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="91"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s93186"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s93187"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s93187"
- src="slide0135_image049.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s93186" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>MOF QVT
- and UMLX<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s93187">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s93188" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s93189" type="#_x0000_t202" style='position:absolute;
-  left:330pt;top:294pt;width:61.625pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s93190" style='position:absolute;left:228pt;
-  top:180pt;width:75.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s93191" style='position:absolute;left:156pt;top:186pt;
-  width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s93192" style='position:absolute;left:3in;top:210pt;
-  width:56.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s93193" style='position:absolute;left:96pt;top:234pt;
-  width:161.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s93194" style='position:absolute;left:120pt;top:264pt;
-  width:100.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s93195" style='position:absolute;left:78pt;top:324pt;
-  width:118.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s93196" style='position:absolute;left:198pt;top:348pt;
-  width:46.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s93197" style='position:absolute;left:60pt;top:294pt;
-  width:204pt;height:21.75pt;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s93198" style='position:absolute;left:120pt;top:372pt;
-  width:65.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s93199" style='position:absolute;left:192pt;top:390pt;
-  width:59.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s93200" style='position:absolute;left:246pt;top:414pt;
-  width:38.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s93188"
- src="slide0135_image050.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s93188">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s93189">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:46.81%;width:8.05%;
- height:2.75%'><span style='font-size:50%'>THALES</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s93190">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:34.25%;left:32.58%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s93191">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:35.25%;left:22.65%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s93192">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:31.08%;width:7.11%;
- height:2.75%'><span style='font-size:50%'>Borland</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s93193">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:44.25%;left:14.41%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Fachhochschule Vorarlberg</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s93194">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:49.75%;left:17.6%;width:14.6%;
- height:2.75%'><span style='font-size:50%'>France Telecom</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s93195">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:60.75%;left:11.79%;width:17.41%;
- height:2.75%'><span style='font-size:50%'>Fraunhofer FOKUS</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s93196">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:65.25%;left:28.46%;width:5.61%;
- height:2.75%'><span style='font-size:50%'>INRIA</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s93197">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:9.36%;width:31.46%;
- height:2.75%'><span style='font-size:50%'>Laboratoire Informatique de Paris 6</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s93198">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:69.75%;left:17.6%;width:8.61%;
- height:2.75%'><span style='font-size:50%'>No Magic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s93199">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:73.0%;left:27.71%;width:7.67%;
- height:2.75%'><span style='font-size:50%'>Softeam</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s93200">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:35.2%;width:4.11%;
- height:2.75%'><span style='font-size:50%'>TCS</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0135_image049.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0135_image049.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0135_image049.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0135_image050.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0135_image050.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0135_image050.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0136.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0136.html
deleted file mode 100644
index faab4d3..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0136.html
+++ /dev/null
@@ -1,294 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: MOF QVT and M2M">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="92"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s94210"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s94211"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s94211"
- src="slide0136_image051.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s94210" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>MOF QVT
- and M2M<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s94211">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s94212" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s94213" type="#_x0000_t202" style='position:absolute;
-  left:210pt;top:210pt;width:61.625pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s94214" style='position:absolute;left:228pt;
-  top:180pt;width:75.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s94215" style='position:absolute;left:156pt;top:186pt;
-  width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s94216" style='position:absolute;left:336pt;top:294pt;
-  width:56.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s94217" style='position:absolute;left:96pt;top:234pt;
-  width:161.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s94218" style='position:absolute;left:120pt;top:264pt;
-  width:100.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s94219" style='position:absolute;left:78pt;top:324pt;
-  width:118.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s94220" style='position:absolute;left:198pt;top:348pt;
-  width:46.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s94221" style='position:absolute;left:60pt;top:294pt;
-  width:204pt;height:21.75pt;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s94222" style='position:absolute;left:120pt;top:372pt;
-  width:65.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s94223" style='position:absolute;left:192pt;top:390pt;
-  width:59.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s94224" style='position:absolute;left:246pt;top:414pt;
-  width:38.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s94225" style='position:absolute;left:534pt;top:294pt;
-  width:49.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s94212"
- src="slide0136_image052.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s94212">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s94213">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:30.14%;width:8.05%;
- height:2.75%'><span style='font-size:50%'>THALES</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s94214">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:34.25%;left:32.58%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s94215">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:35.25%;left:22.65%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s94216">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:47.75%;width:7.11%;
- height:2.75%'><span style='font-size:50%'>Borland</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s94217">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:44.25%;left:14.41%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Fachhochschule Vorarlberg</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s94218">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:49.75%;left:17.6%;width:14.6%;
- height:2.75%'><span style='font-size:50%'>France Telecom</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s94219">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:60.75%;left:11.79%;width:17.41%;
- height:2.75%'><span style='font-size:50%'>Fraunhofer FOKUS</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s94220">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:65.25%;left:28.46%;width:5.61%;
- height:2.75%'><span style='font-size:50%'>INRIA</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s94221">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:9.36%;width:31.46%;
- height:2.75%'><span style='font-size:50%'>Laboratoire Informatique de Paris 6</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s94222">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:69.75%;left:17.6%;width:8.61%;
- height:2.75%'><span style='font-size:50%'>No Magic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s94223">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:73.0%;left:27.71%;width:7.67%;
- height:2.75%'><span style='font-size:50%'>Softeam</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s94224">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:35.2%;width:4.11%;
- height:2.75%'><span style='font-size:50%'>TCS</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s94225">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:75.09%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>OBEO</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0136_image051.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0136_image051.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0136_image051.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0136_image052.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0136_image052.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0136_image052.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0137.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0137.html
deleted file mode 100644
index a0842e5..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0137.html
+++ /dev/null
@@ -1,251 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: MOF M2T and M2T">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="93"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s95234"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s95235"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s95235"
- src="slide0137_image053.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s95234" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>MOF M2T
- and M2T<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s95235">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s95236" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:rect id="_x0000_s95237" style='position:absolute;left:480pt;top:204pt;
-  width:36.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s95238" style='position:absolute;left:534pt;top:4in;
-  width:66.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s95239" style='position:absolute;left:480pt;top:378pt;
-  width:49.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s95240" style='position:absolute;left:210pt;top:186pt;
-  width:79.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s95241" style='position:absolute;left:114pt;top:222pt;
-  width:165.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s95242" style='position:absolute;left:120pt;top:264pt;
-  width:103.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s95243" style='position:absolute;left:96pt;top:306pt;
-  width:122.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s95244" style='position:absolute;left:126pt;top:348pt;
-  width:57.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s95245" style='position:absolute;left:168pt;top:384pt;
-  width:59.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s95246" style='position:absolute;left:3in;top:414pt;
-  width:38.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s95236"
- src="slide0137_image054.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s95236">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s95237">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:38.5%;left:67.6%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s95238">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:54.25%;left:75.09%;width:8.8%;
- height:2.75%'><span style='font-size:50%'>itemis AG</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s95239">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:70.75%;left:67.6%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>OBEO</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s95240">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:35.25%;left:30.14%;width:10.86%;
- height:2.75%'><span style='font-size:50%'>Compuware</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s95241">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:42.0%;left:16.85%;width:25.09%;
- height:2.75%'><span style='font-size:50%'>Interactive Objects Software</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s95242">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:49.75%;left:17.6%;width:14.98%;
- height:2.75%'><span style='font-size:50%'>Mentor Graphics</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s95243">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:57.5%;left:14.41%;width:17.97%;
- height:2.75%'><span style='font-size:50%'>Pathfinder Solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s95244">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:65.25%;left:18.53%;width:7.3%;
- height:2.75%'><span style='font-size:50%'>SINTEF</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s95245">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:72.0%;left:24.34%;width:7.67%;
- height:2.75%'><span style='font-size:50%'>Softeam</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s95246">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:31.08%;width:4.11%;
- height:2.75%'><span style='font-size:50%'>TCS</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0137_image053.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0137_image053.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0137_image053.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0137_image054.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0137_image054.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0137_image054.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0138.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0138.html
deleted file mode 100644
index 9e85933..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0138.html
+++ /dev/null
@@ -1,290 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: BPMN 2.0 and BPMN2">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="94"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s96258"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s96259"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s96259"
- src="slide0138_image055.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s96258" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>BPMN 2.0
- and BPMN2<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s96259">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s96260" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:rect id="_x0000_s96261" style='position:absolute;left:462pt;top:240pt;
-  width:160.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s96262" style='position:absolute;left:7in;top:342pt;
-  width:58.25pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s96263" style='position:absolute;left:222pt;top:180pt;
-  width:88pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s96264" style='position:absolute;left:168pt;top:186pt;
-  width:36.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s96265" style='position:absolute;left:210pt;top:210pt;
-  width:50.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s96266" style='position:absolute;left:126pt;top:222pt;
-  width:38.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s96267" style='position:absolute;left:174pt;top:240pt;
-  width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s96268" style='position:absolute;left:84pt;top:270pt;
-  width:101.25pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s96269" style='position:absolute;left:210pt;top:282pt;
-  width:39.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s96270" style='position:absolute;left:78pt;top:312pt;
-  width:115.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s96271" style='position:absolute;left:138pt;top:348pt;
-  width:119.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s96272" style='position:absolute;left:132pt;top:384pt;
-  width:118.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s96273" style='position:absolute;left:240pt;top:414pt;
-  width:50.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s96260"
- src="slide0138_image056.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s96260">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s96261">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:45.25%;left:65.16%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Embarcadero Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s96262">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:64.25%;left:70.97%;width:7.49%;
- height:2.75%'><span style='font-size:50%'>Soyatec</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s96263">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:34.25%;left:31.83%;width:12.35%;
- height:2.75%'><span style='font-size:50%'>BEA Systems</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s96264">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:35.25%;left:24.34%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s96265">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:30.14%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>Oracle</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s96266">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:42.0%;left:18.53%;width:4.11%;
- height:2.75%'><span style='font-size:50%'>SAP</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s96267">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:45.25%;left:25.09%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s96268">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:50.75%;left:12.73%;width:14.6%;
- height:2.75%'><span style='font-size:50%'>Axway Software</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s96269">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:53.0%;left:30.14%;width:4.3%;
- height:2.75%'><span style='font-size:50%'>EDS</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s96270">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:58.5%;left:11.79%;width:16.85%;
- height:2.75%'><span style='font-size:50%'>Lombardi Software</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s96271">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:65.25%;left:20.22%;width:17.6%;
- height:2.75%'><span style='font-size:50%'>MEGA International</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s96272">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:72.0%;left:19.28%;width:17.79%;
- height:2.75%'><span style='font-size:50%'>Troux Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s96273">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:34.26%;width:6.17%;
- height:2.75%'><span style='font-size:50%'>Unisys</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0138_image055.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0138_image055.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0138_image055.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0138_image056.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0138_image056.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0138_image056.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0139.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0139.html
deleted file mode 100644
index 03d91f3..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0139.html
+++ /dev/null
@@ -1,251 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: ODM and EODM">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="95"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s97282"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s97283"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s97283"
- src="slide0139_image057.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s97282" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>ODM and
- EODM<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s97283">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s97284" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:rect id="_x0000_s97285" style='position:absolute;left:342pt;top:294pt;
-  width:36.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s97286" style='position:absolute;left:240pt;top:174pt;
-  width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s97287" style='position:absolute;left:150pt;top:204pt;
-  width:113.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s97288" style='position:absolute;left:90pt;top:240pt;
-  width:177.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s97289" style='position:absolute;left:114pt;top:276pt;
-  width:103.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s97290" style='position:absolute;left:102pt;top:312pt;
-  width:122.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s97291" style='position:absolute;left:126pt;top:354pt;
-  width:42.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s97292" style='position:absolute;left:192pt;top:348pt;
-  width:65.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s97293" style='position:absolute;left:162pt;top:384pt;
-  width:66.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s97294" style='position:absolute;left:180pt;top:414pt;
-  width:120.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s97284"
- src="slide0139_image058.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s97284">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s97285">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:48.5%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s97286">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:33.0%;left:34.26%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s97287">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:38.5%;left:21.91%;width:16.66%;
- height:2.75%'><span style='font-size:50%'>Deere &amp; Company</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s97288">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:45.25%;left:13.48%;width:27.15%;
- height:2.75%'><span style='font-size:50%'>Forschungszentrum Informatik</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s97289">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:52.0%;left:16.85%;width:14.79%;
- height:2.75%'><span style='font-size:50%'>Hewlett-Packard</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s97290">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:58.5%;left:15.16%;width:18.35%;
- height:2.75%'><span style='font-size:50%'>Kabira Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s97291">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:66.5%;left:18.53%;width:4.68%;
- height:2.75%'><span style='font-size:50%'>NIST</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s97292">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:65.25%;left:27.71%;width:8.61%;
- height:2.75%'><span style='font-size:50%'>No Magic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s97293">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:72.0%;left:23.59%;width:8.8%;
- height:2.75%'><span style='font-size:50%'>Raytheon</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s97294">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:26.02%;width:17.79%;
- height:2.75%'><span style='font-size:50%'>Sandpiper Software</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0139_image057.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0139_image057.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0139_image057.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0139_image058.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0139_image058.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0139_image058.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0140.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0140.html
deleted file mode 100644
index 1344e73..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0140.html
+++ /dev/null
@@ -1,255 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: IMM and MDT IMM">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="96"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s98306"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s98307"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s98308" type="#_x0000_t202" style='position:absolute;
-  left:516pt;top:4in;width:91.25pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s98309" type="#_x0000_t202" style='position:absolute;
-  left:198pt;top:228pt;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s98310" type="#_x0000_t202" style='position:absolute;
-  left:3in;top:180pt;width:75.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s98311" style='position:absolute;left:324pt;
-  top:252pt;width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s98312" style='position:absolute;left:282pt;top:306pt;
-  width:160.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s98313" style='position:absolute;left:90pt;top:258pt;
-  width:92.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s98314" style='position:absolute;left:132pt;top:294pt;
-  width:119.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s98315" style='position:absolute;left:90pt;top:342pt;
-  width:138.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s98316" style='position:absolute;left:150pt;top:378pt;
-  width:65.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s98317" style='position:absolute;left:186pt;top:408pt;
-  width:120.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s98307"
- src="slide0140_image059.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s98306" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>IMM and
- MDT IMM<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s98307">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s98308">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:54.25%;left:72.65%;width:12.92%;
- height:2.75%'><span style='font-size:50%'>XML Modeling</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s98309">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:43.0%;left:28.46%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s98310">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:34.25%;left:31.08%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s98311">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:47.5%;left:46.06%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s98312">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:57.5%;left:40.26%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Embarcadero Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s98313">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:48.5%;left:13.48%;width:13.1%;
- height:2.75%'><span style='font-size:50%'>KDM Analytics</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s98314">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:19.28%;width:17.6%;
- height:2.75%'><span style='font-size:50%'>MEGA International</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s98315">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:64.25%;left:13.48%;width:20.59%;
- height:2.75%'><span style='font-size:50%'>Model Driven Solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s98316">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:70.75%;left:21.91%;width:8.61%;
- height:2.75%'><span style='font-size:50%'>No Magic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s98317">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:76.5%;left:26.77%;width:17.79%;
- height:2.75%'><span style='font-size:50%'>Sandpiper Software</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <v:oval id="_x0000_s98318" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s98318"
- src="slide0140_image060.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s98318">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0140_image059.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0140_image059.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0140_image059.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0140_image060.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0140_image060.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0140_image060.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0141.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0141.html
deleted file mode 100644
index 611f68f..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0141.html
+++ /dev/null
@@ -1,238 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: OCL and MDT OCL">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="97"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s99330"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s99331"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s99331"
- src="slide0141_image061.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s99330" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>OCL and
- MDT OCL<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s99331">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s99332" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:rect id="_x0000_s99333" style='position:absolute;left:342pt;top:294pt;
-  width:36.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s99334" style='position:absolute;left:3in;top:186pt;
-  width:75.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s99335" style='position:absolute;left:132pt;top:3in;
-  width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s99336" style='position:absolute;left:198pt;top:240pt;
-  width:56.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s99337" style='position:absolute;left:78pt;top:270pt;
-  width:100.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s99338" style='position:absolute;left:186pt;top:300pt;
-  width:50.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s99339" style='position:absolute;left:114pt;top:336pt;
-  width:42.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s99340" style='position:absolute;left:186pt;top:5in;
-  width:38.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s99341" style='position:absolute;left:210pt;top:402pt;
-  width:50.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s99332"
- src="slide0141_image062.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s99332">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s99333">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:48.5%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s99334">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:35.25%;left:31.08%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s99335">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:40.75%;left:19.28%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s99336">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:45.25%;left:28.46%;width:7.11%;
- height:2.75%'><span style='font-size:50%'>Borland</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s99337">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:50.75%;left:11.79%;width:14.6%;
- height:2.75%'><span style='font-size:50%'>France Telecom</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s99338">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:56.5%;left:26.77%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>Fujitsu</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s99339">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:63.0%;left:16.85%;width:4.68%;
- height:2.75%'><span style='font-size:50%'>NIST</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s99340">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:67.5%;left:26.77%;width:4.11%;
- height:2.75%'><span style='font-size:50%'>SAP</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s99341">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:75.25%;left:30.14%;width:6.17%;
- height:2.75%'><span style='font-size:50%'>Unisys</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0141_image061.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0141_image061.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0141_image061.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0141_image062.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0141_image062.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0141_image062.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0142.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0142.html
deleted file mode 100644
index c988ed1..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0142.html
+++ /dev/null
@@ -1,251 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: OCL and OCL Tools">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="98"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s100354"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s100355"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s100355"
- src="slide0142_image063.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s100354" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>OCL and
- OCL Tools<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s100355">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s100356" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:rect id="_x0000_s100357" style='position:absolute;left:204pt;
-  top:300pt;width:36.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s100358" style='position:absolute;left:3in;top:186pt;
-  width:75.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s100359" style='position:absolute;left:132pt;
-  top:3in;width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s100360" style='position:absolute;left:198pt;
-  top:240pt;width:56.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s100361" style='position:absolute;left:78pt;top:270pt;
-  width:100.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s100362" style='position:absolute;left:114pt;
-  top:312pt;width:50.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s100363" style='position:absolute;left:114pt;
-  top:5in;width:42.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s100364" style='position:absolute;left:186pt;
-  top:5in;width:38.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s100365" style='position:absolute;left:210pt;
-  top:402pt;width:50.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s100366" style='position:absolute;left:456pt;
-  top:4in;width:198pt;height:21.75pt;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s100356"
- src="slide0142_image064.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s100356">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s100357">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:56.5%;left:29.4%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s100358">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:35.25%;left:31.08%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s100359">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:40.75%;left:19.28%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s100360">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:45.25%;left:28.46%;width:7.11%;
- height:2.75%'><span style='font-size:50%'>Borland</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s100361">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:50.75%;left:11.79%;width:14.6%;
- height:2.75%'><span style='font-size:50%'>France Telecom</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s100362">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:58.5%;left:16.85%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>Fujitsu</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s100363">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:67.5%;left:16.85%;width:4.68%;
- height:2.75%'><span style='font-size:50%'>NIST</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s100364">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:67.5%;left:26.77%;width:4.11%;
- height:2.75%'><span style='font-size:50%'>SAP</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s100365">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:75.25%;left:30.14%;width:6.17%;
- height:2.75%'><span style='font-size:50%'>Unisys</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s100366">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:54.25%;left:64.41%;width:30.71%;
- height:2.75%'><span style='font-size:50%'>Hamburg University of Technology</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0142_image063.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0142_image063.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0142_image063.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0142_image064.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0142_image064.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0142_image064.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0143.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0143.html
deleted file mode 100644
index be8a3f7..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0143.html
+++ /dev/null
@@ -1,437 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: SBVR and MDT SBVR">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="99"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s101378"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s101379"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s101379"
- src="slide0143_image065.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s101378" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>SBVR and
- MDT SBVR<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s101379">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s101380" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s101381" type="#_x0000_t202" style='position:absolute;
-  left:510pt;top:294pt;width:91.25pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s101382" style='position:absolute;left:252pt;
-  top:168pt;width:75.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101383" style='position:absolute;left:186pt;
-  top:168pt;width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101384" style='position:absolute;left:150pt;
-  top:186pt;width:144.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101385" style='position:absolute;left:108pt;
-  top:210pt;width:134.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101386" style='position:absolute;left:96pt;top:234pt;
-  width:123.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101387" style='position:absolute;left:1in;top:258pt;
-  width:113.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101388" style='position:absolute;left:258pt;
-  top:384pt;width:39.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101389" style='position:absolute;left:240pt;
-  top:210pt;width:50.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101390" style='position:absolute;left:156pt;
-  top:306pt;width:103.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101391" style='position:absolute;left:1in;top:282pt;
-  width:64.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101392" style='position:absolute;left:222pt;
-  top:234pt;width:36.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101393" style='position:absolute;left:66pt;top:306pt;
-  width:92.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101394" style='position:absolute;left:180pt;
-  top:282pt;width:83.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101395" style='position:absolute;left:84pt;top:330pt;
-  width:119.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101396" style='position:absolute;left:3in;top:384pt;
-  width:42.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101397" style='position:absolute;left:84pt;top:354pt;
-  width:119.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101398" style='position:absolute;left:198pt;
-  top:336pt;width:75.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101399" style='position:absolute;left:108pt;
-  top:378pt;width:106.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101400" style='position:absolute;left:138pt;
-  top:402pt;width:170pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101401" style='position:absolute;left:192pt;
-  top:420pt;width:120.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101402" style='position:absolute;left:210pt;
-  top:5in;width:51.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101403" style='position:absolute;left:186pt;
-  top:258pt;width:58.25pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s101404" style='position:absolute;left:138pt;
-  top:282pt;width:45.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s101380"
- src="slide0143_image066.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s101380">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s101381">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:71.91%;width:12.92%;
- height:2.75%'><span style='font-size:50%'>XML Modeling</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101382">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:32.0%;left:35.95%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101383">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:32.0%;left:26.77%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101384">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:35.25%;left:21.91%;width:21.72%;
- height:2.75%'><span style='font-size:50%'>Business Rule Solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101385">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:15.91%;width:20.03%;
- height:2.75%'><span style='font-size:50%'>Business Rules Group</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101386">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:44.25%;left:14.41%;width:18.16%;
- height:2.75%'><span style='font-size:50%'>Business Semantics</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101387">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:48.5%;left:11.04%;width:16.66%;
- height:2.75%'><span style='font-size:50%'>Deere &amp; Company</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101388">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:72.0%;left:36.89%;width:4.3%;
- height:2.75%'><span style='font-size:50%'>EDS</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101389">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:34.26%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>Fujitsu</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101390">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:57.5%;left:22.65%;width:14.79%;
- height:2.75%'><span style='font-size:50%'>Hewlett-Packard</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101391">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:53.0%;left:11.04%;width:8.42%;
- height:2.75%'><span style='font-size:50%'>Inferware</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101392">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:44.25%;left:31.83%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101393">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:57.5%;left:10.11%;width:13.1%;
- height:2.75%'><span style='font-size:50%'>KDM Analytics</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101394">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:53.0%;left:26.02%;width:11.42%;
- height:2.75%'><span style='font-size:50%'>KnowGravity</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101395">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:62.0%;left:12.73%;width:17.6%;
- height:2.75%'><span style='font-size:50%'>MEGA International</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101396">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:72.0%;left:31.08%;width:4.68%;
- height:2.75%'><span style='font-size:50%'>NIST</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101397">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:66.5%;left:12.73%;width:17.6%;
- height:2.75%'><span style='font-size:50%'>Neumont University</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101398">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:63.0%;left:28.46%;width:10.48%;
- height:2.75%'><span style='font-size:50%'>PNA Group</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101399">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:70.75%;left:15.91%;width:15.54%;
- height:2.75%'><span style='font-size:50%'>Rule ML Initiative</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101400">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:75.25%;left:20.22%;width:25.84%;
- height:2.75%'><span style='font-size:50%'>Sandia National Laboratories</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101401">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:78.5%;left:27.71%;width:17.79%;
- height:2.75%'><span style='font-size:50%'>Sandpiper Software</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101402">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:67.5%;left:30.14%;width:6.36%;
- height:2.75%'><span style='font-size:50%'>TIBCO</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101403">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:48.5%;left:26.77%;width:7.49%;
- height:2.75%'><span style='font-size:50%'>Xactium</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s101404">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:53.0%;left:20.22%;width:5.24%;
- height:2.75%'><span style='font-size:50%'>ISUFI</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0143_image065.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0143_image065.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0143_image065.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0143_image066.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0143_image066.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0143_image066.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0144.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0144.html
deleted file mode 100644
index 8952a63..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0144.html
+++ /dev/null
@@ -1,315 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: MOF (CMOF) and UML2">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="100"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s102402"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:shapetype id="_x0000_t202"
-  coordsize="21600,21600" o:spt="202" path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s102403" type="#_x0000_t202" style='position:absolute;
-  left:342pt;top:294pt;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape>
- <div v:shape="_x0000_s102402" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>MOF (CMOF)
- and UML2<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s102403">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:48.5%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span></div>
- </div>
- <v:oval id="_x0000_s102404" style='position:absolute;left:60pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shape id="_x0000_s102405" type="#_x0000_t202" style='position:absolute;
-  left:480pt;top:294pt;width:160.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s102406" type="#_x0000_t202" style='position:absolute;
-  left:228pt;top:180pt;width:75.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s102407" type="#_x0000_t202" style='position:absolute;
-  left:150pt;top:198pt;width:61.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s102408" type="#_x0000_t202" style='position:absolute;
-  left:150pt;top:300pt;width:46.875pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s102409" style='position:absolute;left:240pt;
-  top:414pt;width:39.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s102410" style='position:absolute;left:150pt;
-  top:264pt;width:103.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:shape id="_x0000_s102411" type="#_x0000_t202" style='position:absolute;
-  left:84pt;top:324pt;width:165.875pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s102412" style='position:absolute;left:78pt;
-  top:276pt;width:56.25pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:shape id="_x0000_s102413" type="#_x0000_t202" style='position:absolute;
-  left:222pt;top:210pt;width:56.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s102414" type="#_x0000_t202" style='position:absolute;
-  left:102pt;top:234pt;width:118.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s102415" type="#_x0000_t202" style='position:absolute;
-  left:132pt;top:5in;width:58.875pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s102416" type="#_x0000_t202" style='position:absolute;
-  left:204pt;top:354pt;width:38.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s102417" type="#_x0000_t202" style='position:absolute;
-  left:150pt;top:396pt;width:59.625pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s102418" type="#_x0000_t202" style='position:absolute;
-  left:228pt;top:384pt;width:50.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s102404"
- src="slide0144_image067.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s102404">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s102405">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:67.6%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Embarcadero Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s102406">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:34.25%;left:32.58%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s102407">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:37.5%;left:21.91%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s102408">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:56.5%;left:21.91%;width:5.61%;
- height:2.75%'><span style='font-size:50%'>INRIA</span></div>
- </div>
- <div v:shape="_x0000_s102409">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:34.26%;width:4.3%;
- height:2.75%'><span style='font-size:50%'>XTG</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s102410">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:49.75%;left:21.91%;width:14.79%;
- height:2.75%'><span style='font-size:50%'>Hewlett-Packard</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s102411">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:60.75%;left:12.73%;width:25.09%;
- height:2.75%'><span style='font-size:50%'>Interactive Objects Software</span></div>
- </div>
- <div v:shape="_x0000_s102412">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:52.0%;left:11.79%;width:7.11%;
- height:2.75%'><span style='font-size:50%'>Fujistsu</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s102413">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:31.83%;width:7.11%;
- height:2.75%'><span style='font-size:50%'>Borland</span></div>
- </div>
- <div v:shape="_x0000_s102414">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:44.25%;left:15.16%;width:17.41%;
- height:2.75%'><span style='font-size:50%'>Fraunhofer FOKUS</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s102415">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:67.5%;left:19.28%;width:7.49%;
- height:2.75%'><span style='font-size:50%'>Red Hat</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s102416">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:66.5%;left:29.4%;width:4.11%;
- height:2.75%'><span style='font-size:50%'>SAP</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s102417">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:74.25%;left:21.91%;width:7.67%;
- height:2.75%'><span style='font-size:50%'>Softeam</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s102418">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:72.0%;left:32.58%;width:6.17%;
- height:2.75%'><span style='font-size:50%'>Unisys</span></div>
- </div>
- <v:oval id="_x0000_s102419" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s102419"
- src="slide0144_image068.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s102419">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0144_image067.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0144_image067.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0144_image067.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0144_image068.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0144_image068.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0144_image068.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0145.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0145.html
deleted file mode 100644
index 5e22203..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0145.html
+++ /dev/null
@@ -1,398 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: UML and UML2">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="101"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s103426"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s103427"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s103427"
- src="slide0145_image069.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s103426" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>UML and
- UML2<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s103427">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s103428" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:rect id="_x0000_s103429" style='position:absolute;left:258pt;
-  top:174pt;width:75.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s103430" type="#_x0000_t202" style='position:absolute;
-  left:348pt;top:342pt;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s103431" type="#_x0000_t202" style='position:absolute;
-  left:282pt;top:270pt;width:160.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s103432" style='position:absolute;left:150pt;
-  top:198pt;width:149.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103433" style='position:absolute;left:180pt;
-  top:174pt;width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103434" style='position:absolute;left:102pt;
-  top:222pt;width:154.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103435" style='position:absolute;left:186pt;
-  top:294pt;width:68.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103436" style='position:absolute;left:96pt;top:246pt;
-  width:155.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103437" style='position:absolute;left:78pt;top:270pt;
-  width:50.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103438" style='position:absolute;left:1in;top:294pt;
-  width:103.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103439" style='position:absolute;left:2in;top:270pt;
-  width:103.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103440" style='position:absolute;left:114pt;
-  top:318pt;width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103441" style='position:absolute;left:204pt;
-  top:384pt;width:42.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103442" style='position:absolute;left:192pt;
-  top:324pt;width:65.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103443" style='position:absolute;left:90pt;top:342pt;
-  width:50.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103444" style='position:absolute;left:150pt;
-  top:348pt;width:59.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103445" style='position:absolute;left:108pt;
-  top:372pt;width:96pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103446" style='position:absolute;left:210pt;
-  top:5in;width:61.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103447" style='position:absolute;left:138pt;
-  top:396pt;width:61.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103448" style='position:absolute;left:210pt;
-  top:414pt;width:109.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s103449" style='position:absolute;left:252pt;
-  top:390pt;width:49.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s103428"
- src="slide0145_image070.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s103428">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s103429">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:33.0%;left:36.89%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103430">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:64.25%;left:49.25%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103431">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:50.75%;left:40.26%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Embarcadero Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103432">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:37.5%;left:21.91%;width:22.65%;
- height:2.75%'><span style='font-size:50%'>ARTISAN Software Tools</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103433">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:33.0%;left:26.02%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103434">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:42.0%;left:15.16%;width:23.22%;
- height:2.75%'><span style='font-size:50%'>Armstrong Process Group</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103435">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:26.77%;width:9.17%;
- height:2.75%'><span style='font-size:50%'>CEA/LETI</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103436">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:46.5%;left:14.41%;width:23.78%;
- height:2.75%'><span style='font-size:50%'>Data Access Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103437">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:50.75%;left:11.79%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>Fujitsu</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103438">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:11.04%;width:14.98%;
- height:2.75%'><span style='font-size:50%'>Lockheed Martin</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103439">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:50.75%;left:20.97%;width:14.98%;
- height:2.75%'><span style='font-size:50%'>Mentor Graphics</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103440">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:59.75%;left:16.85%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Motorola</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103441">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:72.0%;left:29.4%;width:4.68%;
- height:2.75%'><span style='font-size:50%'>NIST</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103442">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:60.75%;left:27.71%;width:8.61%;
- height:2.75%'><span style='font-size:50%'>No Magic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103443">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:64.25%;left:13.48%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>Oracle</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103444">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:65.25%;left:21.91%;width:7.67%;
- height:2.75%'><span style='font-size:50%'>Softeam</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103445">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:69.75%;left:15.91%;width:13.67%;
- height:2.75%'><span style='font-size:50%'>Sparx Systems</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103446">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:67.5%;left:30.14%;width:8.05%;
- height:2.75%'><span style='font-size:50%'>THALES</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103447">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:74.25%;left:20.22%;width:8.23%;
- height:2.75%'><span style='font-size:50%'>Telelogic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103448">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:30.14%;width:15.91%;
- height:2.75%'><span style='font-size:50%'>University of Oslo</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s103449">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:73.0%;left:35.95%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>OOSE</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0145_image069.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0145_image069.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0145_image069.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0145_image070.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0145_image070.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0145_image070.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0146.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0146.html
deleted file mode 100644
index 9ab4315..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0146.html
+++ /dev/null
@@ -1,411 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: UML and UML2 Tools">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="102"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s104450"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s104451"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s104451"
- src="slide0146_image071.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s104450" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>UML and
- UML2 Tools<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s104451">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s104452" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:rect id="_x0000_s104453" style='position:absolute;left:258pt;
-  top:174pt;width:75.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s104454" type="#_x0000_t202" style='position:absolute;
-  left:228pt;top:342pt;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s104455" type="#_x0000_t202" style='position:absolute;
-  left:66pt;top:294pt;width:160.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s104456" style='position:absolute;left:150pt;
-  top:198pt;width:149.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104457" style='position:absolute;left:180pt;
-  top:174pt;width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104458" style='position:absolute;left:102pt;
-  top:222pt;width:154.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104459" style='position:absolute;left:210pt;
-  top:366pt;width:68.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104460" style='position:absolute;left:102pt;
-  top:246pt;width:155.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104461" style='position:absolute;left:78pt;top:270pt;
-  width:50.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104462" style='position:absolute;left:84pt;top:318pt;
-  width:103.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104463" style='position:absolute;left:2in;top:270pt;
-  width:103.875pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104464" style='position:absolute;left:90pt;top:342pt;
-  width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104465" style='position:absolute;left:204pt;
-  top:318pt;width:42.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104466" style='position:absolute;left:162pt;
-  top:342pt;width:65.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104467" style='position:absolute;left:96pt;top:366pt;
-  width:50.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104468" style='position:absolute;left:150pt;
-  top:366pt;width:59.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104469" style='position:absolute;left:132pt;
-  top:390pt;width:96pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104470" style='position:absolute;left:162pt;
-  top:414pt;width:61.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104471" style='position:absolute;left:252pt;
-  top:408pt;width:61.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104472" style='position:absolute;left:3in;top:426pt;
-  width:109.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s104473" style='position:absolute;left:234pt;
-  top:390pt;width:49.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:shape id="_x0000_s104474" type="#_x0000_t202" style='position:absolute;
-  left:516pt;top:294pt;width:56.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s104452"
- src="slide0146_image072.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s104452">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s104453">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:33.0%;left:36.89%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104454">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:64.25%;left:32.58%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104455">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:10.11%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Embarcadero Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104456">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:37.5%;left:21.91%;width:22.65%;
- height:2.75%'><span style='font-size:50%'>ARTISAN Software Tools</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104457">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:33.0%;left:26.02%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104458">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:42.0%;left:15.16%;width:23.22%;
- height:2.75%'><span style='font-size:50%'>Armstrong Process Group</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104459">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:68.5%;left:30.14%;width:9.17%;
- height:2.75%'><span style='font-size:50%'>CEA/LETI</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104460">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:46.5%;left:15.16%;width:23.78%;
- height:2.75%'><span style='font-size:50%'>Data Access Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104461">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:50.75%;left:11.79%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>Fujitsu</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104462">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:59.75%;left:12.73%;width:14.98%;
- height:2.75%'><span style='font-size:50%'>Lockheed Martin</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104463">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:50.75%;left:20.97%;width:14.98%;
- height:2.75%'><span style='font-size:50%'>Mentor Graphics</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104464">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:64.25%;left:13.48%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Motorola</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104465">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:59.75%;left:29.4%;width:4.68%;
- height:2.75%'><span style='font-size:50%'>NIST</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104466">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:64.25%;left:23.59%;width:8.61%;
- height:2.75%'><span style='font-size:50%'>No Magic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104467">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:68.5%;left:14.41%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>Oracle</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104468">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:68.5%;left:21.91%;width:7.67%;
- height:2.75%'><span style='font-size:50%'>Softeam</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104469">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:73.0%;left:19.28%;width:13.67%;
- height:2.75%'><span style='font-size:50%'>Sparx Systems</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104470">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:23.59%;width:8.05%;
- height:2.75%'><span style='font-size:50%'>THALES</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104471">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:76.5%;left:35.95%;width:8.23%;
- height:2.75%'><span style='font-size:50%'>Telelogic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104472">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:79.75%;left:31.08%;width:15.91%;
- height:2.75%'><span style='font-size:50%'>University of Oslo</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104473">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:73.0%;left:33.52%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>OOSE</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s104474">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:72.65%;width:7.11%;
- height:2.75%'><span style='font-size:50%'>Borland</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0146_image071.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0146_image071.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0146_image071.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0146_image072.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0146_image072.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0146_image072.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0147.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0147.html
deleted file mode 100644
index 448ed85..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0147.html
+++ /dev/null
@@ -1,176 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: UML DI and UML2 Tools">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="103"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s105474"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s105475"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s105475"
- src="slide0147_image073.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s105474" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>UML DI and
- UML2 Tools<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s105475">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s105476" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s105477" type="#_x0000_t202" style='position:absolute;
-  left:528pt;top:294pt;width:56.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s105478" type="#_x0000_t202" style='position:absolute;
-  left:180pt;top:210pt;width:75.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s105479" type="#_x0000_t202" style='position:absolute;
-  left:126pt;top:282pt;width:61.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s105480" type="#_x0000_t202" style='position:absolute;
-  left:168pt;top:354pt;width:50.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s105476"
- src="slide0147_image074.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s105476">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s105477">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:74.34%;width:7.11%;
- height:2.75%'><span style='font-size:50%'>Borland</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s105478">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:26.02%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s105479">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:53.0%;left:18.53%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s105480">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:66.5%;left:24.34%;width:6.17%;
- height:2.75%'><span style='font-size:50%'>Unisys</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0147_image073.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0147_image073.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0147_image073.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0147_image074.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0147_image074.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0147_image074.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0148.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0148.html
deleted file mode 100644
index 0719d03..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0148.html
+++ /dev/null
@@ -1,242 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: IMM (XSD) and XSD">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="104"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s106498"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s106499"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s106499"
- src="slide0148_image075.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s106498" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>IMM (XSD)
- and XSD<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s106499">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s106500" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s106501" type="#_x0000_t202" style='position:absolute;
-  left:348pt;top:4in;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s106502" style='position:absolute;left:222pt;
-  top:180pt;width:75.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s106503" style='position:absolute;left:168pt;
-  top:210pt;width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s106504" style='position:absolute;left:102pt;
-  top:240pt;width:160.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s106505" style='position:absolute;left:120pt;
-  top:276pt;width:92.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s106506" style='position:absolute;left:84pt;top:306pt;
-  width:119.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s106507" style='position:absolute;left:108pt;
-  top:336pt;width:138.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s106508" style='position:absolute;left:150pt;
-  top:372pt;width:65.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s106509" style='position:absolute;left:186pt;
-  top:408pt;width:120.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s106500"
- src="slide0148_image076.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s106500">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s106501">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:54.25%;left:49.25%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s106502">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:34.25%;left:31.83%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s106503">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:24.34%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s106504">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:45.25%;left:15.16%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Embarcadero Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s106505">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:52.0%;left:17.6%;width:13.1%;
- height:2.75%'><span style='font-size:50%'>KDM Analytics</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s106506">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:57.5%;left:12.73%;width:17.6%;
- height:2.75%'><span style='font-size:50%'>MEGA International</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s106507">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:63.0%;left:15.91%;width:20.59%;
- height:2.75%'><span style='font-size:50%'>Model Driven Solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s106508">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:69.75%;left:21.91%;width:8.61%;
- height:2.75%'><span style='font-size:50%'>No Magic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s106509">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:76.5%;left:26.77%;width:17.79%;
- height:2.75%'><span style='font-size:50%'>Sandpiper Software</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0148_image075.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0148_image075.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0148_image075.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0148_image076.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0148_image076.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0148_image076.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0149.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0149.html
deleted file mode 100644
index 9e04e03..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0149.html
+++ /dev/null
@@ -1,142 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description
-content="3/19/2008: Task Force Members + Project Committers">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="111"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s113666"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s113667" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s113666" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:89.32%;height:6.0%'>Task Force
- Members + Project Committers<span style='mso-special-format:lastCR;display:
- none'>&#13;</span></div>
- <div v:shape="_x0000_s113667" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:11.42%;width:88.2%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.39%;font-family:
- Wingdings'>q</span>Eclipse membership includes individuals whereas </span><span
- style='position:absolute;top:31.75%;left:10.48%;width:94.56%;height:5.25%'>OMG
- membership is limited to (paying) organizations&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:44.5%;left:11.42%;width:89.88%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.33%;font-family:
- Wingdings'>q</span>Eclipse project committers are typically developers </span><span
- style='position:absolute;top:50.0%;left:10.48%;width:97.37%;height:5.25%'>whereas
- OMG task force members are often architects </span><span style='position:absolute;
- top:55.25%;left:10.48%;width:81.27%;height:5.25%'>or business people&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:68.0%;left:11.42%;width:80.14%;height:5.25%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.73%;font-family:
- Wingdings'>q</span>Not enough overlap between organizations </span><span
- style='position:absolute;top:73.25%;left:10.48%;width:91.38%;height:5.25%'>implementing
- projects at Eclipse and those defining </span><span style='position:absolute;
- top:78.75%;left:10.48%;width:81.27%;height:5.25%'>corresponding specifications
- at the OMG&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:85.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0150.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0150.html
deleted file mode 100644
index a660327..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0150.html
+++ /dev/null
@@ -1,228 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: UML HUTN and TMF">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="105"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s107522"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s107523"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s107523"
- src="slide0150_image077.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s107522" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>UML HUTN
- and TMF<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s107523">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s107524" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s107525" type="#_x0000_t202" style='position:absolute;
-  left:492pt;top:294pt;width:126.625pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s107526" type="#_x0000_t202" style='position:absolute;
-  left:156pt;top:186pt;width:155.375pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s107527" type="#_x0000_t202" style='position:absolute;
-  left:126pt;top:228pt;width:47.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s107528" type="#_x0000_t202" style='position:absolute;
-  left:222pt;top:402pt;width:50.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s107529" type="#_x0000_t202" style='position:absolute;
-  left:90pt;top:282pt;width:100.375pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s107530" type="#_x0000_t202" style='position:absolute;
-  left:198pt;top:252pt;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s107531" type="#_x0000_t202" style='position:absolute;
-  left:108pt;top:318pt;width:117.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s107532" type="#_x0000_t202" style='position:absolute;
-  left:138pt;top:366pt;width:59pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s107524"
- src="slide0150_image078.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s107524">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s107525">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:69.28%;width:18.72%;
- height:2.75%'><span style='font-size:50%'>Université de Nantes</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s107526">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:35.25%;left:22.65%;width:23.78%;
- height:2.75%'><span style='font-size:50%'>Data Access Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s107527">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:43.0%;left:18.53%;width:5.61%;
- height:2.75%'><span style='font-size:50%'>DSTC</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s107528">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:75.25%;left:31.83%;width:6.17%;
- height:2.75%'><span style='font-size:50%'>Unisys</span></div>
- </div>
- <div v:shape="_x0000_s107529">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:53.0%;left:13.48%;width:14.6%;
- height:2.75%'><span style='font-size:50%'>France Telecom</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s107530">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:47.5%;left:28.46%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s107531">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:59.75%;left:15.91%;width:17.41%;
- height:2.75%'><span style='font-size:50%'>IONA Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s107532">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:68.5%;left:20.22%;width:7.49%;
- height:2.75%'><span style='font-size:50%'>Open-IT</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0150_image077.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0150_image077.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0150_image077.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0150_image078.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0150_image078.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0150_image078.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0151.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0151.html
deleted file mode 100644
index a2da82b..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0151.html
+++ /dev/null
@@ -1,203 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: SPEM and EPF">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="106"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s108546"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s108547"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s108547"
- src="slide0151_image079.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s108546" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>SPEM and
- EPF<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s108547">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s108548" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s108549" type="#_x0000_t202" style='position:absolute;
-  left:528pt;top:294pt;width:61.375pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s108550" type="#_x0000_t202" style='position:absolute;
-  left:192pt;top:210pt;width:61.5pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s108551" type="#_x0000_t202" style='position:absolute;
-  left:162pt;top:276pt;width:50.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s108552" type="#_x0000_t202" style='position:absolute;
-  left:84pt;top:336pt;width:163.75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s108553" type="#_x0000_t202" style='position:absolute;
-  left:342pt;top:294pt;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s108554" type="#_x0000_t202" style='position:absolute;
-  left:210pt;top:402pt;width:59.625pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s108548"
- src="slide0151_image080.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s108548">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s108549">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:74.34%;width:8.23%;
- height:2.75%'><span style='font-size:50%'>Telelogic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s108550">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:27.71%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s108551">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:52.0%;left:23.59%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>Fujitsu</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s108552">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:63.0%;left:12.73%;width:24.9%;
- height:2.75%'><span style='font-size:50%'>European Software Institute</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s108553">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:48.5%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s108554">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:75.25%;left:30.14%;width:7.67%;
- height:2.75%'><span style='font-size:50%'>Softeam</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0151_image079.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0151_image079.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0151_image079.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0151_image080.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0151_image080.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0151_image080.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0152.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0152.html
deleted file mode 100644
index 46c4fa6..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0152.html
+++ /dev/null
@@ -1,411 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: WMF and JWT">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="107"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s109570"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s109571"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s109571"
- src="slide0152_image081.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s109570" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>WMF and
- JWT<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s109571">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s109572" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s109573" type="#_x0000_t202" style='position:absolute;
-  left:3in;top:192pt;width:89.25pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s109574" type="#_x0000_t202" style='position:absolute;
-  left:204pt;top:168pt;width:117.25pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s109575" type="#_x0000_t202" style='position:absolute;
-  left:486pt;top:3in;width:74.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s109576" type="#_x0000_t202" style='position:absolute;
-  left:132pt;top:192pt;width:72.25pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s109577" type="#_x0000_t202" style='position:absolute;
-  left:528pt;top:4in;width:75pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s109578" type="#_x0000_t202" style='position:absolute;
-  left:462pt;top:366pt;width:135.375pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s109579" style='position:absolute;left:108pt;
-  top:3in;width:155.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109580" style='position:absolute;left:90pt;top:240pt;
-  width:175.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109581" style='position:absolute;left:1in;top:4in;
-  width:47.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109582" style='position:absolute;left:90pt;top:312pt;
-  width:39.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109583" style='position:absolute;left:132pt;
-  top:4in;width:119.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109584" style='position:absolute;left:2in;top:312pt;
-  width:50.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109585" style='position:absolute;left:90pt;top:342pt;
-  width:51.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109586" style='position:absolute;left:1in;top:264pt;
-  width:198pt;height:21.75pt;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109587" style='position:absolute;left:3in;top:414pt;
-  width:108pt;height:21.75pt;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109588" style='position:absolute;left:3in;top:318pt;
-  width:36.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109589" style='position:absolute;left:156pt;
-  top:342pt;width:97.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109590" style='position:absolute;left:108pt;
-  top:366pt;width:106.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109591" style='position:absolute;left:222pt;
-  top:366pt;width:50.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109592" style='position:absolute;left:126pt;
-  top:390pt;width:50.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109593" style='position:absolute;left:168pt;
-  top:414pt;width:38.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s109594" style='position:absolute;left:198pt;
-  top:390pt;width:46.125pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s109572"
- src="slide0152_image082.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s109572">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s109573">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:36.5%;left:31.08%;width:12.54%;
- height:2.75%'><span style='font-size:50%'>CSE Systems</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109574">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:32.0%;left:29.4%;width:17.22%;
- height:2.75%'><span style='font-size:50%'>CoCreate Software</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109575">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:40.75%;left:68.53%;width:10.11%;
- height:2.75%'><span style='font-size:50%'>ObjectWeb</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109576">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:36.5%;left:19.28%;width:9.73%;
- height:2.75%'><span style='font-size:50%'>Concentus</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109577">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:54.25%;left:74.34%;width:10.11%;
- height:2.75%'><span style='font-size:50%'>Open Wide</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109578">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:68.5%;left:65.16%;width:20.22%;
- height:2.75%'><span style='font-size:50%'>University of Augsburg</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109579">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:40.75%;left:15.91%;width:23.78%;
- height:2.75%'><span style='font-size:50%'>Data Access Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109580">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:45.25%;left:13.48%;width:26.77%;
- height:2.75%'><span style='font-size:50%'>Digital Equipment Corporation</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109581">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:54.25%;left:11.04%;width:5.61%;
- height:2.75%'><span style='font-size:50%'>DSTC</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109582">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:58.5%;left:13.48%;width:4.3%;
- height:2.75%'><span style='font-size:50%'>EDS</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109583">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:54.25%;left:19.28%;width:17.41%;
- height:2.75%'><span style='font-size:50%'>FileNet Corporation</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109584">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:58.5%;left:20.97%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>Fujitsu</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109585">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:64.25%;left:13.48%;width:6.36%;
- height:2.75%'><span style='font-size:50%'>Hitachi</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109586">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:49.75%;left:11.04%;width:30.71%;
- height:2.75%'><span style='font-size:50%'>Genesis Development Corporation</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109587">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:31.08%;width:14.79%;
- height:2.75%'><span style='font-size:50%'>Siemens Nixdorf</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109588">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:59.75%;left:31.08%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109589">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:64.25%;left:22.65%;width:14.04%;
- height:2.75%'><span style='font-size:50%'>ICL Enterprises</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109590">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:68.5%;left:15.91%;width:15.35%;
- height:2.75%'><span style='font-size:50%'>NIIIP Consortium</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109591">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:68.5%;left:31.83%;width:5.99%;
- height:2.75%'><span style='font-size:50%'>Oracle</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109592">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:73.0%;left:18.53%;width:6.17%;
- height:2.75%'><span style='font-size:50%'>Plexus</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109593">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:77.5%;left:24.34%;width:4.11%;
- height:2.75%'><span style='font-size:50%'>SSA</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s109594">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:73.0%;left:28.46%;width:5.43%;
- height:2.75%'><span style='font-size:50%'>Xerox</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0152_image081.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0152_image081.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0152_image081.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0152_image082.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0152_image082.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0152_image082.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0153.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0153.html
deleted file mode 100644
index 0661d85..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0153.html
+++ /dev/null
@@ -1,218 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description
-content="3/19/2008: UML Testing Profile and Testing Tools">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="109"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s111618"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s111619"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s111619"
- src="slide0153_image085.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s111618" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>UML
- Testing Profile and Testing Tools<span style='mso-special-format:lastCR;
- display:none'>&#13;</span></div>
- <div v:shape="_x0000_s111619">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s111620" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s111621" type="#_x0000_t202" style='position:absolute;
-  left:348pt;top:294pt;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s111622" type="#_x0000_t202" style='position:absolute;
-  left:492pt;top:228pt;width:37.375pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:shape id="_x0000_s111623" type="#_x0000_t202" style='position:absolute;
-  left:492pt;top:348pt;width:82.625pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s111624" style='position:absolute;left:150pt;
-  top:210pt;width:118.75pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s111625" style='position:absolute;left:2in;top:264pt;
-  width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s111626" style='position:absolute;left:138pt;
-  top:318pt;width:61.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s111627" style='position:absolute;left:162pt;
-  top:378pt;width:109.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s111620"
- src="slide0153_image086.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s111620">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s111621">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:55.25%;left:49.25%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s111622">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:43.0%;left:69.28%;width:3.93%;
- height:2.75%'><span style='font-size:50%'>Intel</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s111623">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:65.25%;left:69.28%;width:11.42%;
- height:2.75%'><span style='font-size:50%'>OC Systems</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s111624">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:21.91%;width:17.41%;
- height:2.75%'><span style='font-size:50%'>Fraunhofer FOKUS</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s111625">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:49.75%;left:20.97%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Motorola</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s111626">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:59.75%;left:20.22%;width:8.23%;
- height:2.75%'><span style='font-size:50%'>Telelogic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s111627">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:70.75%;left:23.59%;width:15.91%;
- height:2.75%'><span style='font-size:50%'>University of Oslo</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0153_image085.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0153_image085.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0153_image085.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0153_image086.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0153_image086.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0153_image086.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0154.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0154.html
deleted file mode 100644
index 8e038c1..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0154.html
+++ /dev/null
@@ -1,163 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Contents">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="8"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s8194"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s8195" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s8194" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Contents<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s8195" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>Why&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:31.75%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Open Specifications +
- Open Source&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:36.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:42.0%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'><b>What&#13;</b></span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:47.25%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'><b>OMG + Eclipse&#13;</b></span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:52.0%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:57.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>How&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Technology Adoption +
- Development&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:72.75%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>Who&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:78.0%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Task Force Members +
- Project Committers</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0155.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0155.html
deleted file mode 100644
index bc56bf6..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0155.html
+++ /dev/null
@@ -1,163 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Contents">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="65"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s66562"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s66563" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s66562" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Contents<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s66563" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>Why&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:31.75%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Open Specifications +
- Open Source&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:36.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:42.0%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>What&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:47.25%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>OMG + Eclipse&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:52.0%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:57.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'><b>How&#13;</b></span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'><b>Technology Adoption +
- Development&#13;</b></span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:72.75%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>Who&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:78.0%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Task Force Members +
- Project Committers</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0156.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0156.html
deleted file mode 100644
index 59b3bba..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0156.html
+++ /dev/null
@@ -1,163 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: Contents">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="81"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s82946"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s82947" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s82946" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Contents<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s82947" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>Why&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:31.75%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Open Specifications +
- Open Source&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:36.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:42.0%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>What&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:47.25%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>OMG + Eclipse&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:52.0%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:57.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>How&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Technology Adoption +
- Development&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:72.75%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'><b>Who&#13;</b></span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:78.0%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'><b>Task Force Members +
- Project Committers</b></span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0157.html b/docs/presentations/EclipseCon2008_LongTalk_files/slide0157.html
deleted file mode 100644
index b7b7763..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0157.html
+++ /dev/null
@@ -1,242 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Open Source Meets Open Specifications: Eclipse and the OMG</title>
-<meta name=Description content="3/19/2008: IMM (XSD) and Source Editing">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="110"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:94.19%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'>Open
- Source Meets Open Standards<span style='mso-spacerun:yes'>  </span></span><span
- style='mso-bidi-font-family:Arial;font-size:42%'>|<span
- style='mso-spacerun:yes'>  </span></span><span style='mso-bidi-font-family:
- Arial;font-size:42%'>Long </span><span style='mso-bidi-font-family:Arial;
- font-size:42%'>Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s112642"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><v:oval id="_x0000_s112643"
-  style='position:absolute;left:60pt;top:162pt;width:396pt;height:4in;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top' filled="f"
-  strokecolor="#bbe0e3 [4]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s112643"
- src="slide0157_image087.gif" style='position:absolute;top:29.75%;left:8.05%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s112642" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>IMM (XSD)
- and Source Editing<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s112643">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:17.22%;width:37.26%;
- height:5.25%'><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:oval id="_x0000_s112644" style='position:absolute;left:264pt;top:162pt;
-  width:396pt;height:4in;visibility:visible;mso-wrap-style:square;
-  v-text-anchor:top' filled="f" strokecolor="#339 [5]" strokeweight="3pt">
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:oval><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s112645" type="#_x0000_t202" style='position:absolute;
-  left:348pt;top:4in;width:36.125pt;height:21.75pt;visibility:visible;
-  mso-wrap-style:none;v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:shape><v:rect id="_x0000_s112646" style='position:absolute;left:222pt;
-  top:180pt;width:75.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s112647" style='position:absolute;left:168pt;
-  top:210pt;width:61.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s112648" style='position:absolute;left:102pt;
-  top:240pt;width:160.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s112649" style='position:absolute;left:120pt;
-  top:276pt;width:92.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s112650" style='position:absolute;left:84pt;top:306pt;
-  width:119.375pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s112651" style='position:absolute;left:108pt;
-  top:336pt;width:138.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s112652" style='position:absolute;left:150pt;
-  top:372pt;width:65.5pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s112653" style='position:absolute;left:186pt;
-  top:408pt;width:120.625pt;height:21.75pt;visibility:visible;mso-wrap-style:none;
-  v-text-anchor:top' filled="f" stroked="f">
-  <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s112644"
- src="slide0157_image088.gif" style='position:absolute;top:29.75%;left:36.51%;
- width:55.8%;height:54.25%'><![endif]>
- <div v:shape="_x0000_s112644">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O><span style='position:absolute;top:38.75%;left:45.5%;width:37.26%;
- height:2.75%'><span style='font-size:50%;mso-special-format:lastCR;display:
- none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s112645">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:54.25%;left:49.25%;width:3.74%;
- height:2.75%'><span style='font-size:50%'>IBM</span><span style='font-size:
- 50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s112646">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:34.25%;left:31.83%;width:10.29%;
- height:2.75%'><span style='font-size:50%'>88solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s112647">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:39.75%;left:24.34%;width:7.86%;
- height:2.75%'><span style='font-size:50%'>Adaptive</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s112648">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:45.25%;left:15.16%;width:24.53%;
- height:2.75%'><span style='font-size:50%'>Embarcadero Technologies</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s112649">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:52.0%;left:17.6%;width:13.1%;
- height:2.75%'><span style='font-size:50%'>KDM Analytics</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s112650">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:57.5%;left:12.73%;width:17.6%;
- height:2.75%'><span style='font-size:50%'>MEGA International</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s112651">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:63.0%;left:15.91%;width:20.59%;
- height:2.75%'><span style='font-size:50%'>Model Driven Solutions</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s112652">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:69.75%;left:21.91%;width:8.61%;
- height:2.75%'><span style='font-size:50%'>No Magic</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s112653">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:76.5%;left:26.77%;width:17.79%;
- height:2.75%'><span style='font-size:50%'>Sandpiper Software</span><span
- style='font-size:50%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0157_image087.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0157_image087.gif
deleted file mode 100644
index 0a43282..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0157_image087.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_LongTalk_files/slide0157_image088.gif b/docs/presentations/EclipseCon2008_LongTalk_files/slide0157_image088.gif
deleted file mode 100644
index e7f8e83..0000000
--- a/docs/presentations/EclipseCon2008_LongTalk_files/slide0157_image088.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_ShortTalk.html b/docs/presentations/EclipseCon2008_ShortTalk.html
deleted file mode 100644
index 93cded0..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk.html
+++ /dev/null
@@ -1,78 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link rel=File-List href="EclipseCon2008_ShortTalk_files/filelist.xml">
-<link rel=Preview href="EclipseCon2008_ShortTalk_files/preview.wmf">
-<link rel=Edit-Time-Data href="EclipseCon2008_ShortTalk_files/editdata.mso">
-<title>What's New in MDT?</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Subject>Short Talk</o:Subject>
-  <o:Author>Kenn Hussey</o:Author>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>20</o:Revision>
-  <o:TotalTime>1816</o:TotalTime>
-  <o:Created>2007-12-12T17:59:30Z</o:Created>
-  <o:LastSaved>2008-03-19T18:21:11Z</o:LastSaved>
-  <o:Category>Modeling</o:Category>
-  <o:PresentationFormat>On-screen Show (4:3)</o:PresentationFormat>
-  <o:Company>Embarcadero Technologies</o:Company>
-  <o:Slides>23</o:Slides>
-  <o:Notes>23</o:Notes>
-  <o:Version>12.00</o:Version>
- </o:DocumentProperties>
- <o:OfficeDocumentSettings>
-  <o:PixelsPerInch>80</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
-</xml><![endif]-->
-<link rel=Presentation-XML href="EclipseCon2008_ShortTalk_files/pres.xml">
-<meta name=Description content="3/19/2008: WhatÂ’s New in MDT?">
-<meta http-equiv=expires content=0>
-<![if !ppt]><script>
-<!--
-	var ver = 0, appVer = navigator.appVersion, msie = appVer.indexOf( "MSIE " )
-	var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0)
-	if( msie >= 0 )
-		ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) )
-	else
-		ver = parseInt( appVer )
-	browserSupported=0
-	if( !isMac && ver >= 4 && msie >= 0 ) {
-		browserSupported=1
-		window.location.replace( 'EclipseCon2008_ShortTalk_files/frame.html'+document.location.hash )
-	}
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<script><!--
-
-if( browserSupported )
-	document.writeln('<div style="visibility:hidden">');
-
-//--></script><font face=Arial size=2><b>
-
-<p>This presentation contains content that your browser may not be able to show
-properly.</p>
-
-<p>If you would like to proceed anyway, click <a
-href="EclipseCon2008_ShortTalk_files/frame.html">here</a>.</p>
-
-</b></font><script><!--
-
-if( browserSupported )
-	document.writeln('</div>');
-
-//--></script>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/buttons.gif b/docs/presentations/EclipseCon2008_ShortTalk_files/buttons.gif
deleted file mode 100644
index 1f2c73c..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/buttons.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/filelist.xml b/docs/presentations/EclipseCon2008_ShortTalk_files/filelist.xml
deleted file mode 100644
index 79cd664..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/filelist.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:File HRef="master03.html"/>
- <o:File HRef="master03.xml"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="master03_image001.jpg"/>
- <o:File HRef="master03_image002.jpg"/>
- <o:File HRef="master15.html"/>
- <o:File HRef="master15.xml"/>
- <o:File HRef="master02.html"/>
- <o:File HRef="pres.xml"/>
- <o:File HRef="slide0001.html"/>
- <o:File HRef="master15_image003.gif"/>
- <o:File HRef="master15_image004.gif"/>
- <o:File HRef="slide0010.html"/>
- <o:File HRef="master03_image005.gif"/>
- <o:File HRef="master03_image006.gif"/>
- <o:File HRef="slide0011.html"/>
- <o:File HRef="slide0012.html"/>
- <o:File HRef="slide0013.html"/>
- <o:File HRef="slide0014.html"/>
- <o:File HRef="slide0015.html"/>
- <o:File HRef="slide0016.html"/>
- <o:File HRef="slide0017.html"/>
- <o:File HRef="slide0018.html"/>
- <o:File HRef="slide0031.html"/>
- <o:File HRef="slide0019.html"/>
- <o:File HRef="slide0020.html"/>
- <o:File HRef="slide0021.html"/>
- <o:File HRef="slide0022.html"/>
- <o:File HRef="slide0023.html"/>
- <o:File HRef="slide0024.html"/>
- <o:File HRef="slide0027.html"/>
- <o:File HRef="slide0025.html"/>
- <o:File HRef="slide0028.html"/>
- <o:File HRef="slide0026.html"/>
- <o:File HRef="slide0029.html"/>
- <o:File HRef="slide0030.html"/>
- <o:File HRef="master01.html"/>
- <o:File HRef="master03_stylesheet.css"/>
- <o:File HRef="master15_stylesheet.css"/>
- <o:File HRef="script.js"/>
- <o:MainFile HRef="../EclipseCon2008_ShortTalk.html"/>
- <o:File HRef="fullscreen.html"/>
- <o:File HRef="buttons.gif"/>
- <o:File HRef="frame.html"/>
- <o:File HRef="outline.html"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/frame.html b/docs/presentations/EclipseCon2008_ShortTalk_files/frame.html
deleted file mode 100644
index f7b5934..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/frame.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<title>What's New in MDT?</title>
-<![if !ppt]><script src=script.js></script><script>
-<!--
-var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
-function Load()
-{
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(str) PPTSld.location.replace(escape(str));
-}
-//-->
-</script>
-<![endif]>
-</head>
-
-
-<frameset rows="*,25" border=0>
- <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust framespacing=1 frameborder=1>
-  <frame src=outline.html title="Outline" name=PPTOtl>
-  <frame src=slide0001.html title="Slide" name=PPTSld>
- </frameset>
- <frameset cols="25%,*" framespacing=1>
-  <frame src=outline.html title="Outline
-Navigation Bar" name=PPTOtlNav scrolling=no noresize>
-  <frame src=outline.html title="Slide
-Navigation Bar" name=PPTNav scrolling=no noresize>
- </frameset>
-</frameset>
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/fullscreen.html b/docs/presentations/EclipseCon2008_ShortTalk_files/fullscreen.html
deleted file mode 100644
index fca3f17..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/fullscreen.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<script src=script.js></script><script><!--
-var SCREEN_MODE   = "FullScreen";
-function Load() {
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(!str) str = "slide0001.html";
-	PPTSld.location.replace(MHTMLPrefix+escape(str));
-}
-function Unload() {
-	if ( document.body.PPTSldFrameset != null )
-		document.body.PPTSldFrameset.frames[1].document.body.resume();
-}
-//-->
-</script>
-</head>
-
-<frameset rows="*" frameborder=0 onload="Load()" onunload="Unload()">
- <frame name=PPTSld>
-</frameset>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master01.html b/docs/presentations/EclipseCon2008_ShortTalk_files/master01.html
deleted file mode 100644
index 2a8796a..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master01.html
+++ /dev/null
@@ -1,1258 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="26"/>
-</o:shapelayout>
-</head>
-
-<body>
-<v:background id="_x0000_s26625" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s26626" style='position:absolute;left:0;
- top:0;width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAEyX
-3WqhAwAAXQgAABAAAABkcnMvc2hhcGV4bWwueG1srFXNbuM2EL4X6DsQvBZZW0aymxirLJKg2RZw
-AyPOomeKoiLWFKmSlH9yzD5P0QIt0EveJg+QV+jMUIrdoiiKuj7IQ3I4P983nHn/YdMYtlI+aGdz
-nr0Zc6asdKW29zn/dHd9dMpZiMKWwjircr5VgX84//KL9+00tAwu2zBtc17H2E5HoyBr1YjwxrXK
-wlnlfCMiLP39qPUqKBtFBEeNGU3G47ejRmjLz8GUXS3auUdJ3qzmnuky5yfZZMKZFQ14vVUSYrg3
-imXjyVs+6jXTJQGRzJxchj4c8W/CKb1YQ45/ioRZ99FDMhm4dVc1OFQX3rt1rUQZcBv8jijEIVoL
-wWIsbc3itoVA69IDXg85/7ETPirfX0l6cHeXaICEWbH+zpVwTXTRARBiuql8c2gaaMdVFdvkHNjc
-4hcCF1O1iUzC5uTsXXY6hiMJZ8cn74AKCjN5R83Wh/hRuYMjYWgo5x7Yo+zEahYigrhzge6su9bG
-HJo25WjsoWbYOudnJ5MTCjhFRpYbDXQyo5ucA3jwS6BibXxtS1KJQpskQ4LGUrEgzVghcXPpyi1m
-W8A/UJ+ezn+vVXizAG3t/ANnay+gbAPWnOLMfGuhWs+y42PgONKCWObM758U+ye2a66codIXVoLV
-nEfOkngVYYXl4ppWxJldtBIVh0K523wvfNtTHaHIbtyiFq36O8aTLhVAggGNmBAXcQtv+0BIyNbK
-ZIS4mJaqugWc8TFmuxI3gwJS1DumTP4P7/ikG+FnBBcItySAS/rXtoQGSKIw99BtDWcQ5J0oFhAj
-8QUo+5i0lZjZS78k9crZeEFXChGQYeiidneMnQp62byzkswTEEgTCqGVcxnZSiC7r4VLBbrTuFTV
-X3WHngD3d6cXVfwHvf606K6Mv9vQkyi6xcOreA1pvC5uYJz0r6ZIXWGgDHaxQeC7gaZly7nwAplc
-do1u3A86gQo551zZo0+L1HCJY1YkpOnb5dyCE5xfXi+hy1q3IImzpfI47bAsmMS30ytiZcOWxbll
-9IP6hpYIutE4/ehs7p2rUMb48JkPHSwFnnaCM7rEtkZ44VhUgEqiIW7SKAFy9rVUVUGjHLDoZrbH
-qkMzvUzM06yphISALrwWUEayFj4oIp8wVWJP5+Xpp5enX9nL0y/Pj789P/7+/Pnz8+PPnLU6yvpa
-NNrAHDhFJAYrR9nkNLU3GfYMfdXYIxn6WbEjJtFF3W7ocjDpQnv+BwAAAP//AwBQSwMEFAAGAAgA
-AAAhAEGTug/ZAAAA/AAAAA8AAABkcnMvZG93bnJldi54bWxEj0tLAzEUhfeC/yFcwU2xSQcfZWxa
-aqkodFGmCm6vkzsPnNwMSezM/HuDC10ezuE7fKvNaDtxJh9axxoWcwWCuHSm5VrD+9vzzRJEiMgG
-O8ekYaIAm/XlxQpz4wYu6HyKtUgQDjlqaGLscylD2ZDFMHc9ceoq5y3GFH0tjcchwW0nM6XupcWW
-00ODPe0aKr9O31ZDVRwPalZ9PPHR3mazByW3k6u0vr4at48gIo3xfzyo/W65/yt/Ua9Gw90iy0BU
-L9Onb02BIZLXkPSSbBIFuf4BAAD//wMAUEsBAi0AFAAGAAgAAAAhAFrjEWb+AAAA4gEAABMAAAAA
-AAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEAMd1fYdIAAACP
-AQAACwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEATJfdaqEDAABd
-CAAAEAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQABgAIAAAAIQBBk7oP
-2QAAAPwAAAAPAAAAAAAAAAAAAAAAAPkFAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAQABAD1AAAA
-/wYAAAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s26626">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s26627" style='position:absolute;left:306pt;top:0;
- width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAEHu
-IuGfAwAAZggAABAAAABkcnMvc2hhcGV4bWwueG1srFXNbtw2EL4X6DsQvBbO/sSO14vIgW3UaYGN
-sfA66HkkUZa6FKmS1P746DxP0QINkIvfxg/gV+jMUPK6QVEU3e5BOxKHM9988/f23abWYqWcr6xJ
-5OjVUAplMptX5jaRH28uDyZS+AAmB22NSuRWefnu9Ntv3jZT3wi8bPy0SWQZQjMdDHxWqhr8K9so
-g2eFdTUEfHW3g8Ypr0yAgI5qPRgPh28GNVRGnqIps1o0c0dSdrWaO1HliTwajV9LYaBGr9cqQwy3
-WonRcHwsB51mvASIZGazpe/gwL+BkztYY4x/QSKMfe8wmBG6tRclOlRnztl1qSD39Bn9Dhhij9Yg
-WMLSlCJsGwSaB4ngNzvlqIG3diF6DFWk6w82xwvQBosUwHRTuHrfAMiOLQqB/l9PJm+QYym2iRwS
-cJiqTRAZHo1PjkcTOsrw7PDomNQosoiBNBvnw3tl98YjyFAiHWaPY4TVzIfoqndB7oy9rLTeN3iO
-UZt9zYh1Ik+OxkcMOCJjy3UVlBO6qhOJ5OEvkkq18b3JWSVApaOMXGrDxULJpgoJm3ObbynaFP+x
-AGLr/PdaxZ5Fakvr7qRYO8Cy9b+04JQU+keD1XoyOjzEHAd+4SxL4V6epC9PTFtfWM2lDyZDq4nE
-So7iRcA3KhdbNxBmZtFkpNgXys3mJ3BNl+qARXZlFyU06u8yHnW51iINZET7sAhb7O09KWFbKz2i
-9gJ9i+PMMYZcFdf4yd8h6l2t66jJWHoEHNL/AYMg1OBmzBsK1yygS/6vTI6TkMUep0CQN5AuECMn
-Dul2IWormJlzt2T1wppwxqGl4CnVOE7N7phGFg61eWsyNs+MUL5I8E02z4JYAaX5uYK5Unca56r4
-WrcfDnh/d3pWhH/Q607T9kK7mw33Rtou7p7FSwzj+eUK90rXPmkcDzCNKcOvCI8bCKeXyefggDK5
-bOuqtj9XkVSMOZHKHHxc4KbqcyzSyDQ/20QadEKLzFVLHLrGLliSYqkcrT2elBk1UadIJY45MLTA
-dHWnfuBXIl1XtAb5bO6sLUiOPNPzeWB0EwBpt7rKab4xX7QfFbIS0xA2cad8paWKAidmz0U7Mx1X
-LZnpZM48L50CMgR05irQ2KMlOK84+cypghc6Tw+/Pj38IZ4efn+8//x4/+Xx06fH+9+kaKqQlZdQ
-VxoXwoQ6vbdyMBpP4pzL/AtD39XmIPPd0tglJqYLn7txh6JvTv8EAAD//wMAUEsDBBQABgAIAAAA
-IQDYuoyt2AAAAPwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9LS8QwFIX3gv8hXMHN4CRTn9TJDKMg
-CoMMrYLba3P7wOamJLHT/nuDC10ezuE7fOvtZHsxkg+dYw2rpQJBXDnTcaPh/e3p4g5EiMgGe8ek
-YaYA283pyRpz445c0FjGRiQIhxw1tDEOuZShasliWLqBOHW18xZjir6RxuMxwW0vM6VupMWO00OL
-Az22VH2V31ZDXRz2alF/PPDBXmWLWyV3s6u1Pj+bdvcgIk3xf/wqS9WMf+Uv6sVouF5llyDq5/nT
-d6bAEMlrSHpJNomC3PwAAAD//wMAUEsBAi0AFAAGAAgAAAAhAFrjEWb+AAAA4gEAABMAAAAAAAAA
-AAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEAMd1fYdIAAACPAQAA
-CwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEAQe4i4Z8DAABmCAAA
-EAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQABgAIAAAAIQDYuoyt2AAA
-APwAAAAPAAAAAAAAAAAAAAAAAPcFAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAQABAD1AAAA/AYA
-AAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="dateTime" position="1"/></v:shapetype>
-
-<div v:shape="_x0000_s26627">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O style='text-align:right'><span style='font-size:50%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_m26628" style='position:absolute;left:90pt;top:54pt;
- width:5in;height:270pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
- filled="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" rotation="t" aspectratio="t" text="t" grouping="t"/>
- <p:placeholder type="slideImage" position="2"/></v:shapetype><v:shapetype
- id="_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
- height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'
- coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAECK
-I4cpBAAALxYAABAAAABkcnMvc2hhcGV4bWwueG1s7FjBbuM2EL0X6D8QvBZZW7az6zVWWSRBsy3g
-BkacRY8BLVGxGopUScpxcsx+T9ECu0Av+Zt8QH6hb0g5cYI9FJsih8YOII/M4XDmzbyZSO/eLyvF
-FtK60uiUJ6+6nEmdmbzUpyn/eHywNeTMeaFzoYyWKb+Qjr/f+f67d/XI1QybtRvVKZ97X486HZfN
-ZSXcK1NLjbXC2Ep43NrTTm2lk9oLj4Mq1el1u687lSg134EpvZjWE0tSdriYWFbmKd9OetucaVHh
-1COZwYdTJVnS7b3lnVYzbhLwZGyyM9e6I/6NO7kV54jxgSdMmw8WwSQ41uzPcaDctdacz6XIHf2M
-czvBxZW3Gs6SL/Wc+Ysajs5MfgHALlP+eyOsl5YjlmXK++3euAFG7iN2iJzNzn8xOfaLxhsgIkbL
-wlZPjYfsmKJgOP9tMhh0kduLlA/6+IOMYMRILj3LsL4NWJESzjLSSJLBMGp0oiekWlvnP0jzZK8Y
-GUq5RUpDpGIxdp6QvT+CjtPmoFTqqRCEIJV+qhl2Dgi3UY/3ngXLVYkUM1VWKQdg+ERUqWB+1HlQ
-8aJUUUaASocKopRT2fjlHuqFbFLdoAwin769gEFkQDs39pKzcytQy47qUHKmftYo4VAGnPlwM9h+
-00PG7frKbH1FN9W+UYEPQmewmnLPWRT3Pe6oXkxVCz/W0zojxVWhHC9/FbZuU+1RZYdmOhe1/FrG
-o24ogAgDGVHOT/0FCP9ESEIOVo3qm4ENYSE/lbDjEDaEoyCoBQACDqXO0d2CKNQpWqniLJfFsZhN
-0QxW9LM+aksx1nv2LEBbGO13w5aZcJQptEjdLsMwtSE0qkmjM5iPCCuCm3xydTbJPFsIytJdAYZC
-u9fYk8Vj3f6qVqEKG/cau4V/rBtqOuq1q7NmX9njZYB21kwv78QDhHJ3c4h50TJgFhkuRkDkaGLx
-K+wFDogRiIALsD1rqrIyv5URVkSdcqm3Pk5jO01Cd5pFrMO1SbnGETSebHmG3qnNNEicnUlLwyw2
-NGJBq0g1Ckg1jSVVXsqfwi3BrkoabmFtYo0pguwqv6+kgKluqFti76oxxRjiL86oMqduFaCjESgB
-UMyKX8axAZzXtWRRoP+tYGnGuoWtITOtHAohzJVCZPBu15YCVZXNhXUylFqAV4o1ndvrP26vP7Pb
-679urr7cXP198+nTzdWfnNWlz+YHoioV+vsQcd5Z2Up6w9i1Mrdm6IdKb2WOFpAqpIdC8zvsBB9c
-4ne4tjItnJyQMgqItsQc07b/mH2hbSGChxTEzN5QcDRrNhQE0/73FIykexa6rUbXQ7r1NnRDZ9vQ
-7cVMvGcabkn/TfKansMe0q2/oduGbi/mH8xnnG7JsDekVx2P+DbY8G3DtxfDt/gc95VnN7ynXL2i
-gujqnX8AAAD//wMAUEsDBBQABgAIAAAAIQAo+YAs2QAAAPwAAAAPAAAAZHJzL2Rvd25yZXYueG1s
-RI9RS8MwFIXfB/6HcAVfhktXnEpdNqYgE/Ywug18vTY3bbG5qUnc2n9v8EEfD+fwHb7lerCdOJMP
-rWMF81kGgrhyuuVawen4evsIIkRkjZ1jUjBSgPXqarLEQrsLl3Q+xFokCIcCFTQx9oWUoWrIYpi5
-njh1xnmLMUVfS+3xkuC2k3mW3UuLLaeHBnt6aaj6PHxbBabc77KpeX/mvb3Lpw+Z3IzOKHVzPWye
-QEQa4v/4hMet+forf1FvWsFini9AmO344VtdYojkFSS9JJtEQa5+AAAA//8DAFBLAQItABQABgAI
-AAAAIQBa4xFm/gAAAOIBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsB
-Ai0AFAAGAAgAAAAhADHdX2HSAAAAjwEAAAsAAAAAAAAAAAAAAAAALwEAAF9yZWxzLy5yZWxzUEsB
-Ai0AFAAGAAgAAAAhAECKI4cpBAAALxYAABAAAAAAAAAAAAAAAAAAKgIAAGRycy9zaGFwZXhtbC54
-bWxQSwECLQAUAAYACAAAACEAKPmALNkAAAD8AAAADwAAAAAAAAAAAAAAAACBBgAAZHJzL2Rvd25y
-ZXYueG1sUEsFBgAAAAAEAAQA9QAAAIcHAAAAAA==
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="body" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_m26629">
-
-<div class=N>Click to edit Master text styles&#13;</div>
-
-<div class=N1>Second level&#13;</div>
-
-<div class=N2>Third level&#13;</div>
-
-<div class=N3>Fourth level&#13;</div>
-
-<div class=N4>Fifth level</div>
-
-</div>
-
-<v:shapetype id="_x0000_s26630" style='position:absolute;left:0;top:684pt;
- width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:bottom' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAFSM
-bIWrAwAAawgAABAAAABkcnMvc2hhcGV4bWwueG1srFXbTiQ3EH2PlH+w/BqxcwmwMNpmBShsIs2i
-EcMqz9XdbsYZt92x3XPhkf2e1UZKpLzwN3wAv5Cqcg8ziVarKBOQoNwu1+Wcurx5u6qNWCgftLOZ
-HLzqS6Fs4Upt7zL54fbq4ESKEMGWYJxVmVyrIN+effvNm2YUGoGPbRg1mZzF2Ix6vVDMVA3hlWuU
-xbvK+RoiHv1dr/EqKBshoqPa9Ib9/nGvBm3lGZqyi2kz8SQV14uJF7rM5NFgeCyFhRq93qgCY7gz
-Sgz63/dlr9NMjwAjGbtiHrpw4N+EU3pYYo5/i0RY985jMgN06y5n6FCde++WMwVloM/ot8chbqK1
-GCzF0sxEXDcYaBU94nWfyV9b8FHhQZerTB52T5M+2tgmHDBxkS/fuxKfQxsdAgKjVeXrfdMhO66q
-BPpHVteZPDnG3z7DByO1iqLAq+Hp6wF9FAVqHB69RmI42BQD2Wh8iO+U2zseQYYy6ZFLzhEW4xAJ
-0q0LcmfdlTZm3+TRLoyM3deMWGby9Gh4xAGnyNhyrZFcYXSNqPbphzCDEVXKD7ZkOYI2ScYEjeXS
-IbKpXuLqwpVrepHjfyyA1Ej/vXKxgxHamfP3Uiw9YBEHqkAlhfnJYu2eDg4PkePIB2ZZCr97k+/e
-2La+dIYbAWyBVjOZS5HEy4gnKhdXNxDHdtoUpEi5EL+3q5/BNx3VEYvs2k1n0KgvMZ50uQASDMxZ
-iNO4xk7fExK2tTADRhxGpapuEGdqzcG2xM1GgSjqHHMm/4d3auwa/JjhQuGGBXTJ/7UtcRyyCOYO
-Z6+RAoO8hXyKMTJfiLKPSVvB2F74OatXzsZzfpJDIIZxptrtNc0tnGyT1hZsnoEgmkgITTEpolgA
-sftSuFygW40LVf1TdzMT8P329ryKX9HrbvP20vjbFbdE3k7vX8QrTOPlcI3LpeuaPE2FDWX4lQYE
-9Q0OLVtOwAMxOW9rXbtfdAIVc86ksgcfpmn8MsciT0jz3zaTFp3QNvN6jrPWuilLUsyVp91HZSEK
-6p1OkSobP1naYkbfqx/5SKAbTbuQ7ybeuYpkio/afDPBUuDpS3BGlzTWGC9akgpRSTTEVVosSM6u
-lqoqHJQbLNqx7bBqyUwnM/O8eSooMKBzrwHLqJiBD4rJZ0wV7Og8P356fvxdPD/+9vTwx9PDn08f
-Pz49fJai0bGYXUGtDW0KQmJj5WAwPEnjrQg7hr6r7UERul2xJSbRxdNuM+Vw34Xm7C8AAAD//wMA
-UEsDBBQABgAIAAAAIQAjck/g2AAAAPwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9BS8MwGIbvgv8h
-fANvLmnAMuqyMWZlXgZu8+Ita762wSYpSWyzf2/woMeX9+V5edbbZAYyoQ/aWQHFkgFB2zilbSfg
-4/L6uAISorRKDs6igBsG2G7u79ayUm62J5zOsSMZYkMlBfQxjhWloenRyLB0I9rctc4bGXP0HVVe
-zhluBsoZK6mR2uaHXo6477H5On8bAVPJ48tVfx6P70Vb8+KQPGdJiIdF2j0DiZji/3hm9X5V/5W/
-qDcl4KngJZD2cLt6rU4yRPQCsl6WzaJANz8AAAD//wMAUEsBAi0AFAAGAAgAAAAhAFrjEWb+AAAA
-4gEAABMAAAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEA
-Md1fYdIAAACPAQAACwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEA
-VIxshasDAABrCAAAEAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQABgAI
-AAAAIQAjck/g2AAAAPwAAAAPAAAAAAAAAAAAAAAAAAMGAABkcnMvZG93bnJldi54bWxQSwUGAAAA
-AAQABAD1AAAACAcAAAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="footer" position="4" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s26630">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s26631" style='position:absolute;left:306pt;top:684pt;
- width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:bottom' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhABpN
-DvS6AwAAiAgAABAAAABkcnMvc2hhcGV4bWwueG1srFXbbhs3EH0vkH8g+Bo40iq+yELWgW3EaQHV
-ECwHfebucq2NuOSW5OriR+d7ihZIgL74b/wB/oWeIVeWWhRFUdUGVkNyOHPmzIXv3q9qxRbSusro
-lCdv+pxJnZui0ncp/3R7dTDkzHmhC6GMlilfS8ffn7367l0zcg3DZe1GTcpn3jejXs/lM1kL98Y0
-UuOsNLYWHkt712usdFJ74eGoVr1Bv3/cq0Wl+RlM6cW0mViS8uvFxLKqSPlRMjjhTIsaXm9kDgx3
-SrKk/zbhvU4zXhJAMjb53HVwxL+BU1ixRIx/QsK0+WgRTAK35nIGh/LcWrOcSVE42obfXoC4QasB
-lrA0M+bXDYA6VVy3NSi7T/nPrbBeWo5oVginux2vwMw2ZofYWbb80RSwIFpvwIkYrUpb7xsR2TFl
-yeD/7XB4DNI5W6d8eIx/yIhHjOTKsxwKg9OThDZZDo3DoxNSpoAjEtJsrPMfpdkbFSNDKbdIaohU
-LMbOR1cbF+ROm6tKqX0pCDEqva8Ztkz56dHgKACOyILlukKKmapqsNqnv0gqlcwHXQQVLyoVZXCp
-dKghSjkVjl9dmGJN0Wb4RRnEjvrvJYxWBrUzY+85W1qBanZUh5Iz9YNGEZ8mh4fIsQ+LkGXO7O5J
-tnui2/rSqNARQuewmvKMsyheeqyoXEzdCD/W0yYnxU2h3K5+ErbpUu1RZNdmOhON/LuMR91Qa5EG
-MqKcn/o1Wn5PSoKthUqoyYS6w5SzAUMhyxtsUacm21pXUTNg2SAIIf0fMAhCLew48AbhJghwGX4r
-XWBABnGDkwHkrcimwBgSB7qtj9pSjPWFnQf10mh/HkLLhKNUY8rq7TFNMsy6SavzYD4wQvkiwTX5
-JPdsISjNLxUcKnWrcSHLv+puhgPub0/PS/8Pet1p1l4qe7sKvZG10/sX8QphvCyu8dx07ZPF8SBG
-MWXYBbzQQGKELsIHvM7buqrN5ypSiohTLvXBp2mcxSHDLIs8h2+bcg0X9LrZao7Bq800SJzNpaW3
-MEzLnFqoU6QCRwY0vWqqupffhyVRrip6G8PZxBpTkkzAqNs3gyzCjjvOqKqg6RbYokdTgpOYBL+K
-Dw1Ss6slyxLzcsNEO9YdUy2Z6eSQ9/ASlSIHoHNbCYUOnQnrZEh9YFSKHZ3nx1+eH7+y58ffnh6+
-PT38/vTly9PDr5w1lc9nV6KuFD0Y1OcbKwfJYBinXO52DL2u9UHuuicDGaHQ/BljjLKFssAXe5Q5
-fLeTD6Jrzv4AAAD//wMAUEsDBBQABgAIAAAAIQBcOt0g2AAAAPwAAAAPAAAAZHJzL2Rvd25yZXYu
-eG1sRI/BTsMwEETvSPyDtUjcqBNLLSjUrRAUhUsFKVy4beNNYhHbkW1S9++xOMBxNKM3euttMiOb
-yQftrIRyUQAj2zqlbS/h4/355g5YiGgVjs6ShDMF2G4uL9ZYKXeyDc2H2LMMsaFCCUOMU8V5aAcy
-GBZuIpu7znmDMUffc+XxlOFm5KIoVtygtvlhwIkeB2q/Dt9GwrwS8emoP/f7t7LbibJOXhRJyuur
-9HAPLFKK/+P6dbds5r/yF/WiJCxLcQusq89Hr1WDIZKXkPWybBYFvvkBAAD//wMAUEsBAi0AFAAG
-AAgAAAAhAFrjEWb+AAAA4gEAABMAAAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQ
-SwECLQAUAAYACAAAACEAMd1fYdIAAACPAQAACwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQ
-SwECLQAUAAYACAAAACEAGk0O9LoDAACICAAAEAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1s
-LnhtbFBLAQItABQABgAIAAAAIQBcOt0g2AAAAPwAAAAPAAAAAAAAAAAAAAAAABIGAABkcnMvZG93
-bnJldi54bWxQSwUGAAAAAAQABAD1AAAAFwcAAAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="slideNumber" position="5" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s26631">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O style='text-align:right'><span style='font-size:50%'>‹#›</span></div>
-
-</div>
-
-<p:notes id="1" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="27"/>
- </o:shapelayout><v:shapetype id="_x0000_t202" coordsize="21600,21600" o:spt="202"
-  path="m,l,21600r21600,l21600,xe">
-  <v:stroke joinstyle="miter"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
- </v:shapetype><v:shape id="_x0000_s27650" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s27651" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s27652"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s27650">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>1</span></div>
- </div>
- <div v:shape="_x0000_s27652">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="10" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="28"/>
- </o:shapelayout><v:shape id="_x0000_s28674" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s28675" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s28676"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s28674">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>2</span></div>
- </div>
- <div v:shape="_x0000_s28676">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="11" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="29"/>
- </o:shapelayout><v:shape id="_x0000_s29698" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s29699" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s29700"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s29698">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>3</span></div>
- </div>
- <div v:shape="_x0000_s29700">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="12" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="30"/>
- </o:shapelayout><v:shape id="_x0000_s30722" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s30723" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s30724"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s30722">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>4</span></div>
- </div>
- <div v:shape="_x0000_s30724">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="13" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="31"/>
- </o:shapelayout><v:shape id="_x0000_s31746" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s31747" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s31748"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s31746">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>5</span></div>
- </div>
- <div v:shape="_x0000_s31748">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="14" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="32"/>
- </o:shapelayout><v:shape id="_x0000_s32770" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s32771" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s32772"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s32770">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>6</span></div>
- </div>
- <div v:shape="_x0000_s32772">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="15" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="33"/>
- </o:shapelayout><v:shape id="_x0000_s33794" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s33795" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s33796"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s33794">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>7</span></div>
- </div>
- <div v:shape="_x0000_s33796">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="16" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="34"/>
- </o:shapelayout><v:shape id="_x0000_s34818" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s34819" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s34820"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s34818">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>8</span></div>
- </div>
- <div v:shape="_x0000_s34820">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="17" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="35"/>
- </o:shapelayout><v:shape id="_x0000_s35842" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s35843" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s35844"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s35842">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>9</span></div>
- </div>
- <div v:shape="_x0000_s35844">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="18" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="36"/>
- </o:shapelayout><v:shape id="_x0000_s36866" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s36867" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s36868"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s36866">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>10</span></div>
- </div>
- <div v:shape="_x0000_s36868">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="31" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="37"/>
- </o:shapelayout><v:shape id="_x0000_s37890" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s37891"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s37892"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s37891">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s37892">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>11</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="19" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="38"/>
- </o:shapelayout><v:shape id="_x0000_s38914" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s38915" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s38916"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s38914">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>12</span></div>
- </div>
- <div v:shape="_x0000_s38916">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="20" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="39"/>
- </o:shapelayout><v:shape id="_x0000_s39938" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s39939" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s39940"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s39938">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>13</span></div>
- </div>
- <div v:shape="_x0000_s39940">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="21" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="40"/>
- </o:shapelayout><v:shape id="_x0000_s40962" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s40963" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s40964"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s40962">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>14</span></div>
- </div>
- <div v:shape="_x0000_s40964">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="22" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="41"/>
- </o:shapelayout><v:shape id="_x0000_s41986" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s41987" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s41988"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s41986">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>15</span></div>
- </div>
- <div v:shape="_x0000_s41988">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="23" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="42"/>
- </o:shapelayout><v:shape id="_x0000_s43010" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s43011" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s43012"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s43010">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>16</span></div>
- </div>
- <div v:shape="_x0000_s43012">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="24" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="43"/>
- </o:shapelayout><v:shape id="_x0000_s44034" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s44035" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s44036"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s44034">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>17</span></div>
- </div>
- <div v:shape="_x0000_s44036">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="27" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="44"/>
- </o:shapelayout><v:shape id="_x0000_s45058" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s45059" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s45060"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s45058">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>18</span></div>
- </div>
- <div v:shape="_x0000_s45060">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="25" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="45"/>
- </o:shapelayout><v:shape id="_x0000_s46082" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s46083" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s46084"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s46082">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>19</span></div>
- </div>
- <div v:shape="_x0000_s46084">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="28" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="46"/>
- </o:shapelayout><v:shape id="_x0000_s47106" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s47107" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s47108"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s47106">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>20</span></div>
- </div>
- <div v:shape="_x0000_s47108">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="26" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="47"/>
- </o:shapelayout><v:shape id="_x0000_s48130" type="#_x0000_t202" style='position:absolute;
-  left:306pt;top:684pt;width:234pt;height:36pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:bottom' filled="f" stroked="f">
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape><v:shape id="_x0000_s48131" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s48132"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s48130">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>21</span></div>
- </div>
- <div v:shape="_x0000_s48132">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="29" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="48"/>
- </o:shapelayout><v:shape id="_x0000_s49154" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s49155"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s49156"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s49155">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s49156">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>22</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes><p:notes id="30" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="49"/>
- </o:shapelayout><v:shape id="_x0000_s50178" type="#_x0000_m26628" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt;visibility:visible;
-  mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="t" aspectratio="t" position="f" selection="f"
-   verticies="f" text="t" adjusthandles="f" grouping="t" shapetype="f"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s50179"
-  type="#_x0000_m26629" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt;visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="t"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:shape id="_x0000_s50180"
-  type="#_x0000_t202" style='position:absolute;left:306pt;top:684pt;width:234pt;
-  height:36pt;visibility:visible;mso-wrap-style:square;v-text-anchor:bottom'
-  filled="f" stroked="f">
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" grouping="t"/>
-  <v:textbox style='mso-rotate-with-shape:t'/>
- </v:shape>
- <div v:shape="_x0000_s50179">
- <div class=N1 style='mso-margin-left-alt:468'></div>
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='mso-special-format:lastCR'>&#13;</span></div>
- </div>
- <div v:shape="_x0000_s50180">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='text-align:right'><span style='font-size:50%'>23</span><span
- style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
- </div>
-</p:notes>
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master02.html b/docs/presentations/EclipseCon2008_ShortTalk_files/master02.html
deleted file mode 100644
index af5af5e..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master02.html
+++ /dev/null
@@ -1,275 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="50"/>
-</o:shapelayout>
-</head>
-
-<body>
-<v:background id="_x0000_s51201" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s51202" style='position:absolute;left:0;
- top:0;width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAAjt
-I8SfAwAAWggAABAAAABkcnMvc2hhcGV4bWwueG1srFXNbhs3EL4X6DsQvBaOfmrXtpB1YBt1WkA1
-BMtBz1wu18uKS25Jrn58dJ6nSIAE6MVv4wfwK3RmuGupRVEUUXRYDcnh/HzfcOb1m3Vt2FL5oJ3N
-+OjVkDNlpSu0vcv4u9urgxPOQhS2EMZZlfGNCvzN2bffvG4moWFw2YZJk/EqxmYyGARZqVqEV65R
-Fs5K52sRYenvBo1XQdkoIjiqzWA8HP4wqIW2/AxM2eW8mXmU5PVy5pkuMv798PiQMytq8HqjJMRw
-ZxQb80Gnlm4ICGPq5CJ0sYj/E0vhxQoS/FsYzLq3HjIZgU93WYE3de69W1VKFAG3we+A4utDtRAp
-xtJULG4aiLIqPIB1n/HfW+Gj8t2VpAd3t1kGyJblq19cAddEGx2gICbr0tf7poF2XFmydcaByg1+
-IXAxUevIJGyOT49HJ0M4knB2eHQMPFCYyTtqNj7Et8rtHQlDQxn3QB1lJ5bTEBHErQt0Z92VNmbf
-tClHY/c1w1YZPz0aH1HAKTKyXGugkxldZxzAg18CFWvjR1uQShTaJBkSNJaKBWnGConrC1dsMNsc
-/oH69G6+vFbhwQK0lfP3nK28gLINWHOKM/OzhWo9HR0eAseRFsQyZ373JN89sW196QyVvrASrGY8
-cpbEywgrLBdXNyJO7byRqNgXyu36V+GbjuoIRXbt5pVo1L8xnnSpABIMaMSEOI8beNh7QkK2lmZE
-iItJocobwBkf42hb4qZXQIo6x5TJ1/COT7oWfkpwgXBDArikf20L6H4kCnMHrdZwBkHeinwOMRJf
-gLKPSVuJqb3wC1IvnY3ndCUXARmGFmq3x9ipoJfNWivJPAGBNKEQGjmTkS0FsvtSuFSgW40LVf5T
-t+8JcH97el7G/9DrTvP20vjbNT2JvJ3fv4hXkMbL4hpmSfdq8tQVespgFxsEvhtoWraYCS+QyUVb
-69r9phOokHPGlT14N08NlzhmeUKavm3GLTjB4eX1ArqsdXOSOFsoj6MOy4JJfDudIlY2bFkcWkbf
-q59oiaAbjaOPzmbeuRJljA+fed/BUuBpJzijC2xrhBfORAWoJBriOo0SIGdXS5UlNMoei3ZqO6xa
-NNPJxDzNmlJICOjcawFlJCvhgyLyCVMldnSeH/94fvzEnh8/Pj18fnr48+n9+6eHD5w1OsrqStTa
-wBw4QSR6Kwej8UlqbzLsGPqutgcydLNiS0yii7pd3+Vg0oXm7C8AAAD//wMAUEsDBBQABgAIAAAA
-IQBk9XX02QAAAPwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9NSwMxFEX3gv8hPMFNsYm12DI2LbVU
-FFyUqYLb5+TNB05ehiR2Zv59g4u6vNzLuZzVZrCtOJEPjWMN91MFgrhwpuFKw+fHy90SRIjIBlvH
-pGGkAJv19dUKM+N6zul0jJVIEA4Zaqhj7DIpQ1GTxTB1HXHqSuctxhR9JY3HPsFtK2dKPUqLDaeH
-Gjva1VT8HH+thjI/vKtJ+fXMBzufTRZKbkdXan17M2yfQEQa4v+4V/vdcn8p/1BvRsODWsxBlK/j
-t29MjiGS15D0kmwSBbk+AwAA//8DAFBLAQItABQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAAAAA
-AAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0AFAAGAAgAAAAhADHdX2HSAAAAjwEA
-AAsAAAAAAAAAAAAAAAAALwEAAF9yZWxzLy5yZWxzUEsBAi0AFAAGAAgAAAAhAAjtI8SfAwAAWggA
-ABAAAAAAAAAAAAAAAAAAKgIAAGRycy9zaGFwZXhtbC54bWxQSwECLQAUAAYACAAAACEAZPV19NkA
-AAD8AAAADwAAAAAAAAAAAAAAAAD3BQAAZHJzL2Rvd25yZXYueG1sUEsFBgAAAAAEAAQA9QAAAP0G
-AAAAAA==
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s51202">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s51203" style='position:absolute;left:306pt;top:0;
- width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAPnM
-LkWkAwAAcAgAABAAAABkcnMvc2hhcGV4bWwueG1srFXNbhs3EL4X6DsQvBaOJP/EspB1YBt1WkAx
-BMtBz6NdrpcVl9ySXP346DxP0QIt0Ivfxg/gV+jMcGW5QREEUXRYzS6HM9988/fm7ao2YqF80M5m
-cvCqL4WyuSu0vc3kh5vLvaEUIYItwDirMrlWQb49/f67N80oNAIv2zBqMlnF2Ix6vZBXqobwyjXK
-4lnpfA0RX/1tr/EqKBshoqPa9Pb7/de9GrSVp2jKLqbNxJOUXy0mXugikwf94yMpLNTo9VrliOHW
-KHEge51augEIY+zyeeiwwJdgKTwsMcD/wBDWvfMYyQB9uosKvakz792yUlAE+ox+e4xvA9UiUsLS
-VCKuG0RZROTqLpO/teCj8hLDWG1vJnU0sQ02YNBitnzvCrwNbXRIBoxWpa93jYbsuLIU6P9gOHyN
-bEuxzmSfooCRWkWR49H+yfFgSEc5nh0eHZMahZkwkGbjQ3yn3M54BBnKpMc8coywGIeYXG1ckDvr
-LrUxuwbPMRq7qxmxzOTJ0f4RA07I2HKtMbnC6DqTSB7+EqlUKD/aglUiaJNk5NJYrhxKNpVLXJ27
-Yk3RzvAfCyA10dcXLnYvUls5fyfF0gPWcKAKVFKYny2W7sng8BBzHPmFsyyFf3kye3li2/rCGe4D
-sDlazSSWdRIvIr5Rubi6gTi20yYnxU2h3Kx+Ad90qY5YZFduWkGj/i/jSZdrLdFARkyI07jGLt+R
-Era1MANqLzC3ONg8YyhUeY2fqEcH21o3SZOxbBBwSN8CBkGowY+ZNxSuWUCX/K9tgTORxQ1OgSBv
-YDZFjJw4pNvHpK1gbM/9nNVLZ+MZhzaDQKnGwWq3xzS/cMJNWpuzeWaE8kVCaPJJHsUCKM3PFcyV
-utU4V+WnupvhgPe3p2dl/IxedzprL4y/WXFvzNrp3bN4iWE8v1zhhunaZ5bGA4xSyvArwuMGwull
-iwl4oEzO21rX7ledSMWYM6ns3odpmsOcYzFLTPOzzaRFJ7TSvJ7j0LVuypIUc+VpAfKkzKmJOkUq
-ccyBpVVm9J36iV+JdKNpIfLZxDtXkpx4pufzwOgmANLujC5ovjFftCkVspLSEFdpwXyipcoSJ+aG
-i3ZsO65aMtPJnHneQCXkCOjMazDYoxX4oDj5zKmCFzpPD78/Pfwlnh7+fLz/+/H+n8ePHx/v/5Ci
-0TGvLqHWBhfCkDp9Y2VvsD9Mcy4PLwz9UNu9PHRLY5uYlC58bscdiqE5/RcAAP//AwBQSwMEFAAG
-AAgAAAAhAP3cQ1bZAAAA/AAAAA8AAABkcnMvZG93bnJldi54bWxEj0tLAzEUhfeC/yFcwU2xifVR
-GZuWKohCkTLTgtvr5M4DJzdDEqcz/97gQpeHc/gO32oz2k4M5EPrWMP1XIEgLp1pudZwPLxcPYAI
-Edlg55g0TBRgsz4/W2Fm3IlzGopYiwThkKGGJsY+kzKUDVkMc9cTp65y3mJM0dfSeDwluO3kQql7
-abHl9NBgT88NlV/Ft9VQ5fudmlUfT7y3t4vZUsnt5CqtLy/G7SOISGP8H7/LQtXDX/mLejMabtTy
-DkT1On361uQYInkNSS/JJlGQ6x8AAAD//wMAUEsBAi0AFAAGAAgAAAAhAFrjEWb+AAAA4gEAABMA
-AAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEAMd1fYdIA
-AACPAQAACwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEA+cwuRaQD
-AABwCAAAEAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQABgAIAAAAIQD9
-3ENW2QAAAPwAAAAPAAAAAAAAAAAAAAAAAPwFAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAQABAD1
-AAAAAgcAAAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="dateTime" position="1" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s51203">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O style='text-align:right'><span style='font-size:50%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s51204" style='position:absolute;left:0;top:684pt;
- width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:bottom' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhADtc
-utWlAwAAaAgAABAAAABkcnMvc2hhcGV4bWwueG1srFXbbhs3EH0v0H8g+Fo4klxfhawD26jTAooh
-WA7yzOVyvay45Jbk6uJH53uKFmiAvPhv/AH+hcwMdy21CIKiqg3Yw+VwLufM5fWbVW3YQvmgnc34
-6NWQM2WlK7S9y/j726u9E85CFLYQxlmV8bUK/M3Z99+9bsahYfDYhnGT8SrGZjwYBFmpWoRXrlEW
-7krnaxHh6O8GjVdB2SgiOKrNYH84PBrUQlt+BqbsYtZMPUryejH1TBcZ/3F4fMSZFTV4vVESYrgz
-ih3wQaeWXggIY+LkPHSxiH8TS+HFEhL8WxjMurceMhmBT3dZgTd17r1bVkoUAT+D3wHF14dqIVKM
-palYXDcQZRk9gHWf8d9a4aOCgy5WGd/vniZ9sLHJNkDWLF++cwU8F210gIYYr0pf75oO2nFlycA/
-ULrO+MkR/A6HGIsYq1VkEkM7PR7hRyZB4+DwGFihYFMMqNn4EN8qt3M8DA1l3AORlKNYTEJESDcu
-0J11V9qYXZOnHI3d1QxbZvz0cP+QAk6RkeVaA7nM6BpQHeJPAhUr5SdbkEoU2iQZEjSWSgfJxnqJ
-qwtXrDHbHP5DAaQu+u+VC+0L0FbO33O29AKKOGAFKs7MLxZq93R0cAAcRzoQy5z57Zt8+8a29aUz
-1AjCSrCa8ZyzJF5GOGG5uLoRcWJnjUTFvlBuVx+EbzqqIxTZtZtVolFfYzzpUgEkGNCICXEW19Dm
-O0JCthZmRIiLcaHKG8AZW3O0KXHTKyBFnWPK5P/wjo1dCz8huEC4IQFc0n9tC5iFJApzB4PXcAZB
-3op8BjESX4Cyj0lbiYm98HNSL52N5/QkFwEZhoFqN9c4t2CyTVsryTwBgTShEBo5lZEtBLL7UrhU
-oBuNC1X+U7efCfB+c3texm/odbd5e2n87YpaIm9n9y/iFaTxcriGzdJ1TZ6mQk8ZfMUBgX0DQ8sW
-U+EFMjlva127X3UCFXLOuLJ772dp/BLHLE9I09824xac4Crzeg6z1roZSZzNlcfFh2XBJPZOp4iV
-DZ8srjCj79XPdETQjcZFSHdT71yJMsaHbd5PsBR4+hKc0QWONcILN6QCVBINcZUWC5CzraXKEgZl
-j0U7sR1WLZrpZGKeNk8pJAR07rWAMpKV8EER+YSpEls6z4+/Pz/+xZ4f/3x6+PT08Pnp48enhz84
-a3SU1ZWotcFNgUj0VvZG+ydpvMmwZeiH2u7J0O2KDTGJLpp2/ZSDfReasy8AAAD//wMAUEsDBBQA
-BgAIAAAAIQA2XsKS2AAAAPwAAAAPAAAAZHJzL2Rvd25yZXYueG1sRI9RS8MwFIXfBf9DuIJvLmmF
-OrplQ2Zlvgzc9MW3u+a2DWuSksS2+/cGH/TxcA7f4VtvZ9OzkXzQzkrIFgIY2dopbVsJnx+vD0tg
-IaJV2DtLEq4UYLu5vVljqdxkjzSeYssSxIYSJXQxDiXnoe7IYFi4gWzqGucNxhR9y5XHKcFNz3Mh
-Cm5Q2/TQ4UC7jurL6dtIGIs8vpz11+HwnjVVnu1nn4tZyvu7+XkFLNIc/8eTqHbL6q/8Rb0pCY/i
-qQDW7K9nr9URQyQvIekl2SQKfPMDAAD//wMAUEsBAi0AFAAGAAgAAAAhAFrjEWb+AAAA4gEAABMA
-AAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEAMd1fYdIA
-AACPAQAACwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEAO1y61aUD
-AABoCAAAEAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQABgAIAAAAIQA2
-XsKS2AAAAPwAAAAPAAAAAAAAAAAAAAAAAP0FAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAQABAD1
-AAAAAgcAAAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="footer" position="2" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s51204">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s51205" style='position:absolute;left:306pt;top:684pt;
- width:234pt;height:36pt;visibility:visible;mso-wrap-style:square;
- v-text-anchor:bottom' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhACRb
-pXO2AwAAhQgAABAAAABkcnMvc2hhcGV4bWwueG1srFXbbuM2EH0v0H8g+Fpkbae5OMYqiyRotgW8
-gRFn0WdKoiLVFKmSlC95zH5P0QJdYF/yN/mA/ELPkFLsFkVR1E0AeUgOZ86cufDtu3Wt2FJaVxmd
-8NGbIWdSZyav9H3CP95dH4w5c17oXCijZcI30vF3519/9baZuIbhsnaTJuGl981kMHBZKWvh3phG
-apwVxtbCY2nvB42VTmovPBzVanA4HJ4MalFpfg5TejlvZpak7GY5s6zKE/7t8PSUMy1qeL2VGTDc
-K8mO+aBTizcEYExNtnAdFvFvsORWrBDgn2Awbd5bRDKCT3NVwpu8sNasSilyR9vwOwj4eqgaSAlL
-UzK/aYDSqfymrcHXQ8J/boX10nKEskYs3e14BWa2ATsEztLVB5PDgmi9ASFisi5svW9EZMcUBSP/
-4/EJGOdsk/DxCf4hIx4xkWvPMigcnp2OaJNl0Dg6PiVlCjgiIc3GOv9emr1RMTKUcIuMhkjFcup8
-dNW7IHfaXFdK7UtBiFHpfc2wVcLPjg+PA+CILFiuK6SYqaoGq0P6i6RSyXyn86DiRaWiDC6VDjVE
-KafC8etLk28o2hS/KIPYTv+9hNHHoLY09oGzlRWoZkd1KDlTP2gU8dno6Ag59mERssyZ3T1Jd090
-W18ZFTpC6AxWE55yFsUrjxWVi6kb4ad63mSk2BfK3fpHYZsu1R5FdmPmpWjk32U86oZaizSQEeX8
-3G/Q73tSEmwt1YiaTKh7jDgbMOSyuMUWdepoW+sqagYsPYIQ0v8BgyDUwk4DbxBugwCX4bfSOaZj
-EHucDCDvRDoHxpA40G191JZiqi/tIqgXRvuLEFoqHKUaI1Zvj2mSYdbNWp0F84ERyhcJrslmmWdL
-QWl+reBQqVuNS1n8VbcfDri/Pb0o/D/odadpe6Xs3Tr0RtrOH17Fa4TxurjBW9O1TxrHg5jElGEX
-8EIDiQm6CB/wumjrqjY/VZFSRJxwqQ8+zuMsDhlmaeQ5fNuEa7igp81WCwxebeZB4mwhLT2EYVpm
-1EKdIhU4MqDpSVPVg/w+LIlyVdHDGM5m1piCZAJG3d4Psgg77jijqpymW2CLXkwJTmIS/Do+NEjN
-rpYsCszLnol2qjumWjLTySHv4SUqRAZAF7YSCh1aCutkSH1gVIodnZenX16efmcvT789P35+fvzy
-/OnT8+OvnDWVz8prUVeKHgzq897KwehwHKdc5nYMfVPrg8x1TwYyQqH5c8YYZQtlgS/2KHP4bicf
-RNec/wEAAP//AwBQSwMEFAAGAAgAAAAhAO6kgWjXAAAA/AAAAA8AAABkcnMvZG93bnJldi54bWxE
-j8FuwjAQRO+V+g/WVuqtOFAVUMAghED01iZUPS/xJo6I7dR2g/n7Wj3AcTSjN3rLddQdG8j51hoB
-41EGjExlZWsaAV/H/cscmA9oJHbWkIAreVivHh+WmEt7MQUNZWhYghifowAVQp9z7itFGv3I9mRS
-V1unMaToGi4dXhJcd3ySZVOusTXpQWFPW0XVufzVAtxWz78/i7Hspz8Rd/U+nmyphHh+ipsFsEAx
-3MeHj91bMdzKf9S7FPCazWbA6sP15FpZoA/kBCS9JJtEga/+AAAA//8DAFBLAQItABQABgAIAAAA
-IQBa4xFm/gAAAOIBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10ueG1sUEsBAi0A
-FAAGAAgAAAAhADHdX2HSAAAAjwEAAAsAAAAAAAAAAAAAAAAALwEAAF9yZWxzLy5yZWxzUEsBAi0A
-FAAGAAgAAAAhACRbpXO2AwAAhQgAABAAAAAAAAAAAAAAAAAAKgIAAGRycy9zaGFwZXhtbC54bWxQ
-SwECLQAUAAYACAAAACEA7qSBaNcAAAD8AAAADwAAAAAAAAAAAAAAAAAOBgAAZHJzL2Rvd25yZXYu
-eG1sUEsFBgAAAAAEAAQA9QAAABIHAAAAAA==
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox style='mso-rotate-with-shape:t'/>
- <p:placeholder type="slideNumber" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s51205">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O style='text-align:right'><span style='font-size:50%'>‹#›</span></div>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master03.html b/docs/presentations/EclipseCon2008_ShortTalk_files/master03.html
deleted file mode 100644
index be84112..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master03.html
+++ /dev/null
@@ -1,66 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m1027" class=T>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m1028" style='tab-stops:.4427in'>
-
-<div class=B>Click to edit Master text styles&#13;</div>
-
-<div class=B1>Second level&#13;</div>
-
-<div class=B2>Third level&#13;</div>
-
-<div class=B3>Fourth level&#13;</div>
-
-<div class=B4>Fifth level</div>
-
-</div>
-
-<div v:shape="_x0000_s1030">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O><span style='mso-bidi-font-family:Arial;font-size:42%'><span
-style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
-style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
-</span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
-style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
-available under the EPL v1.0</span></div>
-
-</div>
-
-<div v:shape="_x0000_s1031" class=O style='mso-line-spacing:"100 50 0";
-mso-char-wrap:1;mso-kinsoku-overflow:1'><span style='mso-bidi-font-family:Arial;
-font-size:42%'><b>‹#›</b></span></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master03.xml b/docs/presentations/EclipseCon2008_ShortTalk_files/master03.xml
deleted file mode 100644
index 983f2e0..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master03.xml
+++ /dev/null
@@ -1,156 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout><v:background id="_x0000_s1025" o:bwmode="white" fillcolor="white [0]">
-  <v:fill color2="#339 [5]"/>
- </v:background><p:shaperange id="Picture_x0020_8">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="Picture_x0020_8" o:spid="_x0000_s1026" type="#_x0000_t75"
-   alt="light4" style='position:absolute;left:0;top:495pt;width:10in;height:45pt;
-   visibility:visible;mso-wrap-style:square' o:userdrawn="t">
-   <v:imagedata src="master03_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_m1027">
-  <v:shapetype id="_x0000_m1027" style='position:absolute;left:54pt;top:84pt;
-   width:612pt;height:42pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:middle' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
-   filled="f" stroked="f">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:textbox style='mso-rotate-with-shape:t'/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m1028">
-  <v:shapetype id="_x0000_m1028" style='position:absolute;left:54pt;top:138pt;
-   width:612pt;height:342pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
-   filled="f" stroked="f">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:textbox style='mso-rotate-with-shape:t'/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="Picture_x0020_7">
-  <v:shape id="Picture_x0020_7" o:spid="_x0000_s1029" type="#_x0000_t75" alt="eclipsecon_2008"
-   style='position:absolute;left:14.75pt;top:0;width:262.125pt;height:76pt;
-   visibility:visible;mso-wrap-style:square' o:userdrawn="t">
-   <v:imagedata src="master03_image002.jpg" o:title="eclipsecon_2008"
-    croptop="8573f" cropbottom="8252f"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s1030">
-  <v:rect id="_x0000_s1030" style='position:absolute;left:114pt;top:509.875pt;
-   width:606pt;height:19.25pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:top' o:bwmode="black" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAJve
-GYtWAwAAHQgAABAAAABkcnMvc2hhcGV4bWwueG1spFXBThsxEL1X6j9YvtMESCBELCigpj2kKCJw
-Rl6vl7jx2ivbCQlH+J6qlVqpF/6GD+AXOjMOCVRVVTWraHd2PZ558zzzcng8rwybKR+0sxnfftfk
-TFnpCm2vM3550d/qcBaisIUwzqqML1Tgx0dv3xzW3VAz2GxDt874OMa622gEOVaVCO9crSyslc5X
-IsKrv27UXgVlo4iQqDKNnWZzr1EJbfkRhLKzUT30aMmz2dAzXQCW5u4uZ1ZUkPVcScBwbRQ74I2l
-W9ohAMbAyUlYYhH/gqXw4gYKfAWDWXc6hhyq5727GStRBMCA2RqE6hmgBXzp4xp0APAsv/nkCsCa
-GyEnUJXozktfbQoL47iyZHMA02rtd5pwQIuM77X2263tXYQnumoemQSH/b2DPeCVMwkeOy1wbxP+
-hAQ9ax/iB+U2RsUwUMY9HAtVKmaDEJGVdQpMZ11fG7MpBVSjsZuGYTcZP2jvtAlwQkaRKx2VZ0ZX
-GQd24UqkYge8twW5RKFNsqFAY4nzsoTioepNYSFrOEup/eP8xBULTJDDE7oqTdh/dzVGCnVvGuEk
-lgeUAuOCCXEUFzBUGyYhjp7FYCOoOEeV8IOMQxeDcU6GmRl6aluAgpApzDXIleGsUOWFyEe3cLYw
-H9j8PiZvJQb2xE/IvXQ29mhLLoLizIAM2fUyzj3owXBqJYUncuyolok+OZSRzQSE3V41CDXC2uNE
-lb/7Uh+BW6jlerVXxr/4LVfz6anxF3OiNZ+ObldmH8pYvZyBHi+7M0/TJ7rAxnmSJxhE7CjRTTfg
-dTKtdOU+60QpVJxxZbcuR6DvwB5WxlmeeKb7NOMWUqD8ez0BYbNuRBZnE+XxzyJpjQD5XzrWknZa
-lH2jb9VHekXKjcY/D8hg3dA7V6KN6NIwraZxNV7BGV2geBBb+K+igJN0CHGeZBmofemlnieSSJkO
-7JKpKYZZ2nTuLC5qVQoJgHpeC2giORY+KDp62qzEC5+nhy9PD9/Z08O3x7sfj3c/H+/vH+++clbr
-KMd9UWkDatuB0lZRtrZ3OklEZHgR6I/JoGKfDioeMXZ1dcWu8IG/9QWf6evLb+SBC+miva9fMFq6
-koV3iol3lGpoRUyfZJtk6Fl+SJGOfgEAAP//AwBQSwMEFAAGAAgAAAAhANdVxSDZAAAA/AAAAA8A
-AABkcnMvZG93bnJldi54bWxEj0tLw0AURveC/2G4gjs7qaGhpp2WIr7QLkxU6PI2c5sJziPMjG3i
-r3dwocvLuZyPs1wPRrMj+dA5K2A6yYCRbZzsbCvg/e3+ag4sRLQStbMkYKQA69X52RJL6U62omMd
-W5YkNpQoQMXYl5yHRpHBMHE92cQOzhuM6fQtlx5PSW40v86yghvsbFpQ2NOtouaz/jICtup51KbQ
-m++bh4Je8o/hbvtaCXF5MWwWwCIN8f9518zq2fwP/qqeZGrJ8hzY4XHc+05WGCJ5ASkvxSYIfPUD
-AAD//wMAUEsBAi0AFAAGAAgAAAAhAFrjEWb+AAAA4gEAABMAAAAAAAAAAAAAAAAAAAAAAFtDb250
-ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAAACEAMd1fYdIAAACPAQAACwAAAAAAAAAAAAAAAAAv
-AQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAAACEAm94Zi1YDAAAdCAAAEAAAAAAAAAAAAAAAAAAq
-AgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQABgAIAAAAIQDXVcUg2QAAAPwAAAAPAAAAAAAAAAAA
-AAAAAK4FAABkcnMvZG93bnJldi54bWxQSwUGAAAAAAQABAD1AAAAtAYAAAAA
-" o:userdrawn="t" filled="f" stroked="f">
-   <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s1031">
-  <v:shapetype id="_x0000_s1031" style='position:absolute;left:12pt;top:514.75pt;
-   width:79.25pt;height:25.25pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" o:bwmode="black"
-   o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAESC
-wWHlAwAATAkAABAAAABkcnMvc2hhcGV4bWwueG1srFXbbhs3EH0v0H8g+Fo4uliyHSHrwDbqtIBq
-CJaDPnO5XGsjLrklqZsfne8pWiAB+uK/8Qf4F3qGXNlqkAJBVT1IQ3E4lzNnZt68XdeaLZXzlTUZ
-773qcqaMtEVlbjP+/uby4IQzH4QphLZGZXyjPH97+v13b5qRbxgeGz9qMj4LoRl1Ol7OVC38K9so
-g7vSuloEHN1tp3HKKxNEgKNad/rd7lGnFpXhpzBlltNm4kiSV8uJY1WBWLqHA86MqOH1WknEcKsV
-63V5p9VLTwTiGFs5920w4luCKZxYIcN/xMGMfeeQSg9O7cUM7tSZc3Y1U6Lw9Df8dmKA21gNQqVY
-mhkLmwZhel1cLWoAdpfx3xbCBeU4cllnfNC+Tk9g5iVjj8xZvvrFFrCQayHngESM1qWr902J7Niy
-ZAigN+wPuijuJuNHw8Pjw/6QIhIjtQ5M0j3qMTgeciahcdjvHkGmhFMgpNk4H94pu3dQjAxl3KGk
-MVGxHPuQXG1dkDtjLyut90Ug5qjNvmbYKuOvh8CMCX2LPpHBxdhTkNFJXaHaTFd1xk+69En4Ent+
-NEVUCaLSSQas2kT4yxI4AIB9IyQAqSUTI8P63BYbcpDjF/xKjfrfewMTAjWbWXfH2coJtIkngivO
-9M8G3fG6NxiAXSEeBsPjPg5u9ybfvTGL+sLq2GrCSFjNeAC0UbwIOOG1tHUjwthMG0mKWwberH8V
-rmk5FMDeKzudiUZ9jUpJN5I4wUBGtA/TsMEk2ROSaGupe9S9SozNuZvHhGhwYLRMFkYCsRS4b+S5
-KukFpIkMbCmQ/XDLErDhRaNQ5TVM0ghBTwKIfGtF+jhmSiExKH6oPxxI37ZoehMT1SmkJLepRuz+
-j3wp11q4cSwQhOsowGX8rUyBAR/F1CWaM0R2I/IpkokMIVaEpL2LWWlNOIuNlQtPnMKWMC2kePI1
-SDUR40tECbDUeLHBXjS+GX3U4awMX9qNvZyq1N7miwvtbtaxrfPF9O5ZvEQqz4crrMy28/M05MQo
-1YraFSOVulWM0hewnS/qqrYfqgQriJRxZQ7eT9NG2aEDSyqLjBu4oA3tqjlYYew0SpzNlaN9jjWL
-VqJ+bRWpm/CXoc2sqzv1UzwS7Lqi/R7vJs7akmSKLg2q50kXkY0AWV0VNKPjgRa/AiaJ2mGd1iWI
-vaulttMugrIYmxapBZlp5Vj7HaKfuUqASHImnFeRXfGxEjs6Tw+/Pz18Yk8Pfz7ef368/+vx48fH
-+z84a6ogZ5eirjSW2gkhsbVy0OufpAH9713lUnXCKWOMqgVa4BvFosrhuxltx2ycvKd/AwAA//8D
-AFBLAwQUAAYACAAAACEASkviq9oAAAD8AAAADwAAAGRycy9kb3ducmV2LnhtbESPT0sDMRBH74Lf
-IYzgzSZqlbo2LVJZFDxs/wh6nG6mm6WbZE3S3W0/vcGDPQ5veD/edD6YhnXkQ+2shNuRAEa2dKq2
-lYTPTX4zARYiWoWNsyThSAHms8uLKWbK9XZF3TpWLElsyFCCjrHNOA+lJoNh5Fqyie2cNxjT6Suu
-PPZJbhp+J8QjN1jbtKCxpYWmcr8+GAlPNMau+DoVD4el6PVPsfn+WJykvL4aXp6BRRri+Xmfvy63
-+T/8U72r1CLux8B2b8etr9UKQyQvIeWl2ASBz34BAAD//wMAUEsBAi0AFAAGAAgAAAAhAFrjEWb+
-AAAA4gEAABMAAAAAAAAAAAAAAAAAAAAAAFtDb250ZW50X1R5cGVzXS54bWxQSwECLQAUAAYACAAA
-ACEAMd1fYdIAAACPAQAACwAAAAAAAAAAAAAAAAAvAQAAX3JlbHMvLnJlbHNQSwECLQAUAAYACAAA
-ACEARILBYeUDAABMCQAAEAAAAAAAAAAAAAAAAAAqAgAAZHJzL3NoYXBleG1sLnhtbFBLAQItABQA
-BgAIAAAAIQBKS+Kr2gAAAPwAAAAPAAAAAAAAAAAAAAAAAD0GAABkcnMvZG93bnJldi54bWxQSwUG
-AAAAAAQABAD1AAAARAcAAAAA
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:textbox style='mso-rotate-with-shape:t'/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master03_image001.jpg b/docs/presentations/EclipseCon2008_ShortTalk_files/master03_image001.jpg
deleted file mode 100644
index 6218aec..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master03_image001.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master03_image002.jpg b/docs/presentations/EclipseCon2008_ShortTalk_files/master03_image002.jpg
deleted file mode 100644
index 75fd8f6..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master03_image002.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master03_image005.gif b/docs/presentations/EclipseCon2008_ShortTalk_files/master03_image005.gif
deleted file mode 100644
index dfff65e..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master03_image005.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master03_image006.gif b/docs/presentations/EclipseCon2008_ShortTalk_files/master03_image006.gif
deleted file mode 100644
index 01317e4..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master03_image006.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master03_stylesheet.css b/docs/presentations/EclipseCon2008_ShortTalk_files/master03_stylesheet.css
deleted file mode 100644
index 96a9af3..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master03_stylesheet.css
+++ /dev/null
@@ -1,340 +0,0 @@
-body

-	{width:534px;

-	height:400px;}

-.TB

-	{mso-special-format:nobullet•;}

-.T

-	{text-align:left;

-	font-family:Arial;

-	mso-bidi-font-family:Arial;

-	mso-hansi-font-family:Arial;

-	color:#2F2672;

-	font-size:133%;}

-.BB

-	{mso-special-format:bullet•;}

-.B

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;

-	mso-margin-left-alt:109;}

-.B1B

-	{mso-special-format:bulletw;

-	font-family:Wingdings;}

-.B1

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:95%;

-	mso-margin-left-alt:395;

-	mso-text-indent-alt:252;}

-.B2B

-	{mso-special-format:bullet§;

-	font-family:Wingdings;}

-.B2

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:85%;

-	mso-margin-left-alt:613;

-	mso-text-indent-alt:504;}

-.B3B

-	{mso-special-format:bullet\F0AA;

-	font-family:Wingdings;}

-.B3

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:76%;

-	mso-margin-left-alt:826;

-	mso-text-indent-alt:685;}

-.B4B

-	{mso-special-format:bullet\F0AB;

-	font-family:Wingdings;}

-.B4

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:76%;

-	mso-margin-left-alt:1081;

-	mso-text-indent-alt:935;}

-.NB

-	{mso-special-format:nobullet•;}

-.N

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N1B

-	{mso-special-format:nobullet•;}

-.N1

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N2B

-	{mso-special-format:nobullet•;}

-.N2

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N3B

-	{mso-special-format:nobullet•;}

-.N3

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N4N

-	{mso-special-format:nobullet•;}

-.N4

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.OB

-	{mso-special-format:nobullet•;}

-.O

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;}

-.O1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.O2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.O3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.O4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.CBB

-	{mso-special-format:nobullet•;}

-.CB

-	{text-align:center;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;}

-.CB1B

-	{mso-special-format:nobulletw;

-	font-family:Wingdings;}

-.CB1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:95%;

-	mso-margin-left-alt:252;

-	mso-text-indent-alt:252;}

-.CB2B

-	{mso-special-format:nobullet§;

-	font-family:Wingdings;}

-.CB2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:85%;

-	mso-margin-left-alt:504;

-	mso-text-indent-alt:504;}

-.CB3B

-	{mso-special-format:nobullet\F0AA;

-	font-family:Wingdings;}

-.CB3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:685;

-	mso-text-indent-alt:685;}

-.CB4B

-	{mso-special-format:nobullet\F0AB;

-	font-family:Wingdings;}

-.CB4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:935;

-	mso-text-indent-alt:935;}

-.CTB

-	{mso-special-format:nobullet•;}

-.CT

-	{text-align:left;

-	font-family:Arial;

-	mso-bidi-font-family:Arial;

-	mso-hansi-font-family:Arial;

-	color:#2F2672;

-	font-size:133%;}

-.HB

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:95%;

-	mso-margin-left-alt:109;}

-.HB1B

-	{mso-special-format:bulletw;

-	font-family:Wingdings;}

-.HB1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:85%;

-	mso-margin-left-alt:395;

-	mso-text-indent-alt:252;}

-.HB2B

-	{mso-special-format:bullet§;

-	font-family:Wingdings;}

-.HB2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:613;

-	mso-text-indent-alt:504;}

-.HB3B

-	{mso-special-format:bullet\F0AA;

-	font-family:Wingdings;}

-.HB3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:66%;

-	mso-margin-left-alt:826;

-	mso-text-indent-alt:685;}

-.HB4B

-	{mso-special-format:bullet\F0AB;

-	font-family:Wingdings;}

-.HB4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:66%;

-	mso-margin-left-alt:1081;

-	mso-text-indent-alt:935;}

-.QB

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:85%;

-	mso-margin-left-alt:109;}

-.QB1B

-	{mso-special-format:bulletw;

-	font-family:Wingdings;}

-.QB1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:395;

-	mso-text-indent-alt:252;}

-.QB2B

-	{mso-special-format:bullet§;

-	font-family:Wingdings;}

-.QB2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:66%;

-	mso-margin-left-alt:613;

-	mso-text-indent-alt:504;}

-.QB3B

-	{mso-special-format:bullet\F0AA;

-	font-family:Wingdings;}

-.QB3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:57%;

-	mso-margin-left-alt:826;

-	mso-text-indent-alt:685;}

-.QB4B

-	{mso-special-format:bullet\F0AB;

-	font-family:Wingdings;}

-.QB4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:57%;

-	mso-margin-left-alt:1081;

-	mso-text-indent-alt:935;}

-.defaultB

-	{mso-special-format:nobullet•;}

-.default

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-ascii-font-family:Arial;

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-weight:normal;

-	font-style:normal;

-	text-decoration:none;

-	text-shadow:none;

-	text-effect:none;

-	mso-fareast-hint:no;

-	layout-flow:horizontal;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;

-	mso-text-raise:0%;

-	mso-line-spacing:"100 0 0";

-	mso-margin-left-alt:0;

-	mso-text-indent-alt:0;

-	mso-char-wrap:1;

-	mso-kinsoku-overflow:1;

-	direction:ltr;

-	mso-word-wrap:1;

-	mso-vertical-align-special:baseline;

-	mso-ansi-language:EN-US;}

-a:link

-	{color:#009999 !important;}

-a:active

-	{color:#333399 !important;}

-a:visited

-	{color:#99CC00 !important;}

diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master15.html b/docs/presentations/EclipseCon2008_ShortTalk_files/master15.html
deleted file mode 100644
index ea7c5f9..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master15.html
+++ /dev/null
@@ -1,63 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master15_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_s2052">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O><span style='mso-bidi-font-family:Arial;font-size:54%'>© 2008 by
-Embarcadero Technologies; made available under the EPL v1.0 |<span
-style='mso-spacerun:yes'>  </span>March 19, 2008</span></div>
-
-</div>
-
-<div v:shape="_x0000_m2053" class=T>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m2054" style='tab-stops:.4427in'>
-
-<div class=B>Click to edit Master text styles&#13;</div>
-
-<div class=B1>Second level&#13;</div>
-
-<div class=B2>Third level&#13;</div>
-
-<div class=B3>Fourth level&#13;</div>
-
-<div class=B4>Fifth level</div>
-
-</div>
-
-<div v:shape="_x0000_s2055" class=O style='mso-char-wrap:1;mso-kinsoku-overflow:
-1'><span style='mso-bidi-font-family:Arial;font-size:58%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master15.xml b/docs/presentations/EclipseCon2008_ShortTalk_files/master15.xml
deleted file mode 100644
index 882891e..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master15.xml
+++ /dev/null
@@ -1,154 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="2"/>
- </o:shapelayout><v:background id="_x0000_s2049" o:bwmode="white" fillcolor="white [0]">
-  <v:fill color2="#339 [5]"/>
- </v:background><p:shaperange id="Picture_x0020_2">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="Picture_x0020_2" o:spid="_x0000_s2050" type="#_x0000_t75"
-   alt="light4" style='position:absolute;left:0;top:495pt;width:10in;height:45pt;
-   visibility:visible;mso-wrap-style:square' o:userdrawn="t">
-   <v:imagedata src="master03_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="Picture_x0020_5">
-  <v:shape id="Picture_x0020_5" o:spid="_x0000_s2051" type="#_x0000_t75" alt="eclipsecon_2008"
-   style='position:absolute;left:14.75pt;top:0;width:262.125pt;height:76pt;
-   visibility:visible;mso-wrap-style:square' o:userdrawn="t">
-   <v:imagedata src="master03_image002.jpg" o:title="eclipsecon_2008"
-    croptop="8573f" cropbottom="8252f"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s2052">
-  <v:rect id="_x0000_s2052" style='position:absolute;left:3.625pt;top:508.375pt;
-   width:716.5pt;height:22.875pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:top' o:bwmode="black" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhADD8
-HxBOAwAABAgAABAAAABkcnMvc2hhcGV4bWwueG1spFVLbtswEN0X6B0I7hN/Ehu2ETlwgqZduIER
-J+uAoqiYNUUKJP3LMjlP0QIt0E1u4wPkCp0h5U+LoihqLeiROZx5fDPzdHa+LBSZC+uk0QltHNcp
-EZqbTOqHhN7dXh11KHGe6Ywpo0VCV8LR8/7bN2dlz5UEDmvXKxM68b7s1WqOT0TB3LEphYa93NiC
-eXi1D7XSCie0Zx4SFarWrNfbtYJJTfsQSs/H5ciixa/nI0tkBlgAimYF5LwRHBA8KEG6tFY5RX8G
-IIaGT12FhP0LksyyBVzvFxBEm8sJ5BADa81iIljmAAFmqwVMG3ga0MU/d5AdQCfp4qPJAGuqGJ/C
-nVhvmdviUFgYx+Q5WSb0tF0/gVqsEto+bbVP2icIjvXE0hMO2916t9tqAWUcPJrdeqvRDOgjDvQs
-rfPvhTkYE8FACbVQlHBPNh86j5zsUmA6ba6kUocSEO6o9KFhyAIYajVbAXBEFiIX0gtLlCwS2qnj
-E0nF+r/TWXDxTKpowwWVDpznOVwebn0oLGQN5yi2vl9emGyFCVL4hZ6K0/XfPY2RXDmYeahEVaAY
-GDeU82O/gpE6MEngaCMEB0HFKSqYHSYUuhiMm2CouQq/UmegHsFk6gGkSlGSifyWpeNHqG3j9BSK
-R6yP3oIN9YWdBvfcaD8IR1LmBCUKJEjvtnHqQQ1GM81D+ECOHpc80sdH3JM5g7CNbYOERth5XIj8
-d9/QR+DmSr7bHeT+L37Vbjq7VPZ2GWhNZ+PHrXkF19i+XIMWV92ZxuljPWDjJooTDCJ2FOvFBXid
-zgpZmE8yUgo3TqjQR3dj0HZgr3GC3KWR57DOEqohBUq/lVOQNW3GwaJkKix+KEC/QWsYSH/lWPJw
-UqPkK/koPoRXpFxJ/HCAuzYja0yONqKLw7Sdxu14OaNkhuIR2MIvigBOYhH8MooyULvvJTYTGUiZ
-DXXF1AzDVHaoO/GrUuSMA6CBlQyaiE+YdSKUPhwWbM/n9eXz68s38vrydf30ff30Y/38vH76Qkkp
-PZ9csUIqUNsOMrGJctRodqKIcLcX6I/J4MY2Fsr3SXzu7wm53z77drWx240WruFoXMHE01U0QlCV
-oeswU1TooDgbpQni0/8JAAD//wMAUEsDBBQABgAIAAAAIQCmXdKe1gAAAPoAAAAPAAAAZHJzL2Rv
-d25yZXYueG1sRI9NS8NAEEDvgv9hGcGL2E0VgsZuSxG/qAVNq/cxO80G9yPsrm3ir3fwoMeZN7zh
-zRaDs2JPMXXBK5hOChDkm6A73yp4296fX4FIGb1GGzwpGCnBYn58NMNKh4Ovab/JrWCJTxUqMDn3
-lZSpMeQwTUJPntkuRIeZx9hKHfHAcmflRVGU0mHn+YPBnm4NNZ+bL6dgbVajdaVdfl8/lPR8+T7c
-rV9rpU5PhuUNiExD/j9+Kbdn09Uf/FU9aW7hlN3j+BE7XWPKFBXwhlMZgZz/AAAA//8DAFBLAQIt
-ABQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAAAAAAAAAAAAAAAAAAABbQ29udGVudF9UeXBlc10u
-eG1sUEsBAi0AFAAGAAgAAAAhADHdX2HSAAAAjwEAAAsAAAAAAAAAAAAAAAAALwEAAF9yZWxzLy5y
-ZWxzUEsBAi0AFAAGAAgAAAAhADD8HxBOAwAABAgAABAAAAAAAAAAAAAAAAAAKgIAAGRycy9zaGFw
-ZXhtbC54bWxQSwECLQAUAAYACAAAACEApl3SntYAAAD6AAAADwAAAAAAAAAAAAAAAACmBQAAZHJz
-L2Rvd25yZXYueG1sUEsFBgAAAAAEAAQA9QAAAKkGAAAAAA==
-" o:userdrawn="t" filled="f" stroked="f">
-   <v:textbox style='mso-rotate-with-shape:t;mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_m2053">
-  <v:shapetype id="_x0000_m2053" style='position:absolute;left:54pt;top:84pt;
-   width:612pt;height:42pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:middle' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
-   filled="f" stroked="f">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:textbox style='mso-rotate-with-shape:t'/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m2054">
-  <v:shapetype id="_x0000_m2054" style='position:absolute;left:54pt;top:138pt;
-   width:612pt;height:342pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
-   filled="f" stroked="f">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:textbox style='mso-rotate-with-shape:t'/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s2055">
-  <v:shapetype id="_x0000_s2055" style='position:absolute;left:542pt;top:19pt;
-   width:168pt;height:37.5pt;visibility:visible;mso-wrap-style:square;
-   v-text-anchor:top' coordsize="21600,21600" o:master="" o:spt="1" o:gfxdata="UEsDBBQABgAIAAAAIQBa4xFm/gAAAOIBAAATAAAAW0NvbnRlbnRfVHlwZXNdLnhtbJSRTU/EIBCG
-7yb+BzJX01I9GGNK92D1qEbXHzCBaUu2BcJg3f330v24GNfEI8y8z/sE6tV2GsVMka13Cq7LCgQ5
-7Y11vYKP9VNxB4ITOoOjd6RgRwyr5vKiXu8CschpxwqGlMK9lKwHmpBLH8jlSefjhCkfYy8D6g32
-JG+q6lZq7xK5VKSFAU3dUoefYxKP23x9MIk0MoiHw+LSpQBDGK3GlE3l7MyPluLYUObkfocHG/gq
-a4D8tWGZnC845l7y00RrSLxiTM84ZQ1pIkvjv1ykufwbslhOXPius5rKNnKbY280n6zO0XnAQBn9
-X/z7kjvB5f6Hmm8AAAD//wMAUEsDBBQABgAIAAAAIQAx3V9h0gAAAI8BAAALAAAAX3JlbHMvLnJl
-bHOkkMFqwzAMhu+DvYPRvXHaQxmjTm+FXksHuwpbSUxjy1gmbd++pjBYRm876hf6PvHv9rcwqZmy
-eI4G1k0LiqJl5+Ng4Ot8WH2AkoLR4cSRDNxJYN+9v+1ONGGpRzL6JKpSohgYS0mfWosdKaA0nCjW
-Tc85YKljHnRCe8GB9KZttzr/ZkC3YKqjM5CPbgPqfE/V/IcdvM0s3JfGctDc996+omrH13iiuVIw
-D1QMuCzPMNPc1OdAv/au/+mVERN9V/5C/Eyr9cesFzV2DwAAAP//AwBQSwMEFAAGAAgAAAAhAJEo
-VvetAwAASAgAABAAAABkcnMvc2hhcGV4bWwueG1srFXNbhs3EL4X6DsQvBaOtLLiKELWgW3UaQHF
-ECwHPc9yuV5GXHJLcmXJR+d5ihZogV78Nn4Av0JmyJWlBjkEcXXRkJyd+Wa++Xnzdt1otpLOK2ty
-nr0YciaNsKUy1zn/cHV+MOHMBzAlaGtkzjfS87fHP/7wpp36luHHxk/bnNchtNPBwItaNuBf2FYa
-fKusayDg0V0PWie9NAECOmr0YDQcHg0aUIYfoymzWrRzR5K4WM0dUyViyTgz0KDPSykQwbWWbMIH
-vVLSBwQxs2LpeyTwLUhKBzcY3n9AMGPfOYyDfNqzGr3JE+fsTS2h9HSNfgcR3RaoQZyEpa1Z2LSI
-0uvyomswW7c5/70DF6TjGMg65+P+6/QJmtmF6zFsVty8tyVagC5YTAdM15VrnhsR2bFVxdD/0WRy
-OB4is5ucj8bZIYoYDkzlOjCB76Ps8PCI3gUqjF8djV5GhUECQpqt8+GdtM8GxchQzh0SGgOF1cwH
-Su3OBbnT5rnRM9DXWM8iuOinUcgG06rJ+WRIv5QAYvdnU8ZkBFA6yQhGm0g3sUMch/WpLTeErMB/
-ZCzV/fdXGzYcpqG27pazGwdYeJ5KRnKmfzVYb6+z8Rj5CPEwfvlqhAe3/1Lsv5iuObM6Fi8YgVZz
-HjhL4lnAE1FrmxbCzCxaQYpbUq/Wv4Fre1oCFsSFXdTQyq+xk3QjWSkNkSofFmGDrfnMlERbK53F
-jFNbi1NZ0SVKcxHYCjDAbVnuXktZXSIf1HNZLPFip6W35ojQHmaM+//ASn3bgJvF5KJwGQV0Gf+V
-KXHWRTEVouYMoV5BsUCkkV1iNCRtCTNz6paRwMqacBJrtwBP9YAD0/TP+AlNJpxd884INJ941ETq
-l6nKnso8lvNO45vSigk+qcKXNvfS378W3Zl2V+vYQEW3uH0SzzGMp8MFbo6+x4rU7zBNxPWtT12G
-48iUc3BAfC67RjX2o0pJxZhzLs3Bh0WarntMs6TS5dygE1pVTi1xlBq7iBJnS+loseG+wSagTusV
-qQ/wytCK0upW/hKPlHStaNHFt7mztiKZ8NFQgKmx50rrBDzdeKtVSZcxX7QBJWYlVWxYp9WBdbyv
-JasKR+A2F93M9LnqyEwvR+bjbqlAIKATpwDLSNTgvIy1FXMqYU/n8f6Px/u/2eP9Xw93/zzc/fvw
-6dPD3Z+ctSqI+hwapXHCTygTWysH2SguVZgKv2fop+bjgfBxb+0TkyZ1nI3bmYjrzLfHnwEAAP//
-AwBQSwMEFAAGAAgAAAAhAOjfvg7VAAAA+gAAAA8AAABkcnMvZG93bnJldi54bWxEj0FLAzEQRu9C
-/0OYgpdikxapsjYtVRCFHspWweu4mewubiZLkra7/97Qgx6HN7yPt94OrhNnCrH1rGExVyCIK29a
-rjV8frzePYKICdlg55k0jBRhu5ncrLEw/sIlnY+pFlnCsUANTUp9IWWsGnIY574nzsz64DDlM9TS
-BLxkuevkUqmVdNhyXmiwp5eGqp/jyWmw5WGvZvbrmQ/ufjl7UHI3eqv17XTYPYFINKT/55NfWfR/
-8Kp6N7llAcK+jd+hNSXGREFDjsupGYHc/AIAAP//AwBQSwECLQAUAAYACAAAACEAWuMRZv4AAADi
-AQAAEwAAAAAAAAAAAAAAAAAAAAAAW0NvbnRlbnRfVHlwZXNdLnhtbFBLAQItABQABgAIAAAAIQAx
-3V9h0gAAAI8BAAALAAAAAAAAAAAAAAAAAC8BAABfcmVscy8ucmVsc1BLAQItABQABgAIAAAAIQCR
-KFb3rQMAAEgIAAAQAAAAAAAAAAAAAAAAACoCAABkcnMvc2hhcGV4bWwueG1sUEsBAi0AFAAGAAgA
-AAAhAOjfvg7VAAAA+gAAAA8AAAAAAAAAAAAAAAAABQYAAGRycy9kb3ducmV2LnhtbFBLBQYAAAAA
-BAAEAPUAAAAHBwAAAAA=
-" path="m,l,21600r21600,l21600,xe" filled="f" stroked="f">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <v:textbox style='mso-rotate-with-shape:t'/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master15_image003.gif b/docs/presentations/EclipseCon2008_ShortTalk_files/master15_image003.gif
deleted file mode 100644
index dfff65e..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master15_image003.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master15_image004.gif b/docs/presentations/EclipseCon2008_ShortTalk_files/master15_image004.gif
deleted file mode 100644
index 01317e4..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master15_image004.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/master15_stylesheet.css b/docs/presentations/EclipseCon2008_ShortTalk_files/master15_stylesheet.css
deleted file mode 100644
index 96a9af3..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/master15_stylesheet.css
+++ /dev/null
@@ -1,340 +0,0 @@
-body

-	{width:534px;

-	height:400px;}

-.TB

-	{mso-special-format:nobullet•;}

-.T

-	{text-align:left;

-	font-family:Arial;

-	mso-bidi-font-family:Arial;

-	mso-hansi-font-family:Arial;

-	color:#2F2672;

-	font-size:133%;}

-.BB

-	{mso-special-format:bullet•;}

-.B

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;

-	mso-margin-left-alt:109;}

-.B1B

-	{mso-special-format:bulletw;

-	font-family:Wingdings;}

-.B1

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:95%;

-	mso-margin-left-alt:395;

-	mso-text-indent-alt:252;}

-.B2B

-	{mso-special-format:bullet§;

-	font-family:Wingdings;}

-.B2

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:85%;

-	mso-margin-left-alt:613;

-	mso-text-indent-alt:504;}

-.B3B

-	{mso-special-format:bullet\F0AA;

-	font-family:Wingdings;}

-.B3

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:76%;

-	mso-margin-left-alt:826;

-	mso-text-indent-alt:685;}

-.B4B

-	{mso-special-format:bullet\F0AB;

-	font-family:Wingdings;}

-.B4

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:76%;

-	mso-margin-left-alt:1081;

-	mso-text-indent-alt:935;}

-.NB

-	{mso-special-format:nobullet•;}

-.N

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N1B

-	{mso-special-format:nobullet•;}

-.N1

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N2B

-	{mso-special-format:nobullet•;}

-.N2

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N3B

-	{mso-special-format:nobullet•;}

-.N3

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.N4N

-	{mso-special-format:nobullet•;}

-.N4

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:57%;}

-.OB

-	{mso-special-format:nobullet•;}

-.O

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;}

-.O1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.O2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.O3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.O4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:114%;}

-.CBB

-	{mso-special-format:nobullet•;}

-.CB

-	{text-align:center;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;}

-.CB1B

-	{mso-special-format:nobulletw;

-	font-family:Wingdings;}

-.CB1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:95%;

-	mso-margin-left-alt:252;

-	mso-text-indent-alt:252;}

-.CB2B

-	{mso-special-format:nobullet§;

-	font-family:Wingdings;}

-.CB2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:85%;

-	mso-margin-left-alt:504;

-	mso-text-indent-alt:504;}

-.CB3B

-	{mso-special-format:nobullet\F0AA;

-	font-family:Wingdings;}

-.CB3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:685;

-	mso-text-indent-alt:685;}

-.CB4B

-	{mso-special-format:nobullet\F0AB;

-	font-family:Wingdings;}

-.CB4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:935;

-	mso-text-indent-alt:935;}

-.CTB

-	{mso-special-format:nobullet•;}

-.CT

-	{text-align:left;

-	font-family:Arial;

-	mso-bidi-font-family:Arial;

-	mso-hansi-font-family:Arial;

-	color:#2F2672;

-	font-size:133%;}

-.HB

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:95%;

-	mso-margin-left-alt:109;}

-.HB1B

-	{mso-special-format:bulletw;

-	font-family:Wingdings;}

-.HB1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:85%;

-	mso-margin-left-alt:395;

-	mso-text-indent-alt:252;}

-.HB2B

-	{mso-special-format:bullet§;

-	font-family:Wingdings;}

-.HB2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:613;

-	mso-text-indent-alt:504;}

-.HB3B

-	{mso-special-format:bullet\F0AA;

-	font-family:Wingdings;}

-.HB3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:66%;

-	mso-margin-left-alt:826;

-	mso-text-indent-alt:685;}

-.HB4B

-	{mso-special-format:bullet\F0AB;

-	font-family:Wingdings;}

-.HB4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:66%;

-	mso-margin-left-alt:1081;

-	mso-text-indent-alt:935;}

-.QB

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:85%;

-	mso-margin-left-alt:109;}

-.QB1B

-	{mso-special-format:bulletw;

-	font-family:Wingdings;}

-.QB1

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:76%;

-	mso-margin-left-alt:395;

-	mso-text-indent-alt:252;}

-.QB2B

-	{mso-special-format:bullet§;

-	font-family:Wingdings;}

-.QB2

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:66%;

-	mso-margin-left-alt:613;

-	mso-text-indent-alt:504;}

-.QB3B

-	{mso-special-format:bullet\F0AA;

-	font-family:Wingdings;}

-.QB3

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:57%;

-	mso-margin-left-alt:826;

-	mso-text-indent-alt:685;}

-.QB4B

-	{mso-special-format:bullet\F0AB;

-	font-family:Wingdings;}

-.QB4

-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-size:57%;

-	mso-margin-left-alt:1081;

-	mso-text-indent-alt:935;}

-.defaultB

-	{mso-special-format:nobullet•;}

-.default

-	{text-align:left;

-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-ascii-font-family:Arial;

-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";

-	mso-hansi-font-family:Arial;

-	font-weight:normal;

-	font-style:normal;

-	text-decoration:none;

-	text-shadow:none;

-	text-effect:none;

-	mso-fareast-hint:no;

-	layout-flow:horizontal;

-	color:black;

-	mso-color-index:1;

-	font-size:114%;

-	mso-text-raise:0%;

-	mso-line-spacing:"100 0 0";

-	mso-margin-left-alt:0;

-	mso-text-indent-alt:0;

-	mso-char-wrap:1;

-	mso-kinsoku-overflow:1;

-	direction:ltr;

-	mso-word-wrap:1;

-	mso-vertical-align-special:baseline;

-	mso-ansi-language:EN-US;}

-a:link

-	{color:#009999 !important;}

-a:active

-	{color:#333399 !important;}

-a:visited

-	{color:#99CC00 !important;}

diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/outline.html b/docs/presentations/EclipseCon2008_ShortTalk_files/outline.html
deleted file mode 100644
index 21da2d7..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/outline.html
+++ /dev/null
@@ -1,936 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<script src=script.js></script><script><!--
-if( !(IsWin("PPTOtl")||IsWin("PPTNav")||IsWin("PPTOtlNav")) )
-{
-	obj = GetObj("Main-File")
-	parent.location.href=obj.href
-}
-var gOtlHiliteClr="#ffffff",gOtlNormalClr="#000000",gOtlActiveClr="#ffff00",gSelected="",gTxtState=false,gChildEntryTable=new Array()
-function Load()
-{
-	if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
-	if( g_supportsPPTHTML ) {
-		if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true; return }
-		if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); parent.gOtlNavLoaded=true; return }
-	}
-}
-function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
-function LoadNav( oId,UpdFunc )
-{
-	document.ondragstart=CancelDrag
-	document.onselectstart=CancelDrag
-	document.body.style.margin=2
-	UpdFunc()
-	obj=document.all.item(oId)
-	obj.style.display="block"
-	obj.style.visibility="visible"
-	document.bgColor="threedface"
-	if( parent.frames["PPTNts"] )
-		notesBtn.style.display = ""
-	if( parent.gHasNarration )
-		nb_voiceBorder.style.display = ""
-}
-function LoadOtl()
-{
-	var otl=GetObj("OtlObj")
-	otl.style.display="block"
-	otl.style.visibility="visible"
-	if( gOtlActiveClr == "" ) gOtlActiveClr=document.linkColor
-	if( gOtlHiliteClr == "" ) gOtlHiliteClr=document.fgColor
-	if( gOtlNormalClr == "" )
-		gOtlNormalClr=document.bgColor
-	else
-		document.bgColor=gOtlNormalClr
-	InitArray()
-	if( ObjExists( parent.gCurSld ) ) {
-		ChangeState( parent.gCurSld,gOtlNormalClr,gOtlHiliteClr )
-		gSelected=parent.gCurSld
-	}
-	else gSelected = -1
-	UpdOtl()
-}
-function UpdOtl(){ UpdIdx(parent.gCurSld) }
-function UpdIdx( idx )
-{
-	if( gSelected != idx ) {
-		if( gSelected > 0 )
-			ChangeState( gSelected,gOtlHiliteClr,gOtlNormalClr )
-		if( ObjExists( idx ) ) {
-			gSelected = idx
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-		}
-		else gSelected = -1
-	}
-	if( gTxtState != parent.gOtlTxtExp ) {
-		state = "block"
-		if( !parent.gOtlTxtExp )
-			state="none"
-		for(ii=0; ii<gChildEntryTable.length; ii++) {
-			obj=gChildEntryTable[ii];
-			if( obj.id == null ) continue;
-			if( obj.id.indexOf("PPTC") >= 0 )
-				obj.style.display=state;
-		}
-		gTxtState=parent.gOtlTxtExp
-		if( ObjExists( gSelected ) )
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-	}
-}
-function InitArray()
-{
-	count=0
-	var list=GetTags(document,"DIV");
-	for(ii=0; ii<list.length; ii++) {
-		obj=list.item(ii)
-		if( obj.id == null ) continue
-		if( obj.id.indexOf("PPTC") >= 0 )
-			gChildEntryTable[count++]=obj
-	}
-}
-function ChangeState( idx,fgColor,bgColor )
-{
-	obj=GetObj("PPTL"+idx)
-	obj.style.color=fgColor
-	obj=GetObj("PPTP"+idx)
-	obj.style.backgroundColor=bgColor
-}
-function ChgClr( o,clr ){ if( o.id != "PPTL"+gSelected ) o.style.color=clr }
-function Over( src ){ ChgClr(GetLink(src),gOtlActiveClr) }
-function Out( src ){ ChgClr(GetLink(src),gOtlHiliteClr) }
-function Follow(src){ window.location.href = GetLink(src).href; }
-function ObjExists( ii ) { obj=GetObj("PPTP"+ii ); return( obj ) }
-function GoToSld( href ){ UpdIdx(parent.GetSldNum(href)); parent.GoToSld( href ) }
-function CancelDrag(){ window.event.cancelBubble=true;window.event.returnValue=false}
-function GetLink(src)
-{
-   if(src.tagName=="A") return src
-   else return GetTags(src,"A").item(0)
-}
-function UpdNav()
-{
-	txt = "<center>";
-	if( parent.GetHrefObj( parent.gCurSld ).mOrigVis == 1 )
-		txt += "Slide " + parent.GetCurSldNum() + " of " + parent.GetNumSlds()
-	else
-		txt += "Hidden Slide"
-	txt += "</center>";
-	nav_text.innerHTML = txt;
-	if( !parent.HasPrevSld() )
-		gBtnArr["nb_prev"].Enabled(0)
-	else
-		gBtnArr["nb_prev"].Enabled(1)
-	if( !parent.HasNextSld() )
-		gBtnArr["nb_next"].Enabled(0)
-	else
-		gBtnArr["nb_next"].Enabled(1)
-	gBtnArr["nb_nts"].Enabled(1)
-	gBtnArr["nb_ntsBorder"].SetFlag( parent.gHasNts )
-	gBtnArr["nb_sldshw"].Enabled(1)
-	gBtnArr["nb_voice"].Enabled(1)
-}
-function ExecBtn()
-{
-	if (event.keyCode == 13)
-	{
-		BtnOnDown();
-		BtnOnUp();
-	}
-}
-function UpdOtlNav()
-{
-	gBtnArr["nb_otl"].SetEnabled();
-	if( parent.gOtlOpen )
-		gBtnArr["nb_otlTxt"].Enabled( true );
-	else
-		document.all.item("nb_otlTxtBorder").style.visibility = "hidden";
-}
-
-//--></script>
-<style>
-<!--.PTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;
-	padding-left:2px;
-	font-weight:bold;}
-.CTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;}
-a
-	{color:white;
-	text-decoration:none;}
-ul
-	{color:white;
-	margin-bottom:0px;
-	margin-left:20px;}
-.sldNum
-	{margin-top:5px;
-	color:white;}
-.button
-	{position:absolute;
-	width:32px;
-	height:20px;
-	border-style:solid;
-	border-width:1px;
-	border-color:threedface;}
--->
-</style>
-</head>
-
-<body onload="Load()" style='margin:2px'>
-
-<div id=NavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="ExecBtn()" style='display:none;visibility:hidden'>
-<table id="notesBtn" style='display:none;position:relative;width:55px' align=left cellpadding=0
- cellspacing=0>
- <td nowrap>
- <div id="nb_ntsElem" title="Show/Hide
-Notes" align=center style='position:relative;margin-left:5px;margin-right:5px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt; cursor:default'>
- <img src="notes_flag.gif" id="nb_nts" style='display:none'> &nbsp;Notes</div>
- <div id="nb_ntsBorder" title ="Show/Hide
-Notes" onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=1 style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
-
- </div>
- </td>
-</table>
-
-
-<table style='position:relative;width:70px' align=right cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_sldshwText" title="Full Screen Slide Show" align=center style='position:relative;margin-left:20px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt;cursor:default'>Slide
-Show</div>
- <div id="nb_sldshwBorder" title="Full Screen Slide Show" onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=5 style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_sldshw" style='position:relative;left:-254px'></div>
- </div>
- </td>
- <td>
- <div id="nb_voiceBorder" style='display:none;position:absolute;top:0;left:-40px;
- width:20px;height:20px' onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=4 class=button>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_voice" title="Pause/Play Narration" style='position:
- relative;left:-290px'></div>
- </div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_prevBorder" onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=2 class=button style='left:-30px'>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_prev" title="Previous Slide" style='position:relative;
- left:0px'></div>
- </div>
- <span id="nav_text" style='position:relative;top:3px;width:100px;font-family:
- Arial;color:buttontext;font-size:9pt'></span>
- <div id="nb_nextBorder" onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=3 class=button>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_next" title="Next Slide" style='position:relative;
- left:-90px'></div>
- </div>
- </td>
-</table>
-</div>
-
-<div id=OtlNavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="ExecBtn()" style='display:none;visibility:hidden'>
-
-<table style='position:relative;width:70px' align=left cellpadding=0 cellspacing=0>
- <td nowrap><div title="Show/Hide
-Outline" id="nb_otl" onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=11
- style='position:absolute;top:0%;left:0%;width:100%;height:100%;cursor:default'>
- <div id="nb_otlElem" align=center style='position:relative;padding:3px;font-family:Arial;
- color:buttontext;font-size:9pt'>Outline</div></div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td>
- <div style='position:absolute;left:-18px;width:24px;height:20px;border-style:
- solid;border-width:1px;border-color:threedface' onfocus="BtnOnOver()" onblur="BtnOnOut()" TABINDEX=12 id="nb_otlTxtBorder">
- <div style='position:absolute;clip:rect(0px, 22px, 18px, 0px)'><img
- src=buttons.gif id="nb_otlTxt" title="Expand/Collapse Outline"
- style='position:relative;left:-157px'></div>
- </div>
- </td>
-</table>
-
-</div>
-
-<div id=OtlObj style='display:none;visibility:hidden;'>
-
-
-<table width="100%" style='font-family:Arial;font-size:9pt'>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>1</font></div>
-  </td>
-  <td width="100%">
-  <div id=PPTP1 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0001.html');" id=PPTL1>WhatÂ’s New in MDT?</a></font></div>
-  <div id=PPTC1 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Short Talk</li>
-   <br>
-   <br>
-   <li>Kenn Hussey</li>
-   <li>Embarcadero Technologies</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>2</font></div>
-  </td>
-  <td>
-  <div id=PPTP2 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0010.html');" id=PPTL2>Contents</a></font></div>
-  <div id=PPTC2 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Overview</li>
-   <br>
-   <br>
-   <li>Participants</li>
-   <br>
-   <br>
-   <li>Components</li>
-   <br>
-   <br>
-   <li>Themes</li>
-   <br>
-   <br>
-   <li>Plan Items</li>
-   <br>
-   <br>
-   <li>How Can You Help?</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>3</font></div>
-  </td>
-  <td>
-  <div id=PPTP3 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0011.html');" id=PPTL3>Overview</a></font></div>
-  <div id=PPTC3 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Model Development Tools (MDT) is an Eclipse Modeling sub-project at http://www.eclipse.org/modeling/mdt/</li>
-   <br>
-   <br>
-   <li>Inspired by the Eclipse communityÂ’s need for more end user
-       &quot;tooling&quot; from the Modeling project</li>
-   <br>
-   <br>
-   <li>Purpose of MDT is to provide extensible frameworks and exemplary tools
-       for the metamodels within the scope of the Modeling project</li>
-   <br>
-   <br>
-   <li>Next release scheduled for June 2008 (Ganymede)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>4</font></div>
-  </td>
-  <td>
-  <div id=PPTP4 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0012.html');" id=PPTL4>Participants</a></font></div>
-  <div id=PPTC4 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Project lead is Kenn Hussey (Embarcadero Technologies)</li>
-   <br>
-   <br>
-   <li>Committers currently from IBM, Borland, Embarcadero Technologies, Adaptive,
-       XML Modeling, and Soyatec</li>
-   <br>
-   <br>
-   <li>Potential contributions from Atos Origin, LS Internet-Technologie,
-       Zeligsoft, Papyrus, Topcased, and others</li>
-   <br>
-   <br>
-   <li>Collaborations with DTP and STP projects</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>5</font></div>
-  </td>
-  <td>
-  <div id=PPTP5 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0013.html');" id=PPTL5>Components</a></font></div>
-  <div id=PPTC5 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Business Process Model and Notation (BPMN2)</li>
-   <br>
-   <br>
-   <li>EMF Ontology Definition Metamodel (EODM)</li>
-   <br>
-   <br>
-   <li>Information Management Metamodel (IMM)</li>
-   <br>
-   <br>
-   <li>Object Constraint Language (OCL)</li>
-   <br>
-   <br>
-   <li>OCL Tools</li>
-   <br>
-   <br>
-   <li>Semantics of Business Vocabulary and Rules (SBVR)</li>
-   <br>
-   <br>
-   <li>Unified Modeling Language™ 2.x (UML2)</li>
-   <br>
-   <br>
-   <li>UML2 Tools</li>
-   <br>
-   <br>
-   <li>XML™ Schema Infoset Model (XSD)</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>6</font></div>
-  </td>
-  <td>
-  <div id=PPTP6 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0014.html');" id=PPTL6>Components – BPMN2</a></font></div>
-  <div id=PPTC6 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>BPMN2 is a new component aimed at providing a metamodel implementation
-       based on the forthcoming Business Process Model and Notation (BPMN™ 2.0)
-       OMG™ specification</li>
-   <br>
-   <br>
-   <li>BPMN2 will provide</li>
-   <ul>
-    <li>an open source &quot;reference&quot; implementation of the BPMN 2.0
-        specification</li>
-    <li>an EMF-based foundation on which business process modeling tools can be
-        built</li>
-    <li>a basis for integrating and interchanging artifacts between business
-        process modeling tools</li>
-    <li>a forum for engaging the community in validation of the BPMN 2.0
-        specification</li>
-    <li>an opportunity for increased collaboration between Eclipse and the OMG</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>7</font></div>
-  </td>
-  <td>
-  <div id=PPTP7 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0015.html');" id=PPTL7>Components – EODM</a></font></div>
-  <div id=PPTC7 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>EODM is an implementation of the RDF™(S)/OWL metamodels of the Ontology
-       Definition Metamodel (ODM) OMG specification using EMF with additional
-       parsing, inference, model transformation, and editing functions</li>
-   <br>
-   <br>
-   <li>EODM provides</li>
-   <ul>
-    <li>an EMF-based RDF/OWL model</li>
-    <li>an RDF/OWL parser</li>
-    <li>an RDF/OWL reasoner</li>
-    <li>an RDF/OWL transformer</li>
-    <li>a workbench which provides basic Eclipse editors for RDF/OWL</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>8</font></div>
-  </td>
-  <td>
-  <div id=PPTP8 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0016.html');" id=PPTL8>Components – IMM</a></font></div>
-  <div id=PPTC8 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>IMM is a new component aimed at providing metamodel/profile
-       implementations based on the forthcoming Information Management
-       Metamodel (IMM) OMG specification</li>
-   <br>
-   <br>
-   <li>IMM will provide</li>
-   <ul>
-    <li>an open source &quot;reference&quot; implementation of the IMM
-        specification</li>
-    <li>an EMF-based foundation on which information management modeling tools
-        can be built</li>
-    <li>a basis for integrating and interchanging artifacts between information
-        management modeling tools</li>
-    <li>a forum for engaging the community in validation of the IMM
-        specification</li>
-    <li>an opportunity for increased collaboration between Eclipse and the OMG</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>9</font></div>
-  </td>
-  <td>
-  <div id=PPTP9 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0017.html');" id=PPTL9>Components – OCL</a></font></div>
-  <div id=PPTC9 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>OCL is an implementation of the Object Constraint Language (OCL) OMG
-       specification for EMF-based models</li>
-   <br>
-   <br>
-   <li>OCL provides</li>
-   <ul>
-    <li>APIs for parsing and evaluating OCL constraints and queries</li>
-    <li>an Ecore implementation of the OCL abstract syntax model, including
-        support for serialization of parsed OCL expressions</li>
-    <li>a visitor API for analyzing/transforming the AST model of OCL
-        expressions</li>
-    <li>an extensibility API for clients to customize the parsing and
-        evaluation environments used by the parser</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>10</font></div>
-  </td>
-  <td>
-  <div id=PPTP10 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0018.html');" id=PPTL10>Components – OCL Tools</a></font></div>
-  <div id=PPTC10 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>OCL Tools is a new component to aimed at providing first-class support
-       for modelers working with specifications containing expressions written
-       in OCL</li>
-   <br>
-   <br>
-   <li>OCL Tools will provide</li>
-   <ul>
-    <li>an OCL to Java compiler, which will initially take as input an Ecore
-        model and a textual file containing OCL constraints but will eventually
-        handle UML2 models as well</li>
-    <li>an OCL text editor, supporting usability features such as auto
-        completion, hyperlink navigation, and structured views (for the outline
-        of a document and for the Abstract Syntax Tree of an OCL constraint),
-        among others</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>11</font></div>
-  </td>
-  <td>
-  <div id=PPTP11 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0031.html');" id=PPTL11>Components – SBVR</a></font></div>
-  <div id=PPTC11 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>SBVR is a new component aimed at providing a metamodel implementation
-       and sample tools based on the adopted Semantics of Business Vocabulary
-       and Business Rules (SBVR) OMG specification</li>
-   <br>
-   <br>
-   <li>SBVR will provide</li>
-   <ul>
-    <li>an open source &quot;reference&quot; implementation of the SBVR
-        specification</li>
-    <li>an EMF-based foundation on which business vocabulary and business rules
-        modeling tools can be built</li>
-    <li>a basis for integrating and interchanging artifacts between business
-        vocabulary and business rules tools</li>
-    <li>a forum for engaging the community in validation of the SBVR
-        specification</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>12</font></div>
-  </td>
-  <td>
-  <div id=PPTP12 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0019.html');" id=PPTL12>Components – UML2</a></font></div>
-  <div id=PPTC12 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML2 is an EMF-based implementation of the Unified Modeling Language 2.x
-       OMG specification for the Eclipse platform</li>
-   <br>
-   <br>
-   <li>UML2 provides</li>
-   <ul>
-    <li>a useable implementation of the metamodel to support the development of
-        modeling tools</li>
-    <li>a common XMI® schema to facilitate interchange of semantic models</li>
-    <li>test cases as a means of validating the specification</li>
-    <li>validation rules as a means of defining and enforcing levels of
-        compliance</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>13</font></div>
-  </td>
-  <td>
-  <div id=PPTP13 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0020.html');" id=PPTL13>Components – UML2
-  Tools</a></font></div>
-  <div id=PPTC13 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML2 Tools is a set of GMF-based editors for viewing and editing UML®
-       models</li>
-   <br>
-   <br>
-   <li>UML2 Tools provides editors for</li>
-   <ul>
-    <li>class diagrams</li>
-    <li>profile diagrams</li>
-    <li>component diagrams</li>
-    <li>state machine diagrams</li>
-    <li>activity diagrams</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>14</font></div>
-  </td>
-  <td>
-  <div id=PPTP14 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0021.html');" id=PPTL14>Components – XSD</a></font></div>
-  <div id=PPTC14 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>XSD is a reference library that provides an API for use with any code
-       that examines, creates, or modifies documents based on the XML Schema
-       W3C® standard</li>
-   <br>
-   <br>
-   <li>XSD provides APIs for</li>
-   <ul>
-    <li>manipulating components of an XML Schema</li>
-    <li>manipulating the DOM™-accessible representation of XML Schema as a
-        series of XML documents</li>
-    <li>keeping these representations in agreement as schemas are modified</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>15</font></div>
-  </td>
-  <td>
-  <div id=PPTP15 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0022.html');" id=PPTL15>Themes – MDT 1.1</a></font></div>
-  <div id=PPTC15 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>End-to-End MDSD</li>
-   <br>
-   <br>
-   <li>Improved Usability</li>
-   <br>
-   <br>
-   <li>Upgrade Path</li>
-   <br>
-   <br>
-   <li>Ease of Use</li>
-   <br>
-   <br>
-   <li>Technology Trends</li>
-   <br>
-   <br>
-   <li>Internationalization &amp; Localization</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>16</font></div>
-  </td>
-  <td>
-  <div id=PPTP16 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0023.html');" id=PPTL16>Plan Items – OCL 1.2</a></font></div>
-  <div id=PPTC16 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>End-to-End MDSD</li>
-   <ul>
-    <li>Extending the OCL grammar for QVT</li>
-    <li>Navigation of unnamed association ends</li>
-   </ul>
-   <br>
-   <li>Improved Usability</li>
-   <ul>
-    <li>Customizing error handling</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>17</font></div>
-  </td>
-  <td>
-  <div id=PPTP17 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0024.html');" id=PPTL17>Plan Items – UML2 2.2</a></font></div>
-  <div id=PPTC17 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>End-to-End MDSD</li>
-   <ul>
-    <li>Profile Support for Ecore Annotations</li>
-    <li>Support for (de)serialization to/from CMOF</li>
-   </ul>
-   <br>
-   <li>Upgrade Path</li>
-   <ul>
-    <li>Eclipse 3.4 / EMF 2.4 Compatibility</li>
-   </ul>
-   <br>
-   <li>Ease of Use</li>
-   <ul>
-    <li>Enhanced Documentation</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>18</font></div>
-  </td>
-  <td>
-  <div id=PPTP18 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0027.html');" id=PPTL18>Plan Items – UML2 2.2</a></font></div>
-  <div id=PPTC18 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Technology Trends</li>
-   <ul>
-    <li>UML 2.1.2 Compliance</li>
-   </ul>
-   <br>
-   <li>Internationalization &amp; Localization</li>
-   <ul>
-    <li>BiDi Support</li>
-   </ul>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>19</font></div>
-  </td>
-  <td>
-  <div id=PPTP19 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0025.html');" id=PPTL19>Plan Items – UML2
-  Tools 0.8</a></font></div>
-  <div id=PPTC19 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>End-to-End MDSD</li>
-   <ul>
-    <li>Composite Structure Diagrams</li>
-    <li>Deployment Diagrams</li>
-    <li>Use Case Diagrams</li>
-    <li>Object Diagrams</li>
-    <li>Basic OCL Integration</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>20</font></div>
-  </td>
-  <td>
-  <div id=PPTP20 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0028.html');" id=PPTL20>Plan Items – UML2
-  Tools 0.8</a></font></div>
-  <div id=PPTC20 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Improved Usability</li>
-   <ul>
-    <li>Structure Diagram Synchronization</li>
-    <li>Diagram Relations</li>
-    <li>Extended Profile Support</li>
-    <li>Diagram-Specific Property Sheets</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>21</font></div>
-  </td>
-  <td>
-  <div id=PPTP21 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0026.html');" id=PPTL21>Plan Items – XSD 2.4</a></font></div>
-  <div id=PPTC21 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Ease of Use</li>
-   <ul>
-    <li>Improved Diagnostics</li>
-   </ul>
-   <br>
-   <li>Technology Trends</li>
-   <ul>
-    <li>XML Schema 1.1</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>22</font></div>
-  </td>
-  <td>
-  <div id=PPTP22 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0029.html');" id=PPTL22>How Can You Help?</a></font></div>
-  <div id=PPTC22 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Develop and use tools based on MDT components</li>
-   <br>
-   <br>
-   <li>Report bugs</li>
-   <br>
-   <br>
-   <li>Participate in newsgroup discussions</li>
-   <br>
-   <br>
-   <li>Write articles</li>
-   <br>
-   <br>
-   <li>Become an MDT contributor!</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>23</font></div>
-  </td>
-  <td>
-  <div id=PPTP23 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0030.html');" id=PPTL23>Legal Notices</a></font></div>
-  <div id=PPTC23 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>BPMN, OMG, and Unified Modeling Language are trademarks of the Object
-       Management Group</li>
-   <br>
-   <br>
-   <li>UML and XMI are registered trademarks of the Object Management Group</li>
-   <br>
-   <br>
-   <li>DOM, RDF, and XML are trademarks of the World Wide Web Consortium; marks
-       of W3C are registered and held by its host institutions MIT, ERCIM, and Keio</li>
-   <br>
-   <br>
-   <li>Java and all Java-based trademarks are trademarks of Sun Microsystems,
-       Inc. in the United States, other countries, or both</li>
-   <br>
-   <br>
-   <li>Other company, product, or service names may be trademarks or service
-       marks of others</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
-</table>
-
-
-
-</div>
-
-<div style='display:none'><a href=master03.html></a><a href=master03.xml></a><a
-href=preview.wmf></a><a href="master03_image001.jpg"></a><a
-href="master03_image002.jpg"></a><a href=master15.html></a><a
-href=master15.xml></a><a href=master02.html></a><a href=pres.xml></a><a
-href=slide0001.html></a><a href="master15_image003.gif"></a><a
-href="master15_image004.gif"></a><a href=slide0010.html></a><a
-href="master03_image005.gif"></a><a href="master03_image006.gif"></a><a
-href=slide0011.html></a><a href=slide0012.html></a><a href=slide0013.html></a><a
-href=slide0014.html></a><a href=slide0015.html></a><a href=slide0016.html></a><a
-href=slide0017.html></a><a href=slide0018.html></a><a href=slide0031.html></a><a
-href=slide0019.html></a><a href=slide0020.html></a><a href=slide0021.html></a><a
-href=slide0022.html></a><a href=slide0023.html></a><a href=slide0024.html></a><a
-href=slide0027.html></a><a href=slide0025.html></a><a href=slide0028.html></a><a
-href=slide0026.html></a><a href=slide0029.html></a><a href=slide0030.html></a><a
-href=master01.html></a><a href="master03_stylesheet.css"></a><a
-href="master15_stylesheet.css"></a><a href=script.js></a><a
-href="../EclipseCon2008_ShortTalk.html"></a><a href=fullscreen.html></a><a
-href=buttons.gif></a><a href=frame.html></a><a href=outline.html></a></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/pres.xml b/docs/presentations/EclipseCon2008_ShortTalk_files/pres.xml
deleted file mode 100644
index 6288bb4..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/pres.xml
+++ /dev/null
@@ -1,54 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <p:presentation sizeof="screen" gridspacingx="49152" gridspacingy="49152"
-  subsetembed="1">
-  <p:master id="3" slidesn="0,0" type="main" href="master03.html"
-   xmlhref="master03.xml" template="Blank Presentation" layout="title_body"
-   slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-   </p:schemes>
-  </p:master>
-  <p:master id="15" slidesn="0,0" type="main" href="master15.html"
-   xmlhref="master15.xml" template="1_Blank Presentation" layout="title_body"
-   slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-   </p:schemes>
-  </p:master>
-  <p:master id="1" slidesn="1C88997,45183320" type="notes" href="master01.html"
-   layout="notes" slots="header,dateTime,slideImage,body,footer,slideNumber"/>
-  <p:master id="2" slidesn="1C88997,46E92290" type="handout"
-   href="master02.html" layout="handout"
-   slots="header,dateTime,footer,slideNumber"/>
-  <p:slide id="1" slidesn="0,0" href="slide0001.html" masterhref="master15.html"/>
-  <p:slide id="10" slidesn="0,0" href="slide0010.html"/>
-  <p:slide id="11" slidesn="0,0" href="slide0011.html"/>
-  <p:slide id="12" slidesn="0,0" href="slide0012.html"/>
-  <p:slide id="13" slidesn="0,0" href="slide0013.html"/>
-  <p:slide id="14" slidesn="0,0" href="slide0014.html"/>
-  <p:slide id="15" slidesn="0,0" href="slide0015.html"/>
-  <p:slide id="16" slidesn="0,0" href="slide0016.html"/>
-  <p:slide id="17" slidesn="0,0" href="slide0017.html"/>
-  <p:slide id="18" slidesn="0,0" href="slide0018.html"/>
-  <p:slide id="31" slidesn="0,0" href="slide0031.html"/>
-  <p:slide id="19" slidesn="0,0" href="slide0019.html"/>
-  <p:slide id="20" slidesn="0,0" href="slide0020.html"/>
-  <p:slide id="21" slidesn="0,0" href="slide0021.html"/>
-  <p:slide id="22" slidesn="0,0" href="slide0022.html"/>
-  <p:slide id="23" slidesn="0,0" href="slide0023.html"/>
-  <p:slide id="24" slidesn="0,0" href="slide0024.html"/>
-  <p:slide id="27" slidesn="0,0" href="slide0027.html"/>
-  <p:slide id="25" slidesn="0,0" href="slide0025.html"/>
-  <p:slide id="28" slidesn="0,0" href="slide0028.html"/>
-  <p:slide id="26" slidesn="0,0" href="slide0026.html"/>
-  <p:slide id="29" slidesn="0,0" href="slide0029.html"/>
-  <p:slide id="30" slidesn="0,0" href="slide0030.html"/>
-  <p:viewstate type="slideView" restoredleft="156" restoredtop="946"
-   hideoutlineicons="t"/>
-  <p:kinsoku language="Japanese" level="levelOne"/>
-  <p:pptdocumentsettings framecolors="WhiteTextOnBlack" hideslideanimation="t"
-   browsersupport="v4"/>
- </p:presentation>
- <o:shapedefaults v:ext="edit" spidmax="51206"/>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/preview.wmf b/docs/presentations/EclipseCon2008_ShortTalk_files/preview.wmf
deleted file mode 100644
index 48bf496..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/script.js b/docs/presentations/EclipseCon2008_ShortTalk_files/script.js
deleted file mode 100644
index fe8d4ed..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/script.js
+++ /dev/null
@@ -1,856 +0,0 @@
-function LoadSld()

-{

-	var sld=GetObj("SlideObj")

-	if( !g_supportsPPTHTML ) {

-		sld.style.visibility="visible"

-		return

-	}

-	if( MakeNotesVis() ) return

-	runAnimations = _InitAnimations();

-	if( IsWin("PPTSld") )

-		parent.SldUpdated(GetSldId())

-	g_origSz=parseInt(SlideObj.style.fontSize)

-	g_origH=sld.style.posHeight

-	g_origW=sld.style.posWidth

-	g_scaleHyperlinks=(document.all.tags("AREA").length>0)

-	if( g_scaleHyperlinks )

-		InitHLinkArray()

-	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )

-		document.body.scroll="no"

-	_RSW()

-	if( IsWin("PPTSld") && parent.IsFullScrMode() )

-		FullScrInit();

-	

-	MakeSldVis();

-	ChkAutoAdv()

-

-	if( runAnimations )

-	{

-		if( document.all("NSPlay") )

-			document.all("NSPlay").autoStart = false;

-		if( sld.filters && sld.filters.revealtrans )

-			setTimeout( "document.body.start()", sld.filters.revealtrans.duration * 1000 );

-		else

-			document.body.start();

-	}

-}

-function MakeSldVis()

-{

-	var fTrans=g_showAnimation && SldHasTrans()

-	if( fTrans )

-	{

-		if( g_bgSound ) {

-			idx=g_bgSound.indexOf(",");

-			pptSound.src=g_bgSound.substr( 0, idx );

-			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));

-		}

-		SlideObj.filters.revealtrans.Apply()

-    }

-	SlideObj.style.visibility="visible"

-	if( fTrans )

-		SlideObj.filters.revealtrans.Play()

-}

-function MakeNotesVis()

-{

-	if( !IsNts() ) return false

-	SlideObj.style.display="none"

-	nObj = document.all.item("NotesObj")

-	parent.SetHasNts(0)

-	if( nObj ) {

-		nObj.style.display=""

-		parent.SetHasNts(1)

-	}

-	return 1

-}

-function ChkAutoAdv()

-{

-	if(SldHasTrans())

-		SlideObj.onfilterchange=AutoAdv

-	else

-		AutoAdv()

-}

-function AutoAdv()

-{

-	if(!IsWin("PPTSld") || !gUseSldTimings )return

-	var sld=GetCurSld()

-	if( (sld.mAdvDelay>0) && !parent.IsFramesMode() )

-		setTimeout("parent.GoToNextSld()",sld.mAdvDelay)

-}

-function GetObj(id)

-{

-	if(g_supportsPPTHTML) return document.all(id);

-	else return document.getElementById(id);

-}

-function SldHasTrans() { return SlideObj.style.filter != ""; }

-function GetSldId() { return sId=location.href.substring(location.href.lastIndexOf('/')+1) }

-function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }

-function IsWin( name ) { return window.name == name }

-function IsNts() { return IsWin("PPTNts") }

-function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }

-function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }

-function SupportsPPTHTML()

-{

-	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0

-	if( msie >= 0 )

-		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )

-	else

-		ver=parseInt(appVer)

-	return( ver >= 4 && msie >= 0 )

-}

-function _RSW()

-{

-	if( !g_supportsPPTHTML || IsNts() ||

-	  ( !g_scaleInFrame && (!IsWin("PPTSld") || !parent.IsFullScrMode()) ) )

-		return

-        var padding=0;

-        if( IsWin("PPTSld") && parent.IsFramesMode() ) padding=6

-	cltWidth=document.body.clientWidth-padding

-	cltHeight=document.body.clientHeight-padding

-	factor=(1.0*cltWidth)/g_origW

-	if( cltHeight < g_origH*factor )

-		factor=(1.0*cltHeight)/g_origH

-	newSize = g_origSz * factor

-	if( newSize < 1 ) newSize=1

-	s=SlideObj.style

-	s.fontSize=newSize+"px"

-	s.posWidth=g_origW*factor

-	s.posHeight=g_origH*factor

-	s.posLeft=(cltWidth-s.posWidth+padding)/2

-	s.posTop=(cltHeight-s.posHeight+padding)/2

-	if( g_scaleHyperlinks )

-		ScaleHyperlinks( factor )

-}

-function _InitAnimations()

-{

-	animRuntimeInstalled = ''+document.body.localTime != 'undefined';

-	isFullScreen = (window.name == "PPTSld") && !parent.IsFramesMode();

-	g_animUseRuntime = g_showAnimation && animRuntimeInstalled && !(isFullScreen && parent.IsSldVisited());

-	if( g_animUseRuntime ) {

-		collSeq = document.all.tags("seq");

-		if( collSeq != null ) {

-			for(ii=0;ii<collSeq.length;ii++) {

-				if( collSeq[ii].getAttribute( "p:nodeType" ) == "mainSeq" ) {

-					g_animMainSequence = collSeq[ii];

-					break;

-				}

-			}

-		}

-		if( g_animItemsToHide && document.body.playAnimations != false ) {

-			for(jj = 0; jj < g_animItemsToHide.length; jj++) {

-				if( hideObj = GetObj(g_animItemsToHide[jj]) )

-					hideObj.runtimeStyle.visibility="hidden";

-			}

-		}

-		if( g_animInteractiveItems ){

-			for(jj = 0; jj < g_animInteractiveItems.length; jj++) {

-				if( triggerObj = GetObj(g_animInteractiveItems[jj]) )

-					triggerObj.runtimeStyle.cursor="hand";

-			}

-		}

-		if( gUseSldTimings && ''+g_animSlideTime != 'undefined' ) {

-			adjustedTime = document.body.calculateAutoAdvanceTimes( g_animSlideTime, g_animEffectTimings );

-			if( IsWin("PPTSld") && adjustedTime != g_animSlideTime ) {

-			   var sld = GetCurSld();

-			   sld.mAdvDelay = adjustedTime * 1000;

-			}

-		}

-	}

-	return g_animUseRuntime;

-}

-gSldJump = 0, gSldJumpTrack = 0, gSldJumpIdx = "";

-function _KPH()

-{

-	if( IsNts() ) return;

-	if( !parent.IsFramesMode() && event.keyCode == 27 && !HideMenu() )

-		parent.window.close( self );

-	else if( event.keyCode == 32 ) {

-		if( window.name == "PPTSld" )

-			parent.PPTSld.DocumentOnClick();

-		else

-			parent.GoToNextSld();

-	}

-	CatchNumKeys( parent, event );

-}

-function CatchNumKeys( win, event ) {

-	if( win.IsFullScrMode() && (48<=event.keyCode) && (event.keyCode<=57) ) {

-		gSldJump = 1;

-		gSldJumpIdx += (event.keyCode-48).toString();

-	}

-	if( win.IsFullScrMode() && gSldJump && event.keyCode == 13 ) {

-		var numSlds = parent.GetSldList().mList.length

-		if ( gSldJumpIdx > numSlds )

-			gSldJumpIdx = numSlds;

-		if ( gSldJumpIdx >= 0 ) {

-			if ( gSldJumpIdx == 0 )

-				gSldJumpIdx = 1;

-			var jumpTo = parseInt(gSldJumpIdx);

-			gSldJump = 0; gSldJumpIdx = "";

-			win.GoToSld( parent.GetSldList().mList[jumpTo-1].mSldHref )

-		}

-	}

-}

-function _KDH()

-{

-	if( event.keyCode == 8 ) {

-		event.returnValue = 0;

-		parent.GoToPrevSld();

-	}

-}

-function DocumentOnClick()

-{

-	if( IsNts() || parent.HideMenu() ) return;

-	if( ( g_allowAdvOnClick && !parent.IsFramesMode() ) ||

-	    (event && (event.keyCode==32) ) )

-		parent.GoToNextSld();

-}

-

-var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = 1, gId="", g_bgSound="",

-    g_scaleHyperlinks = false, g_allowAdvOnClick = 1, g_showInBrowser = 0, gLoopCont = 0, gUseSldTimings = 1;

-var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && ( (window.name=="PPTSld" && !parent.IsFramesMode()) || g_showInBrowser );var g_animManager = null;

-var g_animUseRuntime = false;

-var g_animItemsToHide, g_animInteractiveItems, g_animSlideTime;

-var g_animMainSequence = null;

-var ENDSHOW_MESG="End of slide show, click to exit.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=23, SCRIPT_HREF="script.js", FULLSCR_HREF="fullscreen.html";

-var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = 0, gHasNarration = 0, gOtlOpen = true

-window.gPPTHTML=SupportsPPTHTML()

-var gMainDoc=new Array(new hrefList("slide0001.html",1,-1,1),new hrefList("slide0010.html",1,-1,1),new hrefList("slide0011.html",1,-1,1),new hrefList("slide0012.html",1,-1,1),new hrefList("slide0013.html",1,-1,1),new hrefList("slide0014.html",1,-1,1),new hrefList("slide0015.html",1,-1,1),new hrefList("slide0016.html",1,-1,1),new hrefList("slide0017.html",1,-1,1),new hrefList("slide0018.html",1,-1,1),new hrefList("slide0031.html",1,-1,1),new hrefList("slide0019.html",1,-1,1),new hrefList("slide0020.html",1,-1,1),new hrefList("slide0021.html",1,-1,1),new hrefList("slide0022.html",1,-1,1),new hrefList("slide0023.html",1,-1,1),new hrefList("slide0024.html",1,-1,1),new hrefList("slide0027.html",1,-1,1),new hrefList("slide0025.html",1,-1,1),new hrefList("slide0028.html",1,-1,1),new hrefList("slide0026.html",1,-1,1),new hrefList("slide0029.html",1,-1,1),new hrefList("slide0030.html",1,-1,1));

-function FullScrInit()

-{

-	g_allowAdvOnClick = GetCurSld().mAdvOnClk

-	document.body.style.backgroundColor="black"

-	document.oncontextmenu=parent._CM;

-	document.onkeydown = _KDH;

-	document.ondragstart=Cancel

-	document.onselectstart=Cancel

-	self.focus()

-}

-function Redirect( frmId )

-{

-	var str=document.location.hash,idx=str.indexOf('#'), sId=GetSldId()

-	if(idx>=0) str=str.substr(1);

-	if( window.name != frmId && ( sId != str) ) {

-		obj = GetObj("Main-File")

-		window.location.href=obj.href+"#"+sId

-		return 1

-	}

-	return 0

-}

-var MHTMLPrefix = CalculateMHTMLPrefix();

-function CalculateMHTMLPrefix()

-{

-	if ( document.location.protocol == 'mhtml:') {

-		href=new String(document.location.href)

-		Start=href.indexOf('!')+1

-		End=href.lastIndexOf('/')+1

-		if (End < Start)

-			return href.substring(0, Start)

-		else

-		return href.substring(0, End)

-	}

-	return '';

-}

-function GetTags(base,tag)

-{

-	if(g_supportsPPTHTML) return base.all.tags(tag);

-	else return base.getElementsByTagName(tag);

-}

-function UpdNtsPane(){ if(frames["PPTNts"]) PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }

-function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }

-function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }

-function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }

-function SetHasNts( fVal )

-{

-	if( gHasNts != fVal ) {

-		gHasNts=fVal

-		UpdNavPane()

-	}

-}

-function ToggleOtlText()

-{

-	gOtlTxtExp=!gOtlTxtExp

-	UpdOtlPane()

-}

-function ClearMedia()

-{

-	if (PPTSld.pptSound) PPTSld.pptSound.loop = 0;

-}

-function FullScreen()

-{

-	if ( PPTSld.g_animUseRuntime )

-		PPTSld.document.body.pause();

-	ClearMedia();

-	var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;

-	if(PPTNav.event.ctrlKey) {

-		var w = (window.screen.availWidth * 1.0) / 2.0

-		var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW

-		win = window.open( MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w + ",height=" + h );

-		if( win.document.body && PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-	else

-	{

-		win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );

-		if( win.document.body && PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-}

-function ToggleVNarration()

-{

-	rObj=PPTSld.document.all("NSPlay")

-	if( rObj && !PPTSld.g_animUseRuntime ) {

-		if( (rObj.playState == 1)||(rObj.playState == 0) )

-			rObj.Play()

-		else if( rObj.playState == 2 )

-			rObj.Pause()

-		else

-			return;

-	}

-	else if( PPTSld.g_animUseRuntime )

-	{

-		narObj = PPTSld.document.all("narrationID")

-		if( narObj )

-			narObj.togglePause()

-	}

-}

-function GetCurSldNum()

-{

-	obj=GetHrefObj(gCurSld)

-	if( obj.mOrigVis == 1 )

-		return obj.mSldIdx

-	else

-		return gCurSld

-}

-function GetNumSlds()

-{

-	if( GetHrefObj(gCurSld).mOrigVis == 1 )

-		return GetSldList().mNumVisSlds;

-	else

-		return GetSldList().mList.length

-}

-function GetSldNum( href )

-{

-	for(ii=0; ii<GetSldList().mList.length; ii++) {

-		if ( GetSldList().mList[ii].mSldHref == href )

-			return ii+1

-	}

-	return 1

-}

-function GetHrefObj( sldIdx ){ return GetSldList().mList[sldIdx-1] }

-function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }

-function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }

-function GoToNextSld()

-{

-	ii=gCurSld + 1

-	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {

-		if( ii<=GetSldList().mList.length ) {

-			obj=GetHrefObj(ii)

-			obj.mVis=1

-			GoToSldNum(ii)

-			return

-		}

-	}

-	else {

-		obj=GetHrefObj( ii )

-		while ( obj && ( obj.mOrigVis == 0 ) )

-			obj=GetHrefObj(++ii)

-		if( obj && obj.mOrigVis ) {

-			GoToSldNum(ii)

-			return

-		}

-	}

-	if( gSldStack.length > 1 )

-		PopSldList();

-	else if( !IsFramesMode() ) {

-		if( gLoopCont )

-			GoToFirst()

-		else

-			EndShow()

-	}

-}

-function GoToPrevSld()

-{

-	ii=gCurSld-1

-	if( ii > 0 ) {

-		obj=GetHrefObj(ii)

-		while ( obj && ( obj.mVis == 0 ) && ( ii>0 ) )

-			obj=GetHrefObj(--ii)

-		if( ii == 0 ) ii=1

-			GoToSldNum(ii)

-	}

-}

-function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }

-function GoToLast()

-{

-	ii=GetSldList().mList.length

-	if( ii != gCurSld )

-		GoToSld( GetHrefObj(ii).mSldHref )

-}

-function GoToSldNum( num )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	obj = GetHrefObj( num )

-	obj.mVis=1

-	gPrevSld=gCurSld

-	gCurSld = num;

-	PPTSld.location.replace(MHTMLPrefix+obj.mSldHref)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function GoToSld( href )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	GetHrefObj( GetSldNum(href) ).mVis=1

-	PPTSld.location.replace(MHTMLPrefix+href)

-}

-function SldUpdated( id )

-{

-	if( id == GetHrefObj(gCurSld).mSldHref ) return

-	gPrevSld=gCurSld

-	gCurSld=GetSldNum(id)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }

-function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }

-function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }

-function CloseWindow() {

-	if( HideMenu() ) return;

-	var event = PPTSld.event;

-	if( !IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) )

-		window.close( self );

-	CatchNumKeys( self, event );

-}

-function Unload() { gIsEndShow=0; }

-function SetupEndShow() {

-	gIsEndShow=1;

-	PPTSld.document.body.scroll="no";

-	PPTSld.document.onkeypress=CloseWindow;

-	PPTSld.document.onclick=CloseWindow;

-	PPTSld.document.oncontextmenu=_CM;

-}

-function EndShow()

-{

-	if( IsFramesMode() ) return

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	doc=PPTSld.document

-	var dir = doc.body.dir

-	if( dir != "rtl" ) dir = "ltr";

-	doc.open()

-	doc.writeln('<html><body dir=' + dir + ' bgcolor=black onload=parent.SetupEndShow() onunload=parent.Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')

-	doc.close()

-}

-function SetSldVisited(){ GetSldList().mList[gCurSld-1].mVisited=true }

-function IsSldVisited(){ return GetSldList().mList[gCurSld-1].mVisited }

-function hrefList( sldHref, visible, advDelay, advClk )

-{

-	this.mSldHref= this.mNtsHref = sldHref

-	this.mOrigVis= this.mVis = visible

-	this.mVisited= false

-	this.mAdvDelay= advDelay

-	this.mAdvOnClk= advClk

-}

-function SldList(arr,curSld,fEnd)

-{

-	this.mCurSld = curSld;

-	this.mList = new Array();

-	var idx = 1;

-	for(ii=0;ii<arr.length;ii++) {

-		this.mList[ii] = new hrefList( arr[ii].mSldHref, arr[ii].mOrigVis, arr[ii].mAdvDelay, arr[ii].mAdvOnClk );

-		if( arr[ii].mOrigVis )

-			this.mList[ii].mSldIdx = idx++;

-	}

-	this.mNumVisSlds = idx-1;

-	this.fEndShow = fEnd;

-}

-function GetSldList() {	return gSldStack[gSldStack.length-1] }

-function GetCurSld() { return parent.GetSldList().mList[parent.gCurSld - 1] }

-gSldStack = new Array();

-gSldStack[0] = new SldList(gMainDoc,gCurSld,1)

-function ToggleOtlPane()

-{

-	frmset=document.all("PPTHorizAdjust")

-	frm=document.all("PPTOtl")

-	if( gOtlOpen )

-		frmset.cols="*,100%"

-	else

-		frmset.cols="25%,*"

-	gOtlOpen=!gOtlOpen

-	frm.noResize=!frm.noResize

-	UpdOtNavPane()

-}

-function ToggleNtsPane()

-{

-	frmset=document.all("PPTVertAdjust")

-	frm=document.all("PPTNts")

-	if( gNtsOpen )

-		frmset.rows="100%,*"

-	else

-		frmset.rows="*,20%"

-	gNtsOpen=!gNtsOpen

-	UpdNtsPane()

-}

-function ViewCustomShow(idx,fEnd)

-{

-	if( !IsFullScrMode() ) return;

-	var sldList = new Array();

-	var custShow = custShowList[idx-1];

-	var jj = 0;

-	for( ii=0;ii<custShow.length;ii++ ) {

-		if( custShow[ii] <= gMainDoc.length )

-			sldList[jj++] = gMainDoc[custShow[ii]-1];

-	}

-	if (sldList.length > 0) {

-	PushSldList(sldList,fEnd);

-	gCurSld = 1;

-	}

-	else

-		if( PPTSld.event ) PPTSld.event.cancelBubble=true

-}

-function PushSldList(arr,fEnd) {

-	var ii = gSldStack.length;

-	gSldStack[ii] = new SldList(arr,gCurSld,fEnd);

-	GoToSld( gSldStack[ii].mList[0].mSldHref );

-}

-function PopSldList() {

-	if (gSldStack[gSldStack.length-1].fEndShow)

-		EndShow()

-	else {

-	gCurSld = gSldStack[gSldStack.length-1].mCurSld;

-	gSldStack[gSldStack.length-1] = null;

-	gSldStack.length--;

-	var sldList = gSldStack[gSldStack.length-1];

-	GoToSld( sldList.mList[gCurSld - 1].mSldHref );

-	}

-}

-var custShowList=new Array();

-function ImgBtn( oId,bId,w,action )

-{

-	var t=this

-	t.Perform    = _IBP

-	t.SetActive  = _IBSetA

-	t.SetInactive= _IBSetI

-	t.SetPressed = _IBSetP

-	t.SetDisabled= _IBSetD

-	t.Enabled    = _IBSetE

-	t.ChangeIcon = null

-	t.UserAction = action

-	t.ChgState   = _IBUI

-	t.mObjId   = oId

-	t.mBorderId= bId

-	t.mWidth   = w

-	t.mIsOn    = t.mCurState = 0

-}

-function _IBSetA()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetI()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetP()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gShadowClr,gHiliteClr,2 )

-		obj.style.posLeft+=1; obj.style.posTop+=1

-	}

-}

-function _IBSetD()

-{

-	obj=this.ChgState( gFaceClr,gFaceClr,0 )

-	obj.style.posTop=0

-}

-function _IBSetE( state )

-{

-	var t=this

-	GetObj( t.mBorderId ).style.visibility="visible"

-	if( state != t.mIsOn ) {

-		t.mIsOn=state

-		if( state )

-			t.SetInactive()

-		else

-			t.SetDisabled()

-	}

-}

-function _IBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-		if( t.ChangeIcon ) {

-			obj=GetObj(t.mObjId)

-			if( t.ChangeIcon() )

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth

-			else

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth

-		}

-		t.SetActive()

-	}

-}

-function _IBUI( clr1,clr2,nextState )

-{

-	var t=this

-	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )

-	obj=GetObj( t.mObjId )

-	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop

-	t.mCurState=nextState

-	return obj

-}

-function TxtBtn( oId,oeId,action,chkState )

-{

-	var t=this

-	t.Perform    = _TBP

-	t.SetActive  = _TBSetA

-	t.SetInactive= _TBSetI

-	t.SetPressed = _TBSetP

-	t.SetDisabled= _TBSetD

-	t.SetEnabled = _TBSetE

-	t.GetState   = chkState

-	t.UserAction = action

-	t.ChgState   = _TBUI

-	t.mObjId      = oId

-	t.m_elementsId= oeId

-	t.mIsOn       = 1

-}

-function _TBSetA()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gHiliteClr,gShadowClr,0,0 )

-}

-function _TBSetI()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-}

-function _TBSetP()

-{

-	if( this.mIsOn )

-		this.ChgState( gShadowClr,gHiliteClr,1,1 )

-}

-function _TBSetD()

-{

-	this.ChgState( gFaceClr,gFaceClr,0,0 )

-	this.mIsOn = 0

-}

-function _TBSetE()

-{

-	var t=this

-	if( !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-	else

-		t.ChgState( gShadowClr,gHiliteClr,1,1 )

-	t.mIsOn = 1

-}

-function _TBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-        if( !t.GetState )

-            return

-		if( t.GetState() )

-			t.SetPressed()

-		else

-			t.SetActive()

-	}

-}

-function _TBUI( clr1,clr2,lOffset,tOffset )

-{

-	SetBorder( GetObj( this.mObjId ),clr1,clr2 )

-	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )

-}

-function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }

-function SetBorder( obj, upperLeft, lowerRight )

-{

-	s=obj.style;

-	s.borderStyle      = "solid"

-	s.borderWidth      = 1

-	s.borderLeftColor  = s.borderTopColor = upperLeft

-	s.borderBottomColor= s.borderRightColor = lowerRight

-}

-function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }

-function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }

-function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }

-function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }

-function BtnOnUp()

-{

-	b=GetBtnObj()

-	if( b != null )

-		b.Perform()

-	else

-		Upd()

-}

-function GetNtsState(){ return parent.gNtsOpen }

-function GetOtlState(){ return parent.gOtlOpen }

-function GetOtlTxtState(){ return parent.gOtlTxtExp }

-function NtsBtnSetFlag( fVal )

-{

-	s=document.all.item( this.m_flagId ).style

-	s.display="none"

-	if( fVal )

-		s.display=""

-	else

-		s.display="none"

-}

-function _BSetA_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetActive() }

-function _BSetI_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetInactive() }

-function _BSetP_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetPressed() }

-function _BSetA_BorderImg()

-{

-	b = gBtnArr[this.mBorderId]

-	if( b != null && this.mIsOn && !b.GetState() ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _BSetI_BorderImg()

-{

-	b = gBtnArr[this.mBorderId]

-	if( b != null && this.mIsOn && !b.GetState() ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"

-var gBtnArr = new Array()

-gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_otlElem"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_nts"] = new ImgBtn( "nb_nts","nb_ntsBorder",10,parent.ToggleNtsPane )

-gBtnArr["nb_nts"].SetActive = _BSetA_BorderImg;

-gBtnArr["nb_nts"].SetInactive = _BSetI_BorderImg;

-gBtnArr["nb_ntsBorder"] = new TxtBtn( "nb_ntsBorder","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_ntsElem"] = new TxtBtn( "nb_ntsBorder","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_prevBorder"] = gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )

-gBtnArr["nb_nextBorder"] = gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )

-gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )

-gBtnArr["nb_sldshwBorder"] = new TxtBtn( "nb_sldshw","nb_sldshwBorder",parent.FullScreen,null )

-gBtnArr["nb_sldshwBorder"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwBorder"].SetInactive = _BSetI_Border;

-gBtnArr["nb_sldshwText"] = new TxtBtn( "nb_sldshw","nb_sldshwText",parent.FullScreen,null )

-gBtnArr["nb_sldshwText"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwText"].SetInactive = _BSetI_Border;

-gBtnArr["nb_voice"] = gBtnArr["nb_voiceBorder"] = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )

-gBtnArr["nb_otlTxtBorder"] = gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )

-gBtnArr["nb_ntsBorder"].m_flagId= "nb_nts"

-gBtnArr["nb_ntsBorder"].SetFlag = NtsBtnSetFlag

-gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState

-var sNext="Next",sPrev="Previous",sEnd="End Show",sFont="Arial",sArrow="Arrow",sFreeform="Freeform",sRect="Rectangle",sOval="Oval"

-function ShowMenu()

-{

-	BuildMenu();

-	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

-	m = PPTSld.document.all.item("ctxtmenu")

-	m.style.pixelLeft=x

-	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )

-		m.style.pixelLeft=x-m.scrollWidth

-	m.style.pixelTop=y

-	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )

-		m.style.pixelTop=y-m.scrollHeight

-	m.style.display=""

-}

-function _CM()

-{

-	if( !parent.IsFullScrMode() ) return;

-	if(!PPTSld.event.ctrlKey) {

-		ShowMenu()

-		return false

-	} else

-		HideMenu()

-}

-function BuildMenu()

-{

-	if( PPTSld.document.all.item("ctxtmenu") ) return

-	var mObj=CreateItem( PPTSld.document.body )

-	mObj.id="ctxtmenu"

-	mObj.style.visibility="hidden"

-	var s=mObj.style

-	s.position="absolute"

-	s.cursor="default"

-	s.width="120px"

-	SetCMBorder(mObj,"menu","black")

-	var iObj=CreateItem( mObj )

-	SetCMBorder( iObj, "threedhighlight","threedshadow" )

-	iObj.style.padding=2

-	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )

-	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )

-	CreateSeparator( iObj )

-	CreateMenuItem( iObj,sEnd,M_End,M_True )

-	mObj.style.visibility="visible"

-}

-function Cancel() { window.event.cancelBubble=true; window.event.returnValue=false }

-function Highlight() { ChangeClr("activecaption","threedhighlight") }

-function Deselect() { ChangeClr("threedface","menutext") }

-function Perform()

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() )

-		e.Action()

-	else

-		PPTSld.event.cancelBubble=true

-}

-function ChangeClr( bg,clr )

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() ) {

-		e.style.backgroundColor=bg

-		e.style.color=clr

-	}

-}

-function M_HasPrevSld() { return( parent.HasPrevSld() ) }

-function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }

-function M_GoPrevSld() { if( gIsEndShow ) { gIsEndShow=0; history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }

-function M_True() { return true }

-function M_End() { window.close( self ) }

-function CreateMenuItem( node,text,action,eval )

-{

-	var e=CreateItem( node )

-	e.type="menuitem"

-	e.Action=action

-	e.IsActive=eval

-	e.innerHTML=text

-	if( !e.IsActive() )

-		e.style.color="threedshadow"

-	e.onclick=Perform

-	e.onmouseover=Highlight

-	e.onmouseout=Deselect

-	s=e.style;

-	s.fontFamily=sFont

-	s.fontSize="9pt"

-	s.paddingLeft=2

-}

-function CreateSeparator( node )

-{

-	var sObj=CreateItem( node )

-	SetCMBorder(sObj,"menu","menu")

-	var s=sObj.style

-	s.borderTopColor="threedshadow"

-	s.borderBottomColor="threedhighlight"

-	s.height=1

-	s.fontSize="0px"

-}

-function CreateItem( node )

-{

-	var elem=PPTSld.document.createElement("DIV")

-	node.insertBefore( elem )

-	return elem

-}

-function SetCMBorder( o,ltClr,rbClr )

-{

-	var s=o.style

-	s.backgroundColor="menu"

-	s.borderStyle="solid"

-	s.borderWidth=1

-	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr

-}

diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0001.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0001.html
deleted file mode 100644
index 87517e5..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0001.html
+++ /dev/null
@@ -1,118 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: WhatÂ’s New in MDT?">
-<link rel=Stylesheet href="master15_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:black;}
-.CT
-	{color:#2F2672;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="3"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master15.xml">
- <p:shaperange href="master15.xml#_x0000_s2049"/><![if !ppt]><p:shaperange
-  href="master15.xml#Picture_x0020_2"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_2" src="master15_image003.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master15.xml#Picture_x0020_5"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_5" src="master15_image004.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master15.xml#_x0000_s2052"/>
- <div v:shape="_x0000_s2052">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.0%;left:1.49%;width:97.75%;
- height:3.0%'><span style='mso-bidi-font-family:Arial;font-size:54%'>© 2008 by
- Embarcadero Technologies; made available under the EPL v1.0 |<span
- style='mso-spacerun:yes'>  </span>March 19, 2008</span></div>
- </div>
- <![endif]><p:shaperange href="master15.xml#_x0000_m2053"/><v:shape id="_x0000_s3074"
-  type="#_x0000_m2053" style='position:absolute;left:54pt;top:126pt;width:612pt;
-  height:90pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="centerTitle" position="-1"/></v:shape><p:shaperange
-  href="master15.xml#_x0000_m2054"/><v:shape id="_x0000_s3075" type="#_x0000_m2054"
-  style='position:absolute;left:108pt;top:270pt;width:7in;height:138pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="subTitle" position="-1"/></v:shape>
- <div v:shape="_x0000_s3074" class=CT style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:29.0%;left:8.42%;width:83.14%;height:6.0%'>WhatÂ’s <b>New</b>
- in MDT?</div>
- <div v:shape="_x0000_s3075" style='tab-stops:.4427in'>
- <div class=CB1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=CB2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=CB3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=CB4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=CB style='text-align:left;mso-line-spacing:"90 20 0";mso-char-wrap:
- 1;mso-kinsoku-overflow:1;position:absolute;top:50.5%;left:15.91%;width:68.16%;
- height:5.25%'>Short Talk&#13;</div>
- <div class=CB style='text-align:left;mso-line-spacing:"90 20 0";mso-char-wrap:
- 1;mso-kinsoku-overflow:1;position:absolute;top:56.25%;left:15.91%;width:68.16%;
- height:5.25%'>&#13;</div>
- <div class=CB style='text-align:left;mso-line-spacing:"90 20 0";mso-char-wrap:
- 1;mso-kinsoku-overflow:1;position:absolute;top:62.25%;left:15.91%;width:68.16%;
- height:5.25%'>Kenn Hussey&#13;</div>
- <div class=CB style='text-align:left;mso-line-spacing:"90 20 0";mso-char-wrap:
- 1;mso-kinsoku-overflow:1;position:absolute;top:68.0%;left:15.91%;width:68.16%;
- height:5.25%'>Embarcadero Technologies</div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0010.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0010.html
deleted file mode 100644
index b8fec6a..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0010.html
+++ /dev/null
@@ -1,157 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Contents">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="4"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s4098"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s4099" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s4098" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s4099" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>Overview&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:31.75%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:37.25%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>Participants&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:42.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:47.75%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>Components&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:53.0%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:58.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>Themes&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:63.75%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:69.0%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>Plan Items&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:74.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:79.75%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>How Can You Help?</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0011.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0011.html
deleted file mode 100644
index 407dec8..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0011.html
+++ /dev/null
@@ -1,158 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Overview">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="5"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s5122"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s5123" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s5122" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Overview</div>
- <div v:shape="_x0000_s5123" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:90.82%;height:4.5%'><span
- style='font-size:83%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.26%'>•</span></span><span style='font-size:83%'>Model Development
- Tools (MDT) is an Eclipse </span><span style='font-size:83%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/modeling"/><a
- href="http://www.eclipse.org/modeling" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Modeling</a></span><span
- style='font-size:83%'><span style='mso-spacerun:yes'> </span>sub-</span></span><span
- style='position:absolute;top:31.0%;left:10.48%;width:81.27%;height:4.5%'><span
- style='font-size:83%'>project at </span><span style='font-size:83%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/modeling/mdt/"/><a
- href="http://www.eclipse.org/modeling/mdt/" target="_parent"
- onclick="window.event.cancelBubble=true;">http://www.eclipse.org/modeling/mdt/</a></span><span
- style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:36.25%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:41.5%;left:10.48%;width:88.57%;height:4.5%'><span
- style='font-size:83%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.32%'>•</span></span><span style='font-size:83%'>Inspired by the
- Eclipse communityÂ’s need for more end user </span></span><span
- style='position:absolute;top:46.0%;left:10.48%;width:81.27%;height:4.5%'><span
- style='font-size:83%'>&quot;tooling&quot; from the Modeling project&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:51.25%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:56.75%;left:10.48%;width:83.89%;height:4.5%'><span
- style='font-size:83%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.45%'>•</span></span><span style='font-size:83%'>Purpose of MDT is to
- provide extensible frameworks and </span></span><span style='position:absolute;
- top:61.0%;left:10.48%;width:86.89%;height:4.5%'><span style='font-size:83%'>exemplary
- tools for the metamodels within the scope of the </span></span><span
- style='position:absolute;top:65.5%;left:10.48%;width:81.27%;height:4.5%'><span
- style='font-size:83%'>Modeling project&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:71.0%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:76.25%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>Next release scheduled for June 2008 (</span><span
- style='font-size:83%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/projects/ganymede.php"/><a
- href="http://www.eclipse.org/projects/ganymede.php" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Ganymede</a></span><span
- style='font-size:83%'>)</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0012.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0012.html
deleted file mode 100644
index 7e93c3a..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0012.html
+++ /dev/null
@@ -1,171 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Participants">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="6"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s6146"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s6147" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s6146" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Participants</div>
- <div v:shape="_x0000_s6147" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:26.0%;left:10.48%;width:81.27%;
- height:5.25%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span>Project lead is <p:onmouseclick hyperlinktype="url"
-  href="mailto:Kenn.Hussey@embarcadero.com"/><a
- href="mailto:Kenn.Hussey@embarcadero.com" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Kenn
- Hussey</a><span style='mso-spacerun:yes'> </span>(Embarcadero </span><span
- style='position:absolute;top:30.75%;left:10.48%;width:81.27%;height:5.25%'>Technologies)&#13;</span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:36.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span style='mso-special-format:bullet;position:
- absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:42.5%;left:10.48%;width:81.27%;
- height:5.25%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span>Committers currently from <p:onmouseclick
-  hyperlinktype="url" href="http://www.ibm.com/"/><a href="http://www.ibm.com/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>IBM</a>, <p:onmouseclick hyperlinktype="url"
-  href="http://www.borland.com/"/><a href="http://www.borland.com/"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Borland</a>, </span><span style='position:absolute;top:47.25%;
- left:10.48%;width:82.39%;height:5.25%'><b><p:onmouseclick hyperlinktype="url"
-  href="http://www.embarcadero.com/"/><a href="http://www.embarcadero.com/"
- target="_parent" onclick="window.event.cancelBubble=true;">Embarcadero
- Technologies</a></b>, <b><p:onmouseclick hyperlinktype="url"
-  href="http://www.adaptive.com/"/><a href="http://www.adaptive.com/"
- target="_parent" onclick="window.event.cancelBubble=true;">Adaptive</a></b>, <b><p:onmouseclick
-  hyperlinktype="url" href="http://www.xmlmodeling.com/"/><a
- href="http://www.xmlmodeling.com/" target="_parent"
- onclick="window.event.cancelBubble=true;">XML </a></b></span><span
- style='position:absolute;top:52.25%;left:10.48%;width:81.27%;height:5.25%'><b><p:onmouseclick
-  hyperlinktype="url" href="http://www.xmlmodeling.com/"/><a
- href="http://www.xmlmodeling.com/" target="_parent"
- onclick="window.event.cancelBubble=true;">Modeling</a></b>, and <b><p:onmouseclick
-  hyperlinktype="url" href="http://www.soyatec.com/"/><a
- href="http://www.soyatec.com/" target="_parent"
- onclick="window.event.cancelBubble=true;">Soyatec</a></b><b>&#13;</b></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:58.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span style='mso-special-format:bullet;position:
- absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:63.75%;left:10.48%;width:92.69%;
- height:5.25%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.22%'>•</span>Potential contributions from Atos Origin, LS Internet-</span><span
- style='position:absolute;top:68.75%;left:10.48%;width:97.19%;height:5.25%'>Technologie,
- Zeligsoft, Papyrus, Topcased, and others&#13;</span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:74.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span style='mso-special-format:bullet;position:
- absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:80.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span>Collaborations
- with <b><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/datatools/project_modelbase/"/><a
- href="http://www.eclipse.org/datatools/project_modelbase/" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>DTP</a></b><span
- style='mso-spacerun:yes'> </span>and <b><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/stp/bpmn/index.php"/><a
- href="http://www.eclipse.org/stp/bpmn/index.php" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>STP</a></b><span
- style='mso-spacerun:yes'> </span>projects</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0013.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0013.html
deleted file mode 100644
index 9539ada..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0013.html
+++ /dev/null
@@ -1,213 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Components">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="7"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s7170"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s7171" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s7170" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Components</div>
- <div v:shape="_x0000_s7171" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:25.75%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:67%'><b>Business Process
- Model and Notation (BPMN2)&#13;</b></span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:29.5%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:67%;
- display:none'><b>&#13;</b></span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:33.0%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:67%'>EMF Ontology
- Definition Metamodel (EODM)&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:36.5%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:67%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:40.0%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:67%'><b>Information
- Management Metamodel (IMM)&#13;</b></span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:43.75%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:67%;
- display:none'><b>&#13;</b></span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:47.25%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:67%'>Object Constraint
- Language (OCL)&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:50.75%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:67%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:54.5%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:67%'><b>OCL </b></span><span
- style='font-size:67%'><b>Tools&#13;</b></span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:58.0%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:67%;
- display:none'><b>&#13;</b></span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:61.5%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:67%'><b>Semantics of
- Business Vocabulary and Rules (SBVR)</b></span><span style='font-size:67%;
- display:none'><b>&#13;</b></span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:65.0%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:67%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:68.75%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:67%'>Unified Modeling
- Language</span><span style='mso-bidi-font-family:Arial;font-size:67%'>™</span><span
- style='font-size:67%'> 2.x (UML2)&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:72.25%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:67%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:75.75%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:67%'>UML2 Tools&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:79.25%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:67%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:83.0%;left:8.42%;width:83.14%;height:3.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:67%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:67%'>XML</span><span
- style='mso-bidi-font-family:Arial;font-size:67%'>™</span><span
- style='font-size:67%'> Schema Infoset Model (XSD</span><span style='font-size:
- 67%'>)&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:86.5%;left:8.42%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:75%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:75%;
- mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0014.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0014.html
deleted file mode 100644
index 3c4a358..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0014.html
+++ /dev/null
@@ -1,182 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Components – BPMN2">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="8"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s8194"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s8195" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s8194" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Components
- – BPMN2</div>
- <div v:shape="_x0000_s8195" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:26.25%;left:10.48%;width:81.83%;
- height:4.0%'><span style='font-size:75%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.51%'>•</span></span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://wiki.eclipse.org/MDT-BPMN2"/><a
- href="http://wiki.eclipse.org/MDT-BPMN2" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>BPMN2</a></span><span
- style='font-size:75%'><span style='mso-spacerun:yes'> </span>is a </span><span
- style='font-size:75%'><b>new</b></span><span style='font-size:75%'> component
- aimed at providing a metamodel </span></span><span style='position:absolute;
- top:29.75%;left:10.48%;width:94.75%;height:4.0%'><span style='font-size:75%'>implementation
- based on the forthcoming </span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/cgi-bin/doc?bmi/2007-6-5"/><a
- href="http://www.omg.org/cgi-bin/doc?bmi/2007-6-5" target="_parent"
- onclick="window.event.cancelBubble=true;">Business Process Model and </a></span></span><span
- style='position:absolute;top:33.25%;left:10.48%;width:81.27%;height:4.0%'><span
- style='font-size:75%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.omg.org/cgi-bin/doc?bmi/2007-6-5"/><a
- href="http://www.omg.org/cgi-bin/doc?bmi/2007-6-5" target="_parent"
- onclick="window.event.cancelBubble=true;">Notation (BPMN</a></span><span
- style='mso-bidi-font-family:Arial;font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/cgi-bin/doc?bmi/2007-6-5"/><a
- href="http://www.omg.org/cgi-bin/doc?bmi/2007-6-5" target="_parent"
- onclick="window.event.cancelBubble=true;">™</a></span><span style='font-size:
- 75%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.omg.org/cgi-bin/doc?bmi/2007-6-5"/><a
- href="http://www.omg.org/cgi-bin/doc?bmi/2007-6-5" target="_parent"
- onclick="window.event.cancelBubble=true;"> 2.0)</a></span><span
- style='font-size:75%'> </span><span style='font-size:75%'>OMG</span><span
- style='mso-bidi-font-family:Arial;font-size:75%'>™</span><span
- style='font-size:75%'> specification&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:37.75%;left:8.42%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:75%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:75%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:42.25%;left:8.42%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:75%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%'>BPMN2 will
- provide&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:46.5%;left:15.35%;width:80.52%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-3.02%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>an open source &quot;reference&quot; implementation of
- the BPMN 2.0 </span></span><span style='position:absolute;top:50.25%;
- left:15.35%;width:76.21%;height:4.0%'><span style='font-size:90%'>specification&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:54.75%;left:15.35%;width:91.57%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.65%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>an EMF-based foundation on which business process
- modeling tools </span></span><span style='position:absolute;top:58.25%;
- left:15.35%;width:76.21%;height:4.0%'><span style='font-size:90%'>can be
- built&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:62.75%;left:15.35%;width:89.7%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.71%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>a basis for integrating and interchanging artifacts
- between business </span></span><span style='position:absolute;top:66.25%;
- left:15.35%;width:76.21%;height:4.0%'><span style='font-size:90%'>process
- modeling tools&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:70.75%;left:15.35%;width:87.64%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.77%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>a forum for engaging the community in validation of the
- BPMN 2.0 </span></span><span style='position:absolute;top:74.25%;left:15.35%;
- width:76.21%;height:4.0%'><span style='font-size:90%'>specification&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:78.75%;left:15.35%;width:88.76%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.74%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>an opportunity for increased collaboration between
- Eclipse and the </span></span><span style='position:absolute;top:82.25%;
- left:15.35%;width:76.21%;height:4.0%'><span style='font-size:90%'>OMG</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0015.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0015.html
deleted file mode 100644
index 6e566f8..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0015.html
+++ /dev/null
@@ -1,161 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Components – EODM">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="9"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s9218"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s9219" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s9218" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Components
- – EODM</div>
- <div v:shape="_x0000_s9219" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:93.07%;height:4.0%'><span
- style='font-size:75%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.21%'>•</span></span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://wiki.eclipse.org/MDT-EODM"/><a
- href="http://wiki.eclipse.org/MDT-EODM" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>EODM</a></span><span
- style='font-size:75%'><span style='mso-spacerun:yes'> </span>is an
- implementation of the </span><span style='font-size:75%'>RDF™(</span><span
- style='font-size:75%'>S)/OWL metamodels of the </span></span><span
- style='position:absolute;top:30.5%;left:10.48%;width:91.57%;height:4.0%'><span
- style='font-size:75%'><p:onmouseclick hyperlinktype="url" location="ODM"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#ODM"
- target="_parent" onclick="window.event.cancelBubble=true;">Ontology Definition
- Metamodel (ODM)</a></span><span style='font-size:75%'> OMG specification using
- EMF </span></span><span style='position:absolute;top:34.5%;left:10.48%;
- width:90.07%;height:4.0%'><span style='font-size:75%'>with additional parsing,
- inference, model transformation, and editing </span></span><span
- style='position:absolute;top:38.5%;left:10.48%;width:81.27%;height:4.0%'><span
- style='font-size:75%'>functions&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.25%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.0%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:75%'>EODM provides&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:53.0%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>an EMF-based RDF/OWL
- model&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:57.75%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>an RDF/OWL parser&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.5%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>an RDF/OWL reasoner&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:67.25%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>an RDF/OWL
- transformer&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:72.25%;left:12.92%;width:87.45%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.78%;width:97.21%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.86%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>a workbench which
- provides basic Eclipse editors for RDF/OWL</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0016.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0016.html
deleted file mode 100644
index 3a8e509..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0016.html
+++ /dev/null
@@ -1,170 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Components – IMM">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="10"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s10242"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s10243" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s10242" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Components
- – IMM</div>
- <div v:shape="_x0000_s10243" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:26.25%;left:10.48%;width:83.89%;
- height:4.0%'><span style='font-size:75%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.45%'>•</span></span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://wiki.eclipse.org/MDT-IMM"/><a
- href="http://wiki.eclipse.org/MDT-IMM" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>IMM</a></span><span
- style='font-size:75%'><span style='mso-spacerun:yes'> </span>is a </span><span
- style='font-size:75%'><b>new</b></span><span style='font-size:75%'> component
- aimed at providing metamodel/profile </span></span><span style='position:absolute;
- top:29.75%;left:10.48%;width:90.82%;height:4.0%'><span style='font-size:75%'>implementations
- based on the forthcoming </span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/cgi-bin/doc?ab/2005-12-2"/><a
- href="http://www.omg.org/cgi-bin/doc?ab/2005-12-2" target="_parent"
- onclick="window.event.cancelBubble=true;">Information Management </a></span></span><span
- style='position:absolute;top:33.25%;left:10.48%;width:81.27%;height:4.0%'><span
- style='font-size:75%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.omg.org/cgi-bin/doc?ab/2005-12-2"/><a
- href="http://www.omg.org/cgi-bin/doc?ab/2005-12-2" target="_parent"
- onclick="window.event.cancelBubble=true;">Metamodel (IMM)</a></span><span
- style='font-size:75%'> OMG specification&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:37.75%;left:8.42%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:75%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:75%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:42.25%;left:8.42%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:75%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%'>IMM will provide &#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:46.5%;left:12.92%;width:92.5%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.63%;width:97.36%;height:100.0%'><span
- style='font-size:90%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.7%;font-family:Wingdings'>w</span></span><span style='font-size:90%'>an
- open source &quot;reference&quot; implementation of the IMM specification
- &#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:51.0%;left:15.35%;width:81.46%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.98%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>an EMF-based foundation on which information management </span></span><span
- style='position:absolute;top:54.75%;left:15.35%;width:76.21%;height:4.0%'><span
- style='font-size:90%'>modeling tools can be built&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:59.0%;left:15.35%;width:76.96%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-3.16%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>a basis for integrating and interchanging artifacts
- between </span></span><span style='position:absolute;top:62.75%;left:15.35%;
- width:76.21%;height:4.0%'><span style='font-size:90%'>information management
- modeling tools&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:67.0%;left:15.35%;width:79.77%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-3.05%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>a forum for engaging the community in validation of the
- IMM </span></span><span style='position:absolute;top:70.75%;left:15.35%;
- width:76.21%;height:4.0%'><span style='font-size:90%'>specification&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:75.25%;left:15.35%;width:88.76%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.74%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>an opportunity for increased collaboration between
- Eclipse and the </span></span><span style='position:absolute;top:78.75%;
- left:15.35%;width:76.21%;height:4.0%'><span style='font-size:90%'>OMG</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0017.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0017.html
deleted file mode 100644
index 149ac83..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0017.html
+++ /dev/null
@@ -1,159 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Components – OCL">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="11"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s11266"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s11267" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s11266" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Components
- – OCL</div>
- <div v:shape="_x0000_s11267" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:26.25%;left:10.48%;width:90.26%;
- height:4.0%'><span style='font-size:75%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.28%'>•</span></span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://wiki.eclipse.org/MDT-OCL"/><a
- href="http://wiki.eclipse.org/MDT-OCL" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>OCL</a></span><span
- style='font-size:75%'><span style='mso-spacerun:yes'> </span>is an
- implementation of the </span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" location="OCL"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#OCL"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Object Constraint Language (OCL)</a></span><span style='font-size:
- 75%'><span style='mso-spacerun:yes'> </span></span></span><span
- style='position:absolute;top:29.75%;left:10.48%;width:81.27%;height:4.0%'><span
- style='font-size:75%'>OMG specification for EMF-based models&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:34.25%;left:8.42%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:75%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:75%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:38.5%;left:8.42%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:75%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%'>OCL provides&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:43.0%;left:12.92%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.92%;width:97.07%;height:100.0%'><span
- style='font-size:90%'><span style='mso-special-format:bullet;position:absolute;
- left:-3.01%;font-family:Wingdings'>w</span></span><span style='font-size:90%'>APIs
- for parsing and evaluating OCL constraints and queries&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:47.5%;left:15.35%;width:79.58%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-3.05%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>an Ecore implementation of the OCL abstract syntax
- model, </span></span><span style='position:absolute;top:51.0%;left:15.35%;
- width:81.08%;height:4.0%'><span style='font-size:90%'>including support for
- serialization of parsed OCL expressions&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:55.5%;left:15.35%;width:82.58%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.94%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>a visitor API for analyzing/transforming the AST model
- of OCL </span></span><span style='position:absolute;top:59.0%;left:15.35%;
- width:76.21%;height:4.0%'><span style='font-size:90%'>expressions&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:63.5%;left:15.35%;width:78.27%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-3.11%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>an extensibility API for clients to customize the
- parsing and </span></span><span style='position:absolute;top:67.0%;left:15.35%;
- width:76.21%;height:4.0%'><span style='font-size:90%'>evaluation environments
- used by the parser</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0018.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0018.html
deleted file mode 100644
index c4ca552..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0018.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Components – OCL Tools">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="12"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s12290"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s12291" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s12290" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Components
- – OCL Tools</div>
- <div v:shape="_x0000_s12291" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:95.31%;height:4.0%'><span
- style='font-size:75%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.16%'>•</span></span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://wiki.eclipse.org/MDT-OCLTools"/><a
- href="http://wiki.eclipse.org/MDT-OCLTools" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>OCL Tools</a></span><span
- style='font-size:75%'><span style='mso-spacerun:yes'> </span>is a </span><span
- style='font-size:75%'><b>new</b></span><span style='font-size:75%'> component
- to aimed at providing first-class support </span></span><span
- style='position:absolute;top:30.5%;left:10.48%;width:97.19%;height:4.0%'><span
- style='font-size:75%'>for modelers working with specifications containing
- expressions written in </span></span><span style='position:absolute;
- top:34.5%;left:10.48%;width:81.27%;height:4.0%'><span style='font-size:75%'>OCL&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:39.25%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:44.0%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:75%'>OCL Tools will provide&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:49.0%;left:15.35%;width:88.01%;height:4.0%'><span
- style='font-size:90%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.76%;font-family:Wingdings'>w</span></span><span style='font-size:90%'>an
- OCL to Java compiler, which will initially take as input an Ecore </span></span><span
- style='position:absolute;top:53.0%;left:15.35%;width:77.9%;height:4.0%'><span
- style='font-size:90%'>model and a textual file containing OCL constraints but
- will </span></span><span style='position:absolute;top:57.0%;left:15.35%;
- width:76.21%;height:4.0%'><span style='font-size:90%'>eventually handle UML2
- models as well&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:61.75%;left:15.35%;width:81.46%;height:4.0%'><span
- style='font-size:90%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.98%;font-family:Wingdings'>w</span></span><span style='font-size:90%'>an
- OCL text editor, supporting usability features such as auto </span></span><span
- style='position:absolute;top:65.75%;left:15.35%;width:82.39%;height:4.0%'><span
- style='font-size:90%'>completion, hyperlink navigation, and structured views
- (for the </span></span><span style='position:absolute;top:69.75%;left:15.35%;
- width:87.45%;height:4.0%'><span style='font-size:90%'>outline of a document
- and for the Abstract Syntax Tree of an OCL </span></span><span
- style='position:absolute;top:73.75%;left:15.35%;width:76.21%;height:4.0%'><span
- style='font-size:90%'>constraint), among others</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0019.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0019.html
deleted file mode 100644
index 07b7229..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0019.html
+++ /dev/null
@@ -1,161 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Components – UML2">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="14"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s14338"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s14339" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s14338" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Components
- – UML2</div>
- <div v:shape="_x0000_s14339" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:26.25%;left:10.48%;width:84.45%;
- height:4.0%'><span style='font-size:75%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.43%'>•</span></span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://wiki.eclipse.org/MDT-UML2"/><a
- href="http://wiki.eclipse.org/MDT-UML2" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>UML2</a></span><span
- style='font-size:75%'><span style='mso-spacerun:yes'> </span>is an EMF-based
- implementation of the </span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" location="UML"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#UML"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Unified Modeling </a></span></span><span style='position:absolute;
- top:29.75%;left:10.48%;width:81.27%;height:4.0%'><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" location="UML"
-  href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm"/><a
- href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#UML"
- target="_parent" onclick="window.event.cancelBubble=true;">Language 2.x</a></span><span
- style='font-size:75%'> OMG specification for the Eclipse platform&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:34.25%;left:8.42%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:75%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:75%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:38.5%;left:8.42%;width:83.14%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:75%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%'>UML2 provides&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:43.0%;left:15.35%;width:77.52%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-3.14%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>a useable implementation of the metamodel to support the
- </span></span><span style='position:absolute;top:46.5%;left:15.35%;width:76.21%;
- height:4.0%'><span style='font-size:90%'>development of modeling tools&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:51.0%;left:15.35%;width:81.64%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.98%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>a common XMI</span><span style='mso-bidi-font-family:
- Arial;font-size:90%'>®</span><span style='font-size:90%'> schema to facilitate
- interchange of semantic </span></span><span style='position:absolute;
- top:54.75%;left:15.35%;width:76.21%;height:4.0%'><span style='font-size:90%'>models&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:59.0%;left:12.92%;width:78.83%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.08%;width:96.67%;height:100.0%'><span
- style='font-size:90%'><span style='mso-special-format:bullet;position:absolute;
- left:-3.19%;font-family:Wingdings'>w</span></span><span style='font-size:90%'>test
- cases as a means of validating the specification&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:63.5%;left:15.35%;width:82.02%;
- height:4.0%'><span style='font-size:90%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.96%;font-family:Wingdings'>w</span></span><span
- style='font-size:90%'>validation rules as a means of defining and enforcing
- levels of </span></span><span style='position:absolute;top:67.0%;left:15.35%;
- width:76.21%;height:4.0%'><span style='font-size:90%'>compliance</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0020.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0020.html
deleted file mode 100644
index 486fa2b..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0020.html
+++ /dev/null
@@ -1,150 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Components – UML2 Tools">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="15"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s15362"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s15363" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s15362" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Components
- – UML2 Tools</div>
- <div v:shape="_x0000_s15363" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:96.62%;height:4.0%'><span
- style='font-size:75%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.13%'>•</span></span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://wiki.eclipse.org/MDT-UML2Tools"/><a
- href="http://wiki.eclipse.org/MDT-UML2Tools" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>UML2 Tools</a></span><span
- style='font-size:75%'><span style='mso-spacerun:yes'> </span>is a set of
- GMF-based editors for viewing and editing UML</span><span style='mso-bidi-font-family:
- Arial;font-size:75%'>®</span><span style='font-size:75%'> </span></span><span
- style='position:absolute;top:30.5%;left:10.48%;width:81.27%;height:4.0%'><span
- style='font-size:75%'>models&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:35.25%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:40.0%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:75%'>UML2 Tools provides editors for&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:45.0%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>class diagrams&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:49.75%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>profile diagrams&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:54.5%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>component diagrams&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:59.25%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>state machine
- diagrams&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:64.25%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>activity diagrams</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0021.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0021.html
deleted file mode 100644
index e56241b..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0021.html
+++ /dev/null
@@ -1,152 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Components – XSD">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="16"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s16386"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s16387" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s16386" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Components
- – XSD</div>
- <div v:shape="_x0000_s16387" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:97.19%;height:4.0%'><span
- style='font-size:75%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.11%'>•</span></span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://wiki.eclipse.org/MDT-XSD"/><a
- href="http://wiki.eclipse.org/MDT-XSD" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>XSD</a></span><span
- style='font-size:75%'><span style='mso-spacerun:yes'> </span>is a reference
- library that provides an API for use with any code that </span></span><span
- style='position:absolute;top:30.5%;left:10.48%;width:93.44%;height:4.0%'><span
- style='font-size:75%'>examines, creates, or modifies documents based on the </span><span
- style='font-size:75%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.w3.org/TR/XMLSchema-0"/><a
- href="http://www.w3.org/TR/XMLSchema-0" target="_parent"
- onclick="window.event.cancelBubble=true;">XML Schema</a></span><span
- style='font-size:75%'> </span></span><span style='position:absolute;
- top:34.5%;left:10.48%;width:81.27%;height:4.0%'><span style='font-size:75%'>W3C</span><span
- style='mso-bidi-font-family:Arial;font-size:75%'>®</span><span
- style='font-size:75%'> standard&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:39.25%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:44.0%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:75%'>XSD provides APIs for&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:49.0%;left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>manipulating components
- of an XML Schema&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:53.75%;left:15.35%;width:90.26%;height:4.0%'><span
- style='font-size:90%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.69%;font-family:Wingdings'>w</span></span><span style='font-size:90%'>manipulating
- the </span><span style='font-size:90%'>DOM™-</span><span style='font-size:
- 90%'>accessible representation of XML Schema </span></span><span
- style='position:absolute;top:57.75%;left:15.35%;width:76.21%;height:4.0%'><span
- style='font-size:90%'>as a series of XML documents&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:62.5%;left:15.35%;width:80.71%;height:4.0%'><span
- style='font-size:90%'><span style='mso-special-format:bullet;position:absolute;
- left:-3.01%;font-family:Wingdings'>w</span></span><span style='font-size:90%'>keeping
- these representations in agreement as schemas are </span></span><span
- style='position:absolute;top:66.5%;left:15.35%;width:76.21%;height:4.0%'><span
- style='font-size:90%'>modified</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0022.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0022.html
deleted file mode 100644
index bed7669..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0022.html
+++ /dev/null
@@ -1,187 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Themes – MDT 1.1">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="17"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s17410"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s17411" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s17410" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Themes – <p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/docs/plans/mdt_project_plan_1_1.html"/><a
- href="http://www.eclipse.org/modeling/mdt/docs/plans/mdt_project_plan_1_1.html"
- target="_parent" onclick="window.event.cancelBubble=true;">MDT 1.1</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s17411" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'><p:onmouseclick hyperlinktype="url"
-  href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan"/><a
- href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>End-to-End
- MDSD</a></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:31.75%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:37.25%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'><p:onmouseclick hyperlinktype="url"
-  href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan"/><a
- href="http://wiki.eclipse.org/index.php/Modeling_Project_Plan" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Improved
- Usability</a></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:42.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:47.75%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php"/><a
- href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Upgrade Path</a></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:53.0%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:58.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php"/><a
- href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Ease of Use</a></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:63.75%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:69.0%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php"/><a
- href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Technology Trends</a></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:74.5%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:79.75%;left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php"/><a
- href="http://www.eclipse.org/org/councils/roadmap_v3_0/themes_v3_0.php"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Internationalization &amp; Localization</a></span><span
- style='font-size:83%'><span style='mso-spacerun:yes'> </span></span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0023.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0023.html
deleted file mode 100644
index eb540ae..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0023.html
+++ /dev/null
@@ -1,141 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Plan Items – OCL 1.2">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="18"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s18434"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s18435" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s18434" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Plan Items
- – OCL 1.2</div>
- <div v:shape="_x0000_s18435" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>End-to-End MDSD&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:32.75%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Extending
- the OCL grammar for QVT</a>&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.0%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=194245"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=194245" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Navigation
- of unnamed association ends</a>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Improved Usability&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.0%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Customizing
- error handling</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0024.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0024.html
deleted file mode 100644
index 7956c7e..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0024.html
+++ /dev/null
@@ -1,158 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Plan Items – UML2 2.2">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="19"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s19458"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s19459" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s19458" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Plan Items
- – UML2 2.2</div>
- <div v:shape="_x0000_s19459" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>End-to-End MDSD&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:32.75%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=184249"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=184249" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Profile
- Support for Ecore Annotations</a>&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.0%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199624"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199624" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Support
- for (de)serialization to/from CMOF</a>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Upgrade Path&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.0%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204200"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204200" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Eclipse
- 3.4 / EMF 2.4 Compatibility</a>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:61.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:68.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Ease of Use&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:74.25%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204201"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204201" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Enhanced
- Documentation</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0025.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0025.html
deleted file mode 100644
index 2d12f67..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0025.html
+++ /dev/null
@@ -1,151 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Plan Items – UML2 Tools 0.8">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="21"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s21506"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s21507" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s21506" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Plan Items
- – UML2 Tools 0.8</div>
- <div v:shape="_x0000_s21507" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>End-to-End MDSD&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:32.75%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199723"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199723" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Composite
- Structure Diagrams</a>&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.0%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199724"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199724" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Deployment
- Diagrams</a>&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.25%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199725"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199725" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Use Case
- Diagrams</a>&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199726"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199726" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Object
- Diagrams</a>&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:54.0%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199737"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199737" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Basic OCL
- Integration</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0026.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0026.html
deleted file mode 100644
index a4e578e..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0026.html
+++ /dev/null
@@ -1,132 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Plan Items – XSD 2.4">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="23"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s23554"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s23555" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s23554" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Plan Items
- – XSD 2.4</div>
- <div v:shape="_x0000_s23555" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Ease of Use&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:32.75%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=203607"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=203607" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Improved
- Diagnostics</a>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:44.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Technology Trends&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.75%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><i><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204125"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204125" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>XML Schema
- 1.1</a></i><span style='mso-special-format:lastCR;display:none'><i>&#13;</i></span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0027.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0027.html
deleted file mode 100644
index 3f5c30c..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0027.html
+++ /dev/null
@@ -1,142 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Plan Items – UML2 2.2">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="20"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s20482"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s20483" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s20482" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Plan Items
- – UML2 2.2</div>
- <div v:shape="_x0000_s20483" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Technology Trends&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:32.75%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204202"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=204202" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>UML 2.1.2
- Compliance</a>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:44.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Internationalization &amp;
- Localization&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:50.75%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><i><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160682" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>BiDi
- Support</a></i><i>&#13;</i></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:56.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:62.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0028.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0028.html
deleted file mode 100644
index ead3840..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0028.html
+++ /dev/null
@@ -1,142 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Plan Items – UML2 Tools 0.8">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="22"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s22530"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s22531" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s22530" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Plan Items
- – UML2 Tools 0.8</div>
- <div v:shape="_x0000_s22531" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Improved Usability&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:32.75%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199731"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199731" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Structure
- Diagram Synchronization</a>&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:38.0%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199735"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199735" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Diagram
- Relations</a>&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:43.25%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199739"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199739" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Extended
- Profile Support</a>&#13;</span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:48.75%;left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199740"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=199740" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Diagram-Specific
- Property Sheets</a><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0029.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0029.html
deleted file mode 100644
index e20dfc1..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0029.html
+++ /dev/null
@@ -1,149 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: How Can You Help?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="24"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s24578"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s24579" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s24578" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>How Can
- You Help?</div>
- <div v:shape="_x0000_s24579" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:26.5%;left:8.42%;width:91.94%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.24%;width:97.96%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.28%'>•</span>Develop and use tools based on
- MDT components&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Report <p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=MDT"/><a
- href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=MDT" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>bugs</a>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:52.0%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Participate in <p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt"/><a
- href="http://www.eclipse.org/newsportal/thread.php?group=eclipse.modeling.mdt"
- target="_parent" onclick="window.event.cancelBubble=true;" style='position:
- relative'>newsgroup</a><span style='mso-spacerun:yes'> </span>discussions&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:58.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:64.75%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Write articles&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:71.25%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:77.5%;left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span>Become an MDT contributor!</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0030.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0030.html
deleted file mode 100644
index 2b507fd..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0030.html
+++ /dev/null
@@ -1,186 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Legal Notices">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="25"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s25602"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s25603" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="f"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="body" position="-1"/></v:shape>
- <div v:shape="_x0000_s25602" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Legal
- Notices</div>
- <div v:shape="_x0000_s25603" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:25.75%;left:10.48%;width:94.94%;
- height:4.5%'><span style='font-size:83%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.16%'>•</span></span><span style='font-size:83%'><b>BPMN</b></span><span
- style='font-size:83%'>, </span><span style='font-size:83%'><b>OMG</b></span><span
- style='font-size:83%'>, and </span><span style='font-size:83%'><b>Unified
- Modeling Language</b></span><span style='font-size:83%'> are trademarks </span></span><span
- style='position:absolute;top:29.25%;left:10.48%;width:81.27%;height:4.5%'><span
- style='font-size:83%'>of the Object Management Group&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:33.75%;left:8.42%;width:83.14%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:83%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:83%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:38.25%;left:10.48%;width:81.27%;
- height:4.5%'><span style='font-size:83%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:83%'><b>UML</b></span><span
- style='font-size:83%'> and </span><span style='font-size:83%'><b>XMI</b></span><span
- style='font-size:83%'> are registered trademarks of the Object </span></span><span
- style='position:absolute;top:41.75%;left:10.48%;width:81.27%;height:4.5%'><span
- style='font-size:83%'>Management Group&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:46.25%;left:8.42%;width:83.14%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:83%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:83%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:50.75%;left:10.48%;width:90.44%;
- height:4.5%'><span style='font-size:83%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.27%'>•</span></span><span style='font-size:83%'><b>DOM</b></span><span
- style='font-size:83%'>, </span><span style='font-size:83%'><b>RDF</b></span><span
- style='font-size:83%'>, and </span><span style='font-size:83%'><b>XML</b></span><span
- style='font-size:83%'> are trademarks </span><span style='font-size:83%'>of
- the World Wide Web </span></span><span style='position:absolute;top:54.25%;
- left:10.48%;width:91.19%;height:4.5%'><span style='font-size:83%'>Consortium;
- marks of </span><span style='font-size:83%'><b><p:onmouseclick
-  hyperlinktype="url" href="http://www.w3.org/"/><a href="http://www.w3.org/"
- target="_parent" onclick="window.event.cancelBubble=true;">W3C</a></b></span><span
- style='font-size:83%'> are registered and held by its host </span></span><span
- style='position:absolute;top:57.75%;left:10.48%;width:81.27%;height:4.5%'><span
- style='font-size:83%'>institutions </span><span style='font-size:83%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.lcs.mit.edu/"/><a
- href="http://www.lcs.mit.edu/" target="_parent"
- onclick="window.event.cancelBubble=true;">MIT</a></span><span
- style='font-size:83%'>, </span><span style='font-size:83%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.ercim.org/"/><a
- href="http://www.ercim.org/" target="_parent"
- onclick="window.event.cancelBubble=true;">ERCIM,</a></span><span
- style='font-size:83%'> and </span><span style='font-size:83%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.keio.ac.jp/"/><a
- href="http://www.keio.ac.jp/" target="_parent"
- onclick="window.event.cancelBubble=true;">Keio</a></span><span
- style='font-size:83%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:62.25%;left:8.42%;width:83.14%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:83%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:83%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:66.75%;left:10.48%;width:87.82%;
- height:4.5%'><span style='font-size:83%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.34%'>•</span></span><span style='font-size:83%'><b>Java</b></span><span
- style='font-size:83%'> and all Java-based trademarks are trademarks of Sun </span></span><span
- style='position:absolute;top:70.25%;left:10.48%;width:93.82%;height:4.5%'><span
- style='font-size:83%'>Microsystems, Inc. in the United States, other
- countries, or both&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:74.75%;left:8.42%;width:83.14%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='font-size:83%;visibility:hidden'><span style='mso-special-format:bullet;
- position:absolute;left:-2.53%'>•</span></span><span style='font-size:83%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:79.25%;left:10.48%;width:96.44%;
- height:4.5%'><span style='font-size:83%'><span style='mso-special-format:bullet;
- position:absolute;left:-2.13%'>•</span></span><span style='font-size:83%'>Other
- company, product, or service names may be trademarks or </span></span><span
- style='position:absolute;top:82.75%;left:10.48%;width:81.27%;height:4.5%'><span
- style='font-size:83%'>service marks of others</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0031.html b/docs/presentations/EclipseCon2008_ShortTalk_files/slide0031.html
deleted file mode 100644
index 689e64f..0000000
--- a/docs/presentations/EclipseCon2008_ShortTalk_files/slide0031.html
+++ /dev/null
@@ -1,166 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 12">
-<link id=Main-File rel=Main-File href="../EclipseCon2008_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in MDT?</title>
-<meta name=Description content="3/19/2008: Components – SBVR">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="13"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#ffffff,#000000,#808080,#000000,#bbe0e3,#333399,#009999,#99cc00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#Picture_x0020_8"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_8" src="master03_image005.gif" alt=light4
- style='position:absolute;top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#Picture_x0020_7"/><![if !vml]><img border=0
- v:shapes="Picture_x0020_7" src="master03_image006.gif" alt="eclipsecon_2008"
- style='position:absolute;top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1030"/>
- <div v:shape="_x0000_s1030">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='position:absolute;top:95.25%;left:16.85%;width:83.33%;
- height:2.25%'><span style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in MDT?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2008 by Embarcadero Technologies; made
- available under the EPL v1.0</span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s13314"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt;visibility:visible;mso-wrap-style:square;v-text-anchor:middle'>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="title" position="-1"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1028"/><v:shape id="_x0000_s13315" type="#_x0000_m1028"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt;
-  visibility:visible;mso-wrap-style:square;v-text-anchor:top'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="f"/>
-  <v:path arrowok="t"/>
-  <o:lock v:ext="edit" rotation="f" aspectratio="f" position="f" selection="f"
-   verticies="f" text="f" adjusthandles="f" grouping="t" shapetype="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-rotate-with-shape:t' inset="7.2pt,3.6pt,7.2pt,3.6pt"/>
-  <p:placeholder type="object" position="-1"/></v:shape>
- <div v:shape="_x0000_s13314" class=T style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:16.75%;left:8.42%;width:83.14%;height:6.0%'>Components
- – SBVR<span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s13315" style='tab-stops:.4427in'>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:26.5%;left:10.48%;width:81.27%;height:4.0%'><span
- style='font-size:75%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://wiki.eclipse.org/MDT-SBVR"/><a
- href="http://wiki.eclipse.org/MDT-SBVR" target="_parent"
- onclick="window.event.cancelBubble=true;" style='position:relative'>SBVR</a></span><span
- style='font-size:75%'><span style='mso-spacerun:yes'> </span>is a </span><span
- style='font-size:75%'><b>new</b></span><span style='font-size:75%'> component
- aimed at providing a metamodel </span></span><span style='position:absolute;
- top:30.5%;left:10.48%;width:91.94%;height:4.0%'><span style='font-size:75%'>implementation
- and sample tools based on the adopted </span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/cgi-bin/apps/doc?smsc/08-01-06"
-  tips="http://www.omg.org/cgi-bin/apps/doc?smsc/08-01-06"/><a
- title="http://www.omg.org/cgi-bin/apps/doc?smsc/08-01-06"
- href="http://www.omg.org/cgi-bin/apps/doc?smsc/08-01-06" target="_parent"
- onclick="window.event.cancelBubble=true;">Semantics of </a></span></span><span
- style='position:absolute;top:34.5%;left:10.48%;width:91.94%;height:4.0%'><span
- style='font-size:75%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.omg.org/cgi-bin/apps/doc?smsc/08-01-06"
-  tips="http://www.omg.org/cgi-bin/apps/doc?smsc/08-01-06"/><a
- title="http://www.omg.org/cgi-bin/apps/doc?smsc/08-01-06"
- href="http://www.omg.org/cgi-bin/apps/doc?smsc/08-01-06" target="_parent"
- onclick="window.event.cancelBubble=true;">Business Vocabulary and Business
- Rules (SBVR)</a></span><span style='font-size:75%'> OMG specification&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:39.25%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:75%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;
- top:44.0%;left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:75%'>SBVR will provide&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:49.0%;left:15.35%;width:76.21%;height:4.0%'><span
- style='font-size:90%'><span style='mso-special-format:bullet;position:absolute;
- left:-3.19%;font-family:Wingdings'>w</span></span><span style='font-size:90%'>an
- open source &quot;reference&quot; implementation of the SBVR </span></span><span
- style='position:absolute;top:53.0%;left:15.35%;width:76.21%;height:4.0%'><span
- style='font-size:90%'>specification&#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:57.75%;left:15.35%;width:81.27%;height:4.0%'><span
- style='font-size:90%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.99%;font-family:Wingdings'>w</span></span><span style='font-size:90%'>an
- EMF-based foundation on which business vocabulary and </span></span><span
- style='position:absolute;top:61.75%;left:15.35%;width:76.21%;height:4.0%'><span
- style='font-size:90%'>business rules modeling tools can be built &#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:66.5%;left:15.35%;width:89.7%;height:4.0%'><span
- style='font-size:90%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.71%;font-family:Wingdings'>w</span></span><span style='font-size:90%'>a
- basis for integrating and interchanging artifacts between business </span></span><span
- style='position:absolute;top:70.5%;left:15.35%;width:76.21%;height:4.0%'><span
- style='font-size:90%'>vocabulary and business rules tools &#13;</span></span></div>
- <div class=B1 style='mso-char-wrap:1;mso-kinsoku-overflow:1'><span
- style='position:absolute;top:75.25%;left:15.35%;width:82.2%;height:4.0%'><span
- style='font-size:90%'><span style='mso-special-format:bullet;position:absolute;
- left:-2.96%;font-family:Wingdings'>w</span></span><span style='font-size:90%'>a
- forum for engaging the community in validation of the SBVR </span></span><span
- style='position:absolute;top:79.5%;left:15.35%;width:76.21%;height:4.0%'><span
- style='font-size:90%'>specification</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review.html b/docs/presentations/MDT_1.0_ Release_Review.html
deleted file mode 100644
index 0b7d312..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link rel=File-List href="MDT_1.0_%20Release_Review_files/filelist.xml">
-<link rel=Preview href="MDT_1.0_%20Release_Review_files/preview.wmf">
-<link rel=Edit-Time-Data href="MDT_1.0_%20Release_Review_files/editdata.mso">
-<link rel=OLE-Object-Data href="MDT_1.0_%20Release_Review_files/oledata.mso">
-<title>MDT 1.0</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Subject>Europa Simultaneous Release Review</o:Subject>
-  <o:Author>Kenn Hussey</o:Author>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>1069</o:Revision>
-  <o:TotalTime>14070</o:TotalTime>
-  <o:Created>2002-08-23T15:26:08Z</o:Created>
-  <o:LastSaved>2007-06-12T20:25:04Z</o:LastSaved>
-  <o:Words>2200</o:Words>
-  <o:PresentationFormat>On-screen Show</o:PresentationFormat>
-  <o:Company>IBM</o:Company>
-  <o:Bytes>245779</o:Bytes>
-  <o:Paragraphs>253</o:Paragraphs>
-  <o:Slides>29</o:Slides>
-  <o:Notes>13</o:Notes>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
- <o:OfficeDocumentSettings>
-  <o:PixelsPerInch>80</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
-</xml><![endif]-->
-<link rel=Presentation-XML href="MDT_1.0_%20Release_Review_files/pres.xml">
-<meta name=Description
-content="6/12/2007: Model Development Tools (MDT) 1.0  Europa Simultaneous Release Review">
-<meta http-equiv=expires content=0>
-<![if !ppt]><script>
-<!--
-	var ver = 0, appVer = navigator.appVersion, msie = appVer.indexOf( "MSIE " )
-	var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0)
-	if( msie >= 0 )
-		ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) )
-	else
-		ver = parseInt( appVer )
-	browserSupported=0
-	if( !isMac && ver >= 4 && msie >= 0 ) {
-		browserSupported=1
-		window.location.replace( 'MDT_1.0_%20Release_Review_files/frame.html'+document.location.hash )
-	}
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<script><!--
-
-if( browserSupported )
-	document.writeln('<div style="visibility:hidden">');
-
-//--></script><font face=Arial size=2><b>
-
-<p>This presentation contains content that your browser may not be able to show
-properly. This presentation was optimized for more recent versions of Microsoft
-Internet Explorer.</p>
-
-<p>If you would like to proceed anyway, click <a
-href="MDT_1.0_%20Release_Review_files/frame.html">here</a>.</p>
-
-</b></font><script><!--
-
-if( browserSupported )
-	document.writeln('</div>');
-
-//--></script>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/buttons.gif b/docs/presentations/MDT_1.0_ Release_Review_files/buttons.gif
deleted file mode 100644
index 1f2c73c..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/buttons.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/editdata.mso b/docs/presentations/MDT_1.0_ Release_Review_files/editdata.mso
deleted file mode 100644
index 5eff6b6..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/editdata.mso
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/filelist.xml b/docs/presentations/MDT_1.0_ Release_Review_files/filelist.xml
deleted file mode 100644
index 22328c5..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/filelist.xml
+++ /dev/null
@@ -1,65 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:File HRef="master08.html"/>
- <o:File HRef="master08.xml"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="master08_image001.jpg"/>
- <o:File HRef="master08_image002.jpg"/>
- <o:File HRef="master02.html"/>
- <o:File HRef="pres.xml"/>
- <o:File HRef="editdata.mso"/>
- <o:File HRef="slide0046.html"/>
- <o:File HRef="master08_image003.jpg"/>
- <o:File HRef="master08_image004.gif"/>
- <o:File HRef="master08_image005.jpg"/>
- <o:File HRef="slide0072.html"/>
- <o:File HRef="slide0073.html"/>
- <o:File HRef="slide0096.html"/>
- <o:File HRef="slide0074.html"/>
- <o:File HRef="slide0075.html"/>
- <o:File HRef="slide0097.html"/>
- <o:File HRef="slide0076.html"/>
- <o:File HRef="slide0098.html"/>
- <o:File HRef="slide0077.html"/>
- <o:File HRef="slide0078.html"/>
- <o:File HRef="slide0079.html"/>
- <o:File HRef="slide0080.html"/>
- <o:File HRef="slide0081.html"/>
- <o:File HRef="slide0082.html"/>
- <o:File HRef="slide0083.html"/>
- <o:File HRef="slide0084.html"/>
- <o:File HRef="slide0084_image006.png"/>
- <o:File HRef="oledata.mso"/>
- <o:File HRef="slide0084_image007.jpg"/>
- <o:File HRef="slide0085.html"/>
- <o:File HRef="slide0085_image008.png"/>
- <o:File HRef="slide0085_image009.jpg"/>
- <o:File HRef="slide0086.html"/>
- <o:File HRef="slide0086_image010.png"/>
- <o:File HRef="slide0086_image011.jpg"/>
- <o:File HRef="slide0087.html"/>
- <o:File HRef="slide0087_image012.png"/>
- <o:File HRef="slide0087_image013.jpg"/>
- <o:File HRef="slide0088.html"/>
- <o:File HRef="slide0088_image014.png"/>
- <o:File HRef="slide0088_image015.jpg"/>
- <o:File HRef="slide0089.html"/>
- <o:File HRef="slide0089_image016.png"/>
- <o:File HRef="slide0089_image017.jpg"/>
- <o:File HRef="slide0090.html"/>
- <o:File HRef="slide0091.html"/>
- <o:File HRef="slide0092.html"/>
- <o:File HRef="slide0093.html"/>
- <o:File HRef="slide0094.html"/>
- <o:File HRef="slide0095.html"/>
- <o:File HRef="slide0099.html"/>
- <o:File HRef="master01.html"/>
- <o:File HRef="master08_stylesheet.css"/>
- <o:File HRef="script.js"/>
- <o:MainFile HRef="../MDT_1.0_%20Release_Review.html"/>
- <o:File HRef="fullscreen.html"/>
- <o:File HRef="notes_flag.gif"/>
- <o:File HRef="buttons.gif"/>
- <o:File HRef="frame.html"/>
- <o:File HRef="outline.html"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/frame.html b/docs/presentations/MDT_1.0_ Release_Review_files/frame.html
deleted file mode 100644
index aa73b10..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/frame.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<title>MDT 1.0</title>
-<![if !ppt]><script src=script.js></script><script>
-<!--
-var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
-function Load()
-{
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(str) PPTSld.location.replace(escape(str));
-}
-//-->
-</script>
-<![endif]>
-</head>
-
-<frameset rows="*,25" border=0>
- <frameset cols="25%,*" id=PPTHorizAdjust framespacing=2>
-  <frameset rows="100%,*">
-   <frame src=outline.html title="Outline" name=PPTOtl>
-  </frameset>
-  <frameset rows="*,40" id=PPTVertAdjust framespacing=2 frameborder=1
-   onload="Load()">
-   <frame src=slide0046.html title="Slide" name=PPTSld>
-   <frame src=slide0046.html title="Notes" name=PPTNts>
-  </frameset>
- </frameset>
- <frameset cols="25%,*" framespacing=1>
-  <frame src=outline.html title="Outline
-Navigation Bar" name=PPTOtlNav scrolling=no noresize>
-  <frame src=outline.html title="Slide
-Navigation Bar" name=PPTNav scrolling=no noresize>
- </frameset>
-</frameset>
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/fullscreen.html b/docs/presentations/MDT_1.0_ Release_Review_files/fullscreen.html
deleted file mode 100644
index 6d3beb4..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/fullscreen.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<script src=script.js></script><script><!--
-var SCREEN_MODE   = "FullScreen";
-function Load() {
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(!str) str = "slide0046.html";
-	PPTSld.location.replace(MHTMLPrefix+escape(str));
-}
-function Unload() {
-	if ( document.body.PPTSldFrameset != null )
-		document.body.PPTSldFrameset.frames[1].document.body.resume();
-}
-//-->
-</script>
-</head>
-
-<frameset rows="*" frameborder=0 onload="Load()" onunload="Unload()">
- <frame name=PPTSld>
-</frameset>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/master01.html b/docs/presentations/MDT_1.0_ Release_Review_files/master01.html
deleted file mode 100644
index 22e3693..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/master01.html
+++ /dev/null
@@ -1,466 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="103"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s105473" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s105474" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105474" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta14'>‹header›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105475" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1"/></v:shapetype>
-
-<div v:shape="_x0000_s105475" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-field-code:meta0'>‹date/time›</span><span style='font-size:67%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_m105476" style='position:absolute;left:91.75pt;top:54.5pt;
- width:363.5pt;height:272.625pt;v-text-anchor:middle' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter"/>
- <v:shadow obscured="t"/>
- <v:path gradientshapeok="t" fillok="f" o:connecttype="rect"/>
- <o:lock v:ext="edit" rotation="t" text="t"/>
- <p:placeholder type="slideImage" position="2"/></v:shapetype><v:shapetype
- id="_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
- width:437.5pt;height:327.125pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="body" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_m105477">
-
-<div class=N>Click to edit Master text styles&#13;</div>
-
-<div class=N1>Second level&#13;</div>
-
-<div class=N2>Third level&#13;</div>
-
-<div class=N3>Fourth level&#13;</div>
-
-<div class=N4>Fifth level</div>
-
-</div>
-
-<v:shapetype id="_x0000_s105478" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="4" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105478" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta15'>‹footer›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105479" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="5" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105479" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span style='font-size:67%;mso-field-code:
-meta16'>‹#›</span><span style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<p:notes id="96" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1030"/>
- </o:shapelayout><v:shape id="_x0000_s1054722" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s1054723"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1054723" class=N>Summarize the major features of this
- release as well as any other features that have generated significant
- discussion amongst the community during the development cycle. Compare the
- features against the Roadmap to understand the project's conformance or
- divergence.&#13;<b><i>Reason:</i></b><i> </i>The community will use this
- release and the ecosystem will build products on top of this release, and both
- need to know what features were included or excluded.</div>
-</p:notes><p:notes id="79" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1039"/>
- </o:shapelayout><v:shape id="_x0000_s1063938" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s1063939"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1063939" class=N>Summarize the state of the non-code
- aspects of the release including: user documentation,
- localization/externalization, examples, tutorials, articles, and so on. Have
- the existing artifacts been updated? Are there new artifacts? Have the obsolete
- ones been retired or at least marked as pertaining only to older material?&#13;<b><i>Reason:</i></b>
- The non-code aspects are essential for the wide-spread adoption of the
- release.</div>
-</p:notes><p:notes id="80" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1040"/>
- </o:shapelayout><v:shape id="_x0000_s1064962" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s1064963"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1064963" class=N>Certify that the APIs in this release
- are <i><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/eclipse-quality.php"/><a
- href="http://www.eclipse.org/projects/dev_process/eclipse-quality.php"
- target="_blank" onclick="window.event.cancelBubble=true;">Eclipse Quality</a></i>.
- The project lead will personally certify that the requirements for quality
- have been met and/or discuss any deficiences.&#13;<b><i>Reason:</i></b>
- Eclipse members build commercial tools on top of the extensible frameworks and
- thus the quality of the APIs is extremely important.</div>
-</p:notes><p:notes id="81" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1041"/>
- </o:shapelayout><v:shape id="_x0000_s1065986" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s1065987"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1065987" class=N>Summarize the architectural quality of
- the release. Discuss the <i>intrinsic nature </i><i>of being extensible</i>
- embodied by this project. Discuss issues such as unresolved overlap with other
- projects, unpaid &quot;merge debt&quot; from incorporating various components,
- and so on.&#13;<b><i>Reason:</i></b><i> </i>Eclipse members build commercial
- tools on top of the extensible frameworks and thus the quality of the
- architecture is important.</div>
-</p:notes><p:notes id="82" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1042"/>
- </o:shapelayout><v:shape id="_x0000_s1067010" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s1067011"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1067011" class=N>Summarize the usability of the tools.
- Usability in this sense is about using the tools to solve development
- problems, not the more academic sense of UI evaluation/testing.&#13;<b><i>Reason:</i></b>
- Without usable tools, the project will not attract the user community necessary
- to enable the ecosystem.</div>
-</p:notes><p:notes id="83" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1043"/>
- </o:shapelayout><v:shape id="_x0000_s1068034" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s1068035"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1068035" class=N>Summarize the features (APIs and any
- significant user features) from previous releases that are being end-of-life'd
- in this release. End of life includes both deprecation and actual
- removal.&#13;<b><i>Reason:</i></b> The community builds products that rely on
- features and so they need to know when these features are changing.</div>
-</p:notes><p:notes id="84" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1044"/>
- </o:shapelayout><v:shape id="_x0000_s1069058" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s1069059"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1069059" class=N>Summarize the bugzilla situation. How
- many bug records (defects and enhancements) have been
- opened/closed/deferred/new, etc? How many P1, P2, ..., bug records are
- outstanding?&#13;<b><i>Reason:</i></b> Summaries of the bugzilla records offer
- a glimpse into the project productivity. They also offer an estimate of the
- outstanding risk. And the summary is used to alert the community to known
- issues.</div>
-</p:notes><p:notes id="90" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1045"/>
- </o:shapelayout><v:shape id="_x0000_s1070082" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s1070083"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1070083" class=N>Summarize the standards compliance of
- this release. If the features are based on defined, pending, or ad-hoc
- standards, what is the state of those standards and what is the state of the
- support for those standards in this release.&#13;<b><i>Reason: </i></b>Eclipse
- is about building frameworks and tools based on standards, so we need to make
- sure that we are conforming to the appropriate standards.</div>
-</p:notes><p:notes id="91" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1046"/>
- </o:shapelayout><v:shape id="_x0000_s1071106" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s1071107"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1071107" class=N>Summarize the user interface usability
- and the conformance to the <p:onmouseclick hyperlinktype="url"
-  href="http://wiki.eclipse.org/index.php/User_Interface_Guidelines"/><a
- href="http://wiki.eclipse.org/index.php/User_Interface_Guidelines"
- target="_blank" onclick="window.event.cancelBubble=true;">Eclipse User </a><p:onmouseclick
-  hyperlinktype="url"
-  href="http://wiki.eclipse.org/index.php/User_Interface_Guidelines"/><a
- href="http://wiki.eclipse.org/index.php/User_Interface_Guidelines"
- target="_blank" onclick="window.event.cancelBubble=true;">Interface Guidelines</a>.
- Include section 508 compliance, language pack conformance (does the code
- support multiple languages), etc. Explain any deviations from the user
- interface guidelines and standards.&#13;<b><i>Reason:</i></b> The user
- community is larger than just mouse-wielding, English-speaking, computer
- jockeys. We need to support that larger community.</div>
-</p:notes><p:notes id="92" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1047"/>
- </o:shapelayout><v:shape id="_x0000_s1072130" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s1072131"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1072131" class=N>Discuss the initial schedule and any
- changes to the schedule over the course of the release, i.e., what the project
- team achieved. Discuss whether milestones were met or slipped. <b><i>Reason:</i></b>
- The community relies on consistent schedules from Eclipse so that projects and
- products can plan for the correct dependencies.</div>
-</p:notes><p:notes id="93" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1048"/>
- </o:shapelayout><v:shape id="_x0000_s1073154" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s1073155"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1073155" class=N>Summarize the project's development of
- its three communities. Consider the interactions on bugzilla, the mailing
- lists, the newsgroups, public conference calls, blogs, PR activities, code
- camps, conference tutorials, coordinating with other Eclipse projects and
- other open source projects (Apache, ObjectWeb, etc), ...&#13;<b><i>Reason:</i></b>
- It is important for Eclipse projects to build a community around the project,
- not just deliver code for a project. This review item is about the success of
- building a community.</div>
-</p:notes><p:notes id="94" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1049"/>
- </o:shapelayout><v:shape id="_x0000_s1074178" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s1074179"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1074179" class=N>The EMO explicitly asks during the
- Release Review if any Member would like to assert that this release infringes
- their IP rights. If so, the EMO and the project will follow the Eclipse IP
- Policy in discussions with that Member.&#13;<b><i>Reason:</i></b> One of the
- important benefits that the Eclipse Foundation provides for its members is the
- consistent application of the <p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/org/documents/Eclipse_IP_Policy.pdf"/><a
- href="http://www.eclipse.org/org/documents/Eclipse_IP_Policy.pdf"
- target="_blank" onclick="window.event.cancelBubble=true;">Eclipse IP Policy</a>
- which helps ensure (but does not guarantee) that the framework and tools are
- useable in commercial products.</div>
-</p:notes><p:notes id="95" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1050"/>
- </o:shapelayout><v:shape id="_x0000_s1075202" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s1075203"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1075203" class=N>If there is a Project Plan (full or
- even a draft) for the next release, the final issue to cover in the Release
- Review is the unveiling of the new plan.</div>
-</p:notes>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/master02.html b/docs/presentations/MDT_1.0_ Release_Review_files/master02.html
deleted file mode 100644
index b8ff670..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/master02.html
+++ /dev/null
@@ -1,141 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="530"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s542721" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s542722" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542722" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta14'>‹header›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542723" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542723" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-field-code:meta0'>‹date/time›</span><span style='font-size:67%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542724" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="2" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542724" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta15'>‹footer›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542725" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542725" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span style='font-size:67%;mso-field-code:
-meta16'>‹#›</span><span style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/master08.html b/docs/presentations/MDT_1.0_ Release_Review_files/master08.html
deleted file mode 100644
index 968dd7e..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/master08.html
+++ /dev/null
@@ -1,55 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m32774" class=T>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m32775">
-
-<div class=B>Click to edit Master text styles&#13;</div>
-
-<div class=B1>Second level&#13;</div>
-
-<div class=B2>Third level&#13;</div>
-
-<div class=B3>Fourth level&#13;</div>
-
-<div class=B4>Fifth level</div>
-
-</div>
-
-<div v:shape="_x0000_s33022" class=O style='mso-line-spacing:"100 50 0"'><span
-style='font-family:Arial;mso-hansi-font-family:Arial;font-size:56%;color:black;
-mso-color-index:0;mso-field-code:meta16'><b>‹#›</b></span><span
-style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
-0;mso-special-format:lastCR'><b>&#13;</b></span></div>
-
-<div v:shape="_x0000_s33024" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span style='font-size:56%;color:black;mso-color-index:0'><span
-style='mso-spacerun:yes'> </span>Europa Simultaneous Release Review |<span
-style='mso-spacerun:yes'>  </span>© 2007 by IBM Corporation, made available
-under the EPL v1.0 </span></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/master08.xml b/docs/presentations/MDT_1.0_ Release_Review_files/master08.xml
deleted file mode 100644
index 512926a..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/master08.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="32"/>
-  <o:regrouptable v:ext="edit">
-   <o:entry new="1" old="0"/>
-   <o:entry new="2" old="0"/>
-   <o:entry new="3" old="0"/>
-   <o:entry new="4" old="0"/>
-   <o:entry new="5" old="4"/>
-   <o:entry new="6" old="0"/>
-   <o:entry new="7" old="0"/>
-   <o:entry new="8" old="0"/>
-   <o:entry new="9" old="0"/>
-   <o:entry new="10" old="0"/>
-   <o:entry new="11" old="10"/>
-  </o:regrouptable>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s32769" o:bwmode="white" fillcolor="white [1]"/>
- <p:shaperange id="_x0000_m32774">
-  <v:shapetype id="_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-   width:649.25pt;height:39.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m32775">
-  <v:shapetype id="_x0000_m32775" style='position:absolute;left:52.125pt;top:139.875pt;
-   width:609.25pt;height:307.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33020">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s33020" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master08_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33022">
-  <v:shapetype id="_x0000_s33022" style='position:absolute;left:12.125pt;top:508.875pt;
-   width:79.25pt;height:25.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33023">
-  <v:line id="_x0000_s33023" style='position:absolute;mso-wrap-style:none;
-   v-text-anchor:middle' from="114pt,506.875pt" to="114pt,522pt" o:bwmode="black"
-   o:userdrawn="t" strokecolor="black [0]">
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:rect id="_x0000_s33024" style='position:absolute;left:114pt;
-   top:509.875pt;width:606pt;height:19.25pt' o:bwmode="black" o:userdrawn="t"
-   filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s33027">
-  <v:shape id="_x0000_s33027" type="#_x0000_t75" style='position:absolute;
-   left:592.5pt;top:14.875pt;width:121.25pt;height:121.25pt' o:userdrawn="t">
-   <v:imagedata src="master08_image002.jpg" o:title="eclipse_pos_logo_fc_sm"/>
-  </v:shape></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/master08_image001.jpg b/docs/presentations/MDT_1.0_ Release_Review_files/master08_image001.jpg
deleted file mode 100644
index 6218aec..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/master08_image001.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/master08_image002.jpg b/docs/presentations/MDT_1.0_ Release_Review_files/master08_image002.jpg
deleted file mode 100644
index 4dc5eec..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/master08_image002.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/master08_image003.jpg b/docs/presentations/MDT_1.0_ Release_Review_files/master08_image003.jpg
deleted file mode 100644
index df11cf0..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/master08_image003.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/master08_image004.gif b/docs/presentations/MDT_1.0_ Release_Review_files/master08_image004.gif
deleted file mode 100644
index 96b138a..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/master08_image004.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/master08_image005.jpg b/docs/presentations/MDT_1.0_ Release_Review_files/master08_image005.jpg
deleted file mode 100644
index 3766bac..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/master08_image005.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/master08_stylesheet.css b/docs/presentations/MDT_1.0_ Release_Review_files/master08_stylesheet.css
deleted file mode 100644
index 1f98312..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/master08_stylesheet.css
+++ /dev/null
@@ -1,507 +0,0 @@
-body
-	{width:534px;
-	height:400px;}
-.TB
-	{mso-special-format:nobullet•;}
-.T
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#2F2672;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.BB
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:95%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.NB
-	{mso-special-format:nobullet•;}
-.N
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N1B
-	{mso-special-format:nobullet•;}
-.N1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N2B
-	{mso-special-format:nobullet•;}
-.N2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N3B
-	{mso-special-format:nobullet•;}
-.N3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N4N
-	{mso-special-format:nobullet•;}
-.N4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.OB
-	{mso-special-format:nobullet•;}
-.O
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CBB
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB
-	{text-align:center;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:95%;
-	mso-line-spacing:"100 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB1B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB2B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB3B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB4B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CTB
-	{mso-special-format:nobullet•;}
-.CT
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#2F2672;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HBB
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QBB
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.TblB
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl1B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl2B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl3B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl4B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.defaultB
-	{mso-special-format:nobullet•;}
-.default
-	{text-align:center;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-weight:normal;
-	font-style:normal;
-	text-decoration:none;
-	text-shadow:none;
-	text-effect:none;
-	mso-fareast-hint:no;
-	layout-flow:horizontal;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-text-raise:0%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:0;
-	mso-text-indent-alt:0;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;
-	direction:ltr;
-	mso-word-wrap:1;
-	mso-vertical-align-special:baseline;
-	mso-ansi-language:EN-US;}
-a:link
-	{color:silver !important;}
-a:active
-	{color:#DFFF66 !important;}
-a:visited
-	{color:#D18213 !important;}
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/notes_flag.gif b/docs/presentations/MDT_1.0_ Release_Review_files/notes_flag.gif
deleted file mode 100644
index 608b349..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/notes_flag.gif
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/oledata.mso b/docs/presentations/MDT_1.0_ Release_Review_files/oledata.mso
deleted file mode 100644
index 7caa8c0..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/oledata.mso
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/outline.html b/docs/presentations/MDT_1.0_ Release_Review_files/outline.html
deleted file mode 100644
index 8cab018..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/outline.html
+++ /dev/null
@@ -1,1053 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<script src=script.js></script><script><!--
-if( !(IsWin("PPTOtl")||IsWin("PPTNav")||IsWin("PPTOtlNav")) )
-{
-	obj = GetObj("Main-File")
-	parent.location.href=obj.href
-}
-var gOtlHiliteClr="#ffffff",gOtlNormalClr="#000000",gOtlActiveClr="#ffff00",gSelected="",gTxtState=false,gChildEntryTable=new Array()
-function Load()
-{
-	if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
-	if( g_supportsPPTHTML ) {
-		if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true; return }
-		if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); parent.gOtlNavLoaded=true; return }
-	}
-}
-function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
-function LoadNav( oId,UpdFunc )
-{
-	document.ondragstart=CancelDrag
-	document.onselectstart=CancelDrag
-	document.body.style.margin=2
-	UpdFunc()
-	obj=document.all.item(oId)
-	obj.style.display="block"
-	obj.style.visibility="visible"
-	document.bgColor="threedface"
-	if( parent.frames["PPTNts"] )
-		notesBtn.style.display = ""
-	if( parent.gHasNarration )
-		nb_voiceBorder.style.display = ""
-}
-function LoadOtl()
-{
-	var otl=GetObj("OtlObj")
-	otl.style.display="block"
-	otl.style.visibility="visible"
-	if( gOtlActiveClr == "" ) gOtlActiveClr=document.linkColor
-	if( gOtlHiliteClr == "" ) gOtlHiliteClr=document.fgColor
-	if( gOtlNormalClr == "" )
-		gOtlNormalClr=document.bgColor
-	else
-		document.bgColor=gOtlNormalClr
-	InitArray()
-	if( ObjExists( parent.gCurSld ) ) {
-		ChangeState( parent.gCurSld,gOtlNormalClr,gOtlHiliteClr )
-		gSelected=parent.gCurSld
-	}
-	else gSelected = -1
-	UpdOtl()
-}
-function UpdOtl(){ UpdIdx(parent.gCurSld) }
-function UpdIdx( idx )
-{
-	if( gSelected != idx ) {
-		if( gSelected > 0 )
-			ChangeState( gSelected,gOtlHiliteClr,gOtlNormalClr )
-		if( ObjExists( idx ) ) {
-			gSelected = idx
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-		}
-		else gSelected = -1
-	}
-	if( gTxtState != parent.gOtlTxtExp ) {
-		state = "block"
-		if( !parent.gOtlTxtExp )
-			state="none"
-		for(ii=0; ii<gChildEntryTable.length; ii++) {
-			obj=gChildEntryTable[ii];
-			if( obj.id == null ) continue;
-			if( obj.id.indexOf("PPTC") >= 0 )
-				obj.style.display=state;
-		}
-		gTxtState=parent.gOtlTxtExp
-		if( ObjExists( gSelected ) )
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-	}
-}
-function InitArray()
-{
-	count=0
-	var list=GetTags(document,"DIV");
-	for(ii=0; ii<list.length; ii++) {
-		obj=list.item(ii)
-		if( obj.id == null ) continue
-		if( obj.id.indexOf("PPTC") >= 0 )
-			gChildEntryTable[count++]=obj
-	}
-}
-function ChangeState( idx,fgColor,bgColor )
-{
-	obj=GetObj("PPTL"+idx)
-	obj.style.color=fgColor
-	obj=GetObj("PPTP"+idx)
-	obj.style.backgroundColor=bgColor
-}
-function ChgClr( o,clr ){ if( o.id != "PPTL"+gSelected ) o.style.color=clr }
-function Over( src ){ ChgClr(GetLink(src),gOtlActiveClr) }
-function Out( src ){ ChgClr(GetLink(src),gOtlHiliteClr) }
-function Follow(src){ window.location.href = GetLink(src).href; }
-function ObjExists( ii ) { obj=GetObj("PPTP"+ii ); return( obj ) }
-function GoToSld( href ){ UpdIdx(parent.GetSldNum(href)); parent.GoToSld( href ) }
-function CancelDrag(){ window.event.cancelBubble=true;window.event.returnValue=false}
-function GetLink(src)
-{
-   if(src.tagName=="A") return src
-   else return GetTags(src,"A").item(0)
-}
-function UpdNav()
-{
-	txt = "<center>";
-	if( parent.GetHrefObj( parent.gCurSld ).mOrigVis == 1 )
-		txt += "Slide " + parent.GetCurSldNum() + " of " + parent.GetNumSlds()
-	else
-		txt += "Hidden Slide"
-	txt += "</center>";
-	nav_text.innerHTML = txt;
-	if( !parent.HasPrevSld() )
-		gBtnArr["nb_prev"].Enabled(0)
-	else
-		gBtnArr["nb_prev"].Enabled(1)
-	if( !parent.HasNextSld() )
-		gBtnArr["nb_next"].Enabled(0)
-	else
-		gBtnArr["nb_next"].Enabled(1)
-	gBtnArr["nb_nts"].SetEnabled()
-	gBtnArr["nb_nts"].SetFlag( parent.gHasNts )
-	gBtnArr["nb_sldshw"].Enabled(1)
-	gBtnArr["nb_voice"].Enabled(1)
-}
-function UpdOtlNav()
-{
-	gBtnArr["nb_otl"].SetEnabled();
-	if( parent.gOtlOpen )
-		gBtnArr["nb_otlTxt"].Enabled( true );
-	else
-		document.all.item("nb_otlTxtBorder").style.visibility = "hidden";
-}
-
-//--></script>
-<style>
-<!--.PTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;
-	padding-left:2px;
-	font-weight:bold;}
-.CTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;}
-a
-	{color:white;
-	text-decoration:none;}
-ul
-	{color:white;
-	margin-bottom:0px;
-	margin-left:20px;}
-.sldNum
-	{margin-top:5px;
-	color:white;}
-.button
-	{position:absolute;
-	width:32px;
-	height:20px;
-	border-style:solid;
-	border-width:1px;
-	border-color:threedface;}
--->
-</style>
-</head>
-
-<body onload="Load()" style='margin:2px'>
-
-<div id=NavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-<table id="notesBtn" style='position:absolute;display:none;width:70px' align=left cellpadding=0
- cellspacing=0>
- <td nowrap>
- <div id="nb_ntsElem" align=center style='position:relative;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt'><img src="notes_flag.gif"
- border=0 id="notes_flag" style='display:none'><span
-style='mso-spacerun:yes'>  </span>Notes</div>
- <div title="Show/Hide Notes" id="nb_nts" style='position:absolute;top:0%;
- left:0%;width:100%;height:100%'></div>
- </td>
-</table>
-
-<table style='position:relative;width:70px' align=right cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_sldshwText" title="Full
-Screen Slide Show" align=center style='position:relative;margin-left:20px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt;cursor:default'>Slide
-Show</div>
- <div id="nb_sldshwBorder" title="Full Screen Slide Show" style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_sldshw" style='position:relative;left:-254px'></div>
- </div>
- </td>
- <td>
- <div id="nb_voiceBorder" style='display:none;position:absolute;top:0;left:-40px;
- width:20px;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_voice" title="Pause/Play Narration" style='position:
- relative;left:-290px'></div>
- </div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_prevBorder" class=button style='left:-30px'>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_prev" title="Previous Slide" style='position:relative;
- left:0px'></div>
- </div>
- <span id="nav_text" style='position:relative;top:3px;width:100px;font-family:
- Arial;color:buttontext;font-size:9pt'></span>
- <div id="nb_nextBorder" class=button>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_next" title="Next Slide" style='position:relative;
- left:-90px'></div>
- </div>
- </td>
-</table>
-</div>
-
-<div id=OtlNavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-
-<table style='position:relative;width:70px' align=left cellpadding=0 cellspacing=0>
- <td nowrap><div title="Show/Hide
-Outline" id="nb_otl"
- style='position:absolute;top:0%;left:0%;width:100%;height:100%;cursor:default'>
- <div id="nb_otlElem" align=center style='position:relative;padding:3px;font-family:Arial;
- color:buttontext;font-size:9pt'>Outline</div></div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td>
- <div style='position:absolute;left:-18px;width:24px;height:20px;border-style:
- solid;border-width:1px;border-color:threedface' id="nb_otlTxtBorder">
- <div style='position:absolute;clip:rect(0px, 22px, 18px, 0px)'><img
- src=buttons.gif id="nb_otlTxt" title="Expand/Collapse Outline"
- style='position:relative;left:-157px'></div>
- </div>
- </td>
-</table>
-
-</div>
-
-<div id=OtlObj style='display:none;visibility:hidden;'>
-
-
-<table width="100%" style='font-family:Arial;font-size:9pt'>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>1</font></div>
-  </td>
-  <td width="100%">
-  <div id=PPTP1 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0046.html');" id=PPTL1>Model Development Tools
-  (MDT) 1.0 <br>
-    Europa Simultaneous Release Review</a></font></div>
-  <div id=PPTC1 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>6 June, 2007</li>
-   <br>
-   <br>
-   <br>
-   <li>Release Review revision 2.3.1 – 17 January, 2007</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>2</font></div>
-  </td>
-  <td>
-  <div id=PPTP2 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0072.html');" id=PPTL2>Agenda</a></font></div>
-  <div id=PPTC2 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Talking Points</li>
-   <li>Features</li>
-   <li>Non-Code Aspects</li>
-   <li>APIs</li>
-   <li>Architectural Issues</li>
-   <li>Tool Usability</li>
-   <li>End-of-Life</li>
-   <li>Bugzilla</li>
-   <li>Standards</li>
-   <li>UI Usability</li>
-   <li>Schedule</li>
-   <li>Communities</li>
-   <li>IP Issues</li>
-   <li>Project Plan</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>3</font></div>
-  </td>
-  <td>
-  <div id=PPTP3 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0073.html');" id=PPTL3>Talking Points</a></font></div>
-  <div id=PPTC3 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>MDT 1.0 Themes</li>
-   <ul>
-    <li>Appeal to a Broader Community</li>
-    <li>Be a Better Platform</li>
-    <li>Make Simpler to Use</li>
-    <li>Restructure Modeling Components</li>
-    <li>Increase Modeling Component Cohesion</li>
-    <li>Enable Consistent Multi-Language Support</li>
-   </ul>
-   <br>
-   <li>The project lead certifies that the requirements for Eclipse Quality
-       APIs have been met for this release</li>
-   <br>
-   <br>
-   <li>End-of-life issues</li>
-   <ul>
-    <li>RDF/OWL editors no longer available in EODM 0.9</li>
-    <li>org.eclipse.emf.ocl plug-in (OCL 1.0 API) deprecated, but continuing
-        viability guaranteed</li>
-    <li>http://www.eclipse.org/uml2/2.0.0/UML namespace URI now obsolete,
-        superseded by http://www.eclipse.org/uml2/2.1.0/UML</li>
-   </ul>
-   <br>
-   <li>All significant contributions, non-Committer code contributions, and
-       third-party libraries have received IP clearance</li>
-   <ul>
-    <li>1080: original 3rd-party code contribution</li>
-    <li>1081: use by MDT project</li>
-   </ul>
-   <br>
-   <li>15 committers from two companies (Borland, IBM) in three countries
-       (Canada, China, Czech Republic)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>4</font></div>
-  </td>
-  <td>
-  <div id=PPTP4 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0096.html');" id=PPTL4>Features</a></font></div>
-  <div id=PPTC4 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>1.0 development plan available at http://www.eclipse.org/modeling/mdt/docs/plans/mdt_project_plan_1_0.html</li>
-   <br>
-   <br>
-   <li>24 committed, 7 deferred</li>
-   <br>
-   <br>
-   <li>New &amp; Noteworthy documentation at http://wiki.eclipse.org/index.php/MDT_1.0_New_and_Noteworthy</li>
-   <br>
-   <br>
-   <li>Release notes available at http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>5</font></div>
-  </td>
-  <td>
-  <div id=PPTP5 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0074.html');" id=PPTL5>Features – EODM 0.9</a></font></div>
-  <div id=PPTC5 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>5 committed, 0 deferred</li>
-   <br>
-   <br>
-   <li>Appeal to a Broader Community</li>
-   <ul>
-    <li>Standard Compliance. Implement the new package structure and ontology
-        metamodel of RDF and OWL conforming to the ODM specification.</li>
-    <li>Dynamic Typing. Allow objects representing RDF/OWL resources to change
-        type.</li>
-    <li>RDF/OWL Parsing and Serialization. Provide support for parsing and
-        serialization in RDF/XML format.</li>
-    <li>RDF/OWL Reasoning. Provide support for RDF/OWL reasoning.</li>
-   </ul>
-   <br>
-   <li>Increase Modeling Component Cohesion</li>
-   <ul>
-    <li>RDF/OWL Transformation to/from Ecore. Provide a mechanism to transform
-        RDF/OWL models to/from Ecore.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>6</font></div>
-  </td>
-  <td>
-  <div id=PPTP6 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0075.html');" id=PPTL6>Features – OCL 1.1</a></font></div>
-  <div id=PPTC6 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>7 committed, 2 deferred</li>
-   <br>
-   <br>
-   <li>Appeal to a Broader Community</li>
-   <ul>
-    <li>Stand-alone Support. Provide a stand-alone (Eclipse-free) OCL build.</li>
-   </ul>
-   <br>
-   <li>Be a Better Platform</li>
-   <ul>
-    <li>Parsing API. Provide a public API for parsing OCL documents, with the
-        complete context declaration syntax.</li>
-    <li>EMF 2.3 / J2SE 5 Support. Adopt EMF 2.3, including regeneration of the
-        OCL metamodel.</li>
-   </ul>
-   <br>
-   <li>Make Simpler to Use</li>
-   <ul>
-    <li>Improved Documentation. Develop a complete ProgrammerÂ’s Guide for the
-        OCL component.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>7</font></div>
-  </td>
-  <td>
-  <div id=PPTP7 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0097.html');" id=PPTL7>Features – OCL 1.1</a></font></div>
-  <div id=PPTC7 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Restructure Modeling Components</li>
-   <ul>
-    <li>LPG. Consume LPG runtime library from the Orbit project.</li>
-   </ul>
-   <br>
-   <li>Increase Modeling Component Cohesion</li>
-   <ul>
-    <li>Integration with UML. Provide support for parsing and evaluating OCL
-        constraints and expressions on the UML metamodel.</li>
-   </ul>
-   <br>
-   <li>Enable Consistent Multi-language Support</li>
-   <ul>
-    <li>ICU4J. Isolate and minimize dependency on ICU4J; ensure support for the
-        “thin” variant of ICU4J.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>8</font></div>
-  </td>
-  <td>
-  <div id=PPTP8 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0076.html');" id=PPTL8>Features – UML2 2.1</a></font></div>
-  <div id=PPTC8 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>7 committed, 3 deferred</li>
-   <br>
-   <br>
-   <li>Appeal to a Broader Community</li>
-   <ul>
-    <li>Static Profile Definition. Provide a way to specify that a profile
-        definition be generated using EMF; this would allow, among other
-        things, support for custom data types and derived stereotype
-        properties.</li>
-   </ul>
-   <br>
-   <li>Be a Better Platform</li>
-   <ul>
-    <li>Ant Task for Ecore Importer. Provide an Ant task for the UML Ecore
-        importer, similar to those provided for the Rose and Ecore importers in
-        EMF.</li>
-   </ul>
-   <br>
-   <li>Make Simpler to Use</li>
-   <ul>
-    <li>Create Child/Sibling Menu Reorganization. Reorganize the ‘Create Child’
-        and ‘Create Sibling’ menus of the UML editor so that the items are
-        grouped by feature.</li>
-    <li>Improved Documentation. Improve documentation by updating the FAQ,
-        enhancing the Javadoc, and publishing new articles.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>9</font></div>
-  </td>
-  <td>
-  <div id=PPTP9 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0098.html');" id=PPTL9>Features – UML2 2.1</a></font></div>
-  <div id=PPTC9 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Increase Modeling Component Cohesion</li>
-   <ul>
-    <li>Eclipse 3.3 / EMF 2.3 Compatibility. Maintain release currency
-        concurrent with EMF 2.3 (and Eclipse 3.3); make changes as required to
-        align with EMF features and bug fixes, in particular support for Java
-        SE 5.0.</li>
-    <li>XML Primitive Types. Provide a model library to represent the types
-        defined in the XMLType metamodel in EMF; be sure to update Ecore/UML
-        converters to make use of this new library.</li>
-    <li>Integration with OCL. Integrate support for parsing and evaluating OCL
-        constraints and expressions.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>10</font></div>
-  </td>
-  <td>
-  <div id=PPTP10 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0077.html');" id=PPTL10>Features – UML2 Tools
-  0.7</a></font></div>
-  <div id=PPTC10 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>4 committed, 1 deferred</li>
-   <br>
-   <br>
-   <li>Appeal to a Broader Community</li>
-   <ul>
-    <li>Class Diagrams. Provide a GMF-based editor for UML class diagrams.</li>
-    <li>State Machine Diagrams. Provide a GMF-based editor for UML state
-        machine diagrams.</li>
-    <li>Component Diagrams. Provide a GMF-based editor for UML component
-        diagrams.</li>
-    <li>Activity Diagrams. Provide a GMF-based editor for UML activity
-        diagrams.</li>
-   </ul>
-   <br>
-   <li>Other</li>
-   <ul>
-    <li>Profile Definition Diagrams. Provide a GMF-based editor for UML profile
-        diagrams.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>11</font></div>
-  </td>
-  <td>
-  <div id=PPTP11 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0078.html');" id=PPTL11>Features – XSD 2.3</a></font></div>
-  <div id=PPTC11 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>1 committed, 1 deferred</li>
-   <br>
-   <br>
-   <li>Appeal to a Broader Community</li>
-   <ul>
-    <li>Java™ SE 5.0 Support. Exploit new Java language constructs; use
-        generics (e.g. EList, EMap and implementations); generate and merge
-        Java 5 constructs; investigate enumerations and annotations.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>12</font></div>
-  </td>
-  <td>
-  <div id=PPTP12 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0079.html');" id=PPTL12>Non-Code Aspects</a></font></div>
-  <div id=PPTC12 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>All components hosted at single Web site, Wiki</li>
-   <br>
-   <br>
-   <li>XSD still needs to be migrated to MDT CVS module</li>
-   <br>
-   <br>
-   <li>Documentation (FAQ, Javadoc, articles, etc.) available for EODM, OCL,
-       UML2, XSD (UML2 Tools TBD); updates complete or underway</li>
-   <br>
-   <br>
-   <li>Example features/plug-ins available for all components</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>13</font></div>
-  </td>
-  <td>
-  <div id=PPTP13 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0080.html');" id=PPTL13>APIs</a></font></div>
-  <div id=PPTC13 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The project lead certifies that the requirements for Eclipse Quality
-       APIs have been met for this release</li>
-   <br>
-   <br>
-   <li>Non-API in “internal” namespace</li>
-   <br>
-   <br>
-   <li>Some ‘discouraged access’ warnings in cases of metamodel extension
-       (plug-in compatibility restricted to minor version)</li>
-   <br>
-   <br>
-   <li>OCL, UML2, XSD APIs updated to support Java 5.0</li>
-   <br>
-   <br>
-   <li>EODM APIs are “provisional”, incompatible with previous release due to
-       compliance with new draft of the ODM specification</li>
-   <br>
-   <br>
-   <li>New convenience APIs introduced in UML2</li>
-   <br>
-   <br>
-   <li>GMF Runtime represents bulk of API for UML2 Tools</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>14</font></div>
-  </td>
-  <td>
-  <div id=PPTP14 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0081.html');" id=PPTL14>Architectural Issues</a></font></div>
-  <div id=PPTC14 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>To support RDF graphs and dynamic typing, EODM implementation changed to
-       make use of internal core objects and Java proxies – hence code
-       generation not used/possible</li>
-   <br>
-   <br>
-   <li>OCL now consuming LPG Java Runtime from Orbit</li>
-   <br>
-   <br>
-   <li>UML2 schema changes introduced to address bidirectional association
-       issues [185602]</li>
-   <br>
-   <br>
-   <li>GMF resources available for UML2 Tools to support code regeneration; 80
-       % generated code (including custom templates), 15 % pluggable custom
-       code, 5 % @generated NOT code</li>
-   <br>
-   <br>
-   <li>XSD partitioned into finer-grained features</li>
-   <br>
-   <br>
-   <li>No generics support for XSD transformation to/from Ecore</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>15</font></div>
-  </td>
-  <td>
-  <div id=PPTP15 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0082.html');" id=PPTL15>Tool Usability</a></font></div>
-  <div id=PPTC15 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Major OCL usability issue, lack of documentation, addressed with
-       introduction of ProgrammerÂ’s Guide</li>
-   <br>
-   <br>
-   <li>UML editor (create child/sibling menus), exporter usability improved</li>
-   <br>
-   <br>
-   <li>GMF-based editors introduced for activity, class, profile definition,
-       and state machine diagrams</li>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>16</font></div>
-  </td>
-  <td>
-  <div id=PPTP16 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0083.html');" id=PPTL16>End-of-Life</a></font></div>
-  <div id=PPTC16 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>RDF/OWL editors no longer available in EODM 0.9</li>
-   <br>
-   <br>
-   <li>org.eclipse.emf.ocl plug-in (OCL 1.0 API) deprecated, but continuing
-       viability guaranteed</li>
-   <br>
-   <br>
-   <li>http://www.eclipse.org/uml2/2.0.0/UML namespace URI now obsolete,
-       superseded by http://www.eclipse.org/uml2/2.1.0/UML</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>17</font></div>
-  </td>
-  <td>
-  <div id=PPTP17 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0084.html');" id=PPTL17>Bugzilla (as of May
-  30, 2007)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>18</font></div>
-  </td>
-  <td>
-  <div id=PPTP18 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0085.html');" id=PPTL18>Bugzilla – EODM (as of
-  May 30, 2007)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>19</font></div>
-  </td>
-  <td>
-  <div id=PPTP19 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0086.html');" id=PPTL19>Bugzilla – OCL (as of
-  May 30, 2007)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>20</font></div>
-  </td>
-  <td>
-  <div id=PPTP20 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0087.html');" id=PPTL20>Bugzilla – UML2 (as of
-  May 30, 2007)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>21</font></div>
-  </td>
-  <td>
-  <div id=PPTP21 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0088.html');" id=PPTL21>Bugzilla – UML2 Tools
-  (as of May 30, 2007)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>22</font></div>
-  </td>
-  <td>
-  <div id=PPTP22 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0089.html');" id=PPTL22>Bugzilla – XSD (as of
-  May 30, 2007)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>23</font></div>
-  </td>
-  <td>
-  <div id=PPTP23 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0090.html');" id=PPTL23>Standards</a></font></div>
-  <div id=PPTC23 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Ontology Definition Metamodel (ODM) 1.0 specification finalization
-       underway; EODM 0.9 compliant with working draft</li>
-   <br>
-   <br>
-   <li>Object Constraint Language (OCL) 2.1 revision underway; OCL 1.1
-       compliant with 2.0 formal version</li>
-   <br>
-   <br>
-   <li>Unified Modeling Language (UML) 2.2 specification revision underway;
-       UML2 2.1 and UML2 Tools 0.7 compliant with 2.1.1 formal version</li>
-   <br>
-   <br>
-   <li>XSD compliant with XML Schema W3C standard</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>24</font></div>
-  </td>
-  <td>
-  <div id=PPTP24 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0091.html');" id=PPTL24>UI Usability</a></font></div>
-  <div id=PPTC24 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>MDT 1.0 conforms to Eclipse User Interface Guidelines</li>
-   <br>
-   <br>
-   <li>Eclipse platform standard i18n support used where applicable/possible;
-       stand-alone deployment uses equivalent J2SE APIs</li>
-   <br>
-   <br>
-   <li>ICU4J is used but optional; stand-alone deployments delegate to
-       corresponding J2SE 5.0 APIs when ICU not available</li>
-   <br>
-   <br>
-   <li>As with all Europa projects, language packs will be created as part of
-       an Eclipse Globalization Project</li>
-   <br>
-   <br>
-   <li>Eclipse platform APIs used to provide accessible UI</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>25</font></div>
-  </td>
-  <td>
-  <div id=PPTP25 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0092.html');" id=PPTL25>Schedule</a></font></div>
-  <div id=PPTC25 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>As a whole, MDT is a “+2” project, but should probably be “+3” or “+4”
-       based on its dependencies</li>
-   <br>
-   <br>
-   <li>M3 met on November 16</li>
-   <br>
-   <br>
-   <li>M4 slipped from January 4 to January 22</li>
-   <br>
-   <br>
-   <li>M5 met on February 23</li>
-   <br>
-   <br>
-   <li>M6 slipped from April 6 to April 10</li>
-   <br>
-   <br>
-   <li>M7 slipped from May 18 to May 24</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>26</font></div>
-  </td>
-  <td>
-  <div id=PPTP26 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0093.html');" id=PPTL26>Communities</a></font></div>
-  <div id=PPTC26 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Increased interaction in Bugzilla and on newsgroups</li>
-   <br>
-   <br>
-   <li>MDT represented at EclipseCon 2007 (short/long talks, tutorials)</li>
-   <br>
-   <br>
-   <li>Coordination with Topcased open source project</li>
-   <br>
-   <br>
-   <li>Continued efforts to expand user communities for EODM, UML2 Tools</li>
-   <br>
-   <br>
-   <li>MDT is among the most active projects at Eclipse</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>27</font></div>
-  </td>
-  <td>
-  <div id=PPTP27 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0094.html');" id=PPTL27>IP Issues</a></font></div>
-  <div id=PPTC27 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The MDT project leadership verifies that:</li>
-   <ul>
-    <li>the about files and use licenses are in place as per the Guidelines to
-        Legal Documentation.</li>
-    <li>all contributions (code, documentation, images, etc) have been
-        committed by individuals who are either Members of the Foundation, or
-        have signed the appropriate Committer Agreement. In either case, these
-        are individuals who have signed, and are abiding by, the Eclipse IP
-        Policy.</li>
-    <li>all significant contributions have been reviewed by the Foundation's
-        legal staff.</li>
-    <li>all non-Committer code contributions, including third-party libraries,
-        have been documented in the release and reviewed by the Foundation's
-        legal staff.</li>
-    <li>all Contribution Questionnaires have been completed.</li>
-    <li>the &quot;provider&quot; field of each plug-in is set to
-        &quot;Eclipse.org“.</li>
-    <li>the &quot;copyright&quot; field of each feature is set to the copyright
-        owner (the Eclipse Foundation is rarely the copyright owner).</li>
-    <li>any third-party logos or trademarks included in the distribution
-        (icons, help file logos, etc) have been licensed under the EPL.</li>
-    <li>any fonts or similar third-party images included in the distribution
-        (e.g. in PDF or EPS files) have been licensed under the EPL.</li>
-   </ul>
-   <br>
-   <li>The MDT project IP log is located at http://www.eclipse.org/modeling/mdt/eclipse-project-ip-log.csv</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>28</font></div>
-  </td>
-  <td>
-  <div id=PPTP28 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0095.html');" id=PPTL28>Project Plan</a></font></div>
-  <div id=PPTC28 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Draft development plan for MDT 1.1 not yet available</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>29</font></div>
-  </td>
-  <td>
-  <div id=PPTP29 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0099.html');" id=PPTL29>Legal Notices</a></font></div>
-  <div id=PPTC29 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML is a trademark of the Object Management Group</li>
-   <br>
-   <br>
-   <li>XML is a trademark of the World Wide Web Consortium</li>
-   <br>
-   <br>
-   <li>Java and all Java-based trademarks are trademarks of Sun Microsystems,
-       Inc. in the United States, other countries, or both</li>
-   <br>
-   <br>
-   <li>Other company, product, or service names may be trademarks or service
-       marks of others</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
-</table>
-
-
-
-</div>
-
-<div style='display:none'><a href=master08.html></a><a href=master08.xml></a><a
-href=preview.wmf></a><a href="master08_image001.jpg"></a><a
-href="master08_image002.jpg"></a><a href=master02.html></a><a href=pres.xml></a><a
-href=editdata.mso></a><a href=slide0046.html></a><a href="master08_image003.jpg"></a><a
-href="master08_image004.gif"></a><a href="master08_image005.jpg"></a><a
-href=slide0072.html></a><a href=slide0073.html></a><a href=slide0096.html></a><a
-href=slide0074.html></a><a href=slide0075.html></a><a href=slide0097.html></a><a
-href=slide0076.html></a><a href=slide0098.html></a><a href=slide0077.html></a><a
-href=slide0078.html></a><a href=slide0079.html></a><a href=slide0080.html></a><a
-href=slide0081.html></a><a href=slide0082.html></a><a href=slide0083.html></a><a
-href=slide0084.html></a><a href="slide0084_image006.png"></a><a
-href=oledata.mso></a><a href="slide0084_image007.jpg"></a><a
-href=slide0085.html></a><a href="slide0085_image008.png"></a><a
-href="slide0085_image009.jpg"></a><a href=slide0086.html></a><a
-href="slide0086_image010.png"></a><a href="slide0086_image011.jpg"></a><a
-href=slide0087.html></a><a href="slide0087_image012.png"></a><a
-href="slide0087_image013.jpg"></a><a href=slide0088.html></a><a
-href="slide0088_image014.png"></a><a href="slide0088_image015.jpg"></a><a
-href=slide0089.html></a><a href="slide0089_image016.png"></a><a
-href="slide0089_image017.jpg"></a><a href=slide0090.html></a><a
-href=slide0091.html></a><a href=slide0092.html></a><a href=slide0093.html></a><a
-href=slide0094.html></a><a href=slide0095.html></a><a href=slide0099.html></a><a
-href=master01.html></a><a href="master08_stylesheet.css"></a><a href=script.js></a><a
-href="../MDT_1.0_%20Release_Review.html"></a><a href=fullscreen.html></a><a
-href="notes_flag.gif"></a><a href=buttons.gif></a><a href=frame.html></a><a
-href=outline.html></a></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/pres.xml b/docs/presentations/MDT_1.0_ Release_Review_files/pres.xml
deleted file mode 100644
index f7d1dbb..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/pres.xml
+++ /dev/null
@@ -1,104 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <p:presentation sizeof="screen" notessizex="4376" notessizey="5816"
-  gridspacingx="49152" gridspacingy="49152">
-  <p:master id="8" slidesn="1C24AB8,8B769EC0" type="main" href="master08.html"
-   xmlhref="master08.xml" template="1_Default Design" preserved="t"
-   layout="title_body" slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-    <p:colorscheme
-     colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
-   </p:schemes>
-  </p:master>
-  <p:master id="1" slidesn="1C24D43,1A7CCF90" type="notes" href="master01.html"
-   layout="notes" slots="header,dateTime,slideImage,body,footer,slideNumber"/>
-  <p:master id="2" slidesn="1C2506F,D2141A80" type="handout"
-   href="master02.html" layout="handout"
-   slots="header,dateTime,footer,slideNumber"/>
-  <p:slide id="46" slidesn="1C6745C,E0AF35B0" href="slide0046.html"
-   layout="title_subtitle" slots="centerTitle,subTitle"/>
-  <p:slide id="72" slidesn="1C7A212,B5366360" href="slide0072.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="73" slidesn="1C7A213,39B3EE00" href="slide0073.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="96" slidesn="1C7A22B,FB11F520" href="slide0096.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="74" slidesn="1C7A213,7E9327C0" href="slide0074.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="75" slidesn="1C7A213,FDA9F200" href="slide0075.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="97" slidesn="1C7A2BD,EADE8A00" href="slide0097.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="76" slidesn="1C7A214,1182AA10" href="slide0076.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="98" slidesn="1C7A2BE,AFC64100" href="slide0098.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="77" slidesn="1C7A214,18E2F080" href="slide0077.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="78" slidesn="1C7A214,2125CEC0" href="slide0078.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="79" slidesn="1C7A22B,4040F200" href="slide0079.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="80" slidesn="1C7A22B,4B40A650" href="slide0080.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="81" slidesn="1C7A22B,54F75FE0" href="slide0081.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="82" slidesn="1C7A22B,608FAAB0" href="slide0082.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="83" slidesn="1C7A22B,6BA027E0" href="slide0083.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="84" slidesn="1C7A22B,75B18490" href="slide0084.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="85" slidesn="1C7A22B,7B34F4B0" href="slide0085.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="86" slidesn="1C7A22B,838D2FB0" href="slide0086.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="87" slidesn="1C7A22B,8B21F3A0" href="slide0087.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="88" slidesn="1C7A22B,92502D90" href="slide0088.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="89" slidesn="1C7A22B,9928A660" href="slide0089.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="90" slidesn="1C7A22B,A7F78B20" href="slide0090.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="91" slidesn="1C7A22B,B1BC9C90" href="slide0091.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="92" slidesn="1C7A22B,BC1EFF70" href="slide0092.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="93" slidesn="1C7A22B,C7A8F260" href="slide0093.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="94" slidesn="1C7A22B,D5D359C0" href="slide0094.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="95" slidesn="1C7A22B,DBE5EA80" href="slide0095.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="99" slidesn="1C7A2E7,4D84EA90" href="slide0099.html"
-   layout="title_body" slots="title,body"/>
-  <p:viewstate type="slideView" nosnaptogrid="t" snaptoshape="t"
-   sorterscale="100" restoredleft="159" restoredtop="946" manualadjustleft="t"
-   manualadjusttop="t" hideoutlineicons="t"/>
-  <p:guide type="horizontal" position="1070"/>
-  <p:guide type="horizontal" position="3247"/>
-  <p:guide type="horizontal" position="2150"/>
-  <p:guide type="horizontal" position="4079"/>
-  <p:guide type="vertical" position="2880"/>
-  <p:guide type="vertical" position="1176"/>
-  <p:guide type="vertical" position="913"/>
-  <p:tag name="___PPT2001" type="binary" datasize="68" dataoffset="0"/>
-  <p:tag name="___PPTMac11" type="binary" datasize="11286" dataoffset="1"/>
-  <p:font name="Arial" charset="0" type="4"/>
-  <p:font name="Wingdings" charset="2" type="6" family="2"/>
-  <p:font name="Times" charset="0" type="10" family="18"/>
-  <p:font name="宋体" charset="134" type="4"/>
-  <p:headersfooters slidenumber="t" formatid="0" noheader="t" nodate="t"/>
-  <p:headersfooters notes="t" slidenumber="t"/>
-  <p:pptdocumentsettings framecolors="WhiteTextOnBlack" hideslideanimation="t"
-   browsersupport="v4"/>
- </p:presentation>
- <o:shapedefaults v:ext="edit" spidmax="1076228" style='mso-wrap-style:none;
-  v-text-anchor:middle' strokecolor="none [0]">
-  <v:stroke color="none [0]" weight="1pt"/>
-  <o:colormru v:ext="edit" colors="#3c3,#2f2672,#302775,#322777,#312672,#2c2674,#2d2672,#302573"/>
-  <o:colormenu v:ext="edit" fillcolor="none [5]" strokecolor="none [0]"/>
- </o:shapedefaults></xml>
\ No newline at end of file
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/preview.wmf b/docs/presentations/MDT_1.0_ Release_Review_files/preview.wmf
deleted file mode 100644
index 9768ee4..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/script.js b/docs/presentations/MDT_1.0_ Release_Review_files/script.js
deleted file mode 100644
index 70ff222..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/script.js
+++ /dev/null
@@ -1,833 +0,0 @@
-function LoadSld()

-{

-	var sld=GetObj("SlideObj")

-	if( !g_supportsPPTHTML ) {

-		sld.style.visibility="visible"

-		return

-	}

-	if( MakeNotesVis() ) return

-	runAnimations = _InitAnimations();

-	if( IsWin("PPTSld") )

-		parent.SldUpdated(GetSldId())

-	g_origSz=parseInt(SlideObj.style.fontSize)

-	g_origH=sld.style.posHeight

-	g_origW=sld.style.posWidth

-	g_scaleHyperlinks=(document.all.tags("AREA").length>0)

-	if( g_scaleHyperlinks )

-		InitHLinkArray()

-	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )

-		document.body.scroll="no"

-	_RSW()

-	if( IsWin("PPTSld") && parent.IsFullScrMode() )

-		FullScrInit();

-	

-	MakeSldVis();

-	ChkAutoAdv()

-

-	if( runAnimations )

-	{

-		if( document.all("NSPlay") )

-			document.all("NSPlay").autoStart = false;

-		if( sld.filters && sld.filters.revealtrans )

-			setTimeout( "document.body.start()", sld.filters.revealtrans.duration * 1000 );

-		else

-			document.body.start();

-	}

-}

-function MakeSldVis()

-{

-	var fTrans=g_showAnimation && SldHasTrans()

-	if( fTrans )

-	{

-		if( g_bgSound ) {

-			idx=g_bgSound.indexOf(",");

-			pptSound.src=g_bgSound.substr( 0, idx );

-			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));

-		}

-		SlideObj.filters.revealtrans.Apply()

-    }

-	SlideObj.style.visibility="visible"

-	if( fTrans )

-		SlideObj.filters.revealtrans.Play()

-}

-function MakeNotesVis()

-{

-	if( !IsNts() ) return false

-	SlideObj.style.display="none"

-	nObj = document.all.item("NotesObj")

-	parent.SetHasNts(0)

-	if( nObj ) {

-		nObj.style.display=""

-		parent.SetHasNts(1)

-	}

-	return 1

-}

-function ChkAutoAdv()

-{

-	if(SldHasTrans())

-		SlideObj.onfilterchange=AutoAdv

-	else

-		AutoAdv()

-}

-function AutoAdv()

-{

-	if(!IsWin("PPTSld") || !gUseSldTimings )return

-	var sld=GetCurSld()

-	if( (sld.mAdvDelay>0) && !parent.IsFramesMode() )

-		setTimeout("parent.GoToNextSld()",sld.mAdvDelay)

-}

-function GetObj(id)

-{

-	if(g_supportsPPTHTML) return document.all(id);

-	else return document.getElementById(id);

-}

-function SldHasTrans() { return SlideObj.style.getAttribute("filter")!="" }

-function GetSldId() { return sId=location.href.substring(location.href.lastIndexOf('/')+1) }

-function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }

-function IsWin( name ) { return window.name == name }

-function IsNts() { return IsWin("PPTNts") }

-function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }

-function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }

-function SupportsPPTHTML()

-{

-	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0

-	if( msie >= 0 )

-		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )

-	else

-		ver=parseInt(appVer)

-	return( ver >= 4 && msie >= 0 )

-}

-function _RSW()

-{

-	if( !g_supportsPPTHTML || IsNts() ||

-	  ( !g_scaleInFrame && (!IsWin("PPTSld") || !parent.IsFullScrMode()) ) )

-		return

-        var padding=0;

-        if( IsWin("PPTSld") && parent.IsFramesMode() ) padding=6

-	cltWidth=document.body.clientWidth-padding

-	cltHeight=document.body.clientHeight-padding

-	factor=(1.0*cltWidth)/g_origW

-	if( cltHeight < g_origH*factor )

-		factor=(1.0*cltHeight)/g_origH

-	newSize = g_origSz * factor

-	if( newSize < 1 ) newSize=1

-	s=SlideObj.style

-	s.fontSize=newSize+"px"

-	s.posWidth=g_origW*factor

-	s.posHeight=g_origH*factor

-	s.posLeft=(cltWidth-s.posWidth+padding)/2

-	s.posTop=(cltHeight-s.posHeight+padding)/2

-	if( g_scaleHyperlinks )

-		ScaleHyperlinks( factor )

-}

-function _InitAnimations()

-{

-	animRuntimeInstalled = ''+document.body.localTime != 'undefined';

-	isFullScreen = (window.name == "PPTSld") && !parent.IsFramesMode();

-	g_animUseRuntime = g_showAnimation && animRuntimeInstalled && !(isFullScreen && parent.IsSldVisited());

-	if( g_animUseRuntime ) {

-		collSeq = document.all.tags("seq");

-		if( collSeq != null ) {

-			for(ii=0;ii<collSeq.length;ii++) {

-				if( collSeq[ii].getAttribute( "p:nodeType" ) == "mainSeq" ) {

-					g_animMainSequence = collSeq[ii];

-					break;

-				}

-			}

-		}

-		if( g_animItemsToHide ) {

-			for(jj = 0; jj < g_animItemsToHide.length; jj++) {

-				if( hideObj = GetObj(g_animItemsToHide[jj]) )

-					hideObj.runtimeStyle.visibility="hidden";

-			}

-		}

-		if( g_animInteractiveItems ){

-			for(jj = 0; jj < g_animInteractiveItems.length; jj++) {

-				if( triggerObj = GetObj(g_animInteractiveItems[jj]) )

-					triggerObj.runtimeStyle.cursor="hand";

-			}

-		}

-		if( gUseSldTimings && ''+g_animSlideTime != 'undefined' ) {

-			adjustedTime = document.body.calculateAutoAdvanceTimes( g_animSlideTime, g_animEffectTimings );

-			if( IsWin("PPTSld") && adjustedTime != g_animSlideTime ) {

-			   var sld = GetCurSld();

-			   sld.mAdvDelay = adjustedTime * 1000;

-			}

-		}

-	}

-	return g_animUseRuntime;

-}

-gSldJump = 0, gSldJumpTrack = 0, gSldJumpIdx = "";

-function _KPH()

-{

-	if( IsNts() ) return;

-	if( !parent.IsFramesMode() && event.keyCode == 27 && !HideMenu() )

-		parent.window.close( self );

-	else if( event.keyCode == 32 ) {

-		if( window.name == "PPTSld" )

-			parent.PPTSld.DocumentOnClick();

-		else

-			parent.GoToNextSld();

-	}

-	CatchNumKeys( parent, event );

-}

-function CatchNumKeys( win, event ) {

-	if( win.IsFullScrMode() && (48<=event.keyCode) && (event.keyCode<=57) ) {

-		gSldJump = 1;

-		gSldJumpIdx += (event.keyCode-48).toString();

-	}

-	if( win.IsFullScrMode() && gSldJump && event.keyCode == 13 ) {

-		var numSlds = parent.GetSldList().mList.length

-		if ( gSldJumpIdx > numSlds )

-			gSldJumpIdx = numSlds;

-		if ( gSldJumpIdx >= 0 ) {

-			if ( gSldJumpIdx == 0 )

-				gSldJumpIdx = 1;

-			var jumpTo = parseInt(gSldJumpIdx);

-			gSldJump = 0; gSldJumpIdx = "";

-			win.GoToSld( parent.GetSldList().mList[jumpTo-1].mSldHref )

-		}

-	}

-}

-function _KDH()

-{

-	if( event.keyCode == 8 ) {

-		event.returnValue = 0;

-		parent.GoToPrevSld();

-	}

-}

-function DocumentOnClick()

-{

-	if( IsNts() || parent.HideMenu() ) return;

-	if( ( g_allowAdvOnClick && !parent.IsFramesMode() ) ||

-	    (event && (event.keyCode==32) ) )

-		parent.GoToNextSld();

-}

-

-var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = 1, gId="", g_bgSound="",

-    g_scaleHyperlinks = false, g_allowAdvOnClick = 1, g_showInBrowser = 0, gLoopCont = 0, gUseSldTimings = 1;

-var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && ( (window.name=="PPTSld" && !parent.IsFramesMode()) || g_showInBrowser );var g_animManager = null;

-var g_animUseRuntime = false;

-var g_animItemsToHide, g_animInteractiveItems, g_animSlideTime;

-var g_animMainSequence = null;

-var ENDSHOW_MESG="End of slide show, click to exit.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=29, SCRIPT_HREF="script.js", FULLSCR_HREF="fullscreen.html";

-var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = 0, gHasNarration = 0, gOtlOpen = true

-window.gPPTHTML=SupportsPPTHTML()

-var gMainDoc=new Array(new hrefList("slide0046.html",1,-1,1),new hrefList("slide0072.html",1,-1,1),new hrefList("slide0073.html",1,-1,1),new hrefList("slide0096.html",1,-1,1),new hrefList("slide0074.html",1,-1,1),new hrefList("slide0075.html",1,-1,1),new hrefList("slide0097.html",1,-1,1),new hrefList("slide0076.html",1,-1,1),new hrefList("slide0098.html",1,-1,1),new hrefList("slide0077.html",1,-1,1),new hrefList("slide0078.html",1,-1,1),new hrefList("slide0079.html",1,-1,1),new hrefList("slide0080.html",1,-1,1),new hrefList("slide0081.html",1,-1,1),new hrefList("slide0082.html",1,-1,1),new hrefList("slide0083.html",1,-1,1),new hrefList("slide0084.html",1,-1,1),new hrefList("slide0085.html",1,-1,1),new hrefList("slide0086.html",1,-1,1),new hrefList("slide0087.html",1,-1,1),new hrefList("slide0088.html",1,-1,1),new hrefList("slide0089.html",1,-1,1),new hrefList("slide0090.html",1,-1,1),new hrefList("slide0091.html",1,-1,1),new hrefList("slide0092.html",1,-1,1),new hrefList("slide0093.html",1,-1,1),new hrefList("slide0094.html",1,-1,1),new hrefList("slide0095.html",1,-1,1),new hrefList("slide0099.html",1,-1,1));

-function FullScrInit()

-{

-	g_allowAdvOnClick = GetCurSld().mAdvOnClk

-	document.body.style.backgroundColor="black"

-	document.oncontextmenu=parent._CM;

-	document.onkeydown = _KDH;

-	document.ondragstart=Cancel

-	document.onselectstart=Cancel

-	self.focus()

-}

-function Redirect( frmId )

-{

-	var str=document.location.hash,idx=str.indexOf('#'), sId=GetSldId()

-	if(idx>=0) str=str.substr(1);

-	if( window.name != frmId && ( sId != str) ) {

-		obj = GetObj("Main-File")

-		window.location.href=obj.href+"#"+sId

-		return 1

-	}

-	return 0

-}

-var MHTMLPrefix = CalculateMHTMLPrefix();

-function CalculateMHTMLPrefix()

-{

-	if ( document.location.protocol == 'mhtml:') {

-		href=new String(document.location.href)

-		Start=href.indexOf('!')+1

-		End=href.lastIndexOf('/')+1

-		if (End < Start)

-			return href.substring(0, Start)

-		else

-		return href.substring(0, End)

-	}

-	return '';

-}

-function GetTags(base,tag)

-{

-	if(g_supportsPPTHTML) return base.all.tags(tag);

-	else return base.getElementsByTagName(tag);

-}

-function UpdNtsPane(){ if(frames["PPTNts"]) PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }

-function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }

-function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }

-function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }

-function SetHasNts( fVal )

-{

-	if( gHasNts != fVal ) {

-		gHasNts=fVal

-		UpdNavPane()

-	}

-}

-function ToggleOtlText()

-{

-	gOtlTxtExp=!gOtlTxtExp

-	UpdOtlPane()

-}

-function ToggleOtlPane()

-{

-	frmset=document.all("PPTHorizAdjust")

-	frm=document.all("PPTOtl")

-	if( gOtlOpen )

-		frmset.cols="*,100%"

-	else

-		frmset.cols="25%,*"

-	gOtlOpen=!gOtlOpen

-	frm.noResize=!frm.noResize

-	UpdOtNavPane()

-}

-function ToggleNtsPane()

-{

-	frmset=document.all("PPTVertAdjust")

-	frm=document.all("PPTNts")

-	if( gNtsOpen )

-		frmset.rows="100%,*"

-	else

-		frmset.rows="*,20%"

-	gNtsOpen=!gNtsOpen

-	UpdNtsPane()

-}

-function ClearMedia()

-{

-	if (PPTSld.pptSound) PPTSld.pptSound.loop = 0;

-}

-function FullScreen()

-{

-	if ( PPTSld.g_animUseRuntime )

-		PPTSld.document.body.pause();

-	ClearMedia();

-	var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;

-	if(PPTNav.event.ctrlKey) {

-		var w = (window.screen.availWidth * 1.0) / 2.0

-		var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW

-		win = window.open( MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w + ",height=" + h );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-	else

-	{

-		win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-}

-function ToggleVNarration()

-{

-	rObj=PPTSld.document.all("NSPlay")

-	if( rObj && !PPTSld.g_animUseRuntime ) {

-		if( (rObj.playState == 1)||(rObj.playState == 0) )

-			rObj.Play()

-		else if( rObj.playState == 2 )

-			rObj.Pause()

-		else

-			return;

-	}

-	else if( PPTSld.g_animUseRuntime )

-	{

-		narObj = PPTSld.document.all("narrationID")

-		if( narObj )

-			narObj.togglePause()

-	}

-}

-function GetCurSldNum()

-{

-	obj=GetHrefObj(gCurSld)

-	if( obj.mOrigVis == 1 )

-		return obj.mSldIdx

-	else

-		return gCurSld

-}

-function GetNumSlds()

-{

-	if( GetHrefObj(gCurSld).mOrigVis == 1 )

-		return GetSldList().mNumVisSlds;

-	else

-		return GetSldList().mList.length

-}

-function GetSldNum( href )

-{

-	for(ii=0; ii<GetSldList().mList.length; ii++) {

-		if ( GetSldList().mList[ii].mSldHref == href )

-			return ii+1

-	}

-	return 1

-}

-function GetHrefObj( sldIdx ){ return GetSldList().mList[sldIdx-1] }

-function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }

-function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }

-function GoToNextSld()

-{

-	ii=gCurSld + 1

-	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {

-		if( ii<=GetSldList().mList.length ) {

-			obj=GetHrefObj(ii)

-			obj.mVis=1

-			GoToSldNum(ii)

-			return

-		}

-	}

-	else {

-		obj=GetHrefObj( ii )

-		while ( obj && ( obj.mOrigVis == 0 ) )

-			obj=GetHrefObj(++ii)

-		if( obj && obj.mOrigVis ) {

-			GoToSldNum(ii)

-			return

-		}

-	}

-	if( gSldStack.length > 1 )

-		PopSldList();

-	else if( !IsFramesMode() ) {

-                if( gLoopCont )

-			GoToFirst()

-                else

-			EndShow()

-	}

-}

-function GoToPrevSld()

-{

-	ii=gCurSld-1

-	if( ii > 0 ) {

-		obj=GetHrefObj(ii)

-		while ( obj && ( obj.mVis == 0 ) && ( ii>0 ) )

-			obj=GetHrefObj(--ii)

-        if( ii == 0 ) ii=1

-		GoToSldNum(ii)

-	}

-}

-function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }

-function GoToLast()

-{

-	ii=GetSldList().mList.length

-	if( ii != gCurSld )

-		GoToSld( GetHrefObj(ii).mSldHref )

-}

-function GoToSldNum( num )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	obj = GetHrefObj( num )

-	obj.mVis=1

-	gPrevSld=gCurSld

-	gCurSld = num;

-	PPTSld.location.replace(MHTMLPrefix+obj.mSldHref)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function GoToSld( href )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	GetHrefObj( GetSldNum(href) ).mVis=1

-	PPTSld.location.replace(MHTMLPrefix+href)

-}

-function SldUpdated( id )

-{

-	if( id == GetHrefObj(gCurSld).mSldHref ) return

-	gPrevSld=gCurSld

-	gCurSld=GetSldNum(id)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }

-function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }

-function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }

-function CloseWindow() {

-	if( HideMenu() ) return;

-	var event = PPTSld.event;

-	if( !IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) )

-		window.close( self );

-	CatchNumKeys( self, event );

-}

-function Unload() { gIsEndShow=0; }

-function SetupEndShow() {

-	gIsEndShow=1;

-	PPTSld.document.body.scroll="no";

-	PPTSld.document.onkeypress=CloseWindow;

-	PPTSld.document.onclick=CloseWindow;

-	PPTSld.document.oncontextmenu=_CM;

-}

-function EndShow()

-{

-	if( IsFramesMode() ) return

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	doc=PPTSld.document

-	doc.open()

-	doc.writeln('<html><body bgcolor=black onload=parent.SetupEndShow() onunload=parent.Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')

-	doc.close()

-}

-function SetSldVisited(){ GetSldList().mList[gCurSld-1].mVisited=true }

-function IsSldVisited(){ return GetSldList().mList[gCurSld-1].mVisited }

-function hrefList( sldHref, visible, advDelay, advClk )

-{

-	this.mSldHref= this.mNtsHref = sldHref

-	this.mOrigVis= this.mVis = visible

-	this.mVisited= false

-	this.mAdvDelay= advDelay

-	this.mAdvOnClk= advClk

-}

-function SldList(arr,curSld,fEnd)

-{

-	this.mCurSld = curSld;

-	this.mList = new Array();

-	var idx = 1;

-	for(ii=0;ii<arr.length;ii++) {

-		this.mList[ii] = new hrefList( arr[ii].mSldHref, arr[ii].mOrigVis, arr[ii].mAdvDelay, arr[ii].mAdvOnClk );

-		if( arr[ii].mOrigVis )

-			this.mList[ii].mSldIdx = idx++;

-	}

-	this.mNumVisSlds = idx-1;

-	this.fEndShow = fEnd;

-}

-function GetSldList() {	return gSldStack[gSldStack.length-1] }

-function GetCurSld() { return parent.GetSldList().mList[parent.gCurSld - 1] }

-gSldStack = new Array();

-gSldStack[0] = new SldList(gMainDoc,gCurSld,1)

-function ViewCustomShow(idx,fEnd)

-{

-	if( !IsFullScrMode() ) return;

-	var sldList = new Array();

-	var custShow = custShowList[idx-1];

-	var jj = 0;

-	for( ii=0;ii<custShow.length;ii++ ) {

-		if( custShow[ii] <= gMainDoc.length )

-			sldList[jj++] = gMainDoc[custShow[ii]-1];

-	}

-	if (sldList.length > 0) {

-	PushSldList(sldList,fEnd);

-	gCurSld = 1;

-	}

-	else

-		if( PPTSld.event ) PPTSld.event.cancelBubble=true

-}

-function PushSldList(arr,fEnd) {

-	var ii = gSldStack.length;

-	gSldStack[ii] = new SldList(arr,gCurSld,fEnd);

-	GoToSld( gSldStack[ii].mList[0].mSldHref );

-}

-function PopSldList() {

-	if (gSldStack[gSldStack.length-1].fEndShow)

-		EndShow()

-	else {

-	gCurSld = gSldStack[gSldStack.length-1].mCurSld;

-	gSldStack[gSldStack.length-1] = null;

-	gSldStack.length--;

-	var sldList = gSldStack[gSldStack.length-1];

-	GoToSld( sldList.mList[gCurSld - 1].mSldHref );

-	}

-}

-var custShowList=new Array();

-function ImgBtn( oId,bId,w,action )

-{

-	var t=this

-	t.Perform    = _IBP

-	t.SetActive  = _IBSetA

-	t.SetInactive= _IBSetI

-	t.SetPressed = _IBSetP

-	t.SetDisabled= _IBSetD

-	t.Enabled    = _IBSetE

-	t.ChangeIcon = null

-	t.UserAction = action

-	t.ChgState   = _IBUI

-	t.mObjId   = oId

-	t.mBorderId= bId

-	t.mWidth   = w

-	t.mIsOn    = t.mCurState = 0

-}

-function _IBSetA()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetI()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetP()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gShadowClr,gHiliteClr,2 )

-		obj.style.posLeft+=1; obj.style.posTop+=1

-	}

-}

-function _IBSetD()

-{

-	obj=this.ChgState( gFaceClr,gFaceClr,0 )

-	obj.style.posTop=0

-}

-function _IBSetE( state )

-{

-	var t=this

-	GetObj( t.mBorderId ).style.visibility="visible"

-	if( state != t.mIsOn ) {

-		t.mIsOn=state

-		if( state )

-			t.SetInactive()

-		else

-			t.SetDisabled()

-	}

-}

-function _IBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-		if( t.ChangeIcon ) {

-			obj=GetObj(t.mObjId)

-			if( t.ChangeIcon() )

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth

-			else

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth

-		}

-		t.SetActive()

-	}

-}

-function _IBUI( clr1,clr2,nextState )

-{

-	var t=this

-	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )

-	obj=GetObj( t.mObjId )

-	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop

-	t.mCurState=nextState

-	return obj

-}

-function TxtBtn( oId,oeId,action,chkState )

-{

-	var t=this

-	t.Perform    = _TBP

-	t.SetActive  = _TBSetA

-	t.SetInactive= _TBSetI

-	t.SetPressed = _TBSetP

-	t.SetDisabled= _TBSetD

-	t.SetEnabled = _TBSetE

-	t.GetState   = chkState

-	t.UserAction = action

-	t.ChgState   = _TBUI

-	t.mObjId      = oId

-	t.m_elementsId= oeId

-	t.mIsOn       = 1

-}

-function _TBSetA()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gHiliteClr,gShadowClr,0,0 )

-}

-function _TBSetI()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-}

-function _TBSetP()

-{

-	if( this.mIsOn )

-		this.ChgState( gShadowClr,gHiliteClr,1,1 )

-}

-function _TBSetD()

-{

-	this.ChgState( gFaceClr,gFaceClr,0,0 )

-	this.mIsOn = 0

-}

-function _TBSetE()

-{

-	var t=this

-	if( !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-	else

-		t.ChgState( gShadowClr,gHiliteClr,1,1 )

-	t.mIsOn = 1

-}

-function _TBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-        if( !t.GetState )

-            return

-		if( t.GetState() )

-			t.SetPressed()

-		else

-			t.SetActive()

-	}

-}

-function _TBUI( clr1,clr2,lOffset,tOffset )

-{

-	SetBorder( GetObj( this.mObjId ),clr1,clr2 )

-	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )

-}

-function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }

-function SetBorder( obj, upperLeft, lowerRight )

-{

-	s=obj.style;

-	s.borderStyle      = "solid"

-	s.borderWidth      = 1

-	s.borderLeftColor  = s.borderTopColor = upperLeft

-	s.borderBottomColor= s.borderRightColor = lowerRight

-}

-function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }

-function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }

-function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }

-function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }

-function BtnOnUp()

-{

-	b=GetBtnObj()

-	if( b != null )

-		b.Perform()

-	else

-		Upd()

-}

-function GetNtsState(){ return parent.gNtsOpen }

-function GetOtlState(){ return parent.gOtlOpen }

-function GetOtlTxtState(){ return parent.gOtlTxtExp }

-function NtsBtnSetFlag( fVal )

-{

-	s=document.all.item( this.m_flagId ).style

-	s.display="none"

-	if( fVal )

-		s.display=""

-	else

-		s.display="none"

-}

-function _BSetA_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetActive() }

-function _BSetI_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetInactive() }

-var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"

-var gBtnArr = new Array()

-gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_otlElem"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_nts"] = new TxtBtn( "nb_nts","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )

-gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )

-gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )

-gBtnArr["nb_sldshwBorder"] = new TxtBtn( "nb_sldshw","nb_sldshwBorder",parent.FullScreen,null )

-gBtnArr["nb_sldshwBorder"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwBorder"].SetInactive = _BSetI_Border;

-gBtnArr["nb_sldshwText"] = new TxtBtn( "nb_sldshw","nb_sldshwText",parent.FullScreen,null )

-gBtnArr["nb_sldshwText"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwText"].SetInactive = _BSetI_Border;

-gBtnArr["nb_voice"]  = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )

-gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )

-gBtnArr["nb_nts"].m_flagId= "notes_flag"

-gBtnArr["nb_nts"].SetFlag = NtsBtnSetFlag

-gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState

-var sNext="Next",sPrev="Previous",sEnd="End Show",sFont="Arial",sArrow="Arrow",sFreeform="Freeform",sRect="Rectangle",sOval="Oval"

-function ShowMenu()

-{

-	BuildMenu();

-	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

-	m = PPTSld.document.all.item("ctxtmenu")

-	m.style.pixelLeft=x

-	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )

-		m.style.pixelLeft=x-m.scrollWidth

-	m.style.pixelTop=y

-	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )

-		m.style.pixelTop=y-m.scrollHeight

-	m.style.display=""

-}

-function _CM()

-{

-	if( !parent.IsFullScrMode() ) return;

-	if(!PPTSld.event.ctrlKey) {

-		ShowMenu()

-		return false

-	} else

-		HideMenu()

-}

-function BuildMenu()

-{

-	if( PPTSld.document.all.item("ctxtmenu") ) return

-	var mObj=CreateItem( PPTSld.document.body )

-	mObj.id="ctxtmenu"

-	mObj.style.visibility="hidden"

-	var s=mObj.style

-	s.position="absolute"

-	s.cursor="default"

-	s.width="120px"

-	SetCMBorder(mObj,"menu","black")

-	var iObj=CreateItem( mObj )

-	SetCMBorder( iObj, "threedhighlight","threedshadow" )

-	iObj.style.padding=2

-	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )

-	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )

-	CreateSeparator( iObj )

-	CreateMenuItem( iObj,sEnd,M_End,M_True )

-	mObj.style.visibility="visible"

-}

-function Cancel() { window.event.cancelBubble=true; window.event.returnValue=false }

-function Highlight() { ChangeClr("activecaption","threedhighlight") }

-function Deselect() { ChangeClr("threedface","menutext") }

-function Perform()

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() )

-		e.Action()

-	else

-		PPTSld.event.cancelBubble=true

-}

-function ChangeClr( bg,clr )

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() ) {

-		e.style.backgroundColor=bg

-		e.style.color=clr

-	}

-}

-function M_HasPrevSld() { return( parent.HasPrevSld() ) }

-function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }

-function M_GoPrevSld() { if( gIsEndShow ) { history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }

-function M_True() { return true }

-function M_End() { window.close( self ) }

-function CreateMenuItem( node,text,action,eval )

-{

-	var e=CreateItem( node )

-	e.type="menuitem"

-	e.Action=action

-	e.IsActive=eval

-	e.innerHTML=text

-	if( !e.IsActive() )

-		e.style.color="threedshadow"

-	e.onclick=Perform

-	e.onmouseover=Highlight

-	e.onmouseout=Deselect

-	s=e.style;

-	s.fontFamily=sFont

-	s.fontSize="9pt"

-	s.paddingLeft=2

-}

-function CreateSeparator( node )

-{

-	var sObj=CreateItem( node )

-	SetCMBorder(sObj,"menu","menu")

-	var s=sObj.style

-	s.borderTopColor="threedshadow"

-	s.borderBottomColor="threedhighlight"

-	s.height=1

-	s.fontSize="0px"

-}

-function CreateItem( node )

-{

-	var elem=PPTSld.document.createElement("DIV")

-	node.insertBefore( elem )

-	return elem

-}

-function SetCMBorder( o,ltClr,rbClr )

-{

-	var s=o.style

-	s.backgroundColor="menu"

-	s.borderStyle="solid"

-	s.borderWidth=1

-	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr

-}

diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0046.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0046.html
deleted file mode 100644
index f792690..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0046.html
+++ /dev/null
@@ -1,111 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description
-content="6/12/2007: Model Development Tools (MDT) 1.0  Europa Simultaneous Release Review">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:black;}
-.CT
-	{color:#2F2672;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="976"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O style='mso-line-spacing:"100 50 0";
- position:absolute;top:95.0%;left:2.62%;width:9.17%;height:2.25%'><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-field-code:meta16'><b>1</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>Europa Simultaneous Release Review |<span
- style='mso-spacerun:yes'>  </span>© 2007 by IBM Corporation, made available
- under the EPL v1.0 </span></div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s999428" type="#_x0000_m32774"
-  style='position:absolute;left:54pt;top:167.75pt;width:612pt;height:115.75pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="centerTitle"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s999429" type="#_x0000_m32775"
-  style='position:absolute;left:108pt;top:306pt;width:7in;height:138pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="subTitle" position="1"/></v:shape>
- <div v:shape="_x0000_s999428" class=CT style='mso-line-spacing:"110 0 0"'><span
- style='position:absolute;top:32.5%;left:8.42%;width:83.14%;height:6.0%'>Model
- Development Tools (MDT) 1.0 <br>
-  </span><span style='position:absolute;top:39.5%;left:8.42%;width:83.14%;
- height:6.0%'>Europa Simultaneous Release Review</span></div>
- <div v:shape="_x0000_s999429" class=CB>
- <div style='position:absolute;top:57.5%;left:15.91%;width:68.16%;height:4.5%'>6
- June, 2007&#13;</div>
- <div style='position:absolute;top:62.0%;left:15.91%;width:68.16%;height:4.5%'>&#13;</div>
- <div style='position:absolute;top:66.5%;left:15.91%;width:68.16%;height:4.5%'>&#13;</div>
- <div style='position:absolute;top:70.75%;left:15.91%;width:68.16%;height:3.25%'><span
- style='font-size:70%'><i>Release Review revision 2.3.1 – 17 January, 2007</i></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0072.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0072.html
deleted file mode 100644
index b397fa2..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0072.html
+++ /dev/null
@@ -1,168 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Agenda">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1005"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>2</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1029122" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1029123" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1029122" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Agenda</div>
- <div v:shape="_x0000_s1029123" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Talking Points&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Features&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Non-Code Aspects&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>APIs&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Architectural
- Issues&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Tool Usability&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>End-of-Life&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Bugzilla&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Standards&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>UI Usability&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Schedule&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Communities&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>IP Issues&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Project Plan</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0073.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0073.html
deleted file mode 100644
index ac37420..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0073.html
+++ /dev/null
@@ -1,231 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Talking Points">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1006"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>3</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1030146" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1030147" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1030146" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Talking Points</div>
- <div v:shape="_x0000_s1030147">
- <div class=B style='mso-line-spacing:"80 0 0";position:absolute;top:26.25%;
- left:8.23%;width:82.77%;height:2.75%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:60%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:60%'>MDT 1.0 Themes&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:29.0%;
- left:13.29%;width:77.71%;height:2.25%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='font-size:56%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='font-size:56%'>Appeal to a Broader
- Community&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:31.75%;
- left:13.29%;width:77.71%;height:2.25%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='font-size:56%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='font-size:56%'>Be a Better
- Platform&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:34.25%;
- left:13.29%;width:77.71%;height:2.25%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='font-size:56%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='font-size:56%'>Make Simpler to Use&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:37.0%;
- left:13.29%;width:77.71%;height:2.25%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='font-size:56%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='font-size:56%'>Restructure Modeling
- Components&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:39.75%;
- left:13.29%;width:77.71%;height:2.25%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='font-size:56%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='font-size:56%'>Increase Modeling
- Component Cohesion&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:42.25%;
- left:13.29%;width:77.71%;height:2.25%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='font-size:56%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='font-size:56%'>Enable Consistent
- Multi-Language Support&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 0 0";position:absolute;top:44.5%;
- left:8.23%;width:82.77%;height:2.75%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:60%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-3.03%;font-family:Wingdings'>§</span></span><span style='font-size:60%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 0 0";position:absolute;top:46.5%;
- left:8.23%;width:92.69%;height:2.75%'><span style='position:absolute;
- top:0%;left:2.62%;width:97.37%;height:100.0%'><span style='font-size:60%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.69%;font-family:
- Wingdings'>§</span></span><span style='font-size:60%'>The project lead
- certifies that the requirements for </span><span style='font-size:60%'><i><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/eclipse-quality.php"/><a
- href="http://www.eclipse.org/projects/dev_process/eclipse-quality.php"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Eclipse Quality</a></i></span><span style='font-size:60%'><span
- style='mso-spacerun:yes'> </span>APIs have been met for this release&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 0 0";position:absolute;top:48.75%;
- left:8.23%;width:82.77%;height:2.75%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:60%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-3.03%;font-family:Wingdings'>§</span></span><span style='font-size:60%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 0 0";position:absolute;top:50.75%;
- left:8.23%;width:82.77%;height:2.75%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:60%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:60%'>End-of-life issues&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:53.5%;
- left:13.29%;width:77.71%;height:2.25%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='font-size:56%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='font-size:56%'>RDF/OWL editors no
- longer available in EODM 0.9&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:56.25%;
- left:13.29%;width:77.71%;height:2.25%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='font-size:56%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='mso-hansi-font-family:Arial;font-size:
- 56%;color:black'>org.eclipse.emf.ocl plug-in (OCL 1.0 API) deprecated, but c</span><span
- style='font-size:56%'>ontinuing viability guaranteed</span><span
- style='font-size:56%;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15"'><span style='position:absolute;
- top:58.75%;left:16.47%;width:74.53%;height:2.25%'><span style='font-size:56%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='font-size:56%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/uml2/2.0.0/UML"/><a
- href="http://www.eclipse.org/uml2/2.0.0/UML" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>http://www.eclipse.org/uml2/2.0.0/UML</a></span><span
- style='font-size:56%'><span style='mso-spacerun:yes'> </span>namespace URI now
- obsolete, superseded by </span></span><span style='position:absolute;
- top:60.75%;left:16.47%;width:74.53%;height:2.25%'><span style='font-size:56%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/uml2/2.1.0/UML"/><a
- href="http://www.eclipse.org/uml2/2.1.0/UML" target="_blank"
- onclick="window.event.cancelBubble=true;">http://www.eclipse.org/uml2/2.1.0/UML</a></span><span
- style='font-size:56%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 0 0";position:absolute;top:62.75%;
- left:8.23%;width:82.77%;height:2.75%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:60%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-3.03%;font-family:Wingdings'>§</span></span><span style='font-size:60%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 0 0"'><span style='position:absolute;
- top:64.75%;left:10.67%;width:91.57%;height:2.75%'><span style='font-size:60%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.65%;font-family:
- Wingdings'>§</span></span><span style='font-size:60%'>All significant
- contributions, non-Committer code contributions, and third-party libraries
- have received IP </span></span><span style='position:absolute;top:67.0%;
- left:10.67%;width:80.33%;height:2.75%'><span style='font-size:60%'>clearance&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:69.75%;
- left:13.29%;width:77.71%;height:2.25%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='font-size:56%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='font-size:56%'>1080: original 3rd-party
- code contribution&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:72.25%;
- left:13.29%;width:77.71%;height:2.25%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='font-size:56%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='font-size:56%'>1081: use by MDT
- project&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 0 0";position:absolute;top:74.5%;
- left:8.23%;width:82.77%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:50%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-3.03%;font-family:Wingdings'>§</span></span><span style='font-size:50%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 0 0";position:absolute;top:76.25%;
- left:8.23%;width:93.25%;height:2.75%'><span style='position:absolute;
- top:0%;left:2.61%;width:97.18%;height:100.0%'><span style='font-size:60%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.68%;font-family:
- Wingdings'>§</span></span><span style='font-size:60%'>15 committers from two
- companies (Borland, IBM) in three countries (Canada, China, Czech Republic)</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0074.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0074.html
deleted file mode 100644
index 55a4f9b..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0074.html
+++ /dev/null
@@ -1,195 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Features – EODM 0.9">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1007"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>5</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1031170" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1031171" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1031170" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Features – EODM 0.9</div>
- <div v:shape="_x0000_s1031171">
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;
- left:8.23%;width:82.77%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>5 committed, 0
- deferred&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;
- left:8.23%;width:82.77%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:90%;
- color:silver;mso-color-index:6;visibility:hidden'><span style='mso-special-format:
- bullet;color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;color:silver;mso-color-index:
- 6;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;
- left:8.23%;width:82.77%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:90%;
- color:silver;mso-color-index:6'><span style='mso-special-format:bullet;
- color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:Wingdings'>§</span></span><span
- style='font-size:90%;color:silver;mso-color-index:6'>Appeal to a Broader
- Community&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:38.25%;left:16.47%;width:87.82%;height:3.5%'><span style='font-size:89%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.62%;font-family:
- Wingdings'>§</span></span><span style='font-size:89%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162682" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Standard
- Compliance</a></span><span style='font-size:89%'>. </span><span lang=EN-US
- style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:Arial;
- font-size:89%;mso-fareast-language:ZH-CN'>Implement the new package structure
- and ontology </span></span><span style='position:absolute;top:41.5%;
- left:16.47%;width:79.02%;height:3.5%'><span lang=EN-US style='mso-fareast-font-family:
- \5B8B\4F53;mso-hansi-font-family:Arial;font-size:89%;mso-fareast-language:
- ZH-CN'>metamodel of RDF and OWL</span><span style='font-size:89%'> conforming
- to the </span><span lang=EN-US style='mso-fareast-font-family:\5B8B\4F53;
- mso-hansi-font-family:Arial;font-size:89%;mso-fareast-language:ZH-CN'>ODM
- specification</span><span style='font-size:89%'>.&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:46.0%;left:16.47%;width:80.33%;height:3.5%'><span style='font-size:89%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.96%;font-family:
- Wingdings'>§</span></span><span style='font-size:89%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162683" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Dynamic
- Typing</a></span><span style='font-size:89%'>. Allow objects representing
- RDF/OWL resources to </span></span><span style='position:absolute;top:49.25%;
- left:16.47%;width:74.53%;height:3.5%'><span style='font-size:89%'>change
- type.&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:54.0%;left:16.47%;width:81.46%;height:3.5%'><span style='font-size:89%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.9%;font-family:
- Wingdings'>§</span></span><span style='font-size:89%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162684" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RDF/OWL
- Parsing and Serialization</a></span><span style='font-size:89%'>. Provide
- support for parsing and </span></span><span style='position:absolute;
- top:57.25%;left:16.47%;width:74.53%;height:3.5%'><span style='font-size:89%'>serialization
- in RDF/XML format.&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15";position:absolute;top:61.75%;
- left:13.29%;width:79.4%;height:3.5%'><span style='position:absolute;
- top:0%;left:4.0%;width:95.99%;height:100.0%'><span style='font-size:89%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.17%;font-family:
- Wingdings'>§</span></span><span style='font-size:89%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162685" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RDF/OWL
- Reasoning</a></span><span style='font-size:89%'>. Provide support for RDF/OWL
- reasoning.&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:65.5%;
- left:8.23%;width:82.77%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:90%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-3.03%;font-family:Wingdings'>§</span></span><span style='font-size:90%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:69.25%;
- left:8.23%;width:82.77%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:90%;
- color:silver;mso-color-index:6'><span style='mso-special-format:bullet;
- color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:Wingdings'>§</span></span><span
- style='font-size:90%;color:silver;mso-color-index:6'>Increase Modeling
- Component Cohesion&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:73.75%;left:16.47%;width:78.08%;height:3.5%'><span style='font-size:89%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.07%;font-family:
- Wingdings'>§</span></span><span style='font-size:89%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=162686" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>RDF/OWL
- Transformation to/from Ecore</a></span><span style='font-size:89%'>. Provide a
- mechanism to </span></span><span style='position:absolute;top:77.0%;
- left:16.47%;width:74.53%;height:3.5%'><span style='font-size:89%'>transform
- RDF/OWL models to/from Ecore.</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0075.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0075.html
deleted file mode 100644
index 15cb1fc..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0075.html
+++ /dev/null
@@ -1,190 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Features – OCL 1.1">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1008"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>6</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1032194" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1032195" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1032194" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Features – OCL 1.1</div>
- <div v:shape="_x0000_s1032195">
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;
- left:8.23%;width:82.77%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>7 committed, 2
- deferred&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;
- left:8.23%;width:82.77%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:90%;
- color:silver;mso-color-index:6;visibility:hidden'><span style='mso-special-format:
- bullet;color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;color:silver;mso-color-index:
- 6;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;
- left:8.23%;width:82.77%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:90%;
- color:silver;mso-color-index:6'><span style='mso-special-format:bullet;
- color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:Wingdings'>§</span></span><span
- style='font-size:90%;color:silver;mso-color-index:6'>Appeal to a Broader
- Community&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15";position:absolute;top:38.25%;
- left:13.29%;width:85.2%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.73%;width:96.26%;height:100.0%'><span style='font-size:89%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.88%;font-family:
- Wingdings'>§</span></span><span style='font-size:89%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=136817" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Stand-alone
- Support</a></span><span style='font-size:89%'>. Provide a stand-alone
- (Eclipse-free) OCL build.&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:42.0%;
- left:8.23%;width:82.77%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:90%;
- color:silver;mso-color-index:6;visibility:hidden'><span style='mso-special-format:
- bullet;color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;color:silver;mso-color-index:
- 6;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:45.5%;
- left:8.23%;width:82.77%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:90%;
- color:silver;mso-color-index:6'><span style='mso-special-format:bullet;
- color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:Wingdings'>§</span></span><span
- style='font-size:90%;color:silver;mso-color-index:6'>Be a Better Platform&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:50.0%;left:16.47%;width:83.89%;height:3.5%'><span style='font-size:89%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.79%;font-family:
- Wingdings'>§</span></span><span style='font-size:89%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=144210" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Parsing
- API</a></span><span style='font-size:89%'>. Provide a public API for parsing
- OCL documents, with the </span></span><span style='position:absolute;
- top:53.25%;left:16.47%;width:74.53%;height:3.5%'><span style='font-size:89%'>complete
- context declaration syntax.&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:58.0%;left:16.47%;width:85.58%;height:3.5%'><span style='font-size:89%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.71%;font-family:
- Wingdings'>§</span></span><span style='font-size:89%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156361" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>EMF 2.3 /
- J2SE 5 Support</a></span><span style='font-size:89%'>. Adopt EMF 2.3,
- including regeneration of the </span></span><span style='position:absolute;
- top:61.25%;left:16.47%;width:74.53%;height:3.5%'><span style='font-size:89%'>OCL
- metamodel.&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:65.0%;
- left:8.23%;width:82.77%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:90%;
- color:silver;mso-color-index:6;visibility:hidden'><span style='mso-special-format:
- bullet;color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;color:silver;mso-color-index:
- 6;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:68.5%;
- left:8.23%;width:82.77%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:90%;
- color:silver;mso-color-index:6'><span style='mso-special-format:bullet;
- color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:Wingdings'>§</span></span><span
- style='font-size:90%;color:silver;mso-color-index:6'>Make Simpler to Use&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:73.0%;left:16.47%;width:88.76%;height:3.5%'><span style='font-size:89%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.58%;font-family:
- Wingdings'>§</span></span><span style='font-size:89%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156360" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Improved
- Documentation</a></span><span style='font-size:89%'>. Develop a complete
- ProgrammerÂ’s Guide for the </span></span><span style='position:absolute;
- top:76.25%;left:16.47%;width:74.53%;height:3.5%'><span style='font-size:89%'>OCL
- component.</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0076.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0076.html
deleted file mode 100644
index 4ddc57f..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0076.html
+++ /dev/null
@@ -1,194 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Features – UML2 2.1">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1009"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>8</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1033218" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1033219" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1033218" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Features – UML2 2.1</div>
- <div v:shape="_x0000_s1033219">
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;
- left:8.23%;width:82.77%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:80%'>7 committed, 3
- deferred&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:29.75%;
- left:8.23%;width:82.77%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:80%;
- color:silver;mso-color-index:6;visibility:hidden'><span style='mso-special-format:
- bullet;color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:80%;color:silver;mso-color-index:
- 6;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:33.0%;
- left:8.23%;width:82.77%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:80%;
- color:silver;mso-color-index:6'><span style='mso-special-format:bullet;
- color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:Wingdings'>§</span></span><span
- style='font-size:80%;color:silver;mso-color-index:6'>Appeal to a Broader
- Community&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:37.0%;left:16.47%;width:87.82%;height:3.25%'><span style='font-size:78%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.62%;font-family:
- Wingdings'>§</span></span><span style='font-size:78%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=155535" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Static
- Profile Definition</a></span><span style='font-size:78%'>. Provide a way to
- specify that a profile definition be generated </span></span><span
- style='position:absolute;top:39.75%;left:16.47%;width:86.51%;height:3.25%'><span
- style='font-size:78%'>using EMF; this would allow, among other things, support
- for custom data types and </span></span><span style='position:absolute;
- top:42.5%;left:16.47%;width:74.53%;height:3.25%'><span style='font-size:78%'>derived
- stereotype properties.&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:45.75%;
- left:8.23%;width:82.77%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:80%;
- color:silver;mso-color-index:6;visibility:hidden'><span style='mso-special-format:
- bullet;color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:80%;color:silver;mso-color-index:
- 6;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:49.0%;
- left:8.23%;width:82.77%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:80%;
- color:silver;mso-color-index:6'><span style='mso-special-format:bullet;
- color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:Wingdings'>§</span></span><span
- style='font-size:80%;color:silver;mso-color-index:6'>Be a Better Platform&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:53.0%;left:16.47%;width:86.89%;height:3.25%'><span style='font-size:78%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.66%;font-family:
- Wingdings'>§</span></span><span style='font-size:78%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160680" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Ant Task
- for Ecore Importer</a></span><span style='font-size:78%'>. Provide an Ant task
- for the UML Ecore importer, similar </span></span><span style='position:absolute;
- top:55.75%;left:16.47%;width:74.53%;height:3.25%'><span style='font-size:78%'>to
- those provided for the Rose and Ecore importers in EMF.&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;
- left:8.23%;width:82.77%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:80%;
- color:silver;mso-color-index:6;visibility:hidden'><span style='mso-special-format:
- bullet;color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:80%;color:silver;mso-color-index:
- 6;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:62.25%;
- left:8.23%;width:82.77%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:80%;
- color:silver;mso-color-index:6'><span style='mso-special-format:bullet;
- color:black;mso-color-index:0;position:absolute;left:-3.03%;font-family:Wingdings'>§</span></span><span
- style='font-size:80%;color:silver;mso-color-index:6'>Make Simpler to Use&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:66.25%;left:16.47%;width:87.82%;height:3.25%'><span style='font-size:78%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.62%;font-family:
- Wingdings'>§</span></span><span style='font-size:78%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160684" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Create
- Child/Sibling Menu Reorganization</a></span><span style='font-size:78%'>.
- Reorganize the ‘Create Child’ and ‘Create </span></span><span
- style='position:absolute;top:69.0%;left:16.47%;width:76.4%;height:3.25%'><span
- style='font-size:78%'>SiblingÂ’ menus of the UML editor so that the items are
- grouped by feature.&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:73.25%;left:16.47%;width:85.76%;height:3.25%'><span style='font-size:78%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.71%;font-family:
- Wingdings'>§</span></span><span style='font-size:78%'><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Improved
- Documentation</a></span><span style='font-size:78%'>. Improve documentation by
- updating the FAQ, enhancing </span></span><span style='position:absolute;
- top:76.0%;left:16.47%;width:74.53%;height:3.25%'><span style='font-size:78%'>the
- Javadoc, and publishing new articles.</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0077.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0077.html
deleted file mode 100644
index e261618..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0077.html
+++ /dev/null
@@ -1,173 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Features – UML2 Tools 0.7">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1010"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>10</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1034242" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1034243" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1034242" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Features – UML2 Tools 0.7</div>
- <div v:shape="_x0000_s1034243">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='font-size:90%'><span class=BB style='position:
- absolute;left:-3.03%'>§</span></span><span style='font-size:90%'>4 committed,
- 1 deferred&#13;</span></span></div>
- <div class=B style='position:absolute;top:30.75%;left:8.23%;width:82.77%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='font-size:90%;color:silver;mso-color-index:6;
- visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='font-size:90%;color:silver;mso-color-index:6;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:34.75%;left:8.23%;width:82.77%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='font-size:90%;color:silver;mso-color-index:6'><span
- class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='font-size:90%;color:silver;mso-color-index:6'>Appeal to a Broader
- Community&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:39.75%;left:13.29%;width:86.7%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.67%;width:96.32%;
- height:100.0%'><span style='font-size:89%'><span class=B1B style='position:
- absolute;left:-3.81%'>§</span></span><span style='font-size:89%'><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Class
- Diagrams</a></span><span style='font-size:89%'>. Provide a GMF-based editor
- for UML class diagrams.&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:44.75%;left:16.47%;
- width:81.27%;height:3.5%'><span style='font-size:89%'><span class=B1B
- style='position:absolute;left:-3.91%'>§</span></span><span style='font-size:
- 89%'><p:onmouseclick hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161572" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>State
- Machine Diagrams</a></span><span style='font-size:89%'>. Provide a GMF-based
- editor for UML state </span></span><span style='position:absolute;top:48.25%;
- left:16.47%;width:74.53%;height:3.5%'><span style='font-size:89%'>machine
- diagrams.&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:53.25%;left:16.47%;
- width:85.39%;height:3.5%'><span style='font-size:89%'><span class=B1B
- style='position:absolute;left:-3.72%'>§</span></span><span style='font-size:
- 89%'><p:onmouseclick hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161573" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Component
- Diagrams</a></span><span style='font-size:89%'>. Provide a GMF-based editor
- for UML component </span></span><span style='position:absolute;top:56.75%;
- left:16.47%;width:74.53%;height:3.5%'><span style='font-size:89%'>diagrams.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:61.75%;left:13.29%;width:90.44%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.51%;width:96.68%;
- height:100.0%'><span style='font-size:89%'><span class=B1B style='position:
- absolute;left:-3.64%'>§</span></span><span style='font-size:89%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161574" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Activity
- Diagrams</a></span><span style='font-size:89%'>. Provide a GMF-based editor
- for UML activity diagrams.&#13;</span></span></div>
- <div class=B style='position:absolute;top:66.0%;left:8.23%;width:82.77%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='font-size:90%;color:silver;mso-color-index:6;
- visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='font-size:90%;color:silver;mso-color-index:6;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:70.0%;left:8.23%;width:82.77%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='font-size:90%;color:silver;mso-color-index:6'><span
- class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='font-size:90%;color:silver;mso-color-index:6'>Other&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:74.75%;left:16.47%;
- width:85.01%;height:3.5%'><span style='font-size:89%'><span class=B1B
- style='position:absolute;left:-3.74%'>§</span></span><span style='font-size:
- 89%'><p:onmouseclick hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161556"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=161556" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Profile
- Definition Diagrams</a></span><span style='font-size:89%'>. Provide a
- GMF-based editor for UML profile </span></span><span style='position:absolute;
- top:78.5%;left:16.47%;width:74.53%;height:3.5%'><span style='font-size:89%'>diagrams.</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0078.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0078.html
deleted file mode 100644
index 8442e22..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0078.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Features – XSD 2.3">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1011"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>11</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1035266" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1035267" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1035266" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Features – XSD 2.3</div>
- <div v:shape="_x0000_s1035267">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>1
- committed, 1 deferred&#13;</span></div>
- <div class=B style='position:absolute;top:31.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6;visibility:hidden'><span
- class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='color:silver;mso-color-index:6;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:35.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Appeal to a Broader Community&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:41.25%;left:16.47%;
- width:88.95%;height:4.0%'><span class=B1B style='position:absolute;left:-3.57%'>§</span><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=79768" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Java™ SE
- 5.0 Support</a>. Exploit new Java language constructs; use </span><span
- style='position:absolute;top:45.25%;left:16.47%;width:84.26%;height:4.0%'>generics
- (e.g. EList, EMap and implementations); generate and </span><span
- style='position:absolute;top:49.25%;left:16.47%;width:74.53%;height:4.0%'>merge
- Java 5 constructs; investigate enumerations and </span><span style='position:
- absolute;top:53.25%;left:16.47%;width:74.53%;height:4.0%'>annotations.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0079.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0079.html
deleted file mode 100644
index 1581e61..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0079.html
+++ /dev/null
@@ -1,171 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Non-Code Aspects">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1012"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>12</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1036290" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1036291" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1036290" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Non-Code Aspects</div>
- <div v:shape="_x0000_s1036291" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>All components hosted
- at single <p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/"/><a
- href="http://www.eclipse.org/modeling/mdt/" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Web site</a>,
- <p:onmouseclick hyperlinktype="url"
-  href="http://wiki.eclipse.org/index.php/Model_Development_Tools_(MDT)"/><a
- href="http://wiki.eclipse.org/index.php/Model_Development_Tools_(MDT)"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Wiki</a>&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>XSD still needs to be
- migrated to <p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/searchcvs.php?q=file:+org.eclipse.mdt/+days:+7"/><a
- href="http://www.eclipse.org/modeling/mdt/searchcvs.php?q=file:+org.eclipse.mdt/+days:+7"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>MDT CVS module</a>&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:44.5%;left:10.67%;width:85.39%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.85%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/docs.php?project="/><a
- href="http://www.eclipse.org/modeling/mdt/docs.php?project=" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Documentation</a><span
- style='mso-spacerun:yes'> </span>(FAQ, Javadoc, articles, etc.) available for </span><span
- style='position:absolute;top:49.0%;left:10.67%;width:95.13%;height:4.5%'>EODM,
- OCL, UML2, XSD (UML2 Tools TBD); updates complete </span><span
- style='position:absolute;top:53.5%;left:10.67%;width:80.33%;height:4.5%'>or
- underway&#13;</span>
- <div style='position:absolute;top:58.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:62.5%;left:8.23%;width:83.52%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.91%;width:96.86%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.0%'>§</span>Example
- features/plug-ins available for all components</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the state of the
-  non-code aspects of the release including: user documentation,
-  localization/externalization, examples, tutorials, articles, and so on. Have
-  the existing artifacts been updated? Are there new artifacts? Have the
-  obsolete ones been retired or at least marked as pertaining only to older
-  material?</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> The
-  non-code aspects are essential for the wide-spread adoption of the release.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0080.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0080.html
deleted file mode 100644
index dde0644..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0080.html
+++ /dev/null
@@ -1,208 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: APIs">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1013"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>13</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1037314" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1037315" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1037314" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>APIs</div>
- <div v:shape="_x0000_s1037315" class=B>
- <div style='mso-line-spacing:"80 0 0"'><span style='position:absolute;
- top:26.25%;left:10.67%;width:94.19%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.58%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>The project lead
- certifies that the requirements for </span><span style='font-size:90%'><i><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/eclipse-quality.php"/><a
- href="http://www.eclipse.org/projects/dev_process/eclipse-quality.php"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Eclipse Quality</a></i></span><span style='font-size:90%'><span
- style='mso-spacerun:yes'> </span>APIs </span></span><span style='position:
- absolute;top:29.25%;left:10.67%;width:80.33%;height:4.0%'><span
- style='font-size:90%'>have been met for this release&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:32.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:35.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Non-API in “internal”
- namespace&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:39.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0"'><span style='position:absolute;
- top:42.25%;left:10.67%;width:94.0%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.58%;font-family:
- Wingdings'>§</span></span><span style='mso-hansi-font-family:Arial;font-size:
- 90%'>Some ‘discouraged access’ warnings in cases of metamodel extension </span></span><span
- style='position:absolute;top:45.25%;left:10.67%;width:80.33%;height:4.0%'><span
- style='mso-hansi-font-family:Arial;font-size:90%'>(plug-in compatibility
- restricted to minor version)</span><span style='font-size:90%'> &#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:48.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>OCL, UML2, XSD APIs
- updated to support Java 5.0&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:55.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0"'><span style='position:absolute;
- top:58.0%;left:10.67%;width:95.31%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.55%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>EODM APIs are
- “provisional”, incompatible with previous release due to </span></span><span
- style='position:absolute;top:61.25%;left:10.67%;width:80.33%;height:4.0%'><span
- style='font-size:90%'>compliance with new draft of the ODM specification&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:64.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='mso-special-format:nobullet;display:
- none;font-family:Wingdings'>§</span><span style='mso-hansi-font-family:Arial;
- font-size:90%;display:none'>&#13;</span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:67.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='mso-hansi-font-family:Arial;font-size:
- 90%;color:black'>New convenience APIs introduced in UML2&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:71.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='mso-hansi-font-family:Arial;font-size:
- 90%;color:black;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:74.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='mso-hansi-font-family:Arial;font-size:
- 90%;color:black'>GMF Runtime represents bulk of API for UML2 Tools</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Certify that the APIs in
-  this release are <i>Eclipse Quality</i>. The project lead will personally
-  certify that the requirements for quality have been met and/or discuss any
-  deficiences.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b>
-  Eclipse members build commercial tools on top of the extensible frameworks
-  and thus the quality of the APIs is extremely important.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0081.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0081.html
deleted file mode 100644
index e0f3071..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0081.html
+++ /dev/null
@@ -1,202 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Architectural Issues">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1014"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>14</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1038338" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1038339" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1038338" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Architectural Issues</div>
- <div v:shape="_x0000_s1038339" class=B>
- <div style='mso-line-spacing:"80 0 0"'><span style='position:absolute;
- top:26.25%;left:10.67%;width:90.07%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.7%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>To support RDF graphs
- and dynamic typing, EODM implementation </span></span><span style='position:
- absolute;top:29.25%;left:10.67%;width:94.94%;height:4.0%'><span
- style='font-size:90%'>changed to make use of internal core objects and Java
- proxies – hence </span></span><span style='position:absolute;top:32.5%;
- left:10.67%;width:80.33%;height:4.0%'><span style='font-size:90%'>code
- generation not used/possible&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:35.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:39.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>OCL now consuming LPG
- Java Runtime from Orbit&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:42.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0"'><span style='position:absolute;
- top:45.25%;left:10.67%;width:94.0%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.58%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>UML2 schema changes
- introduced to address bidirectional association </span></span><span
- style='position:absolute;top:48.5%;left:10.67%;width:80.33%;height:4.0%'><span
- style='font-size:90%'>issues [</span><span style='font-size:90%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=185602"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=185602" target="_blank"
- onclick="window.event.cancelBubble=true;">185602</a></span><span
- style='font-size:90%'>]&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0"'><span style='position:absolute;
- top:55.0%;left:10.67%;width:94.94%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.56%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>GMF resources available
- for UML2 Tools to support code regeneration; </span></span><span
- style='position:absolute;top:58.0%;left:10.67%;width:90.07%;height:4.0%'><span
- style='font-size:90%'>80 % generated code (including custom templates), 15 %
- pluggable </span></span><span style='position:absolute;top:61.25%;left:10.67%;
- width:80.33%;height:4.0%'><span style='font-size:90%'>custom code, 5 %
- @generated NOT code&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:64.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:67.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>XSD partitioned into
- finer-grained features&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:71.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 0 0";position:absolute;top:74.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>No generics support for
- XSD transformation to/from Ecore</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the architectural
-  quality of the release. Discuss the <i>intrinsic nature of being extensible</i>
-  embodied by this project. Discuss issues such as unresolved overlap with
-  other projects, unpaid &quot;merge debt&quot; from incorporating various
-  components, and so on.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b><i> </i>Eclipse
-  members build commercial tools on top of the extensible frameworks and thus
-  the quality of the architecture is important.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0082.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0082.html
deleted file mode 100644
index 03cbf29..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0082.html
+++ /dev/null
@@ -1,153 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Tool Usability">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1015"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>15</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1039362" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1039363" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1039362" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Tool Usability</div>
- <div v:shape="_x0000_s1039363" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:89.7%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.71%'>§</span>Major OCL usability issue, lack
- of documentation, addressed </span><span style='position:absolute;top:31.25%;
- left:10.67%;width:80.33%;height:4.5%'>with introduction of ProgrammerÂ’s
- Guide&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:85.01%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.86%'>§</span>UML editor
- (create child/sibling menus), exporter usability </span><span
- style='position:absolute;top:44.5%;left:10.67%;width:80.33%;height:4.5%'>improved&#13;</span>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:53.5%;left:10.67%;width:81.46%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.98%'>§</span>GMF-based editors
- introduced for activity, class, profile </span><span style='position:absolute;
- top:58.0%;left:10.67%;width:80.33%;height:4.5%'>definition, and state machine
- diagrams&#13;</span>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the usability of
-  the tools. Usability in this sense is about using the tools to solve
-  development problems, not the more academic sense of UI evaluation/testing.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b>
-  Without usable tools, the project will not attract the user community
-  necessary to enable the ecosystem.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0083.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0083.html
deleted file mode 100644
index 12cfda3..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0083.html
+++ /dev/null
@@ -1,154 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: End-of-Life">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1016"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>16</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1040386" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1040387" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1040386" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>End-of-Life</div>
- <div v:shape="_x0000_s1040387" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>RDF/OWL editors no
- longer available in EODM 0.9&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:35.75%;left:10.67%;width:84.83%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.86%'>§</span><span
- style='mso-hansi-font-family:Arial;color:black'>org.eclipse.emf.ocl plug-in
- (OCL 1.0 API) deprecated, but </span></span><span style='position:absolute;
- top:40.25%;left:10.67%;width:80.33%;height:4.5%'><span style='mso-hansi-font-family:
- Arial;color:black'>c</span>ontinuing viability guaranteed<span
- style='mso-hansi-font-family:Arial;color:black;display:none'>&#13;</span></span>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:49.0%;left:10.67%;width:89.13%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.73%'>§</span><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/uml2/2.0.0/UML"/><a
- href="http://www.eclipse.org/uml2/2.0.0/UML" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>http://www.eclipse.org/uml2/2.0.0/UML</a><span
- style='mso-spacerun:yes'> </span>namespace URI now </span><span
- style='position:absolute;top:53.5%;left:10.67%;width:94.38%;height:4.5%'>obsolete,
- superseded by <p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/uml2/2.1.0/UML"/><a
- href="http://www.eclipse.org/uml2/2.1.0/UML" target="_blank"
- onclick="window.event.cancelBubble=true;">http://www.eclipse.org/uml2/2.1.0/UML</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the features (APIs
-  and any significant user features) from previous releases that are being
-  end-of-life'd in this release. End of life includes both deprecation and
-  actual removal.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> The
-  community builds products that rely on features and so they need to know when
-  these features are changing.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0084.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0084.html
deleted file mode 100644
index 56d50e0..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0084.html
+++ /dev/null
@@ -1,132 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Bugzilla (as of May 30, 2007)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1017"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>17</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1041410" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s1041410" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Bugzilla (as of May 30, 2007)</div>
- <v:shape id="_x0000_s1041412" type="#_x0000_t75" style='position:absolute;
-  left:124.125pt;top:175.5pt;width:471.75pt;height:189pt;mso-wrap-style:none;
-  v-text-anchor:middle' fillcolor="#7889fb [4]" strokecolor="black [0]"
-  strokeweight="1pt">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0084_image006.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s1041412" DrawAspect="Content" ObjectID="256">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s1041412"
- src="slide0084_image007.jpg" style='position:absolute;top:32.5%;left:17.22%;
- width:65.54%;height:35.0%'><![endif]></p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the bugzilla
-  situation. How many bug records (defects and enhancements) have been
-  opened/closed/deferred/new, etc? How many P1, P2, ..., bug records are
-  outstanding?</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b>
-  Summaries of the bugzilla records offer a glimpse into the project
-  productivity. They also offer an estimate of the outstanding risk. And the
-  summary is used to alert the community to known issues.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0084_image006.png b/docs/presentations/MDT_1.0_ Release_Review_files/slide0084_image006.png
deleted file mode 100644
index f740ced..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0084_image006.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0084_image007.jpg b/docs/presentations/MDT_1.0_ Release_Review_files/slide0084_image007.jpg
deleted file mode 100644
index 57e87cf..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0084_image007.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0085.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0085.html
deleted file mode 100644
index 9f2e330..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0085.html
+++ /dev/null
@@ -1,102 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Bugzilla – EODM (as of May 30, 2007)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1018"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>18</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1042434" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s1042434" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Bugzilla – EODM (as of May 30, 2007)</div>
- <v:shape id="_x0000_s1042436" type="#_x0000_t75" style='position:absolute;
-  left:210.375pt;top:203.625pt;width:299.25pt;height:132.75pt;mso-wrap-style:none;
-  v-text-anchor:middle' fillcolor="#7889fb [4]" strokecolor="black [0]"
-  strokeweight="1pt">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0085_image008.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s1042436" DrawAspect="Content" ObjectID="257">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s1042436"
- src="slide0085_image009.jpg" style='position:absolute;top:37.75%;left:29.21%;
- width:41.57%;height:24.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0085_image008.png b/docs/presentations/MDT_1.0_ Release_Review_files/slide0085_image008.png
deleted file mode 100644
index 3e5ce9f..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0085_image008.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0085_image009.jpg b/docs/presentations/MDT_1.0_ Release_Review_files/slide0085_image009.jpg
deleted file mode 100644
index 44945df..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0085_image009.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0086.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0086.html
deleted file mode 100644
index 623d4c0..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0086.html
+++ /dev/null
@@ -1,102 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Bugzilla – OCL (as of May 30, 2007)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1019"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>19</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1043458" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s1043458" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Bugzilla – OCL (as of May 30, 2007)</div>
- <v:shape id="_x0000_s1043460" type="#_x0000_t75" style='position:absolute;
-  left:183.75pt;top:175.5pt;width:352.5pt;height:189pt;mso-wrap-style:none;
-  v-text-anchor:middle' fillcolor="#7889fb [4]" strokecolor="black [0]"
-  strokeweight="1pt">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0086_image010.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s1043460" DrawAspect="Content" ObjectID="258">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s1043460"
- src="slide0086_image011.jpg" style='position:absolute;top:32.5%;left:25.46%;
- width:48.87%;height:35.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0086_image010.png b/docs/presentations/MDT_1.0_ Release_Review_files/slide0086_image010.png
deleted file mode 100644
index e0fb374..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0086_image010.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0086_image011.jpg b/docs/presentations/MDT_1.0_ Release_Review_files/slide0086_image011.jpg
deleted file mode 100644
index ac88067..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0086_image011.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0087.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0087.html
deleted file mode 100644
index 4bd46df..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0087.html
+++ /dev/null
@@ -1,102 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Bugzilla – UML2 (as of May 30, 2007)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1020"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>20</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1044482" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s1044482" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Bugzilla – UML2 (as of May 30, 2007)</div>
- <v:shape id="_x0000_s1044484" type="#_x0000_t75" style='position:absolute;
-  left:185.25pt;top:175.5pt;width:349.5pt;height:189pt;mso-wrap-style:none;
-  v-text-anchor:middle' fillcolor="#7889fb [4]" strokecolor="black [0]"
-  strokeweight="1pt">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0087_image012.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s1044484" DrawAspect="Content" ObjectID="259">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s1044484"
- src="slide0087_image013.jpg" style='position:absolute;top:32.5%;left:25.65%;
- width:48.5%;height:35.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0087_image012.png b/docs/presentations/MDT_1.0_ Release_Review_files/slide0087_image012.png
deleted file mode 100644
index ef8a0c1..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0087_image012.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0087_image013.jpg b/docs/presentations/MDT_1.0_ Release_Review_files/slide0087_image013.jpg
deleted file mode 100644
index f369837..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0087_image013.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0088.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0088.html
deleted file mode 100644
index 0db03a0..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0088.html
+++ /dev/null
@@ -1,104 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description
-content="6/12/2007: Bugzilla – UML2 Tools (as of May 30, 2007)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1021"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>21</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1045506" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s1045506" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:91.19%;height:6.0%'>Bugzilla – UML2 Tools (as of May 30,
- 2007)</div>
- <v:shape id="_x0000_s1045508" type="#_x0000_t75" style='position:absolute;
-  left:177.75pt;top:203.625pt;width:364.5pt;height:132.75pt;mso-wrap-style:none;
-  v-text-anchor:middle' fillcolor="#7889fb [4]" strokecolor="black [0]"
-  strokeweight="1pt">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0088_image014.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s1045508" DrawAspect="Content" ObjectID="260">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s1045508"
- src="slide0088_image015.jpg" style='position:absolute;top:37.75%;left:24.71%;
- width:50.56%;height:24.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0088_image014.png b/docs/presentations/MDT_1.0_ Release_Review_files/slide0088_image014.png
deleted file mode 100644
index 9a72945..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0088_image014.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0088_image015.jpg b/docs/presentations/MDT_1.0_ Release_Review_files/slide0088_image015.jpg
deleted file mode 100644
index 459807a..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0088_image015.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0089.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0089.html
deleted file mode 100644
index 2217463..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0089.html
+++ /dev/null
@@ -1,102 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Bugzilla – XSD (as of May 30, 2007)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1022"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>22</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1046530" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s1046530" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Bugzilla – XSD (as of May 30, 2007)</div>
- <v:shape id="_x0000_s1046532" type="#_x0000_t75" style='position:absolute;
-  left:157.125pt;top:184.875pt;width:405.75pt;height:170.25pt;mso-wrap-style:none;
-  v-text-anchor:middle' fillcolor="#7889fb [4]" strokecolor="black [0]"
-  strokeweight="1pt">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0089_image016.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s1046532" DrawAspect="Content" ObjectID="261">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s1046532"
- src="slide0089_image017.jpg" style='position:absolute;top:34.25%;left:21.91%;
- width:56.36%;height:31.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0089_image016.png b/docs/presentations/MDT_1.0_ Release_Review_files/slide0089_image016.png
deleted file mode 100644
index f3a30a3..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0089_image016.png
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0089_image017.jpg b/docs/presentations/MDT_1.0_ Release_Review_files/slide0089_image017.jpg
deleted file mode 100644
index dbe5fb8..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0089_image017.jpg
+++ /dev/null
Binary files differ
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0090.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0090.html
deleted file mode 100644
index d251220..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0090.html
+++ /dev/null
@@ -1,205 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Standards">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1023"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>23</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1047554" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1047555" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1047554" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Standards</div>
- <div v:shape="_x0000_s1047555" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:81.46%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.98%'>§</span>Ontology Definition Metamodel
- (ODM) 1.0 specification </span><span style='position:absolute;top:31.25%;
- left:10.67%;width:90.82%;height:4.5%'>finalization underway; EODM 0.9
- compliant with <span lang=EN-US style='mso-fareast-font-family:\5B8B\4F53;
- mso-hansi-font-family:Arial;mso-fareast-language:ZH-CN'><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/cgi-bin/doc?ptc/2006-10-11"/><a
- href="http://www.omg.org/cgi-bin/doc?ptc/2006-10-11" target="_blank"
- onclick="window.event.cancelBubble=true;">working draft</a></span><span
- lang=EN-US style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:
- Arial;mso-fareast-language:ZH-CN;display:none'>&#13;</span></span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- lang=EN-US style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:
- Arial;mso-fareast-language:ZH-CN;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:93.63%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.6%'>§</span><span
- lang=EN-US style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:
- Arial;mso-fareast-language:ZH-CN'>Object Constraint Language (OCL) 2.1
- revision underway; OCL </span></span><span style='position:absolute;
- top:44.5%;left:10.67%;width:80.33%;height:4.5%'><span lang=EN-US
- style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:Arial;
- mso-fareast-language:ZH-CN'>1.1 compliant with </span><span lang=EN-US
- style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:Arial;
- mso-fareast-language:ZH-CN'><p:onmouseclick hyperlinktype="url"
-  href="http://www.omg.org/technology/documents/formal/ocl.htm"/><a
- href="http://www.omg.org/technology/documents/formal/ocl.htm" target="_blank"
- onclick="window.event.cancelBubble=true;">2.0 formal version</a></span><span
- lang=EN-US style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:
- Arial;mso-fareast-language:ZH-CN;display:none'>&#13;</span></span>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- lang=EN-US style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:
- Arial;mso-fareast-language:ZH-CN;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:53.5%;left:10.67%;width:88.2%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.76%'>§</span><span lang=EN-US
- style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:Arial;
- mso-fareast-language:ZH-CN'>Unified Modeling Language (UML) 2.2 specification
- revision </span></span><span style='position:absolute;top:58.0%;left:10.67%;
- width:92.13%;height:4.5%'><span lang=EN-US style='mso-fareast-font-family:
- \5B8B\4F53;mso-hansi-font-family:Arial;mso-fareast-language:ZH-CN'>underway;
- UML2 2.1 and UML2 Tools 0.7 compliant with </span><span lang=EN-US
- style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:Arial;
- mso-fareast-language:ZH-CN'><p:onmouseclick hyperlinktype="url"
-  href="http://www.omg.org/technology/documents/formal/uml.htm"/><a
- href="http://www.omg.org/technology/documents/formal/uml.htm" target="_blank"
- onclick="window.event.cancelBubble=true;">2.1.1 </a></span></span><span
- style='position:absolute;top:62.5%;left:10.67%;width:80.33%;height:4.5%'><span
- lang=EN-US style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:
- Arial;mso-fareast-language:ZH-CN'><p:onmouseclick hyperlinktype="url"
-  href="http://www.omg.org/technology/documents/formal/uml.htm"/><a
- href="http://www.omg.org/technology/documents/formal/uml.htm" target="_blank"
- onclick="window.event.cancelBubble=true;">formal version</a></span><span
- lang=EN-US style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:
- Arial;mso-fareast-language:ZH-CN;display:none'>&#13;</span></span>
- <div style='position:absolute;top:66.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- lang=EN-US style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:
- Arial;mso-fareast-language:ZH-CN;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:71.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span><span lang=EN-US
- style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:Arial;
- mso-fareast-language:ZH-CN'>XSD compliant with </span><span lang=EN-US
- style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:Arial;
- mso-fareast-language:ZH-CN'><p:onmouseclick hyperlinktype="url"
-  href="http://www.w3.org/TR/xmlschema-formal/"/><a
- href="http://www.w3.org/TR/xmlschema-formal/" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>XML Schema</a></span><span
- lang=EN-US style='mso-fareast-font-family:\5B8B\4F53;mso-hansi-font-family:
- Arial;mso-fareast-language:ZH-CN'><span style='mso-spacerun:yes'> </span>W3C
- standard&#13;</span></span></div>
- <div style='position:absolute;top:75.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the standards
-  compliance of this release. If the features are based on defined, pending, or
-  ad-hoc standards, what is the state of those standards and what is the state
-  of the support for those standards in this release.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason: </i></b>Eclipse
-  is about building frameworks and tools based on standards, so we need to make
-  sure that we are conforming to the appropriate standards.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0091.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0091.html
deleted file mode 100644
index 3e15e4c..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0091.html
+++ /dev/null
@@ -1,176 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: UI Usability">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1024"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>24</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1048578" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1048579" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1048578" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>UI Usability</div>
- <div v:shape="_x0000_s1048579" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:83.89%;height:4.5%'><span style='position:absolute;top:0%;left:2.9%;
- width:97.09%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-2.98%;font-family:Wingdings'>§</span>MDT 1.0 conforms to
- Eclipse User Interface Guidelines&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:34.5%;left:10.67%;width:80.33%;height:4.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.03%;font-family:Wingdings'>§</span>Eclipse
- platform standard i18n support used where </span><span style='position:absolute;
- top:38.5%;left:10.67%;width:89.88%;height:4.5%'>applicable/possible;
- stand-alone deployment uses equivalent </span><span style='position:absolute;
- top:42.5%;left:10.67%;width:80.33%;height:4.5%'>J2SE APIs&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:46.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:50.5%;left:10.67%;width:95.5%;height:4.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.54%;font-family:Wingdings'>§</span>ICU4J is
- used but optional; stand-alone deployments delegate to </span><span
- style='position:absolute;top:54.5%;left:10.67%;width:80.33%;height:4.5%'>corresponding
- J2SE 5.0 APIs when ICU not available&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:58.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:62.5%;left:10.67%;width:91.38%;height:4.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.66%;font-family:Wingdings'>§</span>As with
- all Europa projects, language packs will be created as </span><span
- style='position:absolute;top:66.5%;left:10.67%;width:80.33%;height:4.5%'>part
- of an Eclipse Globalization Project&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:70.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:74.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span>Eclipse platform APIs used
- to provide accessible UI</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the user interface
-  usability and the conformance to the Eclipse User Interface Guidelines.
-  Include section 508 compliance, language pack conformance (does the code
-  support multiple languages), etc. Explain any deviations from the user
-  interface guidelines and standards.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> The
-  user community is larger than just mouse-wielding, English-speaking, computer
-  jockeys. We need to support that larger community.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0092.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0092.html
deleted file mode 100644
index d0faafc..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0092.html
+++ /dev/null
@@ -1,160 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Schedule">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1025"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>25</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1049602" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1049603" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1049602" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Schedule</div>
- <div v:shape="_x0000_s1049603" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:95.88%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.53%'>§</span>As a whole, MDT is a “+2”
- project, but should probably be “+3” or </span><span style='position:absolute;
- top:31.25%;left:10.67%;width:80.33%;height:4.5%'>“+4” based on its
- dependencies&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>M3 met on November
- 16&#13;</span></div>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>M4 slipped from January
- 4 to January 22&#13;</span></div>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>M5 met on February
- 23&#13;</span></div>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>M6 slipped from April 6
- to April 10&#13;</span></div>
- <div style='position:absolute;top:71.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:75.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>M7 slipped from May 18
- to May 24</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Discuss the initial schedule
-  and any changes to the schedule over the course of the release, i.e., what
-  the project team achieved. Discuss whether milestones were met or slipped. <b><i>Reason:</i></b>
-  The community relies on consistent schedules from Eclipse so that projects
-  and products can plan for the correct dependencies.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0093.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0093.html
deleted file mode 100644
index 17391fa..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0093.html
+++ /dev/null
@@ -1,172 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Communities">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1026"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>26</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1050626" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1050627" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1050626" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Communities</div>
- <div v:shape="_x0000_s1050627" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Increased interaction
- in <p:onmouseclick hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=MDT"/><a
- href="https://bugs.eclipse.org/bugs/enter_bug.cgi?product=MDT" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Bugzilla</a><span
- style='mso-spacerun:yes'> </span>and on <p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/newsgroup-mailing-list.php"/><a
- href="http://www.eclipse.org/modeling/mdt/newsgroup-mailing-list.php"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>newsgroups</a>&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:8.23%;width:97.37%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.5%;width:97.5%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.56%'>§</span>MDT represented at
- EclipseCon 2007 (short/long talks, tutorials)&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Coordination with
- Topcased open source project&#13;</span></div>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:53.5%;left:10.67%;width:94.56%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.57%'>§</span>Continued efforts to
- expand user communities for EODM, UML2 </span><span style='position:absolute;
- top:58.0%;left:10.67%;width:80.33%;height:4.5%'>Tools&#13;</span>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>MDT is among the most
- active projects at Eclipse&#13;</span></div>
- <div style='position:absolute;top:71.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the project's
-  development of its three communities. Consider the interactions on bugzilla,
-  the mailing lists, the newsgroups, public conference calls, blogs, PR
-  activities, code camps, conference tutorials, coordinating with other Eclipse
-  projects and other open source projects (Apache, ObjectWeb, etc), ...</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> It is
-  important for Eclipse projects to build a community around the project, not
-  just deliver code for a project. This review item is about the success of
-  building a community.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0094.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0094.html
deleted file mode 100644
index cc48de4..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0094.html
+++ /dev/null
@@ -1,226 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: IP Issues">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1027"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>27</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1051650" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1051651" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1051650" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>IP Issues</div>
- <div v:shape="_x0000_s1051651">
- <div class=B style='mso-line-spacing:"80 0 0";position:absolute;top:26.25%;
- left:8.23%;width:82.77%;height:3.25%'><span style='mso-special-format:nobullet;
- display:none;font-family:Wingdings'>§</span><span style='font-size:70%'>The
- MDT project leadership verifies that:&#13;</span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:29.5%;
- left:13.29%;width:83.52%;height:2.75%'><span style='position:absolute;
- top:0%;left:3.81%;width:96.41%;height:100.0%'><span style='font-size:67%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.95%;font-family:
- Wingdings'>§</span></span><span style='font-size:67%'>the about files and use
- licenses are in place as per the </span><span style='font-size:67%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/legal/guidetolegaldoc.php"/><a
- href="http://www.eclipse.org/legal/guidetolegaldoc.php" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Guidelines
- to Legal Documentation</a></span><span style='font-size:67%'>. &#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15"'><span style='position:absolute;
- top:32.75%;left:16.47%;width:85.58%;height:2.75%'><span style='font-size:67%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.71%;font-family:
- Wingdings'>§</span></span><span style='font-size:67%'>all contributions (code,
- documentation, images, etc) have been committed by individuals who are </span></span><span
- style='position:absolute;top:34.75%;left:16.47%;width:86.7%;height:2.75%'><span
- style='font-size:67%'>either Members of the Foundation, or have signed the
- appropriate Committer Agreement. In either </span></span><span
- style='position:absolute;top:37.0%;left:16.47%;width:76.4%;height:2.75%'><span
- style='font-size:67%'>case, these are individuals who have signed, and are
- abiding by, the Eclipse IP Policy. &#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:40.0%;
- left:13.29%;width:77.71%;height:2.75%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='font-size:67%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='font-size:67%'>all significant
- contributions have been reviewed by the Foundation's legal staff.&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15"'><span style='position:absolute;
- top:43.25%;left:16.47%;width:86.14%;height:2.75%'><span style='font-size:67%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.69%;font-family:
- Wingdings'>§</span></span><span style='font-size:67%'>all non-Committer code
- contributions, including third-party libraries, have been documented in the </span></span><span
- style='position:absolute;top:45.5%;left:16.47%;width:74.53%;height:2.75%'><span
- style='font-size:67%'>release and reviewed by the Foundation's legal
- staff.&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:48.5%;
- left:13.29%;width:77.71%;height:2.75%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='font-size:67%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='font-size:67%'>all Contribution
- Questionnaires have been completed.&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:51.75%;
- left:13.29%;width:77.71%;height:2.75%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='font-size:67%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.27%;font-family:
- Wingdings'>§</span></span><span style='font-size:67%'>the &quot;provider&quot;
- field of each plug-in is set to &quot;Eclipse.org“.&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15"'><span style='position:absolute;
- top:55.0%;left:16.47%;width:88.95%;height:2.75%'><span style='font-size:67%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.57%;font-family:
- Wingdings'>§</span></span><span style='font-size:67%'>the
- &quot;copyright&quot; field of each feature is set to the copyright owner (the
- Eclipse Foundation is </span><span style='font-size:67%'><i>rarely</i></span><span
- style='font-size:67%'> the </span></span><span style='position:absolute;
- top:57.25%;left:16.47%;width:74.53%;height:2.75%'><span style='font-size:67%'>copyright
- owner).&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15"'><span style='position:absolute;
- top:60.25%;left:16.47%;width:88.2%;height:2.75%'><span style='font-size:67%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.6%;font-family:
- Wingdings'>§</span></span><span style='font-size:67%'>any third-party logos or
- trademarks included in the distribution (icons, help file logos, etc) have
- been </span></span><span style='position:absolute;top:62.5%;left:16.47%;
- width:74.53%;height:2.75%'><span style='font-size:67%'>licensed under the
- EPL.&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15"'><span style='position:absolute;
- top:65.75%;left:16.47%;width:84.83%;height:2.75%'><span style='font-size:67%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.75%;font-family:
- Wingdings'>§</span></span><span style='font-size:67%'>any fonts or similar
- third-party images included in the distribution (e.g. in PDF or EPS files)
- have </span></span><span style='position:absolute;top:67.75%;left:16.47%;
- width:74.53%;height:2.75%'><span style='font-size:67%'>been licensed under the
- EPL.&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 0 0";position:absolute;top:70.25%;
- left:8.23%;width:82.77%;height:3.25%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='font-size:70%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-3.03%;font-family:Wingdings'>§</span></span><span style='font-size:70%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 0 0"'><span style='position:absolute;
- top:72.75%;left:10.67%;width:94.19%;height:3.25%'><span style='font-size:70%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.58%;font-family:
- Wingdings'>§</span></span><span style='font-size:70%'>The MDT project IP log
- is located at </span><span style='font-size:70%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/eclipse-project-ip-log.csv"/><a
- href="http://www.eclipse.org/modeling/mdt/eclipse-project-ip-log.csv"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>http://www.eclipse.org/modeling/mdt/eclipse-project-ip-</a></span></span><span
- style='position:absolute;top:75.25%;left:10.67%;width:80.33%;height:3.25%'><span
- style='font-size:70%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/eclipse-project-ip-log.csv"/><a
- href="http://www.eclipse.org/modeling/mdt/eclipse-project-ip-log.csv"
- target="_blank" onclick="window.event.cancelBubble=true;">log.csv</a></span><span
- style='font-size:70%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>The EMO explicitly asks
-  during the Release Review if any Member would like to assert that this
-  release infringes their IP rights. If so, the EMO and the project will follow
-  the Eclipse IP Policy in discussions with that Member.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> One of
-  the important benefits that the Eclipse Foundation provides for its members
-  is the consistent application of the Eclipse IP Policy which helps ensure
-  (but does not guarantee) that the framework and tools are useable in
-  commercial products.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0095.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0095.html
deleted file mode 100644
index 4ef8158..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0095.html
+++ /dev/null
@@ -1,121 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Project Plan">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1028"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>28</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1052674" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1052675" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1052674" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Project Plan</div>
- <div v:shape="_x0000_s1052675" class=B style='position:absolute;top:26.75%;
- left:8.23%;width:82.77%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span class=BB style='position:
- absolute;left:-3.03%'>§</span>Draft development plan for MDT 1.1 not yet
- available</span></div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>If there is a Project Plan
-  (full or even a draft) for the next release, the final issue to cover in the
-  Release Review is the unveiling of the new plan.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0096.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0096.html
deleted file mode 100644
index 87f9512..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0096.html
+++ /dev/null
@@ -1,166 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Features">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1029"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>4</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1053698" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1053699" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1053698" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Features</div>
- <div v:shape="_x0000_s1053699" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:80.33%;height:4.5%'><span class=BB
- style='position:absolute;left:-3.03%'>§</span>1.0 development plan available
- at </span><span style='position:absolute;top:31.25%;left:10.67%;width:95.13%;
- height:4.5%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/docs/plans/mdt_project_plan_1_0.html"/><a
- href="http://www.eclipse.org/modeling/mdt/docs/plans/mdt_project_plan_1_0.html"
- target="_blank" onclick="window.event.cancelBubble=true;">http://www.eclipse.org/modeling/mdt/docs/plans/mdt_project_pla</a></span><span
- style='position:absolute;top:35.75%;left:10.67%;width:80.33%;height:4.5%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/docs/plans/mdt_project_plan_1_0.html"/><a
- href="http://www.eclipse.org/modeling/mdt/docs/plans/mdt_project_plan_1_0.html"
- target="_blank" onclick="window.event.cancelBubble=true;">n_1_0.html</a>&#13;</span>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>24 committed, 7
- deferred&#13;</span></div>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:53.5%;left:10.67%;width:80.33%;height:4.5%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>New &amp; Noteworthy
- documentation at </span><span style='position:absolute;top:58.0%;left:10.67%;
- width:95.69%;height:4.5%'><p:onmouseclick hyperlinktype="url"
-  href="http://wiki.eclipse.org/index.php/MDT_1.0_New_and_Noteworthy"/><a
- href="http://wiki.eclipse.org/index.php/MDT_1.0_New_and_Noteworthy"
- target="_blank" onclick="window.event.cancelBubble=true;">http://wiki.eclipse.org/index.php/MDT_1.0_New_and_Noteworthy</a>&#13;</span>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:66.75%;left:10.67%;width:80.33%;height:
- 4.5%'><span class=BB style='position:absolute;left:-3.03%'>§</span>Release
- notes available at </span><span style='position:absolute;top:71.25%;
- left:10.67%;width:95.5%;height:4.5%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/news/relnotes.php?project="/><a
- href="http://www.eclipse.org/modeling/mdt/news/relnotes.php?project="
- target="_blank" onclick="window.event.cancelBubble=true;">http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the major features
-  of this release as well as any other features that have generated significant
-  discussion amongst the community during the development cycle. Compare the
-  features against the Roadmap to understand the project's conformance or divergence.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b><i> </i>The
-  community will use this release and the ecosystem will build products on top
-  of this release, and both need to know what features were included or
-  excluded.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0097.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0097.html
deleted file mode 100644
index 41e231f..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0097.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Features – OCL 1.1">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1031"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>7</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1055746" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1055747" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1055746" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Features – OCL 1.1</div>
- <div v:shape="_x0000_s1055747">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Restructure Modeling Components&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:13.29%;width:80.33%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.96%;width:96.03%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.12%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156366" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>LPG</a>.
- Consume LPG runtime library from the Orbit project.&#13;</span></div>
- <div class=B style='position:absolute;top:37.0%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6;visibility:hidden'><span
- class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='color:silver;mso-color-index:6;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:41.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Increase Modeling Component Cohesion&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:46.75%;left:16.47%;
- width:85.76%;height:4.0%'><span class=B1B style='position:absolute;left:-3.71%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Integration
- with UML</a>. Provide support for parsing and evaluating </span><span
- style='position:absolute;top:50.75%;left:16.47%;width:77.15%;height:4.0%'>OCL
- constraints and expressions on the UML metamodel.&#13;</span></div>
- <div class=B style='position:absolute;top:55.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6;visibility:hidden'><span
- class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='color:silver;mso-color-index:6;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:59.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Enable Consistent Multi-language Support&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:65.25%;left:16.47%;
- width:78.83%;height:4.0%'><span class=B1B style='position:absolute;left:-4.03%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=156364" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>ICU4J</a>.
- Isolate and minimize dependency on ICU4J; ensure </span><span
- style='position:absolute;top:69.25%;left:16.47%;width:74.53%;height:4.0%'>support
- for the “thin” variant of ICU4J.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0098.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0098.html
deleted file mode 100644
index 47652ca..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0098.html
+++ /dev/null
@@ -1,135 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Features – UML2 2.1">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1032"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>9</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1056770" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1056771" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1056770" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Features – UML2 2.1</div>
- <div v:shape="_x0000_s1056771">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='color:silver;mso-color-index:6'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span><span style='color:silver;
- mso-color-index:6'>Increase Modeling Component Cohesion&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:32.25%;left:16.47%;
- width:82.77%;height:4.0%'><span class=B1B style='position:absolute;left:-3.84%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=160679" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Eclipse
- 3.3 / EMF 2.3 Compatibility</a>. Maintain release currency </span><span
- style='position:absolute;top:36.25%;left:16.47%;width:81.27%;height:4.0%'>concurrent
- with EMF 2.3 (and Eclipse 3.3); make changes as </span><span style='position:
- absolute;top:40.25%;left:16.47%;width:82.58%;height:4.0%'>required to align
- with EMF features and bug fixes, in particular </span><span style='position:
- absolute;top:44.25%;left:16.47%;width:74.53%;height:4.0%'>support for Java SE
- 5.0.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:49.75%;left:16.47%;
- width:81.83%;height:4.0%'><span class=B1B style='position:absolute;left:-3.89%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=150154" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>XML
- Primitive Types</a>. Provide a model library to represent the </span><span
- style='position:absolute;top:53.75%;left:16.47%;width:80.89%;height:4.0%'>types
- defined in the XMLType metamodel in EMF; be sure to </span><span
- style='position:absolute;top:57.75%;left:16.47%;width:82.2%;height:4.0%'>update
- Ecore/UML converters to make use of this new library.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:63.5%;left:16.47%;width:87.26%;
- height:4.0%'><span class=B1B style='position:absolute;left:-3.64%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Integration
- with OCL</a>. Integrate support for parsing and evaluating </span><span
- style='position:absolute;top:67.5%;left:16.47%;width:74.53%;height:4.0%'>OCL
- constraints and expressions.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/docs/presentations/MDT_1.0_ Release_Review_files/slide0099.html b/docs/presentations/MDT_1.0_ Release_Review_files/slide0099.html
deleted file mode 100644
index f31a94e..0000000
--- a/docs/presentations/MDT_1.0_ Release_Review_files/slide0099.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../MDT_1.0_%20Release_Review.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>MDT 1.0</title>
-<meta name=Description content="6/12/2007: Legal Notices">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="1051"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;color:black;mso-color-index:0;mso-field-code:meta16'><b>29</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;color:black;mso-color-index:
- 0;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image004.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%;
- color:black;mso-color-index:0'><span style='mso-spacerun:yes'> </span>Europa
- Simultaneous Release Review |<span style='mso-spacerun:yes'>  </span>© 2007 by
- IBM Corporation, made available under the EPL v1.0 </span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image005.jpg" style='position:absolute;
- top:2.75%;left:82.2%;width:16.85%;height:22.5%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s1076226" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s1076227" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s1076226" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Legal Notices</div>
- <div v:shape="_x0000_s1076227" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>UML is a trademark of
- the Object Management Group&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:8.23%;width:84.64%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.87%;width:97.12%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.96%'>§</span>XML is a trademark of
- the World Wide Web Consortium&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:44.5%;left:10.67%;width:87.45%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.78%'>§</span>Java and all Java-based
- trademarks are trademarks of Sun </span><span style='position:absolute;
- top:49.0%;left:10.67%;width:93.82%;height:4.5%'>Microsystems, Inc. in the
- United States, other countries, or both&#13;</span>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:58.0%;left:10.67%;width:92.5%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.63%'>§</span>Other company, product,
- or service names may be trademarks </span><span style='position:absolute;
- top:62.5%;left:10.67%;width:80.33%;height:4.5%'>or service marks of others</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/downloads/extras-eodm.php b/downloads/extras-eodm.php
deleted file mode 100644
index fe694e4..0000000
--- a/downloads/extras-eodm.php
+++ /dev/null
@@ -1,23 +0,0 @@
-<?php
-
-$oldrels = array(
-	"0.9.0" => "200707052236",
-	"0.8.0" => "200707260741",
-	"0.7.5" => array("2006/11/16 21:08","http://archive.eclipse.org/modeling/mdt/eodm/downloads/drops/0.7.5/S200611162108/"),
-	"0.7.0" => "200610160717"
-);
-
-function showNotes()
-{
-?>
-        <div class="homeitem3col">
-                <h3>Questions?</h3>
-                <p>If you have problems downloading the drops, contact the <a href="mailto:webmaster@eclipse.org">webmaster</a>.</p>
-                <p>These are the minimum required downloads for using EODM:</p>
-                <ul>
-                        <li>To use EODM, you require both the EODM &amp; <a href="/modeling/emf/downloads/?project=emf">EMF</a> Runtimes.</li>
-                </ul>
-                <p>All downloads are provided under the terms and conditions of the <a href="http://www.eclipse.org/legal/epl/notice.html">Eclipse Foundation Software User Agreement</a> unless otherwise specified.</p>
-        </div>
-<?php
-}
diff --git a/downloads/extras-ocl.php b/downloads/extras-ocl.php
deleted file mode 100644
index 2ea06e6..0000000
--- a/downloads/extras-ocl.php
+++ /dev/null
@@ -1,80 +0,0 @@
-<?php
-
-/* used for sidebar entry */
-$NLpacks = array(
-	"1.0.x" => "NLS1.0.x"
-);
-
-$oldrels = array(
-	"1.1.1" => "200709121604",
-	"1.1.0" => "200706201142",
-	"1.0.2" => "200611161546",
-	"1.0.1" => "200609250830",
-	"1.0.0" => "200606261119"
-);
-
-function doLanguagePacks()
-{
-	global $downloadScript, $downloadPre;
-
-?>
-<div class="homeitem3col">
-	<a name="NLS"></a>
-
-	<h3>Language Packs</h3>
-
-	<p>IBM is pleased to contribute translations for the Eclipse Modeling Development Tools subcomponent OCL.</p>
-	<ul>
-		<li>
-			<a href="javascript:toggle('lang1_0')">1.0.x Language Packs</a><a name="NLS1.0.x"></a>
-			<ul id="lang1_0">
-					<?php
-					$packs = array(
-						"1.0.x NLS Translation Packs" => "NLpacks-",
-					);
-					$cols = array(
-						"OCL" => "ocl"
-					);
-					$subcols = array(
-						"SDK" => "SDK-1.0.0",
-						"Runtime" => "runtime-1.0.0"
-					);
-					$packSuf = ".zip";
-					$folder = "NLS/1.0/";
-					doNLSLinksList($packs, $cols, $subcols, $packSuf, $folder, false); ?>
-				<li>
-
-					<p>The language packs contain NL fragments and features for:</p>
-					<ul>
-						<li>NLpack1 - German, Spanish, French, Italian, Japanese, Korean, Portuguese (Brazil), Traditional Chinese, Simplified Chinese</li>
-						<li>NLpack2 - Czech, Hungarian, Polish, Russian</li>
-						<li>NLpack2a - Danish, Dutch, Finnish, Greek, Norwegian, Portuguese, Swedish and Turkish</li>
-						<li>NLpackBidi - Arabic</li>
-					</ul>
-					<p>Each language pack zip contains 4 other zips (one for each of the language groups above). Unpack these zips into your Eclipse directory before starting Eclipse.</p>
-					<p>These translations are based on OCL 1.0.0. The NLS translation fragment packs should work with all subsequent 1.0.x maintenance releases, with any new strings remaining untranslated.</p>
-				</li>
-			</ul>
-		</li>
-	</ul>
-</div>
-
-<?php
-}
-
-function showNotes()
-{
-?>
-	<div class="homeitem3col">
-		<h3>Questions?</h3>
-		<p>If you have problems downloading the drops, contact the <a href="mailto:webmaster@eclipse.org">webmaster</a>.</p>
-		<p>These are the minimum required downloads for using OCL:</p>
-		<ul>
-			<li>To use OCL, you require both the OCL &amp; <a href="/modeling/emf/downloads/?project=emf">EMF</a> Runtimes.</li>
-			<li>To use OCL with UML2, you will also require the <a href="/modeling/mdt/downloads/?project=uml2">UML2</a> runtime.</li>
-		</ul>
-		<p>All downloads are provided under the terms and conditions of the <a href="http://www.eclipse.org/legal/epl/notice.html">Eclipse Foundation Software User Agreement</a> unless otherwise specified.</p>
-	</div>
-<?php
-}
-?>
diff --git a/downloads/extras-uml2.php b/downloads/extras-uml2.php
deleted file mode 100644
index 91362fe..0000000
--- a/downloads/extras-uml2.php
+++ /dev/null
@@ -1,148 +0,0 @@
-<?php
-
-/* used for sidebar entry */
-$NLpacks = array(
-	"2.0.x" => "NLS2.0.x",
-	"1.1.x" => "NLS1.1.x",
-	"1.0.x" => "NLS1.0.x"
-);
-
-$oldrels = array(
-	"2.1.0" => "200706251652",
-	"2.0.4" => "200707131442",
-	"2.0.3" => "200702141227",
-	"2.0.2" => "200610251409",
-	"2.0.0" => "200606221411",
-	"1.1.1" => "200509282050",
-	"1.1.0" => "200507070914",
-	"1.0.3" => "200506221634",
-	"1.0.2" => "200503231914",
-	"1.0.1" => "200409171820",
-	"1.0.0" => "200406281334"
-);
-
-function doLanguagePacks()
-{
-	global $downloadScript, $downloadPre;
-	
-?>
-<div class="homeitem3col">
-	<a name="NLS"></a>
-	
-	<h3>Language Packs</h3>
-
-	<p>IBM is pleased to contribute translations for the Eclipse Modeling Development Tools subcomponent UML2.</p>
-	<ul>
-		<li>
-			<a href="javascript:toggle('lang2_0')">2.0.x Language Packs</a><a name="NLS2.0.x"></a>
-			<ul id="lang2_0">
-				<?php 
-					$packs = array(
-						"2.0.x NLS Translation Packs" => "NLpacks-",
-					);
-					$cols = array(
-						"UML2" => "uml2"
-					);
-					$subcols = array(
-         				"2.0.1 SDK" => "SDK-2.0.1",
-         				"2.0.1 Runtime" => "runtime-2.0.1",
-         				"2.0.0 SDK" => "SDK-2.0.0",
-         				"2.0.0 Runtime" => "runtime-2.0.0"
-					);
-					$packSuf = ".zip";
-				    $folder = "NLS/2.0/";
-				doNLSLinksList($packs, $cols, $subcols, $packSuf, $folder); ?>
-				<li>
-					<p>The language packs contain the following translations:</p>
-					<ul>
-						<li>NLpack1 - German, Spanish, French, Italian, Japanese, Korean, Portuguese (Brazil), Traditional Chinese, Simplified Chinese</li>
-						<li>NLpack2 - Czech, Hungarian, Polish, Russian</li>
-						<li>NLpack2a - Danish, Dutch, Finnish, Greek, Norwegian, Portuguese, Swedish and Turkish</li>
-						<li>NLpackBidi - Arabic, Hebrew (EMF runtime only)</li>
-					</ul>
-					<p>Each language pack zip contains 4 other zips (one for each of the language groups above). Unpack these zips into your Eclipse directory before starting Eclipse.</p>
-					<p> These translations are based on UML2 2.0.1 and 2.0.0, respectively. The NLS translation fragment packs should work with all subsequent 2.0.x maintenance releases, with any new strings remaining untranslated.</p>
-				</li>
-			</ul>
-		</li>
-
-		<li>
-			<a href="javascript:toggle('lang1_1')">1.1.x Language Packs</a><a name="NLS1.1.x"></a>
-			<ul id="lang1_1" style="display: none">
-					<?php
-					$packs = array(
-						"1.1.x NLS Translation Packs" => "NLpacks-"
-					);
-					$cols = array(
-						"UML2" => "uml2"
-					);
-					$subcols = array(
-						"SDK" => "SDK-1.1.1",
-						"Runtime" => "runtime-1.1.1"
-					);
-					$packSuf = ".zip";
-        			$folder = "NLS/1.1/";
-					doNLSLinksList($packs, $cols, $subcols, $packSuf, $folder, true); ?>
-				<li>
-					<p>The language packs contain the following translations:</p>
-					<ul>
-						<li>NLpack1 - German, Spanish, French, Italian, Japanese, Korean, Portuguese (Brazil), Traditional Chinese, Simplified Chinese</li>
-						<li>NLpack2 - Czech, Hungarian, Polish, Russian</li>
-						<li>NLpackBidi - Arabic</li>
-					</ul>
-					<p>Each language pack zip contains 6 other zips (two for each of the language groups above: an NLS translation fragment pack and a feature overlay). Unpack both these zips (for every language group you need) into your Eclipse directory before starting Eclipse. In particular, the feature overlay must actually write into the existing feature directories.</p>
-					<p>These translations are based on UML2 1.1.1. The NLS translation fragment packs should work with all subsequent 1.1 maintenance releases, with any new strings remaining untranslated. The feature overlays will need to be reissued for each subsequent release.</p>
-				</li>
-			</ul>
-		</li>
-
-		<li>
-			<a href="javascript:toggle('lang1_0')">1.0.x Language Packs</a><a name="NLS1.0.x"></a>
-			<ul id="lang1_0" style="display: none">
-					<?php
-					$packs = array(
-						"1.0.x NLS Translation Packs" => "NLpacks-",
-					);
-					$cols = array(
-						"UML2" => "uml2"
-					);
-					$subcols = array(
-						"SDK" => "SDK-1.0.2",
-						"Runtime" => "runtime-1.0.2"
-					);
-					$packSuf = ".zip";
-        			$folder = "NLS/1.0/";
-					doNLSLinksList($packs, $cols, $subcols, $packSuf, $folder, true); ?>
-				<li>
-					<p>The language packs contain the following translations:</p>
-					<ul>
-						<li>NLpack1 - German, Spanish, French, Italian, Japanese, Korean, Portuguese (Brazil), Traditional Chinese, Simplified Chinese</li>
-						<li>NLpack2 - Czech, Hungarian, Polish, Russian</li>
-					</ul>
-					<p>Each language pack zip contains 2 zips (one for each of the language groups above). Each language pack is distributed as a feature which you can install by downloading the zip file, unzipping it into your Eclipse directory and restarting Eclipse.</p>
-					<p>These translations are based on UML2 1.0.2 but should work with all subsequent 1.0 maintenance releases. If new strings are added to UML2 after 1.0.2, they will not show up as translated in the 1.0.x stream when you install this language pack.</p>
-				</li>
-			</ul>
-		</li>
-	</ul>
-</div>
-
-<?php
-}
-
-function showNotes()
-{
-?>
-	<div class="homeitem3col">
-		<h3>Questions?</h3>
-		<p>If you have problems downloading the drops, contact the <a href="mailto:webmaster@eclipse.org">webmaster</a>.</p>
-		<p>These are the minimum required downloads for using UML2:</p>
-		<ul>
-			<li>To use UML2, you require both the UML2 &amp; <a href="/modeling/emf/downloads/?project=emf">EMF</a> Runtimes.</li>
-			<li>To use UML2 with XSD models, you will also require the <a href="/modeling/mdt/downloads/?project=xsd">XSD</a> Runtime.</li>
-		</ul>
-		<p>All downloads are provided under the terms and conditions of the <a href="http://www.eclipse.org/legal/epl/notice.html">Eclipse Foundation Software User Agreement</a> unless otherwise specified.</p>
-	</div>
-<?php
-}
-?>
diff --git a/downloads/extras-uml2tools.php b/downloads/extras-uml2tools.php
deleted file mode 100644
index 9efcfd9..0000000
--- a/downloads/extras-uml2tools.php
+++ /dev/null
@@ -1,25 +0,0 @@
-<?php
-
-$oldrels = array(
-	"0.7.1" => "200710010534",
-	"0.7.0" => "200707030850",
-);
-
-function showNotes()
-{
-?>
-	<div class="homeitem3col">
-		<h3>Questions?</h3>
-		<p>If you have problems downloading the drops, contact the <a href="mailto:webmaster@eclipse.org">webmaster</a>.</p>
-		<p>These are the minimum required downloads for using UML2:</p>
-		<ul>
-			<li>To use UML2 Tools, you require both the UML2 Tools &amp; <a href="/modeling/emf/downloads/?project=emf">EMF</a> Runtimes.</li>
-			<li>To use UML2 Tools with XSD models, you will also require the <a href="/modeling/mdt/downloads/?project=xsd">XSD</a> Runtime.</li>
-			<li>You will also require GMF to be installed, as well as its prerequisite dependencies. To know which Eclipse, EMF, UML2, GMF, etc. drivers were used to build a given release, see <b>Build Dependencies</b> 
-				for any build listed above.</li>
-		</ul>
-		<p>All downloads are provided under the terms and conditions of the <a href="http://www.eclipse.org/legal/epl/notice.html">Eclipse Foundation Software User Agreement</a> unless otherwise specified.</p>
-	</div>
-<?php
-}
-?>
diff --git a/downloads/extras-xsd.php b/downloads/extras-xsd.php
deleted file mode 100644
index 4d9057f..0000000
--- a/downloads/extras-xsd.php
+++ /dev/null
@@ -1,156 +0,0 @@
-<?php
-
-/* used for sidebar entry */
-$NLpacks = array(
-	"2.2.x" => "NLS2.2.x",
-	"2.1.x" => "NLS2.1.x",
-	"2.0.x" => "NLS2.0.x"
-);
-
-$oldrels = array(
-    "2.3.1" => "200709252135",
-    "2.3.0" => "200706262000",
-	"2.2.4" => "200710030400",
-	"2.2.3" => "200705141058",
-	"2.2.2" => "200702131851",
-	"2.2.1" => "200609210005",
-	"2.2.0" => "200606271057",
-	"2.1.3" => "200710031529",
-	"2.1.2" => "200601191349",
-	"2.1.1" => "200509281310",
-	"2.1.0" => "200507070200",
-	"2.0.6" => "200710030600",
-	"2.0.5" => "200511291418",
-	"2.0.4" => "200509300951",
-	"2.0.3" => "200506091052",
-	"2.0.2" => "200503151315",
-	"2.0.1" => "200409171617",
-	"2.0.0" => "200406280827",
-	"1.x" => array("2003","http://www.eclipse.org/modeling/emf/downloads/dl-xsd1x.html")
-);
-
-
-function doLanguagePacks()
-{
-	global $downloadScript, $downloadPre;
-	
-?>
-<div class="homeitem3col">
-	<a name="NLS"></a>
-	
-	<h3>Language Packs</h3>
-
-	<p>IBM is pleased to contribute translations for the Eclipse Modeling Development Tools subcomponent XSD.</p>
-	<ul>
-		<li>
-			<a href="javascript:toggle('lang2_2')">2.2.x Language Packs</a><a name="NLS2.2.x"></a>
-			<ul id="lang2_2">
-				<?php 
-					$packs = array (
-						"2.2.x NLS Translation Packs" => "NLpacks-"
-					);
-					$cols = array (
-						"XSD" => "xsd"
-					);
-					$subcols = array (
-						"2.2.1 SDK" => "SDK-2.2.1",
-						"2.2.1 Runtime" => "runtime-2.2.1",
-						"2.2.0 SDK" => "SDK-2.2",
-						"2.2.0 Runtime" => "runtime-2.2"
-					);
-					$packSuf = ".zip";
-					$folder = "NLS/2.2/";
-					doNLSLinksList($packs, $cols, $subcols, $packSuf, $folder, true); ?>
-				<li>
-					<p>The language packs contain the following translations:</p>
-					<ul>
-						<li>NLpack1 - German, Spanish, French, Italian, Japanese, Korean, Portuguese (Brazil), Traditional Chinese, Simplified Chinese</li>
-						<li>NLpack2 - Czech, Hungarian, Polish, Russian</li>
-						<li>NLpack2a - Danish, Dutch, Finnish, Greek, Norwegian, Portuguese, Swedish and Turkish</li>
-						<li>NLpackBidi - Arabic, Hebrew (EMF runtime only)</li>
-					</ul>
-					<p>Each language pack zip contains 4 other zips (one for each of the language groups above). Unpack these zips into your Eclipse directory before starting Eclipse.</p>
-					<p> These translations are based on XSD 2.2.1 and 2.2.0, respectively. The NLS translation fragment packs should work with all subsequent 2.0.x maintenance releases, with any new strings remaining untranslated.</p>
-				</li>
-			</ul>
-		</li>
-
-		<li>
-			<a href="javascript:toggle('lang2_1')">2.1.x Language Packs</a><a name="NLS2.1.x"></a>
-			<ul id="lang2_1" style="display: none">
-					<?php
-					$packs = array (
-						"2.1.x NLS Translation Packs" => "NLpacks-"
-					);
-					$cols = array (
-						"XSD" => "xsd"
-					);
-					$subcols = array (
-						"SDK" => "SDK-",
-						"Runtime" => "runtime-"
-					);
-					$packSuf = "2.1.zip";
-					$folder = "NLS/2.1/";
-					doNLSLinksList($packs, $cols, $subcols, $packSuf, $folder, true); ?>
-				<li>
-					<p>The language packs contain the following translations:</p>
-					<ul>
-						<li>NLpack1 - German, Spanish, French, Italian, Japanese, Korean, Portuguese (Brazil), Traditional Chinese, Simplified Chinese</li>
-						<li>NLpack2 - Czech, Hungarian, Polish, Russian</li>
-						<li>NLpackBidi - Arabic</li>
-					</ul>
-					<p>Each language pack zip contains 6 other zips (two for each of the language groups above: an NLS translation fragment pack and a feature overlay). Unpack both these zips (for every language group you need) into your Eclipse directory before starting Eclipse. In particular, the feature overlay must actually write into the existing feature directories.</p>
-					<p>These translations are based on XSD 2.1. The NLS translation fragment packs should work with all subsequent 2.1 maintenance releases, with any new strings remaining untranslated. The feature overlays will need to be reissued for each subsequent release.</p>
-				</li>
-			</ul>
-		</li>
-
-		<li>
-			<a href="javascript:toggle('lang2_0')">2.0.x Language Packs</a><a name="NLS2.0.x"></a>
-			<ul id="lang2_0" style="display: none">
-					<?php
-					$packs = array (
-						"2.0.x NLS Translation Packs" => "NLpacks-",
-					);
-					$cols = array (
-						"XSD" => "xsd"
-					);
-					$subcols = array (
-						"SDK" => "SDK-",
-						"Runtime" => "runtime-"
-					);
-					$packSuf = "2.0.zip";
-					$folder = "NLS/2.0/";
-					doNLSLinksList($packs, $cols, $subcols, $packSuf, $folder, true); ?>
-				<li>
-					<p>The language packs contain the following translations:</p>
-					<ul>
-						<li>NLpack1 - German, Spanish, French, Italian, Japanese, Korean, Portuguese (Brazil), Traditional Chinese, Simplified Chinese</li>
-						<li>NLpack2 - Czech, Hungarian, Polish, Russian</li>
-					</ul>
-					<p>Each language pack zip contains 2 zips (one for each of the language groups above). Each language pack is distributed as a feature which you can install by downloading the zip file, unzipping it into your Eclipse directory and restarting Eclipse.</p>
-					<p>These translations are based on XSD 2.0 but should work with all subsequent 1.0 maintenance releases. If new strings are added to XSD after 2.0, they will not show up as translated in the 2.0.x stream when you install this language pack.</p>
-				</li>
-			</ul>
-		</li>
-	</ul>
-</div>
-
-<?php
-}
-
-function showNotes()
-{
-?>
-	<div class="homeitem3col">
-		<h3>Questions?</h3>
-		<p>If you have problems downloading the drops, contact the <a href="mailto:webmaster@eclipse.org">webmaster</a>.</p>
-		<p>These are the minimum required downloads for using XSD:</p>
-		<ul>
-			<li>To use XSD to import XSD models to .ecore, you require the <a href="/modeling/emf/downloads/?project=emf">EMF</a> runtime.</li>
-		</ul>
-		<p>All downloads are provided under the terms and conditions of the <a href="http://www.eclipse.org/legal/epl/notice.html">Eclipse Foundation Software User Agreement</a> unless otherwise specified.</p>
-	</div>
-<?php
-}
-?>
diff --git a/downloads/index.php b/downloads/index.php
deleted file mode 100644
index 01bb2cf..0000000
--- a/downloads/index.php
+++ /dev/null
@@ -1,93 +0,0 @@
-<?php
-require_once ("../../includes/buildServer-common.php");
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");  require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon());
-
-ob_start();
-
-/* zips that are allowed to be absent from the downloads page (eg., new ones added mid-stream) */
-$extraZips = array(
-	"mdt-ocl-standalone",
-	"xsd-SDK", # deprecated
-	"xsd-sourcedoc", # new EMF 2.4.0M5 x 3
-);
-
-/* config */
-
-/* $project => sections/Project Name => (prettyname => filename) */
-/* only required if using something other than the default 4; otherwise will be generated */
-$dls = array(
-	/*"/newProj" => array(
-		"Project Name" => array( # same as value in _projectCommon.php's $projects array
-			"SDK (Runtime, Source)" => "SDK",
-			"Runtime" => "runtime",
-			"Examples" => "examples",
-			"Automated Tests" => "automated-tests"
-		)
-	),*/
-	"/uml2" => array(
-		"UML2" => array(
-			"SDK (Runtime, Source, Examples)" => "SDK",
-			"Runtime" => array("-runtime",""), // multiple prefixes supported
-			"Examples" => "examples",
-			"Automated Tests" => "automated-tests"
-		)
-	),
-	"/ocl" => array(
-		"OCL" => array(
-			"SDK (Runtime, Source)" => "SDK",
-			"Runtime" => "runtime",
-			"Examples" => "examples",
-			"Automated Tests" => "automated-tests",
-			"Stand-alone" => "standalone"
-		)
-	),
-	"/xsd" => array(
-		"XSD" => array(
-			"SDK (Runtime, Source, Doc)" => "SDK",	# deprecated EMF 2.4.0M5
-			"Sources + Docs" => "sourcedoc",		# new EMF 2.4.0M5
-			"Runtime" => "runtime" //,
-			//"Examples" => "examples",
-			//"Automated Tests" => "automated-tests"
-		)
-	)
-);
-
-/* list of valid file prefixes for projects who have been renamed; keys have leading / to match $proj */
-/* only required if using something other than the default; otherwise will be generated */
-$filePre = array(
-	/* "/newproj" => array("mdt-newproj"), */
-	"/eodm" => array("emft-eodm","mdt-eodm"),
-	"/uml2" => array("uml2","mdt-uml2"),
-	"/ocl" => array("emft-ocl","mdt-ocl"),
-	"/xsd" => array("xsd","mdt-xsd")
-);
-
-$filePreStatic = array(
-	"/xsd" => array(
-		"xsd",			# deprecated EMF 2.4.0M5
-		"xsd",			# new EMF 2.4.0M5
-		"xsd"
-	)
-);
-
-/* define showNotes(), $oldrels, doLanguagePacks() in extras-$proj.php (or just extras.php for flat projects) if necessary, downloads-common.php will include them */
-/* end config */
-
-if ($isBuildServer) { include_once $_SERVER["DOCUMENT_ROOT"] . "/modeling/mdt/build/sideitems-common.php"; }
-require_once($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/downloads-common.php");
-
-$html = ob_get_contents();
-ob_end_clean();
-
-$trans = array_flip($projects);
-$pageTitle = "Eclipse Modeling - MDT - $trans[$projct] - Downloads";
-$pageKeywords = ""; // TODO: add something here
-$pageAuthor = "Neil Skrypuch, Nick Boldt";
-
-# Generate the web page
-$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/modeling/includes/downloads.css"/>' . "\n");
-$App->AddExtraHtmlHeader('<script src="/modeling/includes/downloads.js" type="text/javascript"></script>' . "\n"); //ie doesn't understand self closing script tags, and won't even try to render the page if you use one
-$App->AddExtraHtmlHeader('<link type="application/rss+xml" rel="alternate" title="MDT '.$trans[$projct].' Build Feed" href="http://www.eclipse.org/modeling/download.php?file=/'.$PR.'/feeds/builds-'.$projct.'.xml"/>' . "\n");
-$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-
-?>
diff --git a/downloads/testResults.php b/downloads/testResults.php
deleted file mode 100644
index 96fca59..0000000
--- a/downloads/testResults.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php include($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/testResults-common.php"); ?>
diff --git a/eclipse-project-ip-log.csv b/eclipse-project-ip-log.csv
deleted file mode 100644
index 29c5eb3..0000000
--- a/eclipse-project-ip-log.csv
+++ /dev/null
@@ -1,172 +0,0 @@
-Section 1 (Committers),,,,
-
-dev.eclipse.org Login,,,,
-ashidqie,,,,
-cdamus,,,,
-cmcgee,,,,
-davidms,,,,
-dcarlson,,,,
-elena,,,,
-emerks,,,,
-gxie,,,,
-khussey,,,,
-jbruck,,,,
-lzhang,,,,
-marcelop,,,,
-mgarcia,,,,
-mgolubev,,,,
-mli,,,,
-ndowler,,,,
-nickb,,,,
-pyue,,,,
-sgribovsk,,,,
-tfesenko,,,,
-vramaswamy,,,,
-yvyang,,,,
-yyang,,,,
-
-Section 2 (Developers),,,,
-
-Component,Bug #,Contributor,Size,Committer
-org.eclipse.emf.ocl,134792,Christian Vogt,35509 LOC,cdamus
-org.eclipse.emf.ocl,141413,Christian Vogt,557 LOC,cdamus
-org.eclipse.emf.ocl,141641,Christian Vogt,small,cdamus
-org.eclipse.emf.ocl,141992,Christian Vogt,small,cdamus
-org.eclipse.emf.ocl,143882,Edward Willink,small,cdamus
-org.eclipse.uml2.uml,80307,James Bruck,607,khussey
-org.eclipse.uml2.uml,80307,James Bruck,561,khussey
-org.eclipse.uml2.uml,80307,James Bruck,141,khussey
-org.eclipse.uml2.uml,80307,James Bruck,119,khussey
-org.eclipse.uml2.uml,80307,James Bruck,108,khussey
-org.eclipse.uml2.uml,80307,James Bruck,122,khussey
-org.eclipse.uml2.uml,139765,James Bruck,39,khussey
-org.eclipse.uml2.uml,140590,James Bruck,65,khussey
-org.eclipse.uml2.uml,141575,James Bruck,20,khussey
-uml2,77413,James Bruck,19642,khussey
-org.eclipse.uml2.uml,144311,James Bruck,49,khussey
-uml2,77413,James Bruck,12144,khussey
-uml2,77413,James Bruck,15359,khussey
-org.eclipse.uml2.uml,152592,James Bruck,1,khussey
-org.eclipse.uml2.uml,157714,James Bruck,153,khussey
-org.eclipse.uml2.uml,157715,James Bruck,53,khussey
-org.eclipse.uml2.uml.ecore.importer,160319,James Bruck,8,khussey
-org.eclipse.uml2.uml,159855,James Bruck,23,khussey
-org.eclipse.uml2.uml.editor,159855,James Bruck,41,khussey
-org.eclipse.uml2.uml.resources,150154,James Bruck,396,khussey
-org.eclipse.uml2.examples.uml.ui,150154,James Bruck,119,khussey
-org.eclipse.uml2.uml.editor,150154,James Bruck,177,khussey
-org.eclipse.uml2.uml,150154,James Bruck,90,khussey
-org.eclipse.uml2.uml,166843,Ed Merks,5,khussey
-org.eclipse.uml2.uml.ecore.importer,160680,James Bruck,596,khussey
-org.eclipse.uml2.uml.ecore.importer,160680,James Bruck,217,khussey
-org.eclipse.uml2.uml,173843,James Bruck,9,khussey
-org.eclipse.uml2.examples.uml.ui,160679,James Bruck,101,khussey
-org.eclipse.uml2.uml,160679,James Bruck,948,khussey
-org.eclipse.uml2.uml.resources,160679,James Bruck,412,khussey
-org.eclipse.uml2.uml,173726,James Bruck,6954,khussey
-org.eclipse.uml2.uml,155535,James Bruck,224,khussey
-org.eclipse.uml2.examples.uml.ui,105199,James Bruck,48,khussey
-org.eclipse.uml2.uml.ecore.exporter,105199,James Bruck,8,khussey
-org.eclipse.uml2.uml.ecore.importer,105199,James Bruck,29,khussey
-org.eclipse.uml2.uml,105199,James Bruck,394,khussey
-org.eclipse.uml2.examples.uml.ui,163556,James Bruck,197,khussey
-org.eclipse.uml2.uml.ecore.exporter,163556,James Bruck,2,khussey
-org.eclipse.uml2.uml.editor,163556,James Bruck,244,khussey
-org.eclipse.uml2.uml.ecore.importer,163556,James Bruck,11,khussey
-org.eclipse.uml2.uml,163556,James Bruck,32,khussey
-org.eclipse.uml2.uml.editor,176996,James Bruck,4,khussey
-org.eclipse.uml2.uml.editor,176995,James Bruck,103,khussey
-org.eclipse.uml2.codegen.ecore,105199,James Bruck,120,khussey
-org.eclipse.uml2.codegen.ecore,160679,Ed Merks,282,khussey
-org.eclipse.uml2.uml.resources,187120,James Bruck,2,khussey
-org.eclipse.uml2.examples.uml.ui,187120,James Bruck,4,khussey
-org.eclipse.uml2.uml,183817,James Bruck,32,khussey
-org.eclipse.uml2.uml.ecore.exporter,183817,James Bruck,48,khussey
-org.eclipse.uml2.uml.ecore.exporter,172503,James Bruck,17,khussey
-org.eclipse.uml2.uml.ecore.importer,172503,James Bruck,9,khussey
-org.eclipse.uml2.uml,178250,James Bruck,144,khussey
-org.eclipse.uml2.uml.ecore.exporter,172503,James Bruck,2,khussey
-org.eclipse.uml2.uml,186917,James Bruck,248,khussey
-UML2Tools,162934,richard.gronback@borland.com,36511,mgolubev
-UML2Tools,162944,richard.gronback@borland.com,10098,mgolubev
-UML2Tools,163932,sgribovsky@borland.com,101302,mgolubev
-UML2Tools,164937,sgribovsky@borland.com,88598,mgolubev
-UML2Tools,164937,sgribovsky@borland.com,4273,mgolubev
-UML2Tools,166353,sgribovsky@borland.com,54389,mgolubev
-UML2Tools,167102,sgribovsky@borland.com,131076,mgolubev
-UML2Tools,167840,sgribovsky@borland.com,163946,mgolubev
-UML2Tools,167876,sgribovsky@borland.com,1410,mgolubev
-UML2Tools,167876,sgribovsky@borland.com,1157,mgolubev
-UML2Tools,169977,sgribovsky@borland.com,5032,mgolubev
-UML2Tools,171236,sgribovsky@borland.com,146658,mgolubev
-UML2Tools,161556,tatiana.fesenko@borland.com,710965,mgolubev
-UML2Tools,161873,tatiana.fesenko@borland.com,175918,mgolubev
-UML2Tools,166565,tatiana.fesenko@borland.com,174037,mgolubev
-UML2Tools,166565,tatiana.fesenko@borland.com,130398,mgolubev
-UML2Tools,167464,tatiana.fesenko@borland.com,42235,mgolubev
-UML2Tools,167879,tatiana.fesenko@borland.com,33328,mgolubev
-UML2Tools,171046,tatiana.fesenko@borland.com,589929,mgolubev
-UML2Tools,171235,tatiana.fesenko@borland.com,312772,mgolubev
-UML2Tools,171237,tatiana.fesenko@borland.com,11415,mgolubev
-UML2Tools,171251,tatiana.fesenko@borland.com,289735,mgolubev
-UML2Tools,171256,tatiana.fesenko@borland.com,933992,mgolubev
-UML2Tools,174289,tatiana.fesenko@borland.com,16466,mgolubev
-UML2Tools,176988,tatiana.fesenko@borland.com,4478,mgolubev
-UML2Tools,182109,tatiana.fesenko@borland.com,10614,mgolubev
-UML2Tools,186340,tatiana.fesenko@borland.com,37634,mgolubev
-UML2Tools,188249,tatiana.fesenko@borland.com,2290,mgolubev
-UML2Tools,188254,tatiana.fesenko@borland.com,11721,mgolubev
-UML2Tools,188325,tatiana.fesenko@borland.com,6041,mgolubev
-UML2Tools,167057,Yury.Chernikov@borland.com,157680,mgolubev
-org.eclipse.xsd,132360,Steve Sexton,small,emerks
-org.eclipse.ocl,176110,Edward Willink,46145,cdamus
-org.eclipse.ocl,198451,Andreas Werner,150,cdamus
-org.eclipse.ocl,206147,Edward Willink,116,cdamus
-org.elcipse.ocl,191504,Adolfo Sanchez-Barbudo Herrera,35,cdamus
-org.eclipse.ocl,213753,Edward Willink,2,cdamus
-org.eclipse.ocl,213755,Edward Willink,1,cdamus
-org.eclipse.ocl,152003,Ed Merks,16,cdamus
-org.elcipse.ocl,222581,Adolfo Sanchez-Barbudo Herrera,13,cdamus
-org.eclipse.uml2.examples.uml.ui,220558,Christian Damus,12,jbruck
-org.eclipse.ocl,225493,Edward Willink,7,cdamus
-org.eclipse.ocl,228841,Adolfo Sanchez-Barbudo Herrera,1,cdamus
-org.eclipse.ocl,231515,Adolfo Sanchez-Barbudo Herrera,5,cdamus
-org.eclipse.ocl,243079,lgoubet,170,cdamus
-org.eclipse.ocl,244948,rdvorak,42,cdamus
-org.eclipse.ocl,244886,Stefan Schulze,147,cdamus
-org.eclipse.ocl,245586,ewillink,152,cdamus
-org.eclipse.ocl,245897,Achim Demelt,91,cdamus
-org.eclipse.ocl,246892,Achim Demelt,2,cdamus
-org.eclipse.ocl,234354,Adolfo Sanchez-Barbudo Herrera,39,cdamus
-org.eclipse.ocl,213886,ewillink,2,cdamus
-org.eclipse.ocl,243976,ewillink,76,cdamus
-org.eclipse.ocl,245619,Stefan Schulze,175,cdamus
-org.eclipse.ocl,233673,Adolfo Sanchez-Barbudo Herrera,1462,cdamus
-org.eclipse.ocl,252000,ewillink,1,cdamus
-org.eclipse.ocl,179990,rdvorak,1,cdamus
-org.eclipse.ocl,236247,Adolfo Sanchez-Barbudo Herrera,53,cdamus
-org.eclipse.uml2.codegen.ecore,242726,Lutz Wrage,1,jbruck
-org.eclipse.uml2.codegen.ecore,241411,Lutz Wrage,1,jbruck
-org.eclipse.ocl,259630,Bas Elzinga,1,cdamus
-org.eclipse.ocl,242236,ewillink,348,cdamus
-org.eclipse.ocl,259818,ewillink,425,cdamus
-org.eclipse.ocl,259819,ewillink,182,cdamus
-org.eclipse.ocl,259818,ewillink,8704,cdamus
-org.eclipse.uml2.uml,260120,Nicolas Rouquette,14,khussey
-org.eclipse.ocl,260403,Adolfo Sanchez-Barbudo Herrera,91,cdamus
-org.eclipse.ocl,259818,Nicolas Rouquette,1,cdamus
-org.eclipse.ocl,258973,Adolfo Sanchez-Barbudo Herrera,270,cdamus
-org.eclipse.ocl,261128,radvorak,1248,cdamus
-org.eclipse.ocl,242880,aigdalov,607,cdamus
-org.eclipse.ocl,242880,aigdalov,185,cdamus
-org.eclipse.ocl,266320,aigdalov,12,cdamus
-org.eclipse.ocl,265066,radvorak,25,cdamus
-org.eclipse.xsd,152113,Stuart Stephen,6,emerks
-org.eclipse.xsd,258835,Valentin Baciu,30,emerks
-
-Section 3 (Third Party Software),,,,
-
-CQ,Component,Library Name,CVS Location,License,Usage,
-(No longer in use) 303,OCL,LPG Java Runtime v1.0,/cvsroot/technology/org.eclipse.emft/ocl/plugins/org.eclipse.emf.ocl/lib/lpgjavaruntime.jar,Eclipse Public License Version 1.0,unmodified entire package
-(No longer in use) 303,OCL,LPG Java Runtime v1.0,/cvsroot/tools/org.eclipse.orbit/net.sourceforge.lpg.lpgjavaruntime v1_0,Eclipse Public License Version 1.0,original lpgjavaruntime.jar repackaged as an OSGi bundle
-1081,OCL,LPG Java Runtime v1.1,/cvsroot/tools/org.eclipse.orbit/net.sourceforge.lpg.lpgjavaruntime v1_1,Eclipse Public License Version 1.0,original lpgjavaruntime.jar repackaged as an OSGi bundle
diff --git a/eclipse-project-ip-log.php b/eclipse-project-ip-log.php
deleted file mode 100644
index 60186e1..0000000
--- a/eclipse-project-ip-log.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php include_once("../includes/eclipse-project-ip-log-common.php"); ?>
\ No newline at end of file
diff --git a/faq.php b/faq.php
deleted file mode 100644
index ac5764e..0000000
--- a/faq.php
+++ /dev/null
@@ -1,37 +0,0 @@
-<?php
-require_once ("../includes/buildServer-common.php");
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon());
-
-if ($proj) { 
-	header("Location: http://wiki.eclipse.org/index.php/MDT-" . strtoupper($proj) . "-FAQ"); 
-	exit;
-}
-ob_start();
-?>
-<div id="midcolumn">
-
-<h1>Frequently Asked Questions</h1>
-<p>If you have questions that you would like to see answered in future versions of this FAQ, please post them to the <a href="newsgroup-mailing-list.php">newsgroup</a>.</p>
-
-<p>If you'd like to add your questions and answers to the FAQ, please edit the appropriate <a href="http://wiki.eclipse.org/index.php/MDT">Wiki page</a>.</p>
-
-<?php
-
-if (is_array($projects))
-{
-	$projectArray = getProjectArray($projects, $extraprojects, $nodownloads, $PR);
-	print doSelectProject($projectArray, $proj, $nomenclature, "homeitem3col");
-}
-
-print "</div>\n";
-
-$html = ob_get_contents();
-ob_end_clean();
-
-$pageTitle = "Eclipse Modeling - MDT - FAQs";
-$pageKeywords = ""; // TODO: add something here
-$pageAuthor = "Neil Skrypuch";
-
-$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
-<!-- $Id: faq.php,v 1.9 2007/05/14 23:17:23 nickb Exp $ -->
diff --git a/feeds/builds-eodm.xml b/feeds/builds-eodm.xml
deleted file mode 100644
index 7915fbb..0000000
--- a/feeds/builds-eodm.xml
+++ /dev/null
@@ -1,628 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
-
-<feed xmlns="http://www.w3.org/2005/Atom">
-  <title>eodm Builds</title>
-  <link href="http://download.eclipse.org/modeling/mdt/feeds/builds-eodm.xml" rel="self" type="application/atom+xml"/>
-  <updated>2007-11-12T22:31:40Z</updated>
-  <author>
-    <name>eodm Build Team</name>
-  </author>
-  <id>http://download.eclipse.org/modeling/mdt/feeds/builds-eodm.xml</id>
-  <entry>
-    <title>[announce] eodm 0.9.1 (R200710090302) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200710090302#R200710090302"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200710090302#R200710090302</id>
-    <updated>2007-11-12T22:31:40Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200710090302" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200710090302#R200710090302" type="R" version="0.9.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.1/R200710090302/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=R200710090302
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-incubation-0.9.1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.1/R200710090302/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.1/S200709182140/emf-sdo-xsd-SDK-2.3.1RC.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm 0.8.1 (R200710090352) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200710090352#R200710090352"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200710090352#R200710090352</id>
-    <updated>2007-10-12T22:11:29Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_8_maintenance" datetime="200710090352" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200710090352#R200710090352" type="R" version="0.8.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.8.1/R200710090352/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=R200710090352
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-incubation-0.8.1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.8.1/R200710090352/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.1/S200709182140/emf-sdo-xsd-SDK-2.3.1RC.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm 0.9.1RC (S200709200027) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200709200027#S200709200027"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200709200027#S200709200027</id>
-    <updated>2007-09-20T04:49:53Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200709200027" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200709200027#S200709200027" type="S" version="0.9.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.1/S200709200027/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=S200709200027
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-0.9.1RC.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.1/S200709200027/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20070918-1350/eclipse-SDK-M20070918-1350-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.1/S200709182140/emf-sdo-xsd-SDK-2.3.1RC.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm M200708240429 (0.9.1.M200708240429) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=M200708240429#M200708240429"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=M200708240429#M200708240429</id>
-    <updated>2007-08-24T09:26:11Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200708240429" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=M200708240429#M200708240429" type="M" version="0.9.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.1/M200708240429/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=M200708240429
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-M200708240429.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.1/M200708240429/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.1/M200708142030/emf-sdo-xsd-SDK-M200708142030.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm M200708240438 (0.8.1.M200708240438) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=M200708240438#M200708240438"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=M200708240438#M200708240438</id>
-    <updated>2007-08-24T08:51:58Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_8_maintenance" datetime="200708240438" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=M200708240438#M200708240438" type="M" version="0.8.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.8.1/M200708240438/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=M200708240438
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-M200708240438.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.8.1/M200708240438/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.1/M200708142030/emf-sdo-xsd-SDK-M200708142030.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm 0.8.0 (R200707260741) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200707260741#R200707260741"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200707260741#R200707260741</id>
-    <updated>2007-07-26T11:53:24Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_8_maintenance" datetime="200707260741" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200707260741#R200707260741" type="R" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.8.0/R200707260741/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=R200707260741
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-0.8.0.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.8.0/R200707260741/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/R200706262000/emf-sdo-xsd-SDK-2.3.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm 0.9.0 (R200707052236) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200707052236#R200707052236"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200707052236#R200707052236</id>
-    <updated>2007-07-06T02:47:34Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200707052236" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200707052236#R200707052236" type="R" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/R200707052236/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=R200707052236
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-0.9.0.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/R200707052236/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/R200706262000/emf-sdo-xsd-SDK-2.3.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm 0.9.0RC4 (S200706210115) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200706210115#S200706210115"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200706210115#S200706210115</id>
-    <updated>2007-06-21T05:37:04Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706210115" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200706210115#S200706210115" type="S" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/S200706210115/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=S200706210115
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-0.9.0RC4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/S200706210115/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC4-200706081718/eclipse-SDK-3.3RC4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200706200000/emf-sdo-xsd-SDK-2.3.0RC4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm 0.9.0RC3 (S200706150157) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200706150157#S200706150157"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200706150157#S200706150157</id>
-    <updated>2007-06-15T06:37:21Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706150157" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200706150157#S200706150157" type="S" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/S200706150157/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=S200706150157
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-0.9.0RC3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/S200706150157/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC3-200706011539/eclipse-SDK-3.3RC3-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/S200706130003/emf-sdo-xsd-SDK-2.3.0RC3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm S200706150133 (0.9.0.S200706150133) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200706150133#S200706150133"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200706150133#S200706150133</id>
-    <updated>2007-06-15T05:49:59Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706150133" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200706150133#S200706150133" type="S" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/S200706150133/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=S200706150133
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-S200706150133.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/S200706150133/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC3-200706011539/eclipse-SDK-3.3RC3-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/S200706130003/emf-sdo-xsd-SDK-2.3.0RC3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm I200706071003 (0.9.0.I200706071003) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=I200706071003#I200706071003"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=I200706071003#I200706071003</id>
-    <updated>2007-06-07T14:31:19Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706071003" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=I200706071003#I200706071003" type="I" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/I200706071003/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=I200706071003
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-I200706071003.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/I200706071003/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC3-200706011539/eclipse-SDK-3.3RC3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200705300200/emf-sdo-xsd-SDK-2.3.0RC2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm 0.9.0M7 (S200705180639) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200705180639#S200705180639"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200705180639#S200705180639</id>
-    <updated>2007-05-18T10:51:00Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200705180639" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200705180639#S200705180639" type="S" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/S200705180639/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=S200705180639
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-0.9.0M7.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/S200705180639/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/S200705110650/emf-sdo-xsd-SDK-2.3.0M7.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/S-3.3M7-200705031400/eclipse-SDK-3.3M7-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm I200705100924 (0.9.0.I200705100924) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=I200705100924#I200705100924"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=I200705100924#I200705100924</id>
-    <updated>2007-05-10T13:47:09Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200705100924" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=I200705100924#I200705100924" type="I" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/I200705100924/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=I200705100924
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-I200705100924.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/I200705100924/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200705020200/emf-sdo-xsd-SDK-I200705020200.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/S-3.3M7-200705031400/eclipse-SDK-3.3M7-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm I200705022357 (0.9.0.I200705022357) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=I200705022357#I200705022357"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=I200705022357#I200705022357</id>
-    <updated>2007-05-04T02:36:41Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200705022357" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=I200705022357#I200705022357" type="I" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/I200705022357/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=I200705022357
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-I200705022357.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/I200705022357/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20070501-0010/eclipse-SDK-I20070501-0010-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200705020200/emf-sdo-xsd-SDK-I200705020200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm 0.9.0M6 (S200704060951) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200704060951#S200704060951"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200704060951#S200704060951</id>
-    <updated>2007-04-09T03:06:30Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200704060951" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200704060951#S200704060951" type="S" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/S200704060951/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=S200704060951
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-0.9.0M6.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.9.0/S200704060951/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.3M6-200703231616/eclipse-SDK-3.3M6-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200703291501/emf-sdo-xsd-SDK-2.3.0M6.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm 0.8.0 (R200707260741) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200707260741#R200707260741"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200707260741#R200707260741</id>
-    <updated>2007-07-26T11:53:24Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200702161050" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200707260741#R200707260741" type="R" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.8.0/R200707260741/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=R200707260741
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-0.8.0.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.8.0/R200707260741/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/R200706262000/emf-sdo-xsd-SDK-2.3.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm 0.8.0M5 (S200702161050) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200702161050#S200702161050"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200702161050#S200702161050</id>
-    <updated>2007-02-24T04:18:13Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200702161050" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200702161050#S200702161050" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.8.0/S200702161050/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;version=S200702161050
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-eodm-SDK-0.8.0M5.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.8.0/S200702161050/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3M5-200702091006/eclipse-SDK-3.3M5-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/S200702121527/emf-sdo-xsd-SDK-2.3.0M5.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm I200702152134 (0.8.0.I200702152134) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&amp;hlbuild=I200702152134#I200702152134"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&amp;hlbuild=I200702152134#I200702152134</id>
-    <updated>2007-02-16T04:42:31Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200702152134" href="http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&amp;hlbuild=I200702152134#I200702152134" type="I" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/tools/emf/downloads/drops/0.8.0/I200702152134/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?proj=eodm&amp;version=0.8.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-eodm-SDK-I200702152134.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=modeling/mdt/eodm/downloads/drops/0.8.0/I200702152134/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.3M4-200612141445/eclipse-SDK-3.3M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/S200702121527/emf-sdo-xsd-SDK-2.3.0M5.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm I200702080522 (0.8.0.I200702080522) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&amp;hlbuild=I200702080522#I200702080522"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&amp;hlbuild=I200702080522#I200702080522</id>
-    <updated>2007-02-08T10:52:43Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200702080522" href="http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&amp;hlbuild=I200702080522#I200702080522" type="I" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/tools/emf/downloads/drops/0.8.0/I200702080522/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?proj=eodm&amp;version=0.8.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-eodm-SDK-I200702080522.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=modeling/mdt/eodm/downloads/drops/0.8.0/I200702080522/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.3M4-200612141445/eclipse-SDK-3.3M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/I200702010200/emf-sdo-xsd-SDK-I200702010200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm 0.8.0M4 (S200701130125) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200701130125#S200701130125"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200701130125#S200701130125</id>
-    <updated>2007-01-17T15:14:41Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200701130125" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200701130125#S200701130125" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/eodm/downloads/drops/0.8.0/S200701130125/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?proj=eodm&amp;version=0.8.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-eodm-SDK-0.8.0M4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=modeling/mdt/eodm/downloads/drops/0.8.0/S200701130125/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3M4-200612141445/eclipse-SDK-3.3M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200612211251/emf-sdo-xsd-SDK-2.3.0M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm 0.7.5 (S200611162108) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200611162108#S200611162108"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200611162108#S200611162108</id>
-    <updated>2006-11-21T21:01:02Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_7_maintenance" datetime="200611162108" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=S200611162108#S200611162108" type="R" version="0.7.5">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=modeling/mdt/eodm/downloads/drops/0.7.5/S200611162108/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=eodm</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm#eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;amp;version=0.7.5
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-eodm-SDK-0.7.5.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=modeling/mdt/eodm/downloads/drops/0.7.5/S200611162108/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.2.2/M200611161441/emf-sdo-xsd-SDK-M200611161441.zip</dependency>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.2.1-200609210945/eclipse-SDK-3.2.1-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] eodm 0.7.0 (R200610160717) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200610160717#R200610160717"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200610160717#R200610160717</id>
-    <updated>2006-11-21T21:00:24Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200610160717" href="http://www.eclipse.org/modeling/mdt/downloads/?project=eodm&amp;showAll=1&amp;hlbuild=R200610160717#R200610160717" type="R" version="0.7.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=modeling/mdt/eodm/downloads/drops/0.7.0/R200610160717/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=eodm</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=eodm#eodm</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=eodm&amp;amp;version=0.7.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-eodm-SDK-0.7.0.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=modeling/mdt/eodm/downloads/drops/0.7.0/R200610160717/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.2.1/R200609210005/emf-sdo-xsd-SDK-2.2.1.zip</dependency>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060919-1045/eclipse-SDK-M20060919-1045-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-</feed>
diff --git a/feeds/builds-ocl.xml b/feeds/builds-ocl.xml
deleted file mode 100755
index 4577ca0..0000000
--- a/feeds/builds-ocl.xml
+++ /dev/null
@@ -1,3505 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
-
-<feed xmlns="http://www.w3.org/2005/Atom">
-  <title>ocl Builds</title>
-  <link href="http://download.eclipse.org/modeling/mdt/feeds/builds-ocl.xml" rel="self" type="application/atom+xml"/>
-  <updated>2009-05-26T21:35:20Z</updated>
-  <author>
-    <name>ocl Build Team</name>
-  </author>
-  <id>http://download.eclipse.org/modeling/mdt/feeds/builds-ocl.xml</id>
-  <entry>
-    <title>[announce] ocl 1.3.0RC2 (S200905261026) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200905261026#S200905261026"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200905261026#S200905261026</id>
-    <updated>2009-05-26T21:35:20Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200905261026" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200905261026#S200905261026" type="S" vanityname="1.3.0RC2" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200905261026/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200905261026
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.3.0RC2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200905261026/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5RC1-200905151143/eclipse-SDK-3.5RC1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200905191000/mdt-uml2-SDK-3.0.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20090513051706/orbit-S20090513051706.zip</dependency>
-          <dependency>http://eclipse.ialto.org/modeling/emf/emf/downloads/drops/2.5.0/S200905172106/emf-xsd-SDK-2.5.0RC1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.3.0RC1 (S200905201026) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200905201026#S200905201026"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200905201026#S200905201026</id>
-    <updated>2009-05-20T15:12:02Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200905201026" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200905201026#S200905201026" type="S" vanityname="1.3.0RC1" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200905201026/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200905201026
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.3.0RC1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200905201026/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5RC1-200905151143/eclipse-SDK-3.5RC1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200905191000/mdt-uml2-SDK-3.0.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20090513051706/orbit-S20090513051706.zip</dependency>
-          <dependency>http://eclipse.ialto.org/modeling/emf/emf/downloads/drops/2.5.0/S200905172106/emf-xsd-SDK-2.5.0RC1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200905191122 (1.3.0.I200905191122) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200905191122#I200905191122"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200905191122#I200905191122</id>
-    <updated>2009-05-19T19:21:42Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200905191122" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200905191122#I200905191122" type="I" vanityname="I200905191122" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200905191122/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200905191122
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200905191122.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200905191122/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5RC1-200905151143/eclipse-SDK-3.5RC1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200902031500/emf-xsd-SDK-2.5.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200905172106/emf-xsd-SDK-2.5.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200905041635/mdt-uml2-SDK-3.0.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20090513051706/orbit-S20090513051706.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.3.0M6 (S200903171143) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200903171143#S200903171143"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200903171143#S200903171143</id>
-    <updated>2009-03-18T00:44:57Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200903171143" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200903171143#S200903171143" type="S" vanityname="1.3.0M6" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200903171143/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200903171143
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.3.0M6.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200903171143/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M6-200903130100/eclipse-SDK-3.5M6-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20090307012903/orbit-S20090307012903.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200903171051/mdt-uml2-SDK-3.0.0M6.zip</dependency>
-          <dependency>http:/download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200903161215/emf-xsd-SDK-2.5.0M6.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200903110918 (1.3.0.I200903110918) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200903110918#I200903110918"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200903110918#I200903110918</id>
-    <updated>2009-03-11T14:08:07Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200903110918" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200903110918#I200903110918" type="I" vanityname="I200903110918" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200903110918/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200903110918
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200903110918.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200903110918/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20090309-1800/eclipse-SDK-I20090309-1800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200903101800/emf-xsd-SDK-I200903101800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/I200903041139/mdt-uml2-SDK-I200903041139.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20090202130207/orbit-S20090202130207.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200903050949 (1.3.0.I200903050949) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200903050949#I200903050949"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200903050949#I200903050949</id>
-    <updated>2009-03-05T15:25:45Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200903050949" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200903050949#I200903050949" type="I" vanityname="I200903050949" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200903050949/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200903050949
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200903050949.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200903050949/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20090304-0834/eclipse-SDK-I20090304-0834-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200903031800/emf-xsd-SDK-I200903031800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/I200903041139/mdt-uml2-SDK-I200903041139.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20090202130207/orbit-S20090202130207.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.3 (R200902101708) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200902101708#R200902101708"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200902101708#R200902101708</id>
-    <updated>2009-02-18T21:11:44Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_2_maintenance" datetime="200902101708" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200902101708#R200902101708" type="R" vanityname="1.2.3" version="1.2.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.3/R200902101708/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=R200902101708
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.3/R200902101708/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20090204-1400/eclipse-SDK-M20090204-1400-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.2/S200902041010/emf-sdo-xsd-SDK-2.4.2RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.2/S200902101042/mdt-uml2-SDK-2.2.2RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.3RC2 (S200902101708) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200902101708#S200902101708"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200902101708#S200902101708</id>
-    <updated>2009-02-18T13:28:15Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_2_maintenance" datetime="200902101708" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200902101708#S200902101708" type="S" vanityname="1.2.3RC2" version="1.2.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.3/S200902101708/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200902101708
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.3RC2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.3/S200902101708/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20090204-1400/eclipse-SDK-M20090204-1400-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.2/S200902041010/emf-sdo-xsd-SDK-2.4.2RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.2/S200902101042/mdt-uml2-SDK-2.2.2RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200902131557 (1.3.0.I200902131557) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200902131557#I200902131557"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200902131557#I200902131557</id>
-    <updated>2009-02-13T22:41:30Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200902131557" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200902131557#I200902131557" type="I" vanityname="I200902131557" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200902131557/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200902131557
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200902131557.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200902131557/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20090210-0950/eclipse-SDK-I20090210-0950-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200902101800/emf-xsd-SDK-I200902101800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200902041058/mdt-uml2-SDK-3.0.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20090202130207/orbit-S20090202130207.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.3RC2 (S200902101708) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200902101708#S200902101708"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200902101708#S200902101708</id>
-    <updated>2009-02-11T02:24:19Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_2_maintenance" datetime="200902101708" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200902101708#S200902101708" type="S" vanityname="1.2.3RC2" version="1.2.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.3/S200902101708/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200902101708
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.3RC2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.3/S200902101708/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20090204-1400/eclipse-SDK-M20090204-1400-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.2/S200902041010/emf-sdo-xsd-SDK-2.4.2RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.2/S200902101042/mdt-uml2-SDK-2.2.2RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.3.0M5 (S200902041335) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200902041335#S200902041335"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200902041335#S200902041335</id>
-    <updated>2009-02-04T22:38:53Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200902041335" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200902041335#S200902041335" type="S" vanityname="1.3.0M5" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200902041335/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200902041335
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.3.0M5.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200902041335/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M5-200902021535/eclipse-SDK-3.5M5-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200902031500/emf-xsd-SDK-2.5.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200902041058/mdt-uml2-SDK-3.0.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20090202130207/orbit-S20090202130207.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200902031600 (1.3.0.I200902031600) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200902031600#I200902031600"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200902031600#I200902031600</id>
-    <updated>2009-02-03T22:43:27Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200902031600" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200902031600#I200902031600" type="I" vanityname="I200902031600" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200902031600/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200902031600
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200902031600.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200902031600/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20090129-1800/eclipse-SDK-I20090129-1800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200901271800/emf-xsd-SDK-I200901271800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200812151800/emf-xsd-SDK-2.5.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/I200901211303/mdt-uml2-SDK-I200901211303.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20090124200431/orbit-S20090124200431.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200901271600 (1.3.0.I200901271600) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901271600#I200901271600"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901271600#I200901271600</id>
-    <updated>2009-01-27T22:13:04Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200901271600" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901271600#I200901271600" type="I" vanityname="I200901271600" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200901271600/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200901271600
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200901271600.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200901271600/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20090122-0800/eclipse-SDK-I20090122-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200901201800/emf-xsd-SDK-I200901201800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200812151800/emf-xsd-SDK-2.5.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/I200901211303/mdt-uml2-SDK-I200901211303.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20090124200431/orbit-S20090124200431.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200901271329 (1.3.0.I200901271329) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901271329#I200901271329"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901271329#I200901271329</id>
-    <updated>2009-01-27T19:02:46Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200901271329" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901271329#I200901271329" type="I" vanityname="I200901271329" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200901271329/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200901271329
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200901271329.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200901271329/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20090122-0800/eclipse-SDK-I20090122-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200901201800/emf-xsd-SDK-I200901201800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/I200901211303/mdt-uml2-SDK-I200901211303.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20090124200431/orbit-S20090124200431.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200901231238 (1.3.0.I200901231238) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901231238#I200901231238"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901231238#I200901231238</id>
-    <updated>2009-01-23T18:11:08Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200901231238" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901231238#I200901231238" type="I" vanityname="I200901231238" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200901231238/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200901231238
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200901231238.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200901231238/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20090122-0800/eclipse-SDK-I20090122-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200901201800/emf-xsd-SDK-I200901201800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/I200901211303/mdt-uml2-SDK-I200901211303.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20081025033911/orbit-S20081025033911.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200901201600 (1.3.0.I200901201600) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901201600#I200901201600"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901201600#I200901201600</id>
-    <updated>2009-01-20T22:05:51Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200901201600" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901201600#I200901201600" type="I" vanityname="I200901201600" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200901201600/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200901201600
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200901201600.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200901201600/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20090113-0918/eclipse-SDK-I20090113-0918-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200901131800/emf-xsd-SDK-I200901131800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200812151800/emf-xsd-SDK-2.5.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200812221002/mdt-uml2-SDK-3.0.0M4a.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20081025033911/orbit-S20081025033911.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200901131906 (1.3.0.I200901131906) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901131906#I200901131906"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901131906#I200901131906</id>
-    <updated>2009-01-14T01:25:16Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200901131906" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901131906#I200901131906" type="I" vanityname="I200901131906" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200901131906/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200901131906
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200901131906.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200901131906/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20090113-0918/eclipse-SDK-I20090113-0918-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200901061800/emf-xsd-SDK-I200901061800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200812221002/mdt-uml2-SDK-3.0.0M4a.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20081025033911/orbit-S20081025033911.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200901070919 (1.2.3.M200901070919) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200901070919#M200901070919"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200901070919#M200901070919</id>
-    <updated>2009-01-07T15:28:31Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_2_maintenance" datetime="200901070919" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200901070919#M200901070919" type="M" vanityname="M200901070919" version="1.2.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.3/M200901070919/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=M200901070919
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-M200901070919.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.3/M200901070919/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.4.1-200809111700/eclipse-SDK-3.4.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.1/R200808251517/emf-sdo-xsd-SDK-2.4.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.1/R200808261340/mdt-uml2-SDK-2.2.1.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200901061600 (1.3.0.I200901061600) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901061600#I200901061600"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901061600#I200901061600</id>
-    <updated>2009-01-06T22:04:52Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200901061600" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200901061600#I200901061600" type="I" vanityname="I200901061600" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200901061600/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200901061600
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200901061600.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200901061600/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M4-200812111908/eclipse-SDK-3.5M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200812091800/emf-xsd-SDK-I200812091800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200812301800/emf-xsd-SDK-I200812301800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200812221002/mdt-uml2-SDK-3.0.0M4a.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20081025033911/orbit-S20081025033911.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200812310804 (1.3.0.I200812310804) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200812310804#I200812310804"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200812310804#I200812310804</id>
-    <updated>2008-12-31T13:54:42Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200812310804" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200812310804#I200812310804" type="I" vanityname="I200812310804" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200812310804/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200812310804
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200812310804.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200812310804/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M4-200812111908/eclipse-SDK-3.5M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200812301800/emf-xsd-SDK-I200812301800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200812221002/mdt-uml2-SDK-3.0.0M4a.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20081025033911/orbit-S20081025033911.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200812231600 (1.3.0.I200812231600) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200812231600#I200812231600"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200812231600#I200812231600</id>
-    <updated>2008-12-23T22:05:19Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200812231600" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200812231600#I200812231600" type="I" vanityname="I200812231600" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200812231600/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200812231600
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200812231600.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200812231600/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M4-200812111908/eclipse-SDK-3.5M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200812091800/emf-xsd-SDK-I200812091800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200812151800/emf-xsd-SDK-2.5.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20081025033911/orbit-S20081025033911.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200812161215/mdt-uml2-SDK-3.0.0M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.3.0M4 (S200812171440) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200812171440#S200812171440"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200812171440#S200812171440</id>
-    <updated>2008-12-17T20:45:13Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200812171440" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200812171440#S200812171440" type="S" vanityname="1.3.0M4" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200812171440/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200812171440
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.3.0M4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200812171440/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M4-200812111908/eclipse-SDK-3.5M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200812151800/emf-xsd-SDK-2.5.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20081025033911/orbit-S20081025033911.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200812161215/mdt-uml2-SDK-3.0.0M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200812091600 (1.3.0.I200812091600) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200812091600#I200812091600"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200812091600#I200812091600</id>
-    <updated>2008-12-09T22:05:46Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200812091600" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200812091600#I200812091600" type="I" vanityname="I200812091600" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200812091600/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200812091600
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200812091600.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200812091600/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20081209-0100/eclipse-SDK-I20081209-0100-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20081025033911/orbit-S20081025033911.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200811251800/emf-sdo-xsd-SDK-I200811251800.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200811051048/mdt-uml2-SDK-3.0.0M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200812021600 (1.3.0.I200812021600) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200812021600#I200812021600"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200812021600#I200812021600</id>
-    <updated>2008-12-03T13:40:47Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200812021600" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200812021600#I200812021600" type="I" vanityname="I200812021600" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200812021600/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200812021600
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200812021600.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200812021600/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20081125-0840/eclipse-SDK-I20081125-0840-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20081025033911/orbit-S20081025033911.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200811251800/emf-sdo-xsd-SDK-I200811251800.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200811051048/mdt-uml2-SDK-3.0.0M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200811251600 (1.3.0.I200811251600) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200811251600#I200811251600"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200811251600#I200811251600</id>
-    <updated>2008-11-26T03:33:20Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200811251600" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200811251600#I200811251600" type="I" vanityname="I200811251600" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200811251600/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200811251600
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200811251600.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200811251600/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20081112-1200/eclipse-SDK-I20081112-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20081025033911/orbit-S20081025033911.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200811181800/emf-sdo-xsd-SDK-I200811181800.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200811051048/mdt-uml2-SDK-3.0.0M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200811191813 (1.3.0.I200811191813) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200811191813#I200811191813"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200811191813#I200811191813</id>
-    <updated>2008-11-20T00:09:39Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200811191813" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200811191813#I200811191813" type="I" vanityname="I200811191813" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200811191813/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200811191813
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200811191813.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200811191813/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20081112-1200/eclipse-SDK-I20081112-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20081025033911/orbit-S20081025033911.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200811181800/emf-sdo-xsd-SDK-I200811181800.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200811051048/mdt-uml2-SDK-3.0.0M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.3.0M3 (S200811051142) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200811051142#S200811051142"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200811051142#S200811051142</id>
-    <updated>2008-11-05T18:29:36Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200811051142" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200811051142#S200811051142" type="S" vanityname="1.3.0M3" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200811051142/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200811051142
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.3.0M3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200811051142/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M3-200810301917/eclipse-SDK-3.5M3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20081025033911/orbit-S20081025033911.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200811032126/emf-sdo-xsd-SDK-2.5.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200811051048/mdt-uml2-SDK-3.0.0M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200811021527 (1.3.0.I200811021527) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200811021527#I200811021527"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200811021527#I200811021527</id>
-    <updated>2008-11-02T21:53:42Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200811021527" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200811021527#I200811021527" type="I" vanityname="I200811021527" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200811021527/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200811021527
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200811021527.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200811021527/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20081028-2000/eclipse-SDK-I20081028-2000-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/I200810071911/mdt-uml2-SDK-I200810071911.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20081025033911/orbit-S20081025033911.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200810291305/emf-sdo-xsd-SDK-I200810291305.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200811021306 (1.2.3.M200811021306) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200811021306#M200811021306"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200811021306#M200811021306</id>
-    <updated>2008-11-02T18:45:29Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_2_maintenance" datetime="200811021306" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200811021306#M200811021306" type="M" vanityname="M200811021306" version="1.2.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.3/M200811021306/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=M200811021306
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-M200811021306.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.3/M200811021306/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.4.1-200809111700/eclipse-SDK-3.4.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.1/R200808251517/emf-sdo-xsd-SDK-2.4.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.1/R200808261340/mdt-uml2-SDK-2.2.1.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200810152219 (1.3.0.I200810152219) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200810152219#I200810152219"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200810152219#I200810152219</id>
-    <updated>2008-10-16T03:28:02Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200810152219" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200810152219#I200810152219" type="I" vanityname="I200810152219" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200810152219/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200810152219
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200810152219.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200810152219/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20081014-1600/eclipse-SDK-I20081014-1600-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200810141800/emf-sdo-xsd-SDK-I200810141800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/I200810071911/mdt-uml2-SDK-I200810071911.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200810112129 (1.3.0.I200810112129) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200810112129#I200810112129"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200810112129#I200810112129</id>
-    <updated>2008-10-12T02:26:42Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200810112129" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200810112129#I200810112129" type="I" vanityname="I200810112129" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200810112129/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200810112129
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200810112129.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200810112129/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20081007-1600/eclipse-SDK-I20081007-1600-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200809301800/emf-sdo-xsd-SDK-I200809301800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/I200810071911/mdt-uml2-SDK-I200810071911.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200810101330 (1.2.3.M200810101330) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200810101330#M200810101330"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200810101330#M200810101330</id>
-    <updated>2008-10-10T18:02:18Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_2_maintenance" datetime="200810101330" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200810101330#M200810101330" type="M" vanityname="M200810101330" version="1.2.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.3/M200810101330/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=M200810101330
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-M200810101330.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.3/M200810101330/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.4.1-200809111700/eclipse-SDK-3.4.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.1/R200808251517/emf-sdo-xsd-SDK-2.4.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.1/R200808261340/mdt-uml2-SDK-2.2.1.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.3.0M2 (S200809241410) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200809241410#S200809241410"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200809241410#S200809241410</id>
-    <updated>2008-09-24T19:06:10Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200809241410" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200809241410#S200809241410" type="S" vanityname="1.3.0M2" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200809241410/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200809241410
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.3.0M2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200809241410/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M2-200809180100/eclipse-SDK-3.5M2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200809161800/emf-sdo-xsd-SDK-I200809161800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200809231800/emf-sdo-xsd-SDK-2.5.0M2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/I200809021920/mdt-uml2-SDK-I200809021920.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200809240156/mdt-uml2-SDK-3.0.0M2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200809211644 (1.3.0.I200809211644) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200809211644#I200809211644"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200809211644#I200809211644</id>
-    <updated>2008-09-21T21:34:23Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200809211644" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200809211644#I200809211644" type="I" vanityname="I200809211644" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200809211644/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200809211644
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200809211644.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200809211644/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M2-200809180100/eclipse-SDK-3.5M2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200809161800/emf-sdo-xsd-SDK-I200809161800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.2 (R200809160927) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200809160927#R200809160927"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200809160927#R200809160927</id>
-    <updated>2008-09-16T15:49:58Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_2_maintenance" datetime="200809160927" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200809160927#R200809160927" type="R" vanityname="1.2.2" version="1.2.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.2/R200809160927/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=R200809160927
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.2/R200809160927/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M-3.4.1RC3-200809111700/eclipse-SDK-3.4.1RC3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.1/R200808251517/emf-sdo-xsd-SDK-2.4.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200809101756 (1.3.0.I200809101756) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200809101756#I200809101756"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200809101756#I200809101756</id>
-    <updated>2008-09-11T00:54:18Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200809101756" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200809101756#I200809101756" type="I" vanityname="I200809101756" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200809101756/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200809101756
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200809101756.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200809101756/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080903-1200/eclipse-SDK-I20080903-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200809021800/emf-sdo-xsd-SDK-I200809021800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200809101600 (1.2.2.M200809101600) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200809101600#M200809101600"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200809101600#M200809101600</id>
-    <updated>2008-09-10T21:12:51Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_2_maintenance" datetime="200809101600" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200809101600#M200809101600" type="M" vanityname="M200809101600" version="1.2.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.2/M200809101600/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=M200809101600
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-M200809101600.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.2/M200809101600/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20080903-2000/eclipse-SDK-M20080903-2000-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.1/R200808251517/emf-sdo-xsd-SDK-2.4.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.1/M200808261340/mdt-uml2-SDK-M200808261340.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200809031221 (1.2.2.M200809031221) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200809031221#M200809031221"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200809031221#M200809031221</id>
-    <updated>2008-09-03T17:01:08Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_2_maintenance" datetime="200809031221" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200809031221#M200809031221" type="M" version="1.2.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.2/M200809031221/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=M200809031221
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-M200809031221.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.2/M200809031221/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20080827-2000/eclipse-SDK-M20080827-2000-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.1/R200808251517/emf-sdo-xsd-SDK-2.4.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200808302022 (1.3.0.I200808302022) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200808302022#I200808302022"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200808302022#I200808302022</id>
-    <updated>2008-08-31T00:48:52Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200808302022" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200808302022#I200808302022" type="I" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200808302022/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200808302022
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200808302022.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200808302022/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M1-200808071402/eclipse-SDK-3.5M1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200808261800/emf-sdo-xsd-SDK-I200808261800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200808290729 (1.2.2.M200808290729) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200808290729#M200808290729"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200808290729#M200808290729</id>
-    <updated>2008-08-29T13:11:48Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_2_maintenance" datetime="200808290729" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200808290729#M200808290729" type="M" version="1.2.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.2/M200808290729/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=M200808290729
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-M200808290729.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.2/M200808290729/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20080827-2000/eclipse-SDK-M20080827-2000-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.1/R200808251517/emf-sdo-xsd-SDK-2.4.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.1/M200808261340/mdt-uml2-SDK-M200808261340.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.3.0M1 (S200808131221) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200808131221#S200808131221"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200808131221#S200808131221</id>
-    <updated>2008-08-13T18:15:59Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200808131221" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200808131221#S200808131221" type="S" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200808131221/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200808131221
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.3.0M1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/S200808131221/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M1-200808071402/eclipse-SDK-3.5M1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200808111043/emf-sdo-xsd-SDK-2.5.0M1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.1 (R200808130848) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200808130848#R200808130848"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200808130848#R200808130848</id>
-    <updated>2008-08-13T14:14:03Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_2_maintenance" datetime="200808130848" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200808130848#R200808130848" type="R" version="1.2.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.1/R200808130848/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=R200808130848
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.1/R200808130848/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20080808-1752/eclipse-SDK-M20080808-1752-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.1/M200808060807/emf-sdo-xsd-SDK-M200808060807.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080807152315/orbit-R20080807152315.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200808061438 (1.3.0.I200808061438) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200808061438#I200808061438"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200808061438#I200808061438</id>
-    <updated>2008-08-06T19:06:06Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200808061438" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200808061438#I200808061438" type="I" version="1.3.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200808061438/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200808061438
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200808061438.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.3.0/I200808061438/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080805-1307/eclipse-SDK-I20080805-1307-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200808060700/emf-sdo-xsd-SDK-I200808060700.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080611105805/orbit-R20080611105805.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200807301501 (1.2.1.M200807301501) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200807301501#M200807301501"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200807301501#M200807301501</id>
-    <updated>2008-07-30T20:46:08Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_2_maintenance" datetime="200807301501" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200807301501#M200807301501" type="M" version="1.2.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.1/M200807301501/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=M200807301501
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-M200807301501.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.1/M200807301501/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20080724-0918/eclipse-SDK-M20080724-0918-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.1/M200807231502/emf-sdo-xsd-SDK-M200807231502.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080611105805/orbit-R20080611105805.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200807161339 (1.2.1.M200807161339) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200807161339#M200807161339"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200807161339#M200807161339</id>
-    <updated>2008-07-16T18:18:07Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_2_maintenance" datetime="200807161339" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200807161339#M200807161339" type="M" version="1.2.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.1/M200807161339/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=M200807161339
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-M200807161339.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.1/M200807161339/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20080703-0800/eclipse-SDK-M20080703-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.1/M200807151800/emf-sdo-xsd-SDK-M200807151800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080611105805/orbit-R20080611105805.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.0 (R200806091714) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200806091714#R200806091714"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200806091714#R200806091714</id>
-    <updated>2008-06-26T10:30:59Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200806091714" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200806091714#R200806091714" type="R" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/R200806091714/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=R200806091714
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.0.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/R200806091714/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.4-200806172000/eclipse-SDK-3.4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/R200806091234/emf-sdo-xsd-SDK-2.4.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080611105805/orbit-R20080611105805.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.0 (R200806091714) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200806091714#R200806091714"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200806091714#R200806091714</id>
-    <updated>2008-06-24T14:03:29Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200806091714" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200806091714#R200806091714" type="R" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/R200806091714/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=R200806091714
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.0.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/R200806091714/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.4-200806172000/eclipse-SDK-3.4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/R200806091234/emf-sdo-xsd-SDK-2.4.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R20080611105805/orbit-R20080611105805.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.0RC4 (S200806091714) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200806091714#S200806091714"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200806091714#S200806091714</id>
-    <updated>2008-06-09T23:50:51Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200806091714" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200806091714#S200806091714" type="S" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200806091714/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200806091714
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.0RC4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200806091714/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4RC3-200805301730/eclipse-SDK-3.4RC3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20080605234217/orbit-S20080605234217.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200806091234/emf-sdo-xsd-SDK-2.4.0RC4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200806091546/mdt-uml2-SDK-2.2.0RC4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.0RC3 (S200806031603) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200806031603#S200806031603"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200806031603#S200806031603</id>
-    <updated>2008-06-04T02:34:28Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200806031603" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200806031603#S200806031603" type="S" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200806031603/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200806031603
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.0RC3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200806031603/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4RC3-200805301730/eclipse-SDK-3.4RC3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200805270322/mdt-uml2-SDK-2.2.0RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20080527182727/orbit-S20080527182727.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200806021643/emf-sdo-xsd-SDK-2.4.0RC3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.0RC1 (S200805201800) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200805201800#S200805201800"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200805201800#S200805201800</id>
-    <updated>2008-05-21T16:24:44Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200805201800" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200805201800#S200805201800" type="S" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200805201800/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200805201800
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.0RC1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200805201800/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080516-1333/eclipse-SDK-I20080516-1333-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200805052208/mdt-uml2-SDK-2.2.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20080427194908/orbit-S20080427194908.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200805201049/emf-sdo-xsd-SDK-2.4.0RC1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200805131600 (1.2.0.I200805131600) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200805131600#I200805131600"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200805131600#I200805131600</id>
-    <updated>2008-05-13T21:02:40Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200805131600" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200805131600#I200805131600" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200805131600/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200805131600
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200805131600.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200805131600/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4M7-200805020100/eclipse-SDK-3.4M7-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/I200805121800/emf-sdo-xsd-SDK-I200805121800.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200805052208/mdt-uml2-SDK-2.2.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20080427194908/orbit-S20080427194908.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.0M7 (S200805061053) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200805061053#S200805061053"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200805061053#S200805061053</id>
-    <updated>2008-05-06T17:51:17Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200805061053" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200805061053#S200805061053" type="S" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200805061053/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200805061053
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.0M7.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200805061053/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4M7-200805020100/eclipse-SDK-3.4M7-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200805052017/emf-sdo-xsd-SDK-2.4.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200805052208/mdt-uml2-SDK-2.2.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20080427194908/orbit-S20080427194908.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200804301800 (1.2.0.I200804301800) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200804301800#I200804301800"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200804301800#I200804301800</id>
-    <updated>2008-04-30T23:00:46Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200804301800" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200804301800#I200804301800" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200804301800/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200804301800
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200804301800.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200804301800/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080429-0100/eclipse-SDK-I20080429-0100-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20080427194908/orbit-S20080427194908.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200804291800/emf-sdo-xsd-SDK-I200804291800.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200804291920/mdt-uml2-SDK-I200804291920.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200804231800 (1.2.0.I200804231800) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200804231800#I200804231800"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200804231800#I200804231800</id>
-    <updated>2008-04-23T23:03:49Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200804231800" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200804231800#I200804231800" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200804231800/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200804231800
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200804231800.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200804231800/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080422-0800/eclipse-SDK-I20080422-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20080326131619/orbit-S20080326131619.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200804221800/emf-sdo-xsd-SDK-I200804221800.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200804200420/mdt-uml2-SDK-I200804200420.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.0M6 (S200804020135) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200804020135#S200804020135"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200804020135#S200804020135</id>
-    <updated>2008-04-02T18:20:15Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200804020135" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200804020135#S200804020135" type="S" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200804020135/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200804020135
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.0M6.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200804020135/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4M6-200803301350/eclipse-SDK-3.4M6-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20080326131619/orbit-S20080326131619.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200804012208/emf-sdo-xsd-SDK-2.4.0M6.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/S200804020110/mdt-uml2-SDK-2.2.0M6.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200803281715 (1.2.0.I200803281715) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200803281715#I200803281715"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200803281715#I200803281715</id>
-    <updated>2008-03-28T21:42:39Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200803281715" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200803281715#I200803281715" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200803281715/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200803281715
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200803281715.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200803281715/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080327-2251/eclipse-SDK-I20080327-2251-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20080326131619/orbit-S20080326131619.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200803181800/emf-sdo-xsd-SDK-I200803181800.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200803271620/mdt-uml2-SDK-I200803271620.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200803271800 (1.2.0.I200803271800) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200803271800#I200803271800"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200803271800#I200803271800</id>
-    <updated>2008-03-27T23:03:12Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200803271800" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200803271800#I200803271800" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200803271800/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200803271800
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200803271800.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200803271800/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080327-0100/eclipse-SDK-I20080327-0100-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20080326131619/orbit-S20080326131619.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200803260135/emf-sdo-xsd-SDK-I200803260135.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200803271620/mdt-uml2-SDK-I200803271620.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200803191800 (1.2.0.I200803191800) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200803191800#I200803191800"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200803191800#I200803191800</id>
-    <updated>2008-03-19T23:01:41Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200803191800" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200803191800#I200803191800" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200803191800/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200803191800
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200803191800.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200803191800/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080305-1100/eclipse-SDK-I20080305-1100-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/I20080228221323/orbit-I20080228221323.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200803181800/emf-sdo-xsd-SDK-I200803181800.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200803111920/mdt-uml2-SDK-I200803111920.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200803121800 (1.2.0.I200803121800) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200803121800#I200803121800"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200803121800#I200803121800</id>
-    <updated>2008-03-12T23:02:05Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200803121800" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200803121800#I200803121800" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200803121800/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200803121800
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200803121800.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200803121800/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080305-1100/eclipse-SDK-I20080305-1100-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/I20080228221323/orbit-I20080228221323.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200803111800/emf-sdo-xsd-SDK-I200803111800.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200803111920/mdt-uml2-SDK-I200803111920.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.1.2 (R200711281212) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200711281212#R200711281212"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200711281212#R200711281212</id>
-    <updated>2008-02-28T16:42:25Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_1_maintenance" datetime="200711281212" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200711281212#R200711281212" type="R" version="1.1.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.2/R200711281212/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=R200711281212
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-1.1.2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.2/R200711281212/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://archive.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/R200706262000/emf-sdo-xsd-SDK-2.3.0.zip</dependency>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.0/R200706251652/mdt-uml2-SDK-2.1.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R200706192011/orbit-R200706192011.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200802271900 (1.2.0.I200802271900) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200802271900#I200802271900"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200802271900#I200802271900</id>
-    <updated>2008-02-28T00:55:26Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200802271900" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200802271900#I200802271900" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200802271900/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200802271900
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200802271900.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200802271900/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080222-1622/eclipse-SDK-I20080222-1622-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200712072116/orbit-S200712072116.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200802261800/emf-sdo-xsd-SDK-I200802261800.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200802271725/mdt-uml2-SDK-I200802271725.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.0M5 (S200802121700) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200802121700#S200802121700"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200802121700#S200802121700</id>
-    <updated>2008-02-12T22:33:33Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200802121700" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200802121700#S200802121700" type="S" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200802121700/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200802121700
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.0M5.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200802121700/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080207-1530/eclipse-SDK-I20080207-1530-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200712072116/orbit-S200712072116.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200802090050/emf-sdo-xsd-SDK-2.4.0M5.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/S200802121122/mdt-uml2-SDK-2.2.0M5.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200802071021 (1.2.0.I200802071021) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200802071021#I200802071021"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200802071021#I200802071021</id>
-    <updated>2008-02-07T15:41:10Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200802071021" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200802071021#I200802071021" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200802071021/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200802071021
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200802071021.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200802071021/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080205-0010/eclipse-SDK-I20080205-0010-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S20080203062035/orbit-S20080203062035.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200802052000/emf-sdo-xsd-SDK-I200802052000.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200802052200/mdt-uml2-SDK-I200802052200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200802062000 (1.2.0.I200802062000) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200802062000#I200802062000"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200802062000#I200802062000</id>
-    <updated>2008-02-07T01:56:21Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200802062000" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200802062000#I200802062000" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200802062000/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200802062000
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200802062000.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200802062000/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080205-0010/eclipse-SDK-I20080205-0010-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200712072116/orbit-S200712072116.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200802052000/emf-sdo-xsd-SDK-I200802052000.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200802052200/mdt-uml2-SDK-I200802052200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200801162020 (1.2.0.I200801162020) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200801162020#I200801162020"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200801162020#I200801162020</id>
-    <updated>2008-01-17T05:34:32Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200801162020" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200801162020#I200801162020" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200801162020/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200801162020
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200801162020.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200801162020/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080115-0800/eclipse-SDK-I20080115-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200712072116/orbit-S200712072116.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200801152000/emf-sdo-xsd-SDK-I200801152000.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200801152200/mdt-uml2-SDK-I200801152200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200801031555 (1.2.0.I200801031555) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200801031555#I200801031555"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200801031555#I200801031555</id>
-    <updated>2008-01-03T21:10:28Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200801031555" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200801031555#I200801031555" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200801031555/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200801031555
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200801031555.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200801031555/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200712072116/orbit-S200712072116.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200712160044/emf-sdo-xsd-SDK-2.4.0M4.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/S200712170918/mdt-uml2-SDK-2.2.0M4.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/S-3.4M4-200712131700/eclipse-SDK-3.4M4-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.0M4 (S200712171124) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200712171124#S200712171124"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200712171124#S200712171124</id>
-    <updated>2007-12-17T19:24:19Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200712171124" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200712171124#S200712171124" type="S" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200712171124/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200712171124
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.0M4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200712171124/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200712072116/orbit-S200712072116.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200712160044/emf-sdo-xsd-SDK-2.4.0M4.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/S200712170918/mdt-uml2-SDK-2.2.0M4.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/S-3.4M4-200712131700/eclipse-SDK-3.4M4-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200712121716 (1.2.0.I200712121716) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200712121716#I200712121716"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200712121716#I200712121716</id>
-    <updated>2007-12-12T22:29:18Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200712121716" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200712121716#I200712121716" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200712121716/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200712121716
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200712121716.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200712121716/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20071211-0010/eclipse-SDK-I20071211-0010-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/I200711291020/mdt-uml2-SDK-I200711291020.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200712072116/orbit-S200712072116.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200712112000/emf-sdo-xsd-SDK-I200712112000.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200712061132 (1.2.0.I200712061132) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200712061132#I200712061132"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200712061132#I200712061132</id>
-    <updated>2007-12-06T18:30:48Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200712061132" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200712061132#I200712061132" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200712061132/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200712061132
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200712061132.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200712061132/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20071127-0800/eclipse-SDK-I20071127-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/I200711291020/mdt-uml2-SDK-I200711291020.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/committers/drops/I200712030824/orbit-I200712030824.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200712042004/emf-sdo-xsd-SDK-I200712042004.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200711281424 (1.2.0.I200711281424) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711281424#I200711281424"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711281424#I200711281424</id>
-    <updated>2007-11-28T19:43:19Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200711281424" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711281424#I200711281424" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200711281424/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200711281424
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200711281424.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200711281424/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20071120-1300/eclipse-SDK-I20071120-1300-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200710221836/orbit-S200710221836.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200711272121/emf-sdo-xsd-SDK-I200711272121.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/S200711121155/mdt-uml2-SDK-2.2.0M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200711281212 (1.1.2.M200711281212) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200711281212#M200711281212"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200711281212#M200711281212</id>
-    <updated>2007-11-28T18:52:15Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_1_maintenance" datetime="200711281212" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200711281212#M200711281212" type="M" version="1.1.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.2/M200711281212/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=M200711281212
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-M200711281212.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.2/M200711281212/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://archive.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/R200706262000/emf-sdo-xsd-SDK-2.3.0.zip</dependency>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R200706192011/orbit-R200706192011.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/R200706251652/mdt-uml2-SDK-2.1.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200711221232 (1.2.0.I200711221232) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711221232#I200711221232"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711221232#I200711221232</id>
-    <updated>2007-11-22T17:58:27Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200711221232" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711221232#I200711221232" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200711221232/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200711221232
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200711221232.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200711221232/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20071113-0800/eclipse-SDK-I20071113-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200710221836/orbit-S200710221836.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200711202121/emf-sdo-xsd-SDK-I200711202121.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/S200711121155/mdt-uml2-SDK-2.2.0M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.0M3 (S200711121359) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200711121359#S200711121359"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200711121359#S200711121359</id>
-    <updated>2007-11-12T21:45:40Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200711121359" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200711121359#S200711121359" type="S" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200711121359/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200711121359
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-1.2.0M3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200711121359/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.4M3-200711012000/eclipse-SDK-3.4M3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200710221836/orbit-S200710221836.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200711062140/emf-sdo-xsd-SDK-2.4.0M3.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/S200711121155/mdt-uml2-SDK-2.2.0M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200711081733 (1.2.0.I200711081733) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711081733#I200711081733"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711081733#I200711081733</id>
-    <updated>2007-11-08T22:54:20Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200711081733" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711081733#I200711081733" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200711081733/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200711081733
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200711081733.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200711081733/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.4M3-200711012000/eclipse-SDK-3.4M3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200710221836/orbit-S200710221836.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200711062140/emf-sdo-xsd-SDK-2.4.0M3.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200711021052/mdt-uml2-SDK-I200711021052.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200711081506 (1.2.0.I200711081506) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711081506#I200711081506"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711081506#I200711081506</id>
-    <updated>2007-11-08T21:41:19Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200711081506" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711081506#I200711081506" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200711081506/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200711081506
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200711081506.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200711081506/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.4M3-200711012000/eclipse-SDK-3.4M3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200710221836/orbit-S200710221836.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200711062140/emf-sdo-xsd-SDK-2.4.0M3.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200711021052/mdt-uml2-SDK-I200711021052.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200711021618 (1.2.0.I200711021618) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711021618#I200711021618"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711021618#I200711021618</id>
-    <updated>2007-11-02T20:31:42Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200711021618" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200711021618#I200711021618" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200711021618/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200711021618
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200711021618.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200711021618/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20071030-0010/eclipse-SDK-I20071030-0010-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/I200710311431/emf-sdo-xsd-SDK-I200710311431.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200710221836/orbit-S200710221836.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200711021052/mdt-uml2-SDK-I200711021052.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200710251333 (1.2.0.I200710251333) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200710251333#I200710251333"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200710251333#I200710251333</id>
-    <updated>2007-10-25T18:06:13Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200710251333" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200710251333#I200710251333" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200710251333/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200710251333
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200710251333.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200710251333/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20071023-0800/eclipse-SDK-I20071023-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200709171331/orbit-S200709171331.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200710232100/emf-sdo-xsd-SDK-I200710232100.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200710251013/mdt-uml2-SDK-I200710251013.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200710171533 (1.2.0.I200710171533) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200710171533#I200710171533"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200710171533#I200710171533</id>
-    <updated>2007-10-17T19:53:29Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200710171533" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200710171533#I200710171533" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200710171533/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200710171533
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-all-SDK-I200710171533.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200710171533/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20071010-1200/eclipse-SDK-I20071010-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200709171331/orbit-S200709171331.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200710161924/emf-sdo-xsd-SDK-I200710161924.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/S200710031132/mdt-uml2-SDK-2.2M2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.2.0M2 (1.2.0.S200710031157) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200710031157#S200710031157"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200710031157#S200710031157</id>
-    <updated>2007-10-03T16:43:57Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200710031157" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200710031157#S200710031157" type="S" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200710031157/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200710031157
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-1.2M2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/S200710031157/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.4M2-200709210919/eclipse-SDK-3.4M2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R200706192011/orbit-R200706192011.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200709260024/emf-sdo-xsd-SDK-2.4.0M2.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/S200710031132/mdt-uml2-SDK-2.2M2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200709261803 (1.2.0.I200709261803) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200709261803#I200709261803"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200709261803#I200709261803</id>
-    <updated>2007-09-26T22:18:20Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200709261803" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200709261803#I200709261803" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200709261803/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200709261803
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200709261803.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200709261803/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.4M2-200709210919/eclipse-SDK-3.4M2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R200706192011/orbit-R200706192011.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200709260024/emf-sdo-xsd-SDK-2.4.0M2.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200709211011/mdt-uml2-SDK-I200709211011.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200709261645 (1.2.0.I200709261645) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200709261645#I200709261645"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200709261645#I200709261645</id>
-    <updated>2007-09-26T21:07:20Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200709261645" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200709261645#I200709261645" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200709261645/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200709261645
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200709261645.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200709261645/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.4M2-200709210919/eclipse-SDK-3.4M2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R200706192011/orbit-R200706192011.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200709260024/emf-sdo-xsd-SDK-2.4.0M2.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200709211011/mdt-uml2-SDK-I200709211011.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.1.1 (R200709121604) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200709121604#R200709121604"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200709121604#R200709121604</id>
-    <updated>2007-09-26T15:16:37Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_1_maintenance" datetime="200709121604" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200709121604#R200709121604" type="R" version="1.1.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.1/R200709121604/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=R200709121604
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-1.1.1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.1/R200709121604/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/R200706262000/emf-sdo-xsd-SDK-2.3.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.0/R200706251652/mdt-uml2-SDK-2.1.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R200706192011/orbit-R200706192011.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200709211125 (1.2.0.I200709211125) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200709211125#I200709211125"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200709211125#I200709211125</id>
-    <updated>2007-09-21T15:43:44Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200709211125" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200709211125#I200709211125" type="I" version="1.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200709211125/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200709211125
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200709211125.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.2.0/I200709211125/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20070920-0936/eclipse-SDK-I20070920-0936-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/I200709201448/emf-sdo-xsd-SDK-I200709201448.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R200706192011/orbit-R200706192011.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.2.0/I200709211011/mdt-uml2-SDK-I200709211011.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200709121604 (1.1.1.M200709121604) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200709121604#M200709121604"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200709121604#M200709121604</id>
-    <updated>2007-09-12T20:23:30Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_1_maintenance" datetime="200709121604" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200709121604#M200709121604" type="M" version="1.1.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.1/M200709121604/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=M200709121604
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-M200709121604.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.1/M200709121604/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/R200706262000/emf-sdo-xsd-SDK-2.3.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R200706192011/orbit-R200706192011.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/R200706251652/mdt-uml2-SDK-2.1.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200707131137 (1.1.1.M200707131137) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200707131137#M200707131137"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200707131137#M200707131137</id>
-    <updated>2007-07-13T16:24:21Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_1_maintenance" datetime="200707131137" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200707131137#M200707131137" type="M" version="1.1.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.1/M200707131137/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=M200707131137
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-M200707131137.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.1/M200707131137/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/R200706262000/emf-sdo-xsd-SDK-2.3.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/committers/drops/R200706192011/orbit-R200706192011.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/R200706251652/mdt-uml2-SDK-2.1.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.1 (1.1.0.R200706201142) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200706201142#R200706201142"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200706201142#R200706201142</id>
-    <updated>2007-06-28T14:47:03Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706201142" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200706201142#R200706201142" type="R" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/R200706201142/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=R200706201142
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-1.1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/R200706201142/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/R200706262000/emf-sdo-xsd-SDK-2.3.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.0/R200706251652/mdt-uml2-SDK-2.1.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/R200706192011/orbit-R200706192011.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.1RC4 (1.1.0.S200706201142) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200706201142#S200706201142"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200706201142#S200706201142</id>
-    <updated>2007-06-20T18:24:03Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706201142" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200706201142#S200706201142" type="S" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/S200706201142/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200706201142
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-1.1RC4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/S200706201142/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC4-200706081718/eclipse-SDK-3.3RC4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200706200000/emf-sdo-xsd-SDK-2.3.0RC4.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/committers/drops/R200706192011/orbit-R200706192011.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/S200706141134/mdt-uml2-SDK-2.1RC3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.1RC3 (1.1.0.S200706131106) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200706131106#S200706131106"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200706131106#S200706131106</id>
-    <updated>2007-06-13T17:55:08Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706131106" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200706131106#S200706131106" type="S" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/S200706131106/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200706131106
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-1.1RC3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/S200706131106/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC3-200706011539/eclipse-SDK-3.3RC3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200706081908/orbit-S200706081908.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/S200706130003/emf-sdo-xsd-SDK-2.3.0RC3.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/S200706051155/mdt-uml2-SDK-2.1RC2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200706071327 (1.1.0.I200706071327) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200706071327#I200706071327"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200706071327#I200706071327</id>
-    <updated>2007-06-07T19:29:32Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706071327" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200706071327#I200706071327" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200706071327/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200706071327
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200706071327.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200706071327/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC3-200706011539/eclipse-SDK-3.3RC3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200706061821/emf-sdo-xsd-SDK-I200706061821.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/committers/drops/S200706071352/orbit-S200706071352.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/S200706051155/mdt-uml2-SDK-2.1RC2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.1RC2 (1.1.0.S200705301319) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200705301319#S200705301319"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200705301319#S200705301319</id>
-    <updated>2007-05-30T19:57:28Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200705301319" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200705301319#S200705301319" type="S" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/S200705301319/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200705301319
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-1.1RC2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/S200705301319/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC2-200705251350/eclipse-SDK-3.3RC2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200705300200/emf-sdo-xsd-SDK-2.3.0RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200705242235/orbit-S200705242235.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/S200705251139/mdt-uml2-SDK-2.1RC1a.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.1RC1 (1.1.0.S200705231625) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200705231625#S200705231625"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200705231625#S200705231625</id>
-    <updated>2007-05-24T02:50:38Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200705231625" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200705231625#S200705231625" type="S" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/S200705231625/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200705231625
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-1.1RC1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/S200705231625/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC1-200705171700/eclipse-SDK-3.3RC1-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/S200705230200/emf-sdo-xsd-SDK-2.3.0RC1.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/S200705171545/mdt-uml2-SDK-2.1M7.zip</dependency>
-          <dependency>http://fullmoon/tools/orbit/downloads/drops/S200705222254/orbit-S200705222254.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.1M7 (1.1.0.S200705111356) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200705111356#S200705111356"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200705111356#S200705111356</id>
-    <updated>2007-05-11T18:52:23Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200705111356" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200705111356#S200705111356" type="S" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/S200705111356/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=S200705111356
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-1.1M7.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/S200705111356/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200705021947/orbit-S200705021947.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/S200705110650/emf-sdo-xsd-SDK-2.3.0M7.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/I200705111324/mdt-uml2-SDK-I200705111324.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/S-3.3M7-200705031400/eclipse-SDK-3.3M7-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200705031420 (1.1.0.I200705031420) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200705031420#I200705031420"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200705031420#I200705031420</id>
-    <updated>2007-05-03T19:44:51Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200705031420" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200705031420#I200705031420" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200705031420/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200705031420
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200705031420.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200705031420/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20070501-0010/eclipse-SDK-I20070501-0010-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200705020200/emf-sdo-xsd-SDK-I200705020200.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200703161546/orbit-S200703161546.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/I200705021641/mdt-uml2-SDK-I200705021641.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200704251854 (1.1.0.I200704251854) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704251854#I200704251854"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704251854#I200704251854</id>
-    <updated>2007-04-25T23:14:46Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200704251854" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704251854#I200704251854" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200704251854/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200704251854
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200704251854.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200704251854/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070418-1012/eclipse-SDK-I20070418-1012-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200704250200/emf-sdo-xsd-SDK-I200704250200.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200703161546/orbit-S200703161546.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/I200704251546/mdt-uml2-SDK-I200704251546.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200704200821 (1.1.0.I200704200821) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704200821#I200704200821"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704200821#I200704200821</id>
-    <updated>2007-04-20T13:07:05Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200704200821" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704200821#I200704200821" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200704200821/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200704200821
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200704200821.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200704200821/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070418-1012/eclipse-SDK-I20070418-1012-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200703161546/orbit-S200703161546.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/I200704191605/emf-sdo-xsd-SDK-I200704191605.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/I200704192355/mdt-uml2-SDK-I200704192355.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200704131044 (1.1.0.I200704131044) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704131044#I200704131044"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704131044#I200704131044</id>
-    <updated>2007-04-13T15:18:07Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200704131044" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704131044#I200704131044" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200704131044/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200704131044
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200704131044.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200704131044/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070410-1043/eclipse-SDK-I20070410-1043-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200703161546/orbit-S200703161546.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/I200704121441/emf-sdo-xsd-SDK-I200704121441.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/I200704121352/mdt-uml2-SDK-I200704121352.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200704121504 (1.1.0.I200704121504) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704121504#I200704121504"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704121504#I200704121504</id>
-    <updated>2007-04-12T21:23:26Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200704121504" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704121504#I200704121504" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200704121504/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200704121504
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200704121504.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200704121504/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070410-1043/eclipse-SDK-I20070410-1043-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200703161546/orbit-S200703161546.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/I200704050200/emf-sdo-xsd-SDK-I200704050200.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/I200704121352/mdt-uml2-SDK-I200704121352.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200704051037 (1.1.0.I200704051037) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704051037#I200704051037"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704051037#I200704051037</id>
-    <updated>2007-04-05T15:54:13Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200704051037" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200704051037#I200704051037" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200704051037/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200704051037
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200704051037.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200704051037/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070403-1110/eclipse-SDK-I20070403-1110-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200703161546/orbit-S200703161546.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/I200704050200/emf-sdo-xsd-SDK-I200704050200.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/I200703301423/uml2-SDK-I200703301423.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200703151745 (1.1.0.I200703151745) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200703151745#I200703151745"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200703151745#I200703151745</id>
-    <updated>2007-03-16T14:29:20Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200703151745" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200703151745#I200703151745" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200703151745/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200703151745
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200703151745.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200703151745/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070313-1051/eclipse-SDK-I20070313-1051-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200703150200/emf-sdo-xsd-SDK-I200703150200.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200702082257/orbit-S200702082257.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/I200703151535/uml2-SDK-I200703151535.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200703011208 (1.1.0.I200703011208) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200703011208#I200703011208"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200703011208#I200703011208</id>
-    <updated>2007-03-01T21:31:17Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200703011208" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200703011208#I200703011208" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200703011208/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=I200703011208
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200703011208.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200703011208/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3M5-200702091006/eclipse-SDK-3.3M5-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/orbit/downloads/drops/S200702082257/orbit-S200702082257.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/S200702121527/emf-sdo-xsd-SDK-2.3.0M5.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/S200702222305/uml2-SDK-2.1M5.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.1M5 (1.1.0.S200702141355) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200702141355#S200702141355"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200702141355#S200702141355</id>
-    <updated>2007-02-15T22:30:09Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200702141355" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200702141355#S200702141355" type="S" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/S200702141355/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=1.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-1.1M5.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/S200702141355/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3M5-200702091006/eclipse-SDK-3.3M5-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/downloads/orbit-lpgjavaruntime-1.1.0.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/S200702121527/emf-sdo-xsd-SDK-2.3.0M5.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/I200702091416/uml2-SDK-I200702091416.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.0.2 R200611161546 is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200611161546#R200611161546"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200611161546#R200611161546</id>
-    <updated>2007-02-09T14:29:03Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_0_maintenance" datetime="200611161546" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200611161546#R200611161546" type="R" version="1.0.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.0.2/R200611161546/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=1.0.2
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.0.2/R200611161546/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.2.1-200609210945/eclipse-SDK-3.2.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.2.1/R200609210005/emf-sdo-xsd-SDK-2.2.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200702081544 (1.1.0.I200702081544) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200702081544#I200702081544"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200702081544#I200702081544</id>
-    <updated>2007-02-08T22:04:25Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200702081544" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200702081544#I200702081544" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200702081544/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=1.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200702081544.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200702081544/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070208-1200/eclipse-SDK-I20070208-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/downloads/orbit-lpgjavaruntime-1.1.0.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/I200702071857/emf-sdo-xsd-SDK-I200702071857.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/I200702012039/uml2-SDK-I200702012039.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200702011837 (1.1.0.I200702011837) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&amp;hlbuild=I200702011837#I200702011837"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&amp;hlbuild=I200702011837#I200702011837</id>
-    <updated>2007-02-02T00:27:39Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200702011837" href="http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&amp;hlbuild=I200702011837#I200702011837" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/tools/emf/downloads/drops/1.1.0/I200702011837/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=1.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200702011837.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200702011837/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070130-0800/eclipse-SDK-I20070130-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/I200702010200/emf-sdo-xsd-SDK-I200702010200.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/mdt/uml2/downloads/drops/2.1.0/I200701182158/uml2-SDK-I200701182158.zip</dependency>
-          <dependency>http://emft.eclipse.org/downloads/orbit-lpgjavaruntime-1.0.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200701291654 (1.1.0.I200701291654) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200701291654#I200701291654"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200701291654#I200701291654</id>
-    <updated>2007-01-30T00:17:30Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200701291654" href="http://www.eclipse.org/modeling/mdt/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=I200701291654#I200701291654" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200701291654/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=ocl&amp;version=1.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-ocl-SDK-I200701291654.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/ocl/downloads/drops/1.1.0/I200701291654/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070123-1715/eclipse-SDK-I20070123-1715-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200701250200/emf-sdo-xsd-SDK-I200701250200.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.0/I200701182158/uml2-SDK-I200701182158.zip</dependency>
-          <dependency>http://emft.eclipse.org/downloads/orbit-lpgjavaruntime-1.0.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200612071439 (1.1.0.I200612071439) is available</title>
-    <link href="http://www.eclipse.org/emft/downloads/?showAll=1&amp;hlbuild=I200612071439#I200612071439"/>
-    <id>http://www.eclipse.org/emft/downloads/?showAll=1&amp;hlbuild=I200612071439#I200612071439</id>
-    <updated>2006-12-13T03:54:45Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200612071439" href="http://www.eclipse.org/emft/downloads/?showAll=1&amp;hlbuild=I200612071439#I200612071439" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/tools/emf/downloads/drops/1.1.0/I200612071439/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/technology/emft/updates/</update>
-        <downloads>http://www.eclipse.org/emft/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/emft/news/relnotes.php?project=ocl&amp;version=1.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-ocl-SDK-I200612071439.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.1.0/I200612071439/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20061205-1200/eclipse-SDK-I20061205-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/tools/emf/downloads/drops/2.3.0/I200612071030/emf-sdo-xsd-SDK-I200612071030.zip</dependency>
-          <dependency>http://emf.torolab.ibm.com/tools/orbit/downloads/drops/1.0.0/I200612060942/orbit-lpgjavaruntime-1.0.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl I200612051208 (1.1.0.I200612051208) is available</title>
-    <link href="http://www.eclipse.org/emft/downloads/?showAll=1&amp;hlbuild=I200612051208#I200612051208"/>
-    <id>http://www.eclipse.org/emft/downloads/?showAll=1&amp;hlbuild=I200612051208#I200612051208</id>
-    <updated>2006-12-13T03:54:33Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200612051208" href="http://www.eclipse.org/emft/downloads/?showAll=1&amp;hlbuild=I200612051208#I200612051208" type="I" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/tools/emf/downloads/drops/1.1.0/I200612051208/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/technology/emft/updates/</update>
-        <downloads>http://www.eclipse.org/emft/downloads/?project=ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/emft/news/relnotes.php?project=ocl&amp;version=1.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-ocl-SDK-I200612051208.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.1.0/I200612051208/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.3.0/I200611300000/emf-sdo-xsd-SDK-I200611300000.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/S-3.3M3-200611021715/eclipse-SDK-3.3M3-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.1M3 (1.1.0.S200611160858) is available</title>
-    <link href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200611160858#S200611160858"/>
-    <id>http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200611160858#S200611160858</id>
-    <updated>2006-11-21T21:22:07Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200611160858" href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200611160858#S200611160858" type="S" version="1.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.1.0/S200611160858/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/technology/emft/updates/?project=ocl</update>
-        <downloads>http://www.eclipse.org/emft/downloads/?project=ocl#ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/emft/news/relnotes.php?project=ocl&amp;amp;version=1.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-ocl-SDK-1.1M3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.1.0/S200611160858/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>2.3.0/S200611091546/emf-sdo-xsd-SDK-2.3.0M3.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/S-3.3M3-200611021715/eclipse-SDK-3.3M3-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200611161546 (1.0.2.M200611161546) is available</title>
-    <link href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200611161546#M200611161546"/>
-    <id>http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200611161546#M200611161546</id>
-    <updated>2006-11-21T21:21:31Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_0_maintenance" datetime="200611161546" href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200611161546#M200611161546" type="M" version="1.0.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.2/M200611161546/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/technology/emft/updates/?project=ocl</update>
-        <downloads>http://www.eclipse.org/emft/downloads/?project=ocl#ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/emft/news/relnotes.php?project=ocl&amp;amp;version=1.0.2
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-ocl-SDK-M200611161546.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.2/M200611161546/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/tools/emf/downloads/drops/2.2.2/M200611161441/emf-sdo-xsd-SDK-M200611161441.zip</dependency>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20061115-1052/eclipse-SDK-M20061115-1052-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl S200609250830 (1.0.1.S200609250830) is available</title>
-    <link href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200609250830#S200609250830"/>
-    <id>http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200609250830#S200609250830</id>
-    <updated>2006-11-21T21:20:58Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_0_maintenance" datetime="200609250830" href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200609250830#S200609250830" type="S" version="1.0.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/S200609250830/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/technology/emft/updates/?project=ocl</update>
-        <downloads>http://www.eclipse.org/emft/downloads/?project=ocl#ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/emft/news/relnotes.php?project=ocl&amp;amp;version=1.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-ocl-SDK-S200609250830.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/S200609250830/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/tools/emf/downloads/drops/2.2.1/S200609210005/emf-sdo-xsd-SDK-2.2.1RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060919-1045/eclipse-SDK-M20060919-1045-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl S200609221313 (1.0.1.S200609221313) is available</title>
-    <link href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200609221313#S200609221313"/>
-    <id>http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200609221313#S200609221313</id>
-    <updated>2006-11-21T21:20:23Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_0_maintenance" datetime="200609221313" href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200609221313#S200609221313" type="S" version="1.0.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/S200609221313/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/technology/emft/updates/?project=ocl</update>
-        <downloads>http://www.eclipse.org/emft/downloads/?project=ocl#ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/emft/news/relnotes.php?project=ocl&amp;amp;version=1.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-ocl-SDK-S200609221313.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/S200609221313/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/tools/emf/downloads/drops/2.2.1/S200609210005/emf-sdo-xsd-SDK-2.2.1RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060919-1045/eclipse-SDK-M20060919-1045-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl S200609210937 (1.0.1.S200609210937) is available</title>
-    <link href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200609210937#S200609210937"/>
-    <id>http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200609210937#S200609210937</id>
-    <updated>2006-11-21T21:19:52Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_0_maintenance" datetime="200609210937" href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200609210937#S200609210937" type="S" version="1.0.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/S200609210937/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/technology/emft/updates/?project=ocl</update>
-        <downloads>http://www.eclipse.org/emft/downloads/?project=ocl#ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/emft/news/relnotes.php?project=ocl&amp;amp;version=1.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-ocl-SDK-S200609210937.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/S200609210937/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/tools/emf/downloads/drops/2.2.1/S200609210005/emf-sdo-xsd-SDK-2.2.1RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060919-1045/eclipse-SDK-M20060919-1045-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl S200609141915 (1.0.1.S200609141915) is available</title>
-    <link href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200609141915#S200609141915"/>
-    <id>http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200609141915#S200609141915</id>
-    <updated>2006-11-21T21:19:13Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_0_maintenance" datetime="200609141915" href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=S200609141915#S200609141915" type="S" version="1.0.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/S200609141915/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/technology/emft/updates/?project=ocl</update>
-        <downloads>http://www.eclipse.org/emft/downloads/?project=ocl#ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/emft/news/relnotes.php?project=ocl&amp;amp;version=1.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-ocl-SDK-S200609141915.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/S200609141915/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/tools/emf/downloads/drops/2.2.1/S200609141116/emf-sdo-xsd-SDK-2.2.1RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060912-1730/eclipse-SDK-M20060912-1730-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl 1.0.1 (R200609250830) is available</title>
-    <link href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200609250830#R200609250830"/>
-    <id>http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200609250830#R200609250830</id>
-    <updated>2006-11-21T21:18:38Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_0_maintenance" datetime="200609250830" href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=R200609250830#R200609250830" type="R" version="1.0.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/R200609250830/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/technology/emft/updates/?project=ocl</update>
-        <downloads>http://www.eclipse.org/emft/downloads/?project=ocl#ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/emft/news/relnotes.php?project=ocl&amp;amp;version=1.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-ocl-SDK-1.0.1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/R200609250830/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/R200609210005/emf-sdo-xsd-SDK-2.2.1.zip</dependency>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2.1-200609210945/eclipse-SDK-3.2.1-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200609141024 (1.0.1.M200609141024) is available</title>
-    <link href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200609141024#M200609141024"/>
-    <id>http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200609141024#M200609141024</id>
-    <updated>2006-11-21T21:18:04Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_0_maintenance" datetime="200609141024" href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200609141024#M200609141024" type="M" version="1.0.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/M200609141024/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/technology/emft/updates/?project=ocl</update>
-        <downloads>http://www.eclipse.org/emft/downloads/?project=ocl#ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/emft/news/relnotes.php?project=ocl&amp;amp;version=1.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-ocl-SDK-M200609141024.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/M200609141024/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/tools/emf/downloads/drops/2.2.1/M200609071016/emf-sdo-xsd-SDK-M200609071016.zip</dependency>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060906-1737/eclipse-SDK-M20060906-1737-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200609071146 (1.0.1.M200609071146) is available</title>
-    <link href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200609071146#M200609071146"/>
-    <id>http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200609071146#M200609071146</id>
-    <updated>2006-11-21T21:17:23Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_0_maintenance" datetime="200609071146" href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200609071146#M200609071146" type="M" version="1.0.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/M200609071146/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/technology/emft/updates/?project=ocl</update>
-        <downloads>http://www.eclipse.org/emft/downloads/?project=ocl#ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/emft/news/relnotes.php?project=ocl&amp;amp;version=1.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-ocl-SDK-M200609071146.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/M200609071146/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/tools/emf/downloads/drops/2.2.1/M200609071016/emf-sdo-xsd-SDK-M200609071016.zip</dependency>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060906-1737/eclipse-SDK-M20060906-1737-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] ocl M200608311108 (1.0.1.M200608311108) is available</title>
-    <link href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200608311108#M200608311108"/>
-    <id>http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200608311108#M200608311108</id>
-    <updated>2006-11-21T21:16:38Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R1_0_maintenance" datetime="200608311108" href="http://www.eclipse.org/emft/downloads/?project=ocl&amp;showAll=1&amp;hlbuild=M200608311108#M200608311108" type="M" version="1.0.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/M200608311108/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/technology/emft/updates/?project=ocl</update>
-        <downloads>http://www.eclipse.org/emft/downloads/?project=ocl#ocl</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/emft/news/relnotes.php?project=ocl&amp;amp;version=1.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">emft-ocl-SDK-M200608311108.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/technology/emft/ocl/downloads/drops/1.0.1/M200608311108/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/tools/emf/downloads/drops/2.2.1/M200608311032/emf-sdo-xsd-SDK-M200608311032.zip</dependency>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20060830-0800/eclipse-SDK-M20060830-0800-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-</feed>
diff --git a/feeds/builds-uml2.xml b/feeds/builds-uml2.xml
deleted file mode 100755
index 2d47d70..0000000
--- a/feeds/builds-uml2.xml
+++ /dev/null
@@ -1,3932 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
-
-<feed xmlns="http://www.w3.org/2005/Atom">
-  <title>UML2 Builds</title>
-  <link href="http://download.eclipse.org/modeling/mdt/feeds/builds-uml2.xml" rel="self" type="application/atom+xml"/>
-  <updated>2009-05-20T15:57:18Z</updated>
-  <author>
-    <name>UML2 Build Team</name>
-  </author>
-  <id>http://download.eclipse.org/modeling/mdt/feeds/builds-uml2.xml</id>
-  <entry>
-    <title>[announce] uml2 3.0.0RC1 (S200905191000) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200905191000#S200905191000"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200905191000#S200905191000</id>
-    <updated>2009-05-20T15:57:18Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200905191000" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200905191000#S200905191000" type="S" vanityname="3.0.0RC1" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200905191000/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200905191000
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-3.0.0RC1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200905191000/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5RC1-200905151143/eclipse-SDK-3.5RC1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200905172106/emf-xsd-SDK-2.5.0RC1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 3.0.0RC1 (S200905191000) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200905191000#S200905191000"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200905191000#S200905191000</id>
-    <updated>2009-05-19T15:47:32Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200905191000" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200905191000#S200905191000" type="S" vanityname="3.0.0RC1" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200905191000/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200905191000
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-3.0.0RC1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200905191000/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5RC1-200905151143/eclipse-SDK-3.5RC1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200905172106/emf-xsd-SDK-2.5.0RC1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 3.0.0RC1 (S200905191000) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200905191000#S200905191000"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200905191000#S200905191000</id>
-    <updated>2009-05-19T15:44:08Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200905191000" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200905191000#S200905191000" type="S" vanityname="3.0.0RC1" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200905191000/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200905191000
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-3.0.0RC1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200905191000/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5RC1-200905151143/eclipse-SDK-3.5RC1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200905172106/emf-xsd-SDK-2.5.0RC1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 3.0.0M7 (S200905041635) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200905041635#S200905041635"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200905041635#S200905041635</id>
-    <updated>2009-05-04T21:05:18Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200905041635" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200905041635#S200905041635" type="S" vanityname="3.0.0M7" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200905041635/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200905041635
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-3.0.0M7.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200905041635/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M7-200904302300/eclipse-SDK-3.5M7-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200905041408/emf-xsd-SDK-2.5.0M7.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200904241604 (3.0.0.I200904241604) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200904241604#I200904241604"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200904241604#I200904241604</id>
-    <updated>2009-04-24T20:47:32Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200904241604" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200904241604#I200904241604" type="I" vanityname="I200904241604" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200904241604/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200904241604
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200904241604.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200904241604/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20090416-1053/eclipse-SDK-I20090416-1053-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200904211800/emf-xsd-SDK-I200904211800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200904171019 (3.0.0.I200904171019) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200904171019#I200904171019"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200904171019#I200904171019</id>
-    <updated>2009-04-17T15:07:47Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200904171019" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200904171019#I200904171019" type="I" vanityname="I200904171019" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200904171019/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200904171019
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200904171019.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200904171019/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20090401-1325/eclipse-SDK-I20090401-1325-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200904141800/emf-xsd-SDK-I200904141800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200903261317 (3.0.0.I200903261317) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200903261317#I200903261317"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200903261317#I200903261317</id>
-    <updated>2009-03-26T18:18:08Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200903261317" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200903261317#I200903261317" type="I" vanityname="I200903261317" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200903261317/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200903261317
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200903261317.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200903261317/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M6-200903130100/eclipse-SDK-3.5M6-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200903241800/emf-xsd-SDK-I200903241800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 3.0.0M6 (S200903171051) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200903171051#S200903171051"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200903171051#S200903171051</id>
-    <updated>2009-03-17T15:53:21Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200903171051" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200903171051#S200903171051" type="S" vanityname="3.0.0M6" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200903171051/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200903171051
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-3.0.0M6.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200903171051/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M6-200903130100/eclipse-SDK-3.5M6-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200903161215/emf-xsd-SDK-2.5.0M6.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200903041139 (3.0.0.I200903041139) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200903041139#I200903041139"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200903041139#I200903041139</id>
-    <updated>2009-03-04T17:55:59Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200903041139" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200903041139#I200903041139" type="I" vanityname="I200903041139" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200903041139/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200903041139
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200903041139.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200903041139/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20090210-0950/eclipse-SDK-I20090210-0950-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200903031800/emf-xsd-SDK-I200903031800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.2 (R200902101440) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200902101440#R200902101440"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200902101440#R200902101440</id>
-    <updated>2009-02-20T22:43:37Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_2_maintenance" datetime="200902101440" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200902101440#R200902101440" type="R" vanityname="2.2.2" version="2.2.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.2/R200902101440/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=R200902101440
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.2/R200902101440/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20090127-1710/eclipse-SDK-3.4.2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.2/R200902171115/emf-sdo-xsd-SDK-2.4.2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.2RC2a (S200902101440) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200902101440#S200902101440"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200902101440#S200902101440</id>
-    <updated>2009-02-10T20:53:15Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_2_maintenance" datetime="200902101440" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200902101440#S200902101440" type="S" vanityname="2.2.2RC2a" version="2.2.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.2/S200902101440/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200902101440
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.2RC2a.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.2/S200902101440/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20090127-1710/eclipse-SDK-M20090127-1710-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.2/S200902041010/emf-sdo-xsd-SDK-2.4.2RC1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.2RC2 (S200902101042) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200902101042#S200902101042"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200902101042#S200902101042</id>
-    <updated>2009-02-10T17:29:03Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_2_maintenance" datetime="200902101042" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200902101042#S200902101042" type="S" vanityname="2.2.2RC2" version="2.2.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.2/S200902101042/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200902101042
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.2RC2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.2/S200902101042/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20090127-1710/eclipse-SDK-M20090127-1710-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.2/S200902041010/emf-sdo-xsd-SDK-2.4.2RC1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 3.0.0M5 (S200902041058) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200902041058#S200902041058"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200902041058#S200902041058</id>
-    <updated>2009-02-04T16:42:28Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200902041058" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200902041058#S200902041058" type="S" vanityname="3.0.0M5" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200902041058/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200902041058
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-3.0.0M5.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200902041058/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M5-200902021535/eclipse-SDK-3.5M5-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200902031500/emf-xsd-SDK-2.5.0M5.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200901211303 (3.0.0.I200901211303) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200901211303#I200901211303"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200901211303#I200901211303</id>
-    <updated>2009-01-21T18:29:39Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200901211303" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200901211303#I200901211303" type="I" vanityname="I200901211303" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200901211303/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200901211303
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200901211303.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200901211303/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M4-200812111908/eclipse-SDK-3.5M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200901201800/emf-xsd-SDK-I200901201800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200901141028 (3.0.0.I200901141028) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200901141028#I200901141028"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200901141028#I200901141028</id>
-    <updated>2009-01-14T16:32:49Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200901141028" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200901141028#I200901141028" type="I" vanityname="I200901141028" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200901141028/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200901141028
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200901141028.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200901141028/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M4-200812111908/eclipse-SDK-3.5M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200901131800/emf-xsd-SDK-I200901131800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 3.0.0M4a (S200812221002) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200812221002#S200812221002"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200812221002#S200812221002</id>
-    <updated>2008-12-22T16:56:44Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200812221002" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200812221002#S200812221002" type="S" vanityname="3.0.0M4a" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200812221002/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200812221002
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-3.0.0M4a.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200812221002/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M4-200812111908/eclipse-SDK-3.5M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200812151800/emf-xsd-SDK-2.5.0M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 3.0.0M4 (S200812161215) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200812161215#S200812161215"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200812161215#S200812161215</id>
-    <updated>2008-12-16T17:38:16Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200812161215" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200812161215#S200812161215" type="S" vanityname="3.0.0M4" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200812161215/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200812161215
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-3.0.0M4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200812161215/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M4-200812111908/eclipse-SDK-3.5M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200812151800/emf-xsd-SDK-2.5.0M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200811271223 (3.0.0.I200811271223) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200811271223#I200811271223"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200811271223#I200811271223</id>
-    <updated>2008-11-28T17:23:57Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200811271223" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200811271223#I200811271223" type="I" vanityname="I200811271223" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200811271223/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200811271223
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200811271223.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200811271223/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20081125-0840/eclipse-SDK-I20081125-0840-linux-gtk.tar.gz</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200811251800/emf-sdo-xsd-SDK-I200811251800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200811260933 (3.0.0.I200811260933) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200811260933#I200811260933"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200811260933#I200811260933</id>
-    <updated>2008-11-26T15:30:22Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200811260933" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200811260933#I200811260933" type="I" vanityname="I200811260933" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200811260933/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200811260933
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200811260933.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200811260933/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20081112-1200/eclipse-SDK-I20081112-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200811251800/emf-sdo-xsd-SDK-I200811251800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 M200811061144 (2.2.2.M200811061144) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200811061144#M200811061144"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200811061144#M200811061144</id>
-    <updated>2008-11-06T17:18:24Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_2_maintenance" datetime="200811061144" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200811061144#M200811061144" type="M" vanityname="M200811061144" version="2.2.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.2/M200811061144/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=M200811061144
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-M200811061144.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.2/M200811061144/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.4.1-200809111700/eclipse-SDK-3.4.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.1/R200808251517/emf-sdo-xsd-SDK-2.4.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 3.0.0M3 (S200811051048) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200811051048#S200811051048"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200811051048#S200811051048</id>
-    <updated>2008-11-05T18:05:36Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200811051048" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200811051048#S200811051048" type="S" vanityname="3.0.0M3" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200811051048/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200811051048
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-3.0.0M3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200811051048/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M3-200810301917/eclipse-SDK-3.5M3-linux-gtk.tar.gz</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200811032126/emf-sdo-xsd-SDK-2.5.0M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200811031108 (3.0.0.I200811031108) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200811031108#I200811031108"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200811031108#I200811031108</id>
-    <updated>2008-11-03T16:41:51Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200811031108" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200811031108#I200811031108" type="I" vanityname="I200811031108" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200811031108/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200811031108
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200811031108.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200811031108/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20081028-2000/eclipse-SDK-I20081028-2000-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/I200810291305/emf-sdo-xsd-SDK-I200810291305.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200810071911 (3.0.0.I200810071911) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200810071911#I200810071911"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200810071911#I200810071911</id>
-    <updated>2008-10-08T16:42:51Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200810071911" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200810071911#I200810071911" type="I" vanityname="I200810071911" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200810071911/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200810071911
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200810071911.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200810071911/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M2-200809180100/eclipse-SDK-3.5M2-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.5.0/I200809301800/emf-sdo-xsd-SDK-I200809301800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 3.0.0M2 (S200809240156) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200809240156#S200809240156"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200809240156#S200809240156</id>
-    <updated>2008-09-24T18:20:04Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200809240156" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200809240156#S200809240156" type="S" vanityname="3.0.0M2" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200809240156/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200809240156
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-3.0.0M2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/S200809240156/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M2-200809180100/eclipse-SDK-3.5M2-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.5.0/S200809231800/emf-sdo-xsd-SDK-2.5.0M2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.1 (R200808261340) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200808261340#R200808261340"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200808261340#R200808261340</id>
-    <updated>2008-09-23T14:15:55Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_2_maintenance" datetime="200808261340" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200808261340#R200808261340" type="R" vanityname="2.2.1" version="2.2.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.1/R200808261340/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=R200808261340
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.1/R200808261340/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20080820-0800/eclipse-SDK-M20080820-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.1/R200808251517/emf-sdo-xsd-SDK-2.4.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200809041625 (3.0.0.I200809041625) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200809041625#I200809041625"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200809041625#I200809041625</id>
-    <updated>2008-09-04T20:57:47Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200809041625" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200809041625#I200809041625" type="I" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200809041625/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200809041625
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200809041625.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200809041625/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080821-1005/eclipse-SDK-I20080821-1005-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.5.0/I200809021800/emf-sdo-xsd-SDK-I200809021800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200809021920 (3.0.0.I200809021920) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200809021920#I200809021920"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200809021920#I200809021920</id>
-    <updated>2008-09-03T00:23:29Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200809021920" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200809021920#I200809021920" type="I" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200809021920/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200809021920
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200809021920.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200809021920/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080821-1005/eclipse-SDK-I20080821-1005-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.5.0/I200809021800/emf-sdo-xsd-SDK-I200809021800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200808291631 (3.0.0.I200808291631) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200808291631#I200808291631"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200808291631#I200808291631</id>
-    <updated>2008-08-29T21:00:10Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200808291631" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200808291631#I200808291631" type="I" version="3.0.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200808291631/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200808291631
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200808291631.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/3.0.0/I200808291631/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080821-1005/eclipse-SDK-I20080821-1005-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.5.0/I200808261800/emf-sdo-xsd-SDK-I200808261800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 M200808261340 (2.2.1.M200808261340) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200808261340#M200808261340"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200808261340#M200808261340</id>
-    <updated>2008-08-26T18:17:46Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_2_maintenance" datetime="200808261340" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200808261340#M200808261340" type="M" version="2.2.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.1/M200808261340/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=M200808261340
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-M200808261340.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.1/M200808261340/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20080820-0800/eclipse-SDK-M20080820-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.1/R200808251517/emf-sdo-xsd-SDK-2.4.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 M200808191602 (2.2.1.M200808191602) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200808191602#M200808191602"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200808191602#M200808191602</id>
-    <updated>2008-08-20T14:48:32Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_2_maintenance" datetime="200808191602" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200808191602#M200808191602" type="M" version="2.2.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.1/M200808191602/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=M200808191602
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-M200808191602.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.1/M200808191602/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20080731-1200/eclipse-SDK-M20080731-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.1/M200808060807/emf-sdo-xsd-SDK-M200808060807.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.0 (R200806091546) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200806091546#R200806091546"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200806091546#R200806091546</id>
-    <updated>2008-06-24T13:55:04Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200806091546" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200806091546#R200806091546" type="R" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=R200806091546
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.0.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.4-200806172000/eclipse-SDK-3.4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/R200806091234/emf-sdo-xsd-SDK-2.4.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.0RC4 (S200806091546) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200806091546#S200806091546"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200806091546#S200806091546</id>
-    <updated>2008-06-09T20:17:31Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200806091546" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200806091546#S200806091546" type="S" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200806091546/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200806091546
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.0RC4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200806091546/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4RC3-200805301730/eclipse-SDK-3.4RC3-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200806091234/emf-sdo-xsd-SDK-2.4.0RC4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.0RC3 (S200806021803) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200806021803#S200806021803"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200806021803#S200806021803</id>
-    <updated>2008-06-04T15:39:23Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200806021803" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200806021803#S200806021803" type="S" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200806021803/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200806021803
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.0RC3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200806021803/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4RC2-200805230100/eclipse-SDK-3.4RC2-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200806021643/emf-sdo-xsd-SDK-2.4.0RC3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.0RC2 (S200805270322) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200805270322#S200805270322"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200805270322#S200805270322</id>
-    <updated>2008-05-27T21:36:59Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200805270322" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200805270322#S200805270322" type="S" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200805270322/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200805270322
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.0RC2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200805270322/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4RC2-200805230100/eclipse-SDK-3.4RC2-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200805270202/emf-sdo-xsd-SDK-2.4.0RC2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.0RC1 (S200805211800) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200805211800#S200805211800"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200805211800#S200805211800</id>
-    <updated>2008-05-22T13:17:01Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200805211800" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200805211800#S200805211800" type="S" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200805211800/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200805211800
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.0RC1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200805211800/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080516-1333/eclipse-SDK-I20080516-1333-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200805211620/emf-sdo-xsd-SDK-2.4.0RC1a.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200805121920 (2.2.0.I200805121920) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200805121920#I200805121920"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200805121920#I200805121920</id>
-    <updated>2008-05-12T23:52:01Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200805121920" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200805121920#I200805121920" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200805121920/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200805121920
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200805121920.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200805121920/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080510-2000/eclipse-SDK-I20080510-2000-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200805121800/emf-sdo-xsd-SDK-I200805121800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.0M7 (S200805052208) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200805052208#S200805052208"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200805052208#S200805052208</id>
-    <updated>2008-05-06T14:11:26Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200805052208" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200805052208#S200805052208" type="S" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200805052208/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200805052208
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.0M7.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200805052208/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.4M7-200805020100/eclipse-SDK-3.4M7-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200805052017/emf-sdo-xsd-SDK-2.4.0M7.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200804291920 (2.2.0.I200804291920) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200804291920#I200804291920"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200804291920#I200804291920</id>
-    <updated>2008-04-29T23:51:18Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200804291920" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200804291920#I200804291920" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200804291920/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200804291920
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200804291920.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200804291920/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080429-0100/eclipse-SDK-I20080429-0100-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200804291800/emf-sdo-xsd-SDK-I200804291800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200804241720 (2.2.0.I200804241720) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200804241720#I200804241720"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200804241720#I200804241720</id>
-    <updated>2008-04-24T21:51:37Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200804241720" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200804241720#I200804241720" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200804241720/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200804241720
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200804241720.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200804241720/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080422-0800/eclipse-SDK-I20080422-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200804221800/emf-sdo-xsd-SDK-I200804221800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200804200420 (2.2.0.I200804200420) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200804200420#I200804200420"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200804200420#I200804200420</id>
-    <updated>2008-04-20T06:56:29Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200804200420" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200804200420#I200804200420" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200804200420/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200804200420
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200804200420.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200804200420/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080415-1646/eclipse-SDK-I20080415-1646-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200804200420/emf-sdo-xsd-SDK-Alyssa.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.0M6 (S200804020110) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200804020110#S200804020110"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200804020110#S200804020110</id>
-    <updated>2008-04-02T18:03:40Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200804020110" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200804020110#S200804020110" type="S" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200804020110/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200804020110
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.0M6.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200804020110/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4M6-200803301350/eclipse-SDK-3.4M6-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200804012208/emf-sdo-xsd-SDK-2.4.0M6.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200803271620 (2.2.0.I200803271620) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200803271620#I200803271620"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200803271620#I200803271620</id>
-    <updated>2008-03-27T20:53:16Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200803271620" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200803271620#I200803271620" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200803271620/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200803271620
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200803271620.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200803271620/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080327-0100/eclipse-SDK-I20080327-0100-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200803260135/emf-sdo-xsd-SDK-I200803260135.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200803111920 (2.2.0.I200803111920) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200803111920#I200803111920"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200803111920#I200803111920</id>
-    <updated>2008-03-18T23:51:32Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200803111920" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200803111920#I200803111920" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200803111920/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200803111920
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200803111920.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200803111920/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080305-1100/eclipse-SDK-I20080305-1100-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200803111800/emf-sdo-xsd-SDK-I200803111800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200803111920 (2.2.0.I200803111920) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200803111920#I200803111920"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200803111920#I200803111920</id>
-    <updated>2008-03-12T02:52:21Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200803111920" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200803111920#I200803111920" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200803111920/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200803111920
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200803111920.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200803111920/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080305-1100/eclipse-SDK-I20080305-1100-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200803111800/emf-sdo-xsd-SDK-I200803111800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 M200802262248 (2.0.5.M200802262248) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200802262248#M200802262248"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200802262248#M200802262248</id>
-    <updated>2008-03-08T04:58:14Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200802262248" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200802262248#M200802262248" type="M" version="2.0.5">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.5/M200802262248/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=M200802262248
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-M200802262248.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.5/M200802262248/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://archive.eclipse.org/eclipse/downloads/drops/R-3.2.2-200702121330/eclipse-SDK-3.2.2-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.2.4/R200710030400/emf-sdo-xsd-SDK-2.2.4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200802271725 (2.2.0.I200802271725) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200802271725#I200802271725"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200802271725#I200802271725</id>
-    <updated>2008-02-27T23:52:16Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200802271725" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200802271725#I200802271725" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200802271725/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200802271725
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200802271725.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200802271725/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080222-1622/eclipse-SDK-I20080222-1622-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200802261800/emf-sdo-xsd-SDK-I200802261800.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200802201750 (2.2.0.I200802201750) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200802201750#I200802201750"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200802201750#I200802201750</id>
-    <updated>2008-02-20T23:53:54Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200802201750" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200802201750#I200802201750" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200802201750/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200802201750
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200802201750.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200802201750/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4M5-200802071530/eclipse-SDK-3.4M5-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200802090050/emf-sdo-xsd-SDK-2.4.0M5.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.0M5 (S200802121122) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200802121122#S200802121122"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200802121122#S200802121122</id>
-    <updated>2008-02-13T00:46:18Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200802121122" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200802121122#S200802121122" type="S" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200802121122/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200802121122
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.0M5.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200802121122/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080207-1530/eclipse-SDK-I20080207-1530-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200802090050/emf-sdo-xsd-SDK-2.4.0M5.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200802052200 (2.2.0.I200802052200) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200802052200#I200802052200"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200802052200#I200802052200</id>
-    <updated>2008-02-06T03:21:25Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200802052200" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200802052200#I200802052200" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200802052200/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200802052200
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200802052200.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200802052200/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080205-0010/eclipse-SDK-I20080205-0010-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200802052000/emf-sdo-xsd-SDK-I200802052000.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200801292200 (2.2.0.I200801292200) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200801292200#I200801292200"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200801292200#I200801292200</id>
-    <updated>2008-01-30T03:23:19Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200801292200" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200801292200#I200801292200" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200801292200/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200801292200
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200801292200.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200801292200/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080122-1200/eclipse-SDK-I20080122-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200801292000/emf-sdo-xsd-SDK-I200801292000.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200801222300 (2.2.0.I200801222300) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200801222300#I200801222300"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200801222300#I200801222300</id>
-    <updated>2008-01-23T04:29:17Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200801222300" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200801222300#I200801222300" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200801222300/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200801222300
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200801222300.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200801222300/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080122-1200/eclipse-SDK-I20080122-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200801221930/emf-sdo-xsd-SDK-I200801221930.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200801152200 (2.2.0.I200801152200) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200801152200#I200801152200"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200801152200#I200801152200</id>
-    <updated>2008-01-16T03:38:35Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200801152200" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200801152200#I200801152200" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200801152200/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200801152200
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200801152200.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200801152200/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20080115-0800/eclipse-SDK-I20080115-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200801152000/emf-sdo-xsd-SDK-I200801152000.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200801091300 (2.2.0.I200801091300) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200801091300#I200801091300"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200801091300#I200801091300</id>
-    <updated>2008-01-09T18:49:06Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200801091300" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200801091300#I200801091300" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200801091300/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200801091300
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200801091300.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200801091300/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20080108-0800/eclipse-SDK-I20080108-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/I200801090807/emf-sdo-xsd-SDK-I200801090807.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.0M4 (S200712170918) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200712170918#S200712170918"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200712170918#S200712170918</id>
-    <updated>2007-12-17T18:55:19Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200712170918" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200712170918#S200712170918" type="S" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200712170918/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200712170918
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.0M4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200712170918/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.4.0/S200712160044/emf-sdo-xsd-SDK-2.4.0M4.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/S-3.4M4-200712131700/eclipse-SDK-3.4M4-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200711291020 (2.2.0.I200711291020) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200711291020#I200711291020"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200711291020#I200711291020</id>
-    <updated>2007-11-29T15:43:47Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200711291020" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200711291020#I200711291020" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200711291020/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200711291020
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200711291020.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200711291020/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20071120-1300/eclipse-SDK-I20071120-1300-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/I200711272121/emf-sdo-xsd-SDK-I200711272121.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.0M3 (S200711121155) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200711121155#S200711121155"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200711121155#S200711121155</id>
-    <updated>2007-11-12T18:19:48Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200711121155" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200711121155#S200711121155" type="S" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200711121155/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200711121155
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2.0M3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200711121155/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.4M3-200711012000/eclipse-SDK-3.4M3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200711062140/emf-sdo-xsd-SDK-2.4.0M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200711021052 (2.2.0.I200711021052) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200711021052#I200711021052"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200711021052#I200711021052</id>
-    <updated>2007-11-02T15:14:20Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200711021052" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200711021052#I200711021052" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200711021052/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200711021052
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200711021052.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200711021052/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20071030-0010/eclipse-SDK-I20071030-0010-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/I200710311431/emf-sdo-xsd-SDK-I200710311431.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200710251013 (2.2.0.I200710251013) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200710251013#I200710251013"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200710251013#I200710251013</id>
-    <updated>2007-10-25T15:56:29Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200710251013" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200710251013#I200710251013" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200710251013/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200710251013
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200710251013.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200710251013/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20071023-0800/eclipse-SDK-I20071023-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/I200710232100/emf-sdo-xsd-SDK-I200710232100.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.2.0M2 (2.2.0.S200710031132) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200710031132#S200710031132"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200710031132#S200710031132</id>
-    <updated>2007-10-03T20:59:20Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200710031132" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200710031132#S200710031132" type="S" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200710031132/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200710031132
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.2M2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/S200710031132/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4M2-200709210919/eclipse-SDK-3.4M2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200709260024/emf-sdo-xsd-SDK-2.4.0M2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.1.1 (R200708301304) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200708301304#R200708301304"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200708301304#R200708301304</id>
-    <updated>2007-09-26T17:57:31Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_1_maintenance" datetime="200708301304" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200708301304#R200708301304" type="R" version="2.1.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/R200708301304/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=R200708301304
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.1.1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/R200708301304/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20070921-1145/eclipse-SDK-M20070921-1145-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.1/R200709252135/emf-sdo-xsd-SDK-2.3.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200709211011 (2.2.0.I200709211011) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200709211011#I200709211011"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200709211011#I200709211011</id>
-    <updated>2007-09-21T14:40:41Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200709211011" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200709211011#I200709211011" type="I" version="2.2.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200709211011/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200709211011
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200709211011.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.2.0/I200709211011/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20070920-0936/eclipse-SDK-I20070920-0936-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/I200709201448/emf-sdo-xsd-SDK-I200709201448.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.0.4 (R200707131442) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200707131442#R200707131442"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200707131442#R200707131442</id>
-    <updated>2007-09-12T01:50:25Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200707131442" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200707131442#R200707131442" type="R" version="2.0.4">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.4/R200707131442/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=R200707131442
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.0.4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.4/R200707131442/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.2.2-200702121330/eclipse-SDK-3.2.2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.2.3/R200705141058/emf-sdo-xsd-SDK-2.2.3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 M200708301304 (2.1.1.M200708301304) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708301304#M200708301304"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708301304#M200708301304</id>
-    <updated>2007-08-30T21:28:32Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_1_maintenance" datetime="200708301304" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708301304#M200708301304" type="M" version="2.1.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/M200708301304/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=M200708301304
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-M200708301304.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/M200708301304/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20070725-0800/eclipse-SDK-M20070725-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.1/M200708142030/emf-sdo-xsd-SDK-M200708142030.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 M200708301304 (2.1.1.M200708301304) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708301304#M200708301304"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708301304#M200708301304</id>
-    <updated>2007-08-30T17:24:38Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_1_maintenance" datetime="200708301304" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708301304#M200708301304" type="M" version="2.1.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/M200708301304/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=M200708301304
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-M200708301304.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/M200708301304/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20070725-0800/eclipse-SDK-M20070725-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.1/M200708142030/emf-sdo-xsd-SDK-M200708142030.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 M200708221350 (2.1.1.M200708221350) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708221350#M200708221350"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708221350#M200708221350</id>
-    <updated>2007-08-22T19:56:56Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_1_maintenance" datetime="200708221350" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708221350#M200708221350" type="M" version="2.1.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/M200708221350/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=M200708221350
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-M200708221350.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/M200708221350/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20070725-0800/eclipse-SDK-M20070725-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.1/M200708142030/emf-sdo-xsd-SDK-M200708142030.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 M200708221350 (2.1.1.M200708221350) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708221350#M200708221350"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708221350#M200708221350</id>
-    <updated>2007-08-22T19:22:45Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_1_maintenance" datetime="200708221350" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708221350#M200708221350" type="M" version="2.1.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/M200708221350/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=M200708221350
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-M200708221350.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/M200708221350/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20070725-0800/eclipse-SDK-M20070725-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.1/M200708142030/emf-sdo-xsd-SDK-M200708142030.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 M200708011038 (2.1.1.M200708011038) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708011038#M200708011038"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708011038#M200708011038</id>
-    <updated>2007-08-01T15:13:09Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_1_maintenance" datetime="200708011038" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200708011038#M200708011038" type="M" version="2.1.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/M200708011038/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=M200708011038
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-M200708011038.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/M200708011038/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20070725-0800/eclipse-SDK-M20070725-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.1/M200707312030/emf-sdo-xsd-SDK-M200707312030.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 M200707191455 (2.1.1.M200707191455) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200707191455#M200707191455"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200707191455#M200707191455</id>
-    <updated>2007-07-19T19:39:12Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_1_maintenance" datetime="200707191455" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200707191455#M200707191455" type="M" version="2.1.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/M200707191455/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=M200707191455
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-M200707191455.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.1/M200707191455/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20070711-0800/eclipse-SDK-M20070711-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.1/M200707111516/emf-sdo-SDK-M200707111516.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 M200707131442 (2.0.4.M200707131442) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200707131442#M200707131442"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200707131442#M200707131442</id>
-    <updated>2007-07-13T19:28:17Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200707131442" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200707131442#M200707131442" type="M" version="2.0.4">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.4/M200707131442/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=M200707131442
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-M200707131442.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.4/M200707131442/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.2.2-200702121330/eclipse-SDK-3.2.2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.2.4/M200707111554/emf-sdo-xsd-SDK-M200707111554.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 M200707041607 (2.0.4.M200707041607) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200707041607#M200707041607"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200707041607#M200707041607</id>
-    <updated>2007-07-04T20:32:16Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200707041607" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200707041607#M200707041607" type="M" version="2.0.4">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.4/M200707041607/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=M200707041607
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-M200707041607.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.4/M200707041607/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.2.2-200702121330/eclipse-SDK-3.2.2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.2.4/M200706070004/emf-sdo-xsd-SDK-M200706070004.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.1.0 (R200706251652) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200706251652#R200706251652"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200706251652#R200706251652</id>
-    <updated>2007-07-04T15:34:07Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706251652" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200706251652#R200706251652" type="R" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/R200706251652/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=R200706251652
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.1.0.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/R200706251652/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/R20070626200/emf-sdo-xsd-SDK-2.3.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.1RC4 (2.1.0.S200706251652) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200706251652#S200706251652"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200706251652#S200706251652</id>
-    <updated>2007-06-25T21:28:12Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706251652" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200706251652#S200706251652" type="S" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200706251652/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200706251652
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.1RC4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200706251652/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20070621-1340/eclipse-SDK-I20070621-1340-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200706251320/emf-sdo-xsd-SDK-2.3.0RC5.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.1RC3 (2.1.0.S200706141134) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200706141134#S200706141134"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200706141134#S200706141134</id>
-    <updated>2007-06-14T17:52:49Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706141134" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200706141134#S200706141134" type="S" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200706141134/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200706141134
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.1RC3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200706141134/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC3-200706011539/eclipse-SDK-3.3RC3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200706130003/emf-sdo-xsd-SDK-2.3.0RC3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 M200706131554 (2.0.4.M200706131554) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200706131554#M200706131554"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200706131554#M200706131554</id>
-    <updated>2007-06-14T03:58:00Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200706131554" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200706131554#M200706131554" type="M" version="2.0.4">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.4/M200706131554/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=M200706131554
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-M200706131554.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.4/M200706131554/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2.2-200702121330/eclipse-SDK-3.2.2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.2.4/M200706070004/emf-sdo-xsd-SDK-M200706070004.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.1RC2 (2.1.0.S200706051155) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200706051155#S200706051155"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200706051155#S200706051155</id>
-    <updated>2007-06-05T16:32:53Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706051155" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200706051155#S200706051155" type="S" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200706051155/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200706051155
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.1RC2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200706051155/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC2-200705251350/eclipse-SDK-3.3RC2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200705300200/emf-sdo-xsd-SDK-2.3.0RC2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.1RC1b (2.1.0.S200705311526) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200705311526#S200705311526"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200705311526#S200705311526</id>
-    <updated>2007-05-31T19:56:12Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200705311526" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200705311526#S200705311526" type="S" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200705311526/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200705311526
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.1RC1b.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200705311526/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC2-200705251350/eclipse-SDK-3.3RC2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200705300200/emf-sdo-xsd-SDK-2.3.0RC2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.1RC1a (2.1.0.S200705251139) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200705251139#S200705251139"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200705251139#S200705251139</id>
-    <updated>2007-05-25T18:55:03Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200705251139" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200705251139#S200705251139" type="S" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200705251139/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200705251139
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.1RC1a.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200705251139/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC1-200705171700/eclipse-SDK-3.3RC1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200705230200/emf-sdo-xsd-SDK-2.3.0RC1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.1M7 (2.1.0.S200705171545) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200705171545#S200705171545"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200705171545#S200705171545</id>
-    <updated>2007-05-17T20:23:25Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200705171545" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200705171545#S200705171545" type="S" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200705171545/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200705171545
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.1M7.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200705171545/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200705110650/emf-sdo-xsd-SDK-2.3.0M7.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/S-3.3M7-200705031400/eclipse-SDK-3.3M7-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200705111324 (2.1.0.I200705111324) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200705111324#I200705111324"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200705111324#I200705111324</id>
-    <updated>2007-05-11T17:55:26Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200705111324" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200705111324#I200705111324" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200705111324/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200705111324
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200705111324.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200705111324/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/S200705110650/emf-sdo-xsd-SDK-2.3.0M7.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/S-3.3M7-200705031400/eclipse-SDK-3.3M7-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200705021641 (2.1.0.I200705021641) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200705021641#I200705021641"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200705021641#I200705021641</id>
-    <updated>2007-05-02T21:31:41Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200705021641" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200705021641#I200705021641" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200705021641/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200705021641
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200705021641.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200705021641/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20070501-0010/eclipse-SDK-I20070501-0010-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200705020200/emf-sdo-xsd-SDK-I200705020200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200704251546 (2.1.0.I200704251546) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200704251546#I200704251546"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200704251546#I200704251546</id>
-    <updated>2007-04-25T20:21:57Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200704251546" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200704251546#I200704251546" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200704251546/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200704251546
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200704251546.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200704251546/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070418-1012/eclipse-SDK-I20070418-1012-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200704250200/emf-sdo-xsd-SDK-I200704250200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200704251330 (2.1.0.I200704251330) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200704251330#I200704251330"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200704251330#I200704251330</id>
-    <updated>2007-04-25T17:59:59Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200704251330" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200704251330#I200704251330" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200704251330/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200704251330
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200704251330.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200704251330/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070418-1012/eclipse-SDK-I20070418-1012-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200704250200/emf-sdo-xsd-SDK-I200704250200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200704192355 (2.1.0.I200704192355) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200704192355#I200704192355"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200704192355#I200704192355</id>
-    <updated>2007-04-20T04:14:24Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200704192355" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200704192355#I200704192355" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200704192355/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200704192355
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200704192355.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200704192355/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070418-1012/eclipse-SDK-I20070418-1012-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200704191605/emf-sdo-xsd-SDK-I200704191605.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 I200704121352 (2.1.0.I200704121352) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200704121352#I200704121352"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200704121352#I200704121352</id>
-    <updated>2007-04-12T18:40:59Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200704121352" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200704121352#I200704121352" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200704121352/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200704121352
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-I200704121352.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200704121352/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.3M6-200703231616/eclipse-SDK-3.3M6-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200704050200/emf-sdo-xsd-SDK-I200704050200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2 2.1M6 (2.1.0.S200704051025) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200704051025#S200704051025"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200704051025#S200704051025</id>
-    <updated>2007-04-05T15:42:23Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200704051025" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200704051025#S200704051025" type="S" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200704051025/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=S200704051025
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2-SDK-2.1M6.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200704051025/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.3M6-200703231616/eclipse-SDK-3.3M6-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200703291501/emf-sdo-xsd-SDK-2.3.0M6.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200703301423 (2.1.0.I200703301423) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703301423#I200703301423"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703301423#I200703301423</id>
-    <updated>2007-03-30T19:45:06Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200703301423" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703301423#I200703301423" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200703301423/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200703301423
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200703301423.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200703301423/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.3M6-200703231616/eclipse-SDK-3.3M6-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200703291501/emf-sdo-xsd-SDK-2.3.0M6.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200703221526 (2.1.0.I200703221526) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703221526#I200703221526"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703221526#I200703221526</id>
-    <updated>2007-03-22T20:48:21Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200703221526" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703221526#I200703221526" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200703221526/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200703221526
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200703221526.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200703221526/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20070321-1300/eclipse-SDK-I20070321-1300-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200703221305/emf-sdo-xsd-SDK-I200703221305.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200703151535 (2.1.0.I200703151535) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703151535#I200703151535"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703151535#I200703151535</id>
-    <updated>2007-03-15T20:57:26Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200703151535" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703151535#I200703151535" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200703151535/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200703151535
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200703151535.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200703151535/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070313-1051/eclipse-SDK-I20070313-1051-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200703150200/emf-sdo-xsd-SDK-I200703150200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.1.0 I200703081639 is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703081639#I200703081639"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703081639#I200703081639</id>
-    <updated>2007-03-09T16:06:19Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="2.1.0" datetime="200703081639" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703081639#I200703081639" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200703081639/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200703081639
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200703081639/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070228-0930/eclipse-SDK-I20070228-0930-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200703080200/emf-sdo-xsd-SDK-I200703080200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.1.0 I200703081639 is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703081639#I200703081639"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703081639#I200703081639</id>
-    <updated>2007-03-09T01:22:44Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="2.1.0" datetime="200703081639" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703081639#I200703081639" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200703081639/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200703081639
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200703081639/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070228-0930/eclipse-SDK-I20070228-0930-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200703080200/emf-sdo-xsd-SDK-I200703080200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200703011358 (2.1.0.I200703011358) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703011358#I200703011358"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703011358#I200703011358</id>
-    <updated>2007-03-01T19:23:31Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200703011358" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200703011358#I200703011358" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200703011358/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=I200703011358
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200703011358.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200703011358/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070228-0930/eclipse-SDK-I20070228-0930-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200703010200/emf-sdo-xsd-SDK-I200703010200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.1M5 (2.1.0.S200702222305) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200702222305#S200702222305"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200702222305#S200702222305</id>
-    <updated>2007-02-23T04:28:50Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200702222305" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200702222305#S200702222305" type="S" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200702222305/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.1M5.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200702222305/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3M5-200702091006/eclipse-SDK-3.3M5-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200702121527/emf-sdo-xsd-SDK-2.3.0M5.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0.3 (R200702141227) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200702141227#R200702141227"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200702141227#R200702141227</id>
-    <updated>2007-02-15T20:38:45Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200702141227" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200702141227#R200702141227" type="R" version="2.0.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/R200702141227/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.0.3
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.0.3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/R200702141227/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2.2-200702121330/eclipse-SDK-3.2.2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.2.2/R200702131851/emf-sdo-xsd-SDK-2.2.2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200702151334 (2.1.0.I200702151334) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200702151334#I200702151334"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200702151334#I200702151334</id>
-    <updated>2007-02-15T20:22:18Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200702151334" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200702151334#I200702151334" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200702151334/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200702151334.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200702151334/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3M5-200702091006/eclipse-SDK-3.3M5-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/S200702121527/emf-sdo-xsd-SDK-2.3.0M5.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0.3 (R200702141227) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200702141227#R200702141227"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200702141227#R200702141227</id>
-    <updated>2007-02-15T20:17:10Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200702141227" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=R200702141227#R200702141227" type="R" version="2.0.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/R200702141227/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.0.3
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.0.3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/R200702141227/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R3.2.2-200702121330/eclipse-SDK-3.2.2-linux.gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.2.2/R200702131851/emf.sdo.xsd.SDK-2.2.2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200702091416 (2.1.0.I200702091416) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200702091416#I200702091416"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200702091416#I200702091416</id>
-    <updated>2007-02-09T21:44:02Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200702091416" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200702091416#I200702091416" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200702091416/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200702091416.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200702091416/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070208-1200/eclipse-SDK-I20070208-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200702071857/emf-sdo-xsd-SDK-I200702071857.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200702081049 (2.0.3.M200702081049) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200702081049#M200702081049"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200702081049#M200702081049</id>
-    <updated>2007-02-08T16:59:58Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200702081049" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200702081049#M200702081049" type="M" version="2.0.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200702081049/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.0.3
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200702081049.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200702081049/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20070206-1606/eclipse-SDK-M20070206-1606-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.2.2/S200702071707/emf-sdo-xsd-SDK-2.2.2RC.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200702012039 (2.1.0.I200702012039) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200702012039#I200702012039"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200702012039#I200702012039</id>
-    <updated>2007-02-02T05:30:45Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200702012039" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200702012039#I200702012039" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200702012039/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200702012039.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200702012039/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20070130-0800/eclipse-SDK-I20070130-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/modeling/emf/emf/downloads/drops/2.3.0/I200702010200/emf-sdo-xsd-SDK-I200702010200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200702011536 (2.0.3.M200702011536) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200702011536#M200702011536"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200702011536#M200702011536</id>
-    <updated>2007-02-02T05:29:53Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200702011536" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200702011536#M200702011536" type="M" version="2.0.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200702011536/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.0.3
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200702011536.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200702011536/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20070125-0800/eclipse-SDK-M20070125-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.2.2/M200702010000/emf-sdo-xsd-SDK-M200702010000.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200701182158 (2.1.0.I200701182158) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200701182158#I200701182158"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200701182158#I200701182158</id>
-    <updated>2007-01-19T03:22:18Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200701182158" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200701182158#I200701182158" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200701182158/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200701182158.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200701182158/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200701181443/emf-sdo-xsd-SDK-I200701181443.zip</dependency>
-          <dependency>http://www.eclipse.org/downloads/download.php?file=/eclipse/downloads/drops/S-3.3M4-200612141445/eclipse-SDK-3.3M4-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200701181306 (2.0.3.M200701181306) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200701181306#M200701181306"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200701181306#M200701181306</id>
-    <updated>2007-01-18T18:34:54Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200701181306" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200701181306#M200701181306" type="M" version="2.0.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200701181306/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.0.3
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200701181306.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200701181306/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20070112-1200/eclipse-SDK-M20070112-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.2.2/M200701181044/emf-sdo-xsd-SDK-M200701181044.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200701111331 (2.1.0.I200701111331) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200701111331#I200701111331"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200701111331#I200701111331</id>
-    <updated>2007-01-11T22:02:30Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200701111331" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200701111331#I200701111331" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200701111331/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200701111331.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200701111331/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3M4-200612141445/eclipse-SDK-3.3M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/I200701110200/emf-sdo-xsd-SDK-I200701110200.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.1M4 (2.1.0.S200701040816) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200701040816#S200701040816"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200701040816#S200701040816</id>
-    <updated>2007-01-10T23:26:15Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200701040816" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200701040816#S200701040816" type="S" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200701040816/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.1M4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200701040816/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3M4-200612141445/eclipse-SDK-3.3M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.3.0/S200612211251/emf-sdo-xsd-SDK-2.3.0M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200612211621 (2.0.3.M200612211621) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200612211621#M200612211621"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200612211621#M200612211621</id>
-    <updated>2006-12-21T21:59:31Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200612211621" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200612211621#M200612211621" type="M" version="2.0.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200612211621/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.0.3
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200612211621.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200612211621/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20061220-1400/eclipse-SDK-M20061220-1400-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.2/M200612211127/emf-sdo-xsd-SDK-M200612211127.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200612211526 (2.1.0.I200612211526) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612211526#I200612211526"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612211526#I200612211526</id>
-    <updated>2006-12-21T21:26:29Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200612211526" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612211526#I200612211526" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200612211526/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200612211526.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200612211526/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3M4-200612141445/eclipse-SDK-3.3M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.3.0/S200612211251/emf-sdo-xsd-SDK-2.3.0M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200612141618 (2.1.0.I200612141618) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612141618#I200612141618"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612141618#I200612141618</id>
-    <updated>2006-12-15T15:52:32Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200612141618" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612141618#I200612141618" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200612141618/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200612141618.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200612141618/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20061213-1300/eclipse-SDK-I20061213-1300-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.3.0/I200612141025/emf-sdo-xsd-SDK-I200612141025.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200612141618 (2.1.0.I200612141618) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612141618#I200612141618"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612141618#I200612141618</id>
-    <updated>2006-12-15T15:51:38Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200612141618" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612141618#I200612141618" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200612141618/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200612141618.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200612141618/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20061213-1300/eclipse-SDK-I20061213-1300-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.3.0/I200612141025/emf-sdo-xsd-SDK-I200612141025.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200612141618 (2.1.0.I200612141618) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612141618#I200612141618"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612141618#I200612141618</id>
-    <updated>2006-12-15T15:51:09Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200612141618" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612141618#I200612141618" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200612141618/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200612141618.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200612141618/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20061213-1300/eclipse-SDK-I20061213-1300-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.3.0/I200612141025/emf-sdo-xsd-SDK-I200612141025.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200612071943 (2.1.0.I200612071943) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612071943#I200612071943"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612071943#I200612071943</id>
-    <updated>2006-12-08T02:29:01Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200612071943" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200612071943#I200612071943" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200612071943/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200612071943.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200612071943/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/I20061205-1200/eclipse-SDK-I20061205-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://emf.torolab.ibm.com/tools/emf/downloads/drops/2.3.0/I200612071030/emf-sdo-xsd-SDK-I200612071030.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200611301324 (2.1.0.I200611301324) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200611301324#I200611301324"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200611301324#I200611301324</id>
-    <updated>2006-11-30T20:17:04Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200611301324" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200611301324#I200611301324" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200611301324/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200611301324.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200611301324/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20061121-1845/eclipse-SDK-I20061121-1845-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.3.0/I200611300000/emf-sdo-xsd-SDK-I200611300000.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200611301201 (2.0.3.M200611301201) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200611301201#M200611301201"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200611301201#M200611301201</id>
-    <updated>2006-11-30T17:24:24Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200611301201" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200611301201#M200611301201" type="M" version="2.0.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200611301201/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.0.3
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200611301201.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200611301201/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.2/M200611300200/emf-sdo-xsd-SDK-M200611300200.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/M20061115-1052/eclipse-SDK-M20061115-1052-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 I200611231810 (2.1.0.I200611231810) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200611231810#I200611231810"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200611231810#I200611231810</id>
-    <updated>2006-11-23T23:34:12Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200611231810" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=I200611231810#I200611231810" type="I" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200611231810/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-I200611231810.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/I200611231810/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/I20061121-1845/eclipse-SDK-I20061121-1845-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.3.0/I200611230000/emf-sdo-xsd-SDK-I200611230000.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.1M3 (2.1.0.S200611231310) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200611231310#S200611231310"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200611231310#S200611231310</id>
-    <updated>2006-11-23T18:24:56Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200611231310" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200611231310#S200611231310" type="S" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200611231310/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.1M3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200611231310/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/tools/emf/downloads/drops/2.3.0/S200611091546/emf-sdo-xsd-SDK-2.3.0M3.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/S-3.3M3-200611021715/eclipse-SDK-3.3M3-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200611221657 (2.0.3.M200611221657) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200611221657#M200611221657"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200611221657#M200611221657</id>
-    <updated>2006-11-23T15:47:52Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200611221657" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200611221657#M200611221657" type="M" version="2.0.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200611221657/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.0.3
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200611221657.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200611221657/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/tools/emf/downloads/drops/2.2.2/M200611161441/emf-sdo-xsd-SDK-M200611161441.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/M20061115-1052/eclipse-SDK-M20061115-1052-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200611162216 (2.0.3.M200611162216) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200611162216#M200611162216"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200611162216#M200611162216</id>
-    <updated>2006-11-17T03:34:22Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200611162216" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=M200611162216#M200611162216" type="M" version="2.0.3">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200611162216/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.0.3
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200611162216.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.3/M200611162216/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://emf.torolab.ibm.com/tools/emf/downloads/drops/2.2.2/M200611161441/emf-sdo-xsd-SDK-M200611161441.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/M20061115-1052/eclipse-SDK-M20061115-1052-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.1M3 (2.1.0.S200611161552) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200611161552#S200611161552"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200611161552#S200611161552</id>
-    <updated>2006-11-17T01:41:46Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200611161552" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2&amp;showAll=1&amp;hlbuild=S200611161552#S200611161552" type="S" version="2.1.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200611161552/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;amp;version=2.1.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.1M3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.1.0/S200611161552/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.3.0/S200611091546/emf-sdo-xsd-SDK-2.3.0M3.zip</dependency>
-          <dependency>http://fullmoon/downloads/drops/S-3.3M3-200611021715/eclipse-SDK-3.3M3-linux-gtk.tar.gz</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0.2 (R200610251409) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/R200610251409"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/R200610251409</id>
-    <updated>2006-11-02T20:21:41Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200610251409" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/R200610251409" type="R" version="2.0.2">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.2
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.0.2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.2/R200610251409/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2.1-200609210945/eclipse-SDK-3.2.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/R200609210005/emf-sdo-xsd-SDK-2.2.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200610251409 (2.0.2.M200610251409) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610251409"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610251409</id>
-    <updated>2006-10-25T18:32:03Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200610251409" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610251409" type="M" version="2.0.2">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.2
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200610251409.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.2/M200610251409/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2.1-200609210945/eclipse-SDK-3.2.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/R200609210005/emf-sdo-xsd-SDK-2.2.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200610201804 (2.0.2.M200610201804) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610201804"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610201804</id>
-    <updated>2006-10-20T22:59:42Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200610201804" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610201804" type="M" version="2.0.2">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.2
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200610201804.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.2/M200610201804/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2.1-200609210945/eclipse-SDK-3.2.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/R200609210005/emf-sdo-xsd-SDK-2.2.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200610201804 (2.0.2.M200610201804) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610201804"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610201804</id>
-    <updated>2006-10-20T22:51:28Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200610201804" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610201804" type="M" version="2.0.2">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.2
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200610201804.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.2/M200610201804/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2.1-200609210945/eclipse-SDK-3.2.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/R200609210005/emf-sdo-xsd-SDK-2.2.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200610191453 (2.0.2.M200610191453) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610191453"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610191453</id>
-    <updated>2006-10-19T19:40:12Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200610191453" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610191453" type="M" version="2.0.2">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.2
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200610191453.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.2/M200610191453/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2.1-200609210945/eclipse-SDK-3.2.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/R200609210005/emf-sdo-xsd-SDK-2.2.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200610120858 (2.0.2.M200610120858) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610120858"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610120858</id>
-    <updated>2006-10-12T13:55:00Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200610120858" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610120858" type="M" version="2.0.2">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.2
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200610120858.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.2/M200610120858/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2.1-200609210945/eclipse-SDK-3.2.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/R200609210005/emf-sdo-xsd-SDK-2.2.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200610051112 (2.0.2.M200610051112) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610051112"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610051112</id>
-    <updated>2006-10-05T15:28:31Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200610051112" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610051112" type="M" version="2.0.2">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.2
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200610051112.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.2/M200610051112/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2.1-200609210945/eclipse-SDK-3.2.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/R200609210005/emf-sdo-xsd-SDK-2.2.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0.2 M200610051024 is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610051024"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610051024</id>
-    <updated>2006-10-05T14:47:24Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R2_0_maintenance" datetime="200610051024" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.2/M200610051024" type="M" version="2.0.2">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.2
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.2/M200610051024/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2.1-200609210945/eclipse-SDK-3.2.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/R200609210005/emf-sdo-xsd-SDK-2.2.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0.1 (R200609210850) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/R200609210850"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/R200609210850</id>
-    <updated>2006-09-29T18:44:18Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/R200609210850" jars="" type="R">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.0.1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.1/R200609210850/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2.1-200609210945/eclipse-SDK-3.2.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/R200609210005/emf-sdo-xsd-SDK-2.2.1.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0.1 (R200609210850) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/R200609210850"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/R200609210850</id>
-    <updated>2006-09-27T17:02:28Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/R200609210850" jars="" type="R">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.0.1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.1/R200609210850/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2.1-200609210945/eclipse-SDK-3.2.1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/R200609210005/emf-sdo-xsd-SDK-2.2.1.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200609210850 (2.0.1.M200609210850) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200609210850"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200609210850</id>
-    <updated>2006-09-21T13:22:19Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200609210850" jars="" type="M">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200609210850.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.1/M200609210850/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060919-1045/eclipse-SDK-M20060919-1045-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/S200609210005/emf-sdo-xsd-SDK-2.2.1RC2.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200609141745 (2.0.1.M200609141745) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200609141745"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200609141745</id>
-    <updated>2006-09-14T21:59:04Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200609141745" jars="" type="M">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200609141745.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.1/M200609141745/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060912-1730/eclipse-SDK-M20060912-1730-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/S200609141116/emf-sdo-xsd-SDK-2.2.1RC1.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200609071509 (2.0.1.M200609071509) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200609071509"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200609071509</id>
-    <updated>2006-09-07T19:39:20Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200609071509" jars="" type="M">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200609071509.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.1/M200609071509/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060906-1737/eclipse-SDK-M20060906-1737-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/M200609071016/emf-sdo-xsd-SDK-M200609071016.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200608241455 (2.0.1.M200608241455) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200608241455"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200608241455</id>
-    <updated>2006-08-24T19:14:47Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200608241455" jars="" type="M">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200608241455.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.1/M200608241455/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060823-1200/eclipse-SDK-M20060823-1200-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/M200608241248/emf-sdo-xsd-SDK-M200608241248.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200608171632 (2.0.1.M200608171632) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200608171632"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200608171632</id>
-    <updated>2006-08-17T20:58:54Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200608171632" jars="" type="M">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200608171632.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.1/M200608171632/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060810-0800/eclipse-SDK-M20060802-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/M200608170000/emf-sdo-xsd-SDK-M200608170000.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200608030300 (2.0.1.M200608030300) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200608030300"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200608030300</id>
-    <updated>2006-08-03T14:18:36Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200608030300" jars="" type="M">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200608030300.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.1/M200608030300/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060802-0800/eclipse-SDK-M20060802-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/tools/emf/downloads/drops/2.2.1/M200608030000/emf-sdo-xsd-SDK-M200608030000.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200607270400 (2.0.1.M200607270400) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200607270400"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200607270400</id>
-    <updated>2006-07-27T13:51:15Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200607270400" jars="" type="M">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200607270400.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.1/M200607270400/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060726-0800/eclipse-SDK-M20060726-0800-linux-gtk.tar.gz</dependency>
-          <dependency>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/tools/emf/downloads/drops/2.2.1/M200607270021/emf-sdo-xsd-SDK-M200607270021.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 M200607131314 (2.0.1.M200607131314) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200607131314"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200607131314</id>
-    <updated>2006-07-13T17:52:19Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.1/M200607131314" jars="" type="M">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.1
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-M200607131314.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.1/M200607131314/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20060712-0922/eclipse-SDK-M20060712-0922-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.1/M200607131143/emf-sdo-xsd-SDK-M200607131143.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0.0 (R200606221411) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/R200606221411"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/R200606221411</id>
-    <updated>2006-06-29T14:37:27Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/R200606221411" jars="" type="R">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.0.0.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.0/R200606221411/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.2-200606291905/eclipse-SDK-3.2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.0/R200606271057/emf-sdo-xsd-SDK-2.2.0.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0RC9a (2.0.0.S200606221411) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606221411"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606221411</id>
-    <updated>2006-06-22T23:38:46Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606221411" jars="" type="S">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.0RC9a.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.0/S200606221411/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060609-1217/eclipse-SDK-M20060609-1217-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.0/S200606221156/emf-sdo-xsd-SDK-2.2.0RC9.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0RC9 (2.0.0.S200606211238) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606211238"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606211238</id>
-    <updated>2006-06-21T19:20:35Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606211238" jars="" type="S">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.0RC9.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.0/S200606211238/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060609-1217/eclipse-SDK-M20060609-1217-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.0/S200606201609/emf-sdo-xsd-SDK-2.2.0RC8.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0RC8 (2.0.0.S200606151203) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606151203"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606151203</id>
-    <updated>2006-06-17T02:12:16Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606151203" jars="" type="S">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.0RC8.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.0/S200606151203/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/M20060609-1217/eclipse-SDK-M20060609-1217-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.0/I200606150000/emf-sdo-xsd-SDK-I200606150000.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0RC7 (2.0.0.S200606081519) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606081519"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606081519</id>
-    <updated>2006-06-17T02:12:12Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606081519" jars="" type="S">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.0RC7.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.0/S200606081519/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.2RC7-200606021317/eclipse-SDK-3.2RC7-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/tools/emf/downloads/drops/2.2.0/I200606080000/emf-sdo-xsd-SDK-I200606080000.zip</dependency>
-        </dependencies>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0RC6 (2.0.0.S200606011428) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606011428"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606011428</id>
-    <updated>2006-06-17T02:12:08Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200606011428" jars="" type="S">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.0RC6.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.0/S200606011428/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0RC5 (2.0.0.S200605251244) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200605251244"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200605251244</id>
-    <updated>2006-06-17T02:12:04Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200605251244" jars="" type="S">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.0RC5.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.0/S200605251244/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] UML2 2.0RC4 (2.0.0.S200605181537) is available</title>
-    <link href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200605181537"/>
-    <id>http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200605181537</id>
-    <updated>2006-06-17T02:12:00Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" callisto="" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2/downloads/drops/2.0.0/S200605181537" jars="" type="S">
-        <update>http://download.eclipse.org/modeling/mdt/updates/?project=uml2</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&amp;version=2.0.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">uml2-SDK-2.0RC4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.0.0/S200605181537/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-      </build>
-    </summary>
-  </entry>
-</feed>
diff --git a/feeds/builds-uml2tools.xml b/feeds/builds-uml2tools.xml
deleted file mode 100644
index 4f54c20..0000000
--- a/feeds/builds-uml2tools.xml
+++ /dev/null
@@ -1,1740 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?>
-
-<feed xmlns="http://www.w3.org/2005/Atom">
-  <title>uml2tools Builds</title>
-  <link href="http://download.eclipse.org/modeling/mdt/feeds/builds-uml2tools.xml" rel="self" type="application/atom+xml"/>
-  <updated>2009-05-28T10:07:34Z</updated>
-  <author>
-    <name>uml2tools Build Team</name>
-  </author>
-  <id>http://download.eclipse.org/modeling/mdt/feeds/builds-uml2tools.xml</id>
-  <entry>
-    <title>[announce] uml2tools 0.9.0RC2 (S200905280525) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200905280525#S200905280525"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200905280525#S200905280525</id>
-    <updated>2009-05-28T10:07:34Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200905280525" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200905280525#S200905280525" type="S" vanityname="0.9.0RC2" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200905280525/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200905280525
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.9.0RC2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200905280525/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org//modeling/emf/emf/downloads/drops/2.5.0/S200905251338/emf-xsd-SDK-2.5.0RC2.zip</dependency>
-          <dependency>http://download.eclipse.org//modeling/gmf/gmf/downloads/drops/2.2.0/S200905201405/gmf-sdk-2.2.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5RC2-200905221710/eclipse-SDK-3.5RC2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.3.0/S200905261236/emf-query-SDK-1.3.0RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200905261328/emf-transaction-SDK-1.3.0RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200905261257/emf-validation-SDK-1.3.0RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/m2m/qvtoml/downloads/drops/2.0.0/S200905261857/m2m-qvtoml-SDK-2.0.0RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200905191000/mdt-uml2-SDK-3.0.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200905261334/GEF-SDK-3.5.0RC2.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200905261026/mdt-ocl-SDK-1.3.0RC2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.9.0RC1 (S200905211548) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200905211548#S200905211548"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200905211548#S200905211548</id>
-    <updated>2009-05-21T20:28:54Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200905211548" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200905211548#S200905211548" type="S" vanityname="0.9.0RC1" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200905211548/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200905211548
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.9.0RC1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200905211548/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org//modeling/emf/query/downloads/drops/1.3.0/S200905201236/emf-query-SDK-1.3.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5RC1-200905151143/eclipse-SDK-3.5RC1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200905172106/emf-xsd-SDK-2.5.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200905201328/emf-transaction-SDK-1.3.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200905201257/emf-validation-SDK-1.3.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/S200905201405/gmf-sdk-2.2.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/m2m/qvtoml/downloads/drops/2.0.0/S200905201203/m2m-qvtoml-SDK-2.0.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200905201026/mdt-ocl-SDK-1.3.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200905191000/mdt-uml2-SDK-3.0.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200905181334/GEF-ALL-3.5.0RC1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.9.0M7 (S200905080854) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200905080854#S200905080854"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200905080854#S200905080854</id>
-    <updated>2009-05-08T13:35:06Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200905080854" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200905080854#S200905080854" type="S" vanityname="0.9.0M7" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200905080854/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200905080854
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.9.0M7.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200905080854/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M7-200904302300/eclipse-SDK-3.5M7-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200905041408/emf-xsd-SDK-2.5.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.3.0/S200903171936/emf-query-SDK-1.3.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200903172002/emf-transaction-SDK-1.3.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200903171909/emf-validation-SDK-1.3.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/S200905062053/gmf-sdk-2.2.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/m2m/qvtoml/downloads/drops/2.0.0/S200905051212/m2m-qvtoml-SDK-2.0.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200903171143/mdt-ocl-SDK-1.3.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200905041635/mdt-uml2-SDK-3.0.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200905011522/GEF-ALL-3.5.0M7.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools I200904061506 (0.9.0.I200904061506) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200904061506#I200904061506"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200904061506#I200904061506</id>
-    <updated>2009-04-06T19:37:04Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200904061506" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200904061506#I200904061506" type="I" vanityname="I200904061506" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/I200904061506/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=I200904061506
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-I200904061506.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/I200904061506/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M6-200903130100/eclipse-SDK-3.5M6-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200903161215/emf-xsd-SDK-2.5.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.3.0/S200903171936/emf-query-SDK-1.3.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200903172002/emf-transaction-SDK-1.3.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200903171909/emf-validation-SDK-1.3.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/S200903182111/gmf-sdk-2.2.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/m2m/qvtoml/downloads/drops/2.0.0/S200903181916/m2m-qvtoml-SDK-2.0.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200903171143/mdt-ocl-SDK-1.3.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200903171051/mdt-uml2-SDK-3.0.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200903161602/GEF-ALL-3.5.0M6.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.9.0M6 (S200903192032) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200903192032#S200903192032"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200903192032#S200903192032</id>
-    <updated>2009-03-20T01:31:24Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200903192032" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200903192032#S200903192032" type="S" vanityname="0.9.0M6" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200903192032/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200903192032
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.9.0M6.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200903192032/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M6-200903130100/eclipse-SDK-3.5M6-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200903161215/emf-xsd-SDK-2.5.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.3.0/S200903171936/emf-query-SDK-1.3.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200903172002/emf-transaction-SDK-1.3.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200903171909/emf-validation-SDK-1.3.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/S200903182111/gmf-sdk-2.2.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/m2m/qvtoml/downloads/drops/2.0.0/S200903181916/m2m-qvtoml-SDK-2.0.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200903171143/mdt-ocl-SDK-1.3.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200903171051/mdt-uml2-SDK-3.0.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200903161602/GEF-ALL-3.5.0M6.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools I200902230443 (0.9.0.I200902230443) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200902230443#I200902230443"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200902230443#I200902230443</id>
-    <updated>2009-02-23T11:25:36Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200902230443" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200902230443#I200902230443" type="I" vanityname="I200902230443" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/I200902230443/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=I200902230443
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-I200902230443.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/I200902230443/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M5-200902021535/eclipse-SDK-3.5M5-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200902031500/emf-xsd-SDK-2.5.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.3.0/S200902041508/emf-query-SDK-1.3.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200902052314/emf-transaction-SDK-1.3.0M5a.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200902051737/emf-validation-SDK-1.3.0M5a.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/S200902121051/gmf-sdk-2.2.0M5a.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/m2m/qvtoml/downloads/drops/2.0.0/S200902061540/m2m-qvtoml-SDK-2.0.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200902041335/mdt-ocl-SDK-1.3.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200902041058/mdt-uml2-SDK-3.0.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200902060942/GEF-ALL-3.5.0M5a.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.9.0M5 (S200902121704) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200902121704#S200902121704"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200902121704#S200902121704</id>
-    <updated>2009-02-12T23:56:42Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200902121704" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200902121704#S200902121704" type="S" vanityname="0.9.0M5" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200902121704/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200902121704
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.9.0M5.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200902121704/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M5-200902021535/eclipse-SDK-3.5M5-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200902031500/emf-xsd-SDK-2.5.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.3.0/S200902041508/emf-query-SDK-1.3.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200902052314/emf-transaction-SDK-1.3.0M5a.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200902051737/emf-validation-SDK-1.3.0M5a.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/S200902121051/gmf-sdk-2.2.0M5a.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/m2m/qvtoml/downloads/drops/2.0.0/S200902061540/m2m-qvtoml-SDK-2.0.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200902041335/mdt-ocl-SDK-1.3.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200902041058/mdt-uml2-SDK-3.0.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200902060942/GEF-ALL-3.5.0M5a.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools I200902031013 (0.9.0.I200902031013) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200902031013#I200902031013"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200902031013#I200902031013</id>
-    <updated>2009-02-03T15:57:18Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200902031013" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200902031013#I200902031013" type="I" vanityname="I200902031013" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/I200902031013/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=I200902031013
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-I200902031013.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/I200902031013/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M4-200812111908/eclipse-SDK-3.5M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200812151800/emf-xsd-SDK-2.5.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200812171545/emf-transaction-SDK-1.3.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200812171513/emf-validation-SDK-1.3.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/I200901150958/gmf-sdk-I200901150958.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/m2m/qvtoml/downloads/drops/2.0.0/S200812290749/m2m-qvtoml-SDK-2.0.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200812171440/mdt-ocl-SDK-1.3.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200812221002/mdt-uml2-SDK-3.0.0M4a.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200812171720/GEF-SDK-3.5.0M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools I200901300603 (0.9.0.I200901300603) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200901300603#I200901300603"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200901300603#I200901300603</id>
-    <updated>2009-02-01T18:24:00Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200901300603" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200901300603#I200901300603" type="I" vanityname="I200901300603" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/I200901300603/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=I200901300603
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-I200901300603.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/I200901300603/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M4-200812111908/eclipse-SDK-3.5M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200812151800/emf-xsd-SDK-2.5.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200812171545/emf-transaction-SDK-1.3.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200812171513/emf-validation-SDK-1.3.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/I200901150958/gmf-sdk-I200901150958.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/m2m/qvtoml/downloads/drops/2.0.0/S200812290749/m2m-qvtoml-SDK-2.0.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200812171440/mdt-ocl-SDK-1.3.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200812221002/mdt-uml2-SDK-3.0.0M4a.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200812171720/GEF-SDK-3.5.0M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools I200901211149 (0.9.0.I200901211149) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200901211149#I200901211149"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200901211149#I200901211149</id>
-    <updated>2009-01-21T17:23:27Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200901211149" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200901211149#I200901211149" type="I" vanityname="I200901211149" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/I200901211149/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=I200901211149
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-I200901211149.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/I200901211149/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M4-200812111908/eclipse-SDK-3.5M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200812151800/emf-xsd-SDK-2.5.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/I200901150958/gmf-sdk-I200901150958.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/m2m/qvtoml/downloads/drops/2.0.0/S200812290749/m2m-qvtoml-SDK-2.0.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200812221002/mdt-uml2-SDK-3.0.0M4a.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200812171720/GEF-SDK-3.5.0M4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200812171545/emf-transaction-SDK-1.3.0M4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200812171513/emf-validation-SDK-1.3.0M4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/S200812311042/gmf-sdk-2.2.0M4a.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200812171440/mdt-ocl-SDK-1.3.0M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.9.0M4 (S200901061801) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200901061801#S200901061801"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200901061801#S200901061801</id>
-    <updated>2009-01-06T23:40:01Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200901061801" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200901061801#S200901061801" type="S" vanityname="0.9.0M4" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200901061801/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200901061801
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.9.0M4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200901061801/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M4-200812111908/eclipse-SDK-3.5M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200812151800/emf-xsd-SDK-2.5.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/m2m/qvtoml/downloads/drops/2.0.0/S200812290749/m2m-qvtoml-SDK-2.0.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200812221002/mdt-uml2-SDK-3.0.0M4a.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200812171720/GEF-SDK-3.5.0M4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200812171545/emf-transaction-SDK-1.3.0M4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200812171513/emf-validation-SDK-1.3.0M4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/S200812311042/gmf-sdk-2.2.0M4a.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200812171440/mdt-ocl-SDK-1.3.0M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools S200901051820 (0.9.0.S200901051820) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200901051820#S200901051820"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200901051820#S200901051820</id>
-    <updated>2009-01-05T23:47:47Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200901051820" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200901051820#S200901051820" type="S" vanityname="S200901051820" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200901051820/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200901051820
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-S200901051820.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200901051820/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M4-200812111908/eclipse-SDK-3.5M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200812151800/emf-xsd-SDK-2.5.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/m2m/qvtoml/downloads/drops/2.0.0/S200812290749/m2m-qvtoml-SDK-2.0.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200812221002/mdt-uml2-SDK-3.0.0M4a.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200812171720/GEF-SDK-3.5.0M4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200812171545/emf-transaction-SDK-1.3.0M4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200812171513/emf-validation-SDK-1.3.0M4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/S200812311042/gmf-sdk-2.2.0M4a.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200812171440/mdt-ocl-SDK-1.3.0M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools I200811250644 (0.9.0.I200811250644) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200811250644#I200811250644"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200811250644#I200811250644</id>
-    <updated>2008-11-25T15:41:58Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200811250644" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=I200811250644#I200811250644" type="I" vanityname="I200811250644" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/I200811250644/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=I200811250644
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-I200811250644.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/I200811250644/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M3-200810301917/eclipse-SDK-3.5M3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200811051424/GEF-SDK-3.5.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200811032126/emf-sdo-xsd-SDK-2.5.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200811051237/emf-transaction-SDK-1.3.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200811051210/emf-validation-SDK-1.3.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/S200811121901/gmf-sdk-2.2.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200811051142/mdt-ocl-SDK-1.3.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200811051048/mdt-uml2-SDK-3.0.0M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.9.0M3b (S200811170848) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200811170848#S200811170848"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200811170848#S200811170848</id>
-    <updated>2008-11-17T14:12:01Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200811170848" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200811170848#S200811170848" type="S" vanityname="0.9.0M3b" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200811170848/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200811170848
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.9.0M3b.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200811170848/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M3-200810301917/eclipse-SDK-3.5M3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200811051424/GEF-SDK-3.5.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200811032126/emf-sdo-xsd-SDK-2.5.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200811051237/emf-transaction-SDK-1.3.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200811051210/emf-validation-SDK-1.3.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/S200811121901/gmf-sdk-2.2.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200811051142/mdt-ocl-SDK-1.3.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200811051048/mdt-uml2-SDK-3.0.0M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.9.0M3 (S200811142037) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200811142037#S200811142037"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200811142037#S200811142037</id>
-    <updated>2008-11-15T01:59:08Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200811142037" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200811142037#S200811142037" type="S" vanityname="0.9.0M3" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200811142037/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200811142037
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.9.0M3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200811142037/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M3-200810301917/eclipse-SDK-3.5M3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200811051424/GEF-SDK-3.5.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200811032126/emf-sdo-xsd-SDK-2.5.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200811051237/emf-transaction-SDK-1.3.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200811051210/emf-validation-SDK-1.3.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/S200811121901/gmf-sdk-2.2.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200811051142/mdt-ocl-SDK-1.3.0M3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200811051048/mdt-uml2-SDK-3.0.0M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.1 (R200809231457) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200809231457#R200809231457"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200809231457#R200809231457</id>
-    <updated>2008-10-29T15:32:58Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_8_0_Maintenance" datetime="200809231457" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200809231457#R200809231457" type="R" vanityname="0.8.1" version="0.8.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/R200809231457/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=R200809231457
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.8.1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/R200809231457/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20080911-1700/eclipse-SDK-M20080911-1700-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.1/R200808251517/emf-sdo-xsd-SDK-2.4.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.2/R200809171625/gmf-sdk-2.1.2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.2/R200809160927/mdt-ocl-SDK-1.2.2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.1/M200808261340/mdt-uml2-SDK-M200808261340.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.1/M200809101400/GEF-SDK-M200809101400.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.2/R200809171545/emf-transaction-SDK-1.2.2.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.2.1/R200808130931/emf-validation-SDK-1.2.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.9.0M2 (S200810040708) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200810040708#S200810040708"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200810040708#S200810040708</id>
-    <updated>2008-10-04T12:08:33Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200810040708" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200810040708#S200810040708" type="S" vanityname="0.9.0M2" version="0.9.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200810040708/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200810040708
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.9.0M2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.9.0/S200810040708/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.5M2-200809180100/eclipse-SDK-3.5M2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.5.0/S200809231800/emf-sdo-xsd-SDK-2.5.0M2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.3.0/S200809241724/emf-transaction-SDK-1.3.0M2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.3.0/S200809241617/emf-validation-SDK-1.3.0M2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/3.0.0/S200809240156/mdt-uml2-SDK-3.0.0M2.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.5.0/S200809240157/GEF-SDK-3.5.0M2.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/gmf/gmf/downloads/drops/2.2.0/S200809301125/gmf-sdk-2.2.0M2.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.3.0/S200809241410/mdt-ocl-SDK-1.3.0M2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.1 (R200809231457) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200809231457#R200809231457"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200809231457#R200809231457</id>
-    <updated>2008-09-24T01:45:26Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_8_0_Maintenance" datetime="200809231457" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200809231457#R200809231457" type="R" vanityname="0.8.1" version="0.8.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/R200809231457/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=R200809231457
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.8.1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/R200809231457/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20080911-1700/eclipse-SDK-M20080911-1700-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.1/R200808251517/emf-sdo-xsd-SDK-2.4.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.2/R200809171625/gmf-sdk-2.1.2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.2/R200809160927/mdt-ocl-SDK-1.2.2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.1/M200808261340/mdt-uml2-SDK-M200808261340.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.1/M200809101400/GEF-SDK-M200809101400.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.2/R200809171545/emf-transaction-SDK-1.2.2.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.2.1/R200808130931/emf-validation-SDK-1.2.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools M200807180711 (0.8.1.M200807180711) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807180711#M200807180711"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807180711#M200807180711</id>
-    <updated>2008-07-18T11:44:24Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_8_0_Maintenance" datetime="200807180711" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807180711#M200807180711" type="M" version="0.8.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/M200807180711/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=M200807180711
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-M200807180711.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/M200807180711/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.4-200806172000/eclipse-SDK-3.4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/R200806091234/emf-sdo-xsd-SDK-2.4.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/R200806091902/emf-transaction-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/R200806091804/emf-validation-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/R200806121402/gmf-sdk-2.1.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/R200806091714/mdt-ocl-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.0/R200806091334/GEF-ALL-3.4.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools M200807170715 (0.8.1.M200807170715) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807170715#M200807170715"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807170715#M200807170715</id>
-    <updated>2008-07-17T11:37:41Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_8_0_Maintenance" datetime="200807170715" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807170715#M200807170715" type="M" version="0.8.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/M200807170715/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=M200807170715
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-M200807170715.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/M200807170715/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.4-200806172000/eclipse-SDK-3.4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/R200806091234/emf-sdo-xsd-SDK-2.4.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/R200806091902/emf-transaction-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/R200806091804/emf-validation-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/R200806121402/gmf-sdk-2.1.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/R200806091714/mdt-ocl-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.0/R200806091334/GEF-ALL-3.4.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools M200807091048 (0.8.1.M200807091048) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807091048#M200807091048"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807091048#M200807091048</id>
-    <updated>2008-07-09T15:19:41Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_8_0_Maintenance" datetime="200807091048" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807091048#M200807091048" type="M" version="0.8.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/M200807091048/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=M200807091048
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-M200807091048.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/M200807091048/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.4-200806172000/eclipse-SDK-3.4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/R200806091234/emf-sdo-xsd-SDK-2.4.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/R200806091902/emf-transaction-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/R200806091804/emf-validation-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/R200806121402/gmf-sdk-2.1.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/R200806091714/mdt-ocl-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.0/R200806091334/GEF-ALL-3.4.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools M200807071308 (0.8.1.M200807071308) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807071308#M200807071308"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807071308#M200807071308</id>
-    <updated>2008-07-07T17:33:26Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_8_0_Maintenance" datetime="200807071308" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807071308#M200807071308" type="M" version="0.8.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/M200807071308/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=M200807071308
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-M200807071308.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/M200807071308/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.4-200806172000/eclipse-SDK-3.4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/R200806091234/emf-sdo-xsd-SDK-2.4.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/R200806091902/emf-transaction-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/R200806091804/emf-validation-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/R200806121402/gmf-sdk-2.1.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/R200806091714/mdt-ocl-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.0/R200806091334/GEF-ALL-3.4.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools M200807030722 (0.8.1.M200807030722) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807030722#M200807030722"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807030722#M200807030722</id>
-    <updated>2008-07-07T09:11:35Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_8_0_Maintenance" datetime="200807030722" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200807030722#M200807030722" type="M" version="0.8.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/M200807030722/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=M200807030722
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-M200807030722.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.1/M200807030722/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.4-200806172000/eclipse-SDK-3.4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/R200806091234/emf-sdo-xsd-SDK-2.4.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/R200806091902/emf-transaction-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/R200806091804/emf-validation-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/R200806121402/gmf-sdk-2.1.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/R200806091714/mdt-ocl-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.0/R200806091334/GEF-ALL-3.4.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.0 (R200806112132) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200806112132#R200806112132"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200806112132#R200806112132</id>
-    <updated>2008-06-24T16:20:16Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200806112132" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200806112132#R200806112132" type="R" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/R200806112132/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=R200806112132
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.8.0.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/R200806112132/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/R-3.4-200806172000/eclipse-SDK-3.4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/gef//downloads/drops/3.4.0/R200806091334/GEF-ALL-3.4.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/R200806091234/emf-sdo-xsd-SDK-2.4.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/R200806091744/emf-query-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/R200806091902/emf-transaction-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/R200806091804/emf-validation-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/R200806121402/gmf-sdk-2.1.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/R200806091714/mdt-ocl-SDK-1.2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/R200806091546/mdt-uml2-SDK-2.2.0.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.0RC4 (S200806112132) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200806112132#S200806112132"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200806112132#S200806112132</id>
-    <updated>2008-06-12T02:01:19Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200806112132" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200806112132#S200806112132" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200806112132/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200806112132
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.8.0RC4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200806112132/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4RC4-200806091311/eclipse-SDK-3.4RC4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/S200806091902/emf-transaction-SDK-1.2.0RC4.zip</dependency>
-          <dependency>http://emft.eclipse.org/gef//downloads/drops/3.4.0/S200806091334/GEF-ALL-3.4.0RC4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200806091234/emf-sdo-xsd-SDK-2.4.0RC4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/S200806091744/emf-query-SDK-1.2.0RC4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/S200806091804/emf-validation-SDK-1.2.0RC4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/S200806101146/gmf-sdk-2.1.0RC4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/S200806091714/mdt-ocl-SDK-1.2.0RC4.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200806091546/mdt-uml2-SDK-2.2.0RC4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.0RC3 (S200806042045) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200806042045#S200806042045"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200806042045#S200806042045</id>
-    <updated>2008-06-05T01:11:42Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200806042045" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200806042045#S200806042045" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200806042045/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200806042045
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.8.0RC3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200806042045/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4RC3-200805301730/eclipse-SDK-3.4RC3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200806021803/mdt-uml2-SDK-2.2.0RC3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200806021643/emf-sdo-xsd-SDK-2.4.0RC3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/S200806031633/emf-query-SDK-1.2.0RC3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/S200806031723/emf-transaction-SDK-1.2.0RC3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/S200806031653/emf-validation-SDK-1.2.0RC3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/S200806031803/gmf-sdk-2.1.0RC3.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/S200806031603/mdt-ocl-SDK-1.2.0RC3.zip</dependency>
-          <dependency>http://emft.eclipse.org/tools/gef/downloads/drops/3.4.0/S200806021713/GEF-ALL-3.4.0RC3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.0RC2 (S200805290528) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805290528#S200805290528"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805290528#S200805290528</id>
-    <updated>2008-05-29T10:30:47Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200805290528" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805290528#S200805290528" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200805290528/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200805290528
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.8.0RC2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200805290528/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4RC2-200805230100/eclipse-SDK-3.4RC2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200805270202/emf-sdo-xsd-SDK-2.4.0RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200805270322/mdt-uml2-SDK-2.2.0RC2.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.0/S200805270232/GEF-ALL-3.4.0RC2.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/S200805201830/emf-query-SDK-1.2.0RC1.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/S200805272032/emf-transaction-SDK-1.2.0RC2.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/S200805272002/emf-validation-SDK-1.2.0RC2.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/S200805272112/gmf-sdk-2.1.0RC2.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/S200805201800/mdt-ocl-all-SDK-1.2.0RC1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.0RC1 (S200805221219) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805221219#S200805221219"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805221219#S200805221219</id>
-    <updated>2008-05-22T17:30:58Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200805221219" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805221219#S200805221219" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200805221219/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200805221219
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.8.0RC1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200805221219/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4RC1-200805161333/eclipse-SDK-3.4RC1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/S200805211012/gmf-sdk-2.1.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.0/S200805121830/GEF-ALL-3.4.0RC1.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200805211620/emf-sdo-xsd-SDK-2.4.0RC1a.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/S200805201830/emf-query-SDK-1.2.0RC1.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/S200805201917/emf-transaction-SDK-1.2.0RC1.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/S200805201850/emf-validation-SDK-1.2.0RC1.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/S200805201800/mdt-ocl-all-SDK-1.2.0RC1.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200805211800/mdt-uml2-SDK-2.2.0RC1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.0M7a (S200805122221) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805122221#S200805122221"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805122221#S200805122221</id>
-    <updated>2008-05-13T03:04:48Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200805122221" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805122221#S200805122221" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200805122221/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200805122221
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.8.0M7a.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200805122221/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4M7-200805020100/eclipse-SDK-3.4M7-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200805052017/emf-sdo-xsd-SDK-2.4.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/S200805061205/emf-transaction-SDK-1.2.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/S200805092209/gmf-sdk-2.1.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200805052208/mdt-uml2-SDK-2.2.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.0/S200804291800/GEF-ALL-3.4.0M7.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/S200805061125/emf-query-SDK-1.2.0M7.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/S200805061125/emf-validation-SDK-1.2.0M7.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/S200805061053/mdt-ocl-SDK-1.2.0M7.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.0M7 (S200805121336) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805121336#S200805121336"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805121336#S200805121336</id>
-    <updated>2008-05-12T17:55:27Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200805121336" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805121336#S200805121336" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200805121336/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200805121336
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.8.0M7.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200805121336/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4M7-200805020100/eclipse-SDK-3.4M7-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200805052017/emf-sdo-xsd-SDK-2.4.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/S200805061205/emf-transaction-SDK-1.2.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/S200805092209/gmf-sdk-2.1.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200805052208/mdt-uml2-SDK-2.2.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.0/S200804291800/GEF-ALL-3.4.0M7.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/S200805061125/emf-query-SDK-1.2.0M7.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/S200805061125/emf-validation-SDK-1.2.0M7.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/S200805061053/mdt-ocl-SDK-1.2.0M7.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools S200805121221 (0.8.0.S200805121221) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805121221#S200805121221"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805121221#S200805121221</id>
-    <updated>2008-05-12T16:46:17Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200805121221" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200805121221#S200805121221" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200805121221/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200805121221
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-S200805121221.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200805121221/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4M7-200805020100/eclipse-SDK-3.4M7-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200805052017/emf-sdo-xsd-SDK-2.4.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/S200805061205/emf-transaction-SDK-1.2.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/S200805092209/gmf-sdk-2.1.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200805052208/mdt-uml2-SDK-2.2.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.0/S200804291800/GEF-ALL-3.4.0M7.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/S200805061125/emf-query-SDK-1.2.0M7.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/S200805061125/emf-validation-SDK-1.2.0M7.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/S200805061053/mdt-ocl-SDK-1.2.0M7.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.0M6 (S200804101255) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200804101255#S200804101255"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200804101255#S200804101255</id>
-    <updated>2008-04-10T17:07:46Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200804101255" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200804101255#S200804101255" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200804101255/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200804101255
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.8.0M6.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200804101255/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4M6-200803301350/eclipse-SDK-3.4M6-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200804012208/emf-sdo-xsd-SDK-2.4.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/S200804020200/emf-query-SDK-1.2.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/S200804020220/emf-transaction-SDK-1.2.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/S200804020210/emf-validation-SDK-1.2.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/S200804020135/mdt-ocl-all-SDK-1.2.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200804020110/mdt-uml2-SDK-2.2.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.0/S200804012217/GEF-ALL-3.4.0M6.zip</dependency>
-          <dependency>http://emft.eclipse.org/modeling/gmf/gmf/downloads/drops/2.1.0/S200804091700/gmf-sdk-2.1M6.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.7.2 (R200802260712) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200802260712#R200802260712"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200802260712#R200802260712</id>
-    <updated>2008-02-26T12:43:51Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_7_0_Maintenance" datetime="200802260712" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200802260712#R200802260712" type="R" version="0.7.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.2/R200802260712/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=R200802260712
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.7.2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.2/R200802260712/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20080221-1800/eclipse-SDK-M20080221-1800-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.2/M200712211131/emf-sdo-xsd-SDK-M200712211131.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.1.1/M200711281257/emf-query-SDK-M200711281257.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.2/M200712061336/emf-transaction-SDK-M200712061336.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.1/R200708161055/emf-validation-SDK-1.1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/M-M20080215-200802151200/GMF-sdk-M20080215.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.1.2/M200711281212/mdt-ocl-SDK-M200711281212.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.1/R200708301304/mdt-uml2-SDK-2.1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.3.2/R200802211602/GEF-ALL-3.3.2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.0M5 (S200802180622) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200802180622#S200802180622"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200802180622#S200802180622</id>
-    <updated>2008-02-18T17:43:26Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200802180622" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200802180622#S200802180622" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200802180622/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200802180622
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.8.0M5.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200802180622/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4M5-200802071530/eclipse-SDK-3.4M5-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200802090050/emf-sdo-xsd-SDK-2.4.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/S200802122130/emf-query-SDK-1.2.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/S200802122150/emf-transaction-SDK-1.2.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/S200802122140/emf-validation-SDK-1.2.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/S-2.1M5-200802151500/GMF-sdk-2.1M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/S200802121700/mdt-ocl-SDK-1.2.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200802121122/mdt-uml2-SDK-2.2.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/3.4.0/S200802062130/GEF-ALL-3.4.0M5.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools M200802061226 (0.7.1.M200802061226) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200802061226#M200802061226"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200802061226#M200802061226</id>
-    <updated>2008-02-06T17:53:23Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_7_0_Maintenance" datetime="200802061226" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200802061226#M200802061226" type="M" version="0.7.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.1/M200802061226/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=M200802061226
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-M200802061226.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.1/M200802061226/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org//tools/gef/downloads/drops/3.4.0/I200801021512/GEF-ALL-I200801021512.zip</dependency>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20080131-1440/eclipse-SDK-M20080131-1440-win32.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.2/M200712112200/emf-sdo-xsd-SDK-M200712112200.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.1.1/M200711281257/emf-query-SDK-M200711281257.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.2/M200710151235/emf-transaction-SDK-M200710151235.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.1/M200708161055/emf-validation-SDK-M200708161055.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/M-M20080201-200802010201/GMF-sdk-M20080201.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.1.2/M200711281212/mdt-ocl-SDK-M200711281212.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.1/R200708301304/mdt-uml2-SDK-2.1.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools M200802051720 (0.7.2.M200802051720) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200802051720#M200802051720"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200802051720#M200802051720</id>
-    <updated>2008-02-22T02:39:51Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="R0_7_0_Maintenance" datetime="200802051720" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=M200802051720#M200802051720" type="M" version="0.7.2">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.2/M200802051720/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=M200802051720
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-M200802051720.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.2/M200802051720/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org//tools/gef/downloads/drops/3.4.0/I200801021512/GEF-ALL-I200801021512.zip</dependency>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20080131-1440/eclipse-SDK-M20080131-1440-win32.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.2/M200712112200/emf-sdo-xsd-SDK-M200712112200.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.1.1/M200711281257/emf-query-SDK-M200711281257.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.2/M200710151235/emf-transaction-SDK-M200710151235.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.1/M200708161055/emf-validation-SDK-M200708161055.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/M-M20080201-200802010201/GMF-sdk-M20080201.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.1.2/M200711281212/mdt-ocl-SDK-M200711281212.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.1/R200708301304/mdt-uml2-SDK-2.1.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.0M4 (S200801081543) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200801081543#S200801081543"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200801081543#S200801081543</id>
-    <updated>2008-02-22T04:41:03Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200801081543" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200801081543#S200801081543" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200801081543/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200801081543
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.8.0M4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200801081543/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4M4-200712131700/eclipse-SDK-3.4M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200712160044/emf-sdo-xsd-SDK-2.4.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/S200712171224/emf-query-SDK-1.2.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/S200712171243/emf-transaction-SDK-1.2.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/S200712171225/emf-validation-SDK-1.2.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/S-2.1M4-200801071111/GMF-sdk-2.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/S200712171124/mdt-ocl-SDK-1.2.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200712170918/mdt-uml2-SDK-2.2.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/S-3.4M4-200712181544/GEF-ALL-3.4M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.0M3 (S200711150602) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200711150602#S200711150602"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200711150602#S200711150602</id>
-    <updated>2007-11-18T23:33:17Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200711150602" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200711150602#S200711150602" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200711150602/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200711150602
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-incubation-0.8.0M3.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200711150602/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.4M3-200711012000/eclipse-SDK-3.4M3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200711062140/emf-sdo-xsd-SDK-2.4.0M3.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/S200711071302/emf-query-SDK-1.2.0M3.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.0/R200706201332/emf-transaction-SDK-1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.0/R200706201210/emf-validation-SDK-1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/S-2.1M3-200711120000/GMF-sdk-2.1M3.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/S200711121359/mdt-ocl-SDK-1.2.0M3.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200711121155/mdt-uml2-SDK-2.2.0M3.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/S-3.4M3-200711051144/GEF-ALL-3.4M3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.8.0M2 (S200710031549) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200710031549#S200710031549"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200710031549#S200710031549</id>
-    <updated>2007-10-03T20:05:28Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200710031549" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200710031549#S200710031549" type="S" version="0.8.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200710031549/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200710031549
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-0.8.0M2.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.8.0/S200710031549/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops//S-3.4M2-200709210919/eclipse-SDK-3.4M2-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.4.0/S200709260024/emf-sdo-xsd-SDK-2.4.0M2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.2.0/S200709261712/emf-query-SDK-1.2M2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.2.0/S200709261728/emf-transaction-SDK-1.2M2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.2.0/S200709261720/emf-validation-SDK-1.2M2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/S-2.1M2-200710030000/GMF-sdk-2.1M2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.2.0/S200710031157/mdt-ocl-SDK-1.2M2.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.2.0/S200710031132/mdt-uml2-SDK-2.2M2.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/S-3.4M2-200710021925/GEF-ALL-3.4M2.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.7.1 (R200710010534) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200710010534#R200710010534"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200710010534#R200710010534</id>
-    <updated>2007-10-01T09:53:41Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200710010534" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200710010534#R200710010534" type="R" version="0.7.1">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.1/R200710010534/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=R200710010534
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-0.7.1.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.1/R200710010534/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/M20070921-1145/eclipse-SDK-M20070921-1145-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.1/R200709252135/emf-sdo-xsd-SDK-2.3.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.1.0/R200706201159/emf-query-SDK-1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.1/R200708231550/emf-transaction-SDK-1.1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.1/R200708161055/emf-validation-SDK-1.1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/R-2.0.1-200709280000/GMF-sdk-2.0.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.1.1/R200709121604/mdt-ocl-SDK-1.1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.1/R200708301304/mdt-uml2-SDK-2.1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/R-3.3.1-200709241000/GEF-ALL-3.3.1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.7.0b (R200707030850) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200707030850#R200707030850"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200707030850#R200707030850</id>
-    <updated>2007-07-03T16:46:31Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200707030850" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200707030850#R200707030850" type="S" version="0.7.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/R200707030850/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=R200707030850
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-0.7.0b.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/R200707030850/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/R200706262000/emf-sdo-xsd-SDK-2.3.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.1.0/R200706201159/emf-query-SDK-1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.0/R200706201332/emf-transaction-SDK-1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.0/R200706201210/emf-validation-SDK-1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/R-2.0-200706210000/GMF-sdk-2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.1.0/R200706201142/mdt-ocl-SDK-1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.0/R200706251652/mdt-uml2-SDK-2.1.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/R-3.3-200706281000/GEF-ALL-3.3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.7.0 (R200706291101) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200706291101#R200706291101"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200706291101#R200706291101</id>
-    <updated>2007-07-02T12:54:24Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706291101" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=R200706291101#R200706291101" type="R" version="0.7.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/R200706291101/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=R200706291101
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-0.7.0.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/R200706291101/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/R-3.3-200706251500/eclipse-SDK-3.3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/R200706262000/emf-sdo-xsd-SDK-2.3.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.1.0/R200706201159/emf-query-SDK-1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.0/R200706201332/emf-transaction-SDK-1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.0/R200706201210/emf-validation-SDK-1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/R-2.0-200706210000/GMF-sdk-2.0.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.1.0/R200706201142/mdt-ocl-SDK-1.1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.0/R200706251652/mdt-uml2-SDK-2.1.0.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/R-3.3-200706281000/GEF-ALL-3.3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.7.0RC3fix (0.7.0.S200706201055) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200706201055#S200706201055"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200706201055#S200706201055</id>
-    <updated>2007-06-22T16:04:11Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200706201055" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200706201055#S200706201055" type="S" version="0.7.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/S200706201055/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200706201055
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-RC3fix.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/S200706201055/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC3-200706011539/eclipse-SDK-3.3RC3-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200706130003/emf-sdo-xsd-SDK-2.3.0RC3.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.1.0/S200706131122/emf-query-SDK-1.1RC3.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.0/S200706131159/emf-transaction-SDK-1.1RC3.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.0/S200706131139/emf-validation-SDK-1.1RC3.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/S-2.0RC3-200706141400/GMF-sdk-2.0RC3.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.1.0/S200706131106/mdt-ocl-SDK-1.1RC3.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.0/S200706141134/mdt-uml2-SDK-2.1RC3.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/S-3.3RC3-200706131125/GEF-ALL-3.3RC3.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.7.0M7b (0.7.0.S200705241121) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200705241121#S200705241121"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200705241121#S200705241121</id>
-    <updated>2007-05-24T16:12:13Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200705241121" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200705241121#S200705241121" type="S" version="0.7.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/S200705241121/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200705241121
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-M7b.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/S200705241121/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3RC1-200705171700/eclipse-SDK-3.3RC1-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200705230200/emf-sdo-xsd-SDK-2.3.0RC1.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.1.0/S200705111411/emf-query-SDK-1.1M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.0/S200705111426/emf-transaction-SDK-1.1M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.0/S200705111419/emf-validation-SDK-1.1M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/S-2.0M7-200705201200/GMF-sdk-2.0M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.1.0/S200705111356/mdt-ocl-SDK-1.1M7.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.0/S200705171545/mdt-uml2-SDK-2.1M7.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/S-3.3RC1-200705230926/GEF-ALL-3.3RC1.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.7.0M6b (S200704101450) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200704101450#S200704101450"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200704101450#S200704101450</id>
-    <updated>2007-05-14T19:40:00Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200704101450" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200704101450#S200704101450" type="S" version="0.7.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/S200704101450/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=S200704101450
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-0.7.0M6b.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/S200704101450/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3M6-200703231616/eclipse-SDK-3.3M6-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200703291501/emf-sdo-xsd-SDK-2.3.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/S-2.0M6-200704052000/GMF-sdk-2.0M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.1.0/S200703301439/mdt-ocl-SDK-1.1M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.0/S200704051025/mdt-uml2-SDK-2.1M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.1.0/S200703301543/emft-query-SDK-1.1M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.0/S200703301538/emft-transaction-SDK-1.1M6.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.0/S200703301524/emft-validation-SDK-1.1M6.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/S-3.3M6-200703300740/GEF-ALL-3.3M6.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.7.0M5 (S200702231841) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200702231841#S200702231841"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200702231841#S200702231841</id>
-    <updated>2007-02-24T00:22:20Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200702231841" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200702231841#S200702231841" type="S" version="0.7.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/S200702231841/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=0.7.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-0.7.0M5.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/S200702231841/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/downloads/drops/S-3.3M5-200702091006/eclipse-SDK-3.3M5-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200702121527/emf-sdo-xsd-SDK-2.3.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/S-2.0M5-200702211500/GMF-sdk-2.0M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/ocl/downloads/drops/1.1.0/S200702141355/mdt-ocl-SDK-1.1M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.0/S200702222305/uml2-SDK-2.1M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.1.0/S200702141445/emft-query-SDK-1.1M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.0/S200702141506/emft-transaction-SDK-1.1M5.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.0/S200702141455/emft-validation-SDK-1.1M5.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/S-3.3M5-200702151352/GEF-ALL-3.3M5.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.7.0M4b (S200701301715) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200701301715#S200701301715"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200701301715#S200701301715</id>
-    <updated>2007-01-31T22:58:15Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200701301715" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200701301715#S200701301715" type="S" version="0.7.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/S200701301715/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=0.7.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-0.7.0M4b.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/S200701301715/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.3M4-200612141445/eclipse-SDK-3.3M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/S-2.0M4-200701030300/GMF-sdk-2.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2-ocl/downloads/drops/1.1.0/S200612211659/emft-ocl-SDK-1.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2-uml/downloads/drops/2.1.0/S200701040816/uml2-SDK-2.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.1.0/S200612211745/emft-query-SDK-1.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.0/S200612220820/emft-transaction-SDK-1.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.0/S200612211746/emft-validation-SDK-1.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200612211251/emf-sdo-xsd-SDK-2.3.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/S-3.3M4-200612191422/GEF-ALL-3.3M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.7.0M4a (S200701301242) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200701301242#S200701301242"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200701301242#S200701301242</id>
-    <updated>2007-01-30T18:50:58Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200701301242" href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2tools&amp;showAll=1&amp;hlbuild=S200701301242#S200701301242" type="S" version="0.7.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/S200701301242/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://download.eclipse.org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=0.7.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-0.7.0M4a.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/S200701301242/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.3M4-200612141445/eclipse-SDK-3.3M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/S-2.0M4-200701030300/GMF-sdk-2.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2-ocl/downloads/drops/1.1.0/S200612211659/emft-ocl-SDK-1.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2-uml/downloads/drops/2.1.0/S200701040816/uml2-SDK-2.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.1.0/S200612211745/emft-query-SDK-1.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.0/S200612220820/emft-transaction-SDK-1.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.0/S200612211746/emft-validation-SDK-1.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200612211251/emf-sdo-xsd-SDK-2.3.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/S-3.3M4-200612191422/GEF-ALL-3.3M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-  <entry>
-    <title>[announce] uml2tools 0.7.0M4 (S200701221749) is available</title>
-    <link href="http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&amp;hlbuild=S200701221749#S200701221749"/>
-    <id>http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&amp;hlbuild=S200701221749#S200701221749</id>
-    <updated>2007-01-23T23:14:31Z</updated>
-    <summary>
-      <build xmlns="http://www.eclipse.org/2006/BuildFeed" branch="HEAD" datetime="200701221749" href="http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&amp;hlbuild=S200701221749#S200701221749" type="S" version="0.7.0">
-        <detail config="build.cfg" href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/emf/emf/downloads/drops/0.7.0/S200701221749/" log="buildlog.txt" map="directory.txt"/>
-        <update>http://download.eclipse.org/modeling/mdt/updates/</update>
-        <downloads>http://org/modeling/mdt/downloads/?project=uml2tools</downloads>
-        <releasenotes>http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2tools&amp;version=0.7.0
-          </releasenotes>
-        <releases>
-          <release arch="ALL" os="ALL" type="SDK" ws="ALL">mdt-uml2tools-SDK-0.7.0M4.zip</release>
-        </releases>
-        <tests>
-          <test href="http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/uml2tools/downloads/drops/0.7.0/S200701221749/testResults.php" type="junit">
-            <result arch="ALL" os="ALL" ws="ALL">PASS</result>
-          </test>
-        </tests>
-        <dependencies>
-          <dependency>http://download.eclipse.org/eclipse/downloads/drops/S-3.3M4-200612141445/eclipse-SDK-3.3M4-linux-gtk.tar.gz</dependency>
-          <dependency>http://download.eclipse.org/modeling/gmf/downloads/drops/S-2.0M4-200701030300/GMF-sdk-2.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/1.1.0/S200612211659/emft-ocl-SDK-1.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/mdt/uml2/downloads/drops/2.1.0/S200701040816/uml2-SDK-2.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/query/downloads/drops/1.1.0/S200612211745/emft-query-SDK-1.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/transaction/downloads/drops/1.1.0/S200612220820/emft-transaction-SDK-1.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/validation/downloads/drops/1.1.0/S200612211746/emft-validation-SDK-1.1M4.zip</dependency>
-          <dependency>http://download.eclipse.org/modeling/emf/emf/downloads/drops/2.3.0/S200612211251/emf-sdo-xsd-SDK-2.3.0M4.zip</dependency>
-          <dependency>http://download.eclipse.org/tools/gef/downloads/drops/S-3.3M4-200612191422/GEF-ALL-3.3M4.zip</dependency>
-        </dependencies>
-        <coordinated status=""/>
-      </build>
-    </summary>
-  </entry>
-</feed>
diff --git a/feeds/index.php b/feeds/index.php
deleted file mode 100644
index 94c9f3d..0000000
--- a/feeds/index.php
+++ /dev/null
@@ -1,4 +0,0 @@
-<?php
-require_once ("../../includes/buildServer-common.php");
-require($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/feeds-common.php");
-?>
\ No newline at end of file
diff --git a/images/Idea.jpg b/images/Idea.jpg
deleted file mode 100644
index 119ce70..0000000
--- a/images/Idea.jpg
+++ /dev/null
Binary files differ
diff --git a/images/XMLSchemaDefinitionModel.gif b/images/XMLSchemaDefinitionModel.gif
deleted file mode 100644
index d4a5d21..0000000
--- a/images/XMLSchemaDefinitionModel.gif
+++ /dev/null
Binary files differ
diff --git a/images/XMLSchemaInfosetModel.gif b/images/XMLSchemaInfosetModel.gif
deleted file mode 100644
index 5d6ebaa..0000000
--- a/images/XMLSchemaInfosetModel.gif
+++ /dev/null
Binary files differ
diff --git a/images/c.gif b/images/c.gif
deleted file mode 100644
index 1d11fa9..0000000
--- a/images/c.gif
+++ /dev/null
Binary files differ
diff --git a/images/c.png b/images/c.png
deleted file mode 100644
index e3c167a..0000000
--- a/images/c.png
+++ /dev/null
Binary files differ
diff --git a/images/link.png b/images/link.png
deleted file mode 100644
index 8b624d9..0000000
--- a/images/link.png
+++ /dev/null
Binary files differ
diff --git a/images/linux_only.gif b/images/linux_only.gif
deleted file mode 100644
index 7c135cf..0000000
--- a/images/linux_only.gif
+++ /dev/null
Binary files differ
diff --git a/images/new.gif b/images/new.gif
deleted file mode 100644
index 3ef5f5e..0000000
--- a/images/new.gif
+++ /dev/null
Binary files differ
diff --git a/images/ok.gif b/images/ok.gif
deleted file mode 100644
index 689e523..0000000
--- a/images/ok.gif
+++ /dev/null
Binary files differ
diff --git a/images/reference.gif b/images/reference.gif
deleted file mode 100644
index 2f56273..0000000
--- a/images/reference.gif
+++ /dev/null
Binary files differ
diff --git a/images/tag_1.gif b/images/tag_1.gif
deleted file mode 100644
index 4859d6f..0000000
--- a/images/tag_1.gif
+++ /dev/null
Binary files differ
diff --git a/images/tag_2.gif b/images/tag_2.gif
deleted file mode 100644
index 5ea43dc..0000000
--- a/images/tag_2.gif
+++ /dev/null
Binary files differ
diff --git a/images/tag_3.gif b/images/tag_3.gif
deleted file mode 100644
index a69b68e..0000000
--- a/images/tag_3.gif
+++ /dev/null
Binary files differ
diff --git a/images/tag_4.gif b/images/tag_4.gif
deleted file mode 100644
index a1ad63f..0000000
--- a/images/tag_4.gif
+++ /dev/null
Binary files differ
diff --git a/images/tag_5.gif b/images/tag_5.gif
deleted file mode 100644
index d86a748..0000000
--- a/images/tag_5.gif
+++ /dev/null
Binary files differ
diff --git a/images/tag_6.gif b/images/tag_6.gif
deleted file mode 100644
index b9eb4ec..0000000
--- a/images/tag_6.gif
+++ /dev/null
Binary files differ
diff --git a/images/tag_7.gif b/images/tag_7.gif
deleted file mode 100644
index 5f0e8fa..0000000
--- a/images/tag_7.gif
+++ /dev/null
Binary files differ
diff --git a/images/tip.gif b/images/tip.gif
deleted file mode 100644
index 77b2451..0000000
--- a/images/tip.gif
+++ /dev/null
Binary files differ
diff --git a/images/tryit.gif b/images/tryit.gif
deleted file mode 100644
index f4927a4..0000000
--- a/images/tryit.gif
+++ /dev/null
Binary files differ
diff --git a/images/win_only.gif b/images/win_only.gif
deleted file mode 100644
index 895f9ca..0000000
--- a/images/win_only.gif
+++ /dev/null
Binary files differ
diff --git a/imm/build/.cvsignore b/imm/build/.cvsignore
deleted file mode 100644
index 79eb93b..0000000
--- a/imm/build/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-.htaccess
\ No newline at end of file
diff --git a/imm/build/_common.php b/imm/build/_common.php
deleted file mode 100644
index 4e7f08b..0000000
--- a/imm/build/_common.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php

-require_once ("../../../includes/buildServer-common.php");

-

-$options = array (

-	"BaseBuilderBranch" => "R35_M5",

-	

-	"BranchAndJDK" => array (

-		"emf.torolab.ibm.com=------------,------------",

-		"0.0.7=HEAD,/opt/sun-java2-5.0",

-		

-		"build.eclipse.org=------------,------------",

-		"0.0.7=HEAD,/opt/public/common/ibm-java2-ppc-50"

-	),

-	

-	"Mapfile_Rule_Default" => 0, // 0: "Use Map, No Tagging=use-false" or 1:"Generate Map, No Tagging=gen-false"

-

-	"EmailDefault" => "Kenn.Hussey@embarcadero.com", // prefil email contact box with comma-sep'd list

-	

-	"Users" => array ("khussey", "khussey", "khussey") /* build user, eclipse cvs user, IES cvs user */

-);

-

-?>

diff --git a/imm/build/clean.php b/imm/build/clean.php
deleted file mode 100755
index e98dbf0..0000000
--- a/imm/build/clean.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/clean-common.php"); ?>
diff --git a/imm/build/index.php b/imm/build/index.php
deleted file mode 100644
index 5367a81..0000000
--- a/imm/build/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/build-common.php"); ?>

diff --git a/imm/build/promo.php b/imm/build/promo.php
deleted file mode 100644
index d95f4ee..0000000
--- a/imm/build/promo.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/promo-common.php"); ?>

diff --git a/imm/eclipse-project-ip-log.csv b/imm/eclipse-project-ip-log.csv
deleted file mode 100644
index 15b1b7e..0000000
--- a/imm/eclipse-project-ip-log.csv
+++ /dev/null
@@ -1,14 +0,0 @@
-Section 1 (Committers),,,,

-

-dev.eclise.org Login,,,,

-khussey,,,,

-dcarlson,,,,

-ndowler,,,,

-

-Section 2 (Developers),,,,

-

-Component,Bug #,Contributor,Size,Committer

-

-Section 3 (Third Party Software),,,,

-

-Name,Location,License,Usage,

diff --git a/imm/index.php b/imm/index.php
deleted file mode 100755
index ae2b92e..0000000
--- a/imm/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: http://www.eclipse.org/modeling/mdt/?project=imm"); ?>

diff --git a/imm/project-info/contributors.html b/imm/project-info/contributors.html
deleted file mode 100644
index 7e54324..0000000
--- a/imm/project-info/contributors.html
+++ /dev/null
@@ -1,5 +0,0 @@
-<p>
-  <li>Kenn Hussey</li>
-  <li>Dave Carlson</li>
-  <li>Nick Dowler</li>
-</p>
\ No newline at end of file
diff --git a/imm/project-info/overview.html b/imm/project-info/overview.html
deleted file mode 100644
index 7058819..0000000
--- a/imm/project-info/overview.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<p>
-IMM is an open source component of the Model Development Tools (MDT) subproject to provide metamodel/profile implementations based on the forthcoming <a href="http://www.omg.org/cgi-bin/doc?ab/2005-12-2">Information Management Metamodel (IMM)</a> OMG specification.
-</p>
-<p>
-The objectives of the IMM component are to provide
-<ul>
-  <li>an open source "reference" implementation of the IMM specification</li>
-  <li>an EMF-based foundation on which information management modeling tools can be built</li>
-  <li>a basis for integrating and interchanging artifacts between information management modeling tools</li>
-  <li>a forum for engaging the community in validation of the IMM specification</li>
-  <li>an opportunity for increased collaboration between Eclipse and the OMG</li>
-</ul>
-</p>
-<p>
-For more details on IMM, see the <a href="http://wiki.eclipse.org/MDT-IMM">Wiki</a>.
-</p>
diff --git a/imm/project-info/plan_0_7.xml b/imm/project-info/plan_0_7.xml
deleted file mode 100644
index 5137bd9..0000000
--- a/imm/project-info/plan_0_7.xml
+++ /dev/null
@@ -1,128 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
-<?xml-stylesheet type="text/xsl" href="http://www.eclipse.org/projects/project-plan.xsl"?>
-<plan plan-format="1.0" xmlns="http://www.eclipse.org/project/plan" xmlns:html="http://www.w3.org/1999/xhtml" name="Project Name">
-  <release projectid="modeling.mdt" version="0.7.0" />
-  <introduction>
-    <html:div>
-      <html:p>
-This document lays out the feature and API set for the first release of the 
-Eclipse Information Management Metamodel (MDT IMM) Project, version 0.7.0. This 
-project plan inherits from the Modeling Project Plan, which should be 
-referenced when consulting this individual project plan.
-      </html:p>
-      <html:p>
-<html:i><html:b>Note</html:b> that, because the IMM 1.0 specification may not 
-have been adopted and/or finalized by June 2009, APIs provided as part of the 
-0.7.0 release of <html:b>MDT IMM</html:b> are to be considered 
-<html:b>provisional</html:b>.</html:i>
-      </html:p>
-    </html:div>
-  </introduction>
-  <release_deliverables>
-    <html:div>
-The release deliverables have the same form as is found in most Eclipse projects, namely:
-      <html:ul>
-        <html:li>MDT IMM source code release, available as versions tagged "R0_7" in the project's CVS repository</html:li>
-        <html:li>MDT IMM SDK (includes runtime, sources, examples, and documentation) (downloadable and update site)</html:li>
-        <html:li>MDT IMM runtime binary distribution (downloadable and update site).</html:li>
-        <html:li>MDT IMM stand-alone binary distribution (downloadable)</html:li>
-        <html:li>MDT IMM tests (downloadable)</html:li>
-      </html:ul>
-    </html:div>
-  </release_deliverables>
-  <release_milestones>
-    <preamble>
-      <html:div>
-Release milestone occurring at roughly 6 week intervals and follow the 
-Platform milestone releases by approximately 1 week; that is, until the final 
-3.5 release of the Platform, upon which MDT IMM and other projects will release 
-simultaneously. As MDT IMM may become a dependency of numerous other projects, 
-MDT IMM will deliver its milestones within one week of the Eclipse Platform. It 
-is anticipated that MDT IMM will synchronize its milestones with the Galileo 
-milestone schedule.
-      </html:div>
-    </preamble>
-    <milestone date="08/13/2008" milestone="M1" />
-    <milestone date="09/24/2008" milestone="M2" />
-    <milestone date="11/05/2008" milestone="M3" />
-    <milestone date="12/17/2008" milestone="M4" />
-    <milestone date="02/03/2009" milestone="M5" />
-    <milestone date="03/16/2009" milestone="M6">
-      <html:div>API Freeze</html:div>
-    </milestone>
-    <milestone date="05/04/2009" milestone="M7">
-      <html:div>Feature Freeze</html:div>
-    </milestone>
-    <milestone date="05/18/2009" milestone="RC1" />
-    <milestone date="05/25/2009" milestone="RC2" />
-    <milestone date="06/01/2009" milestone="RC3" />
-    <milestone date="06/08/2009" milestone="RC4" />
-    <milestone date="06/15/2009" milestone="RC5" />
-    <milestone date="06/28/2009" milestone="0.7.0" />
-    <postamble>
-      <html:div>
-As MDT IMM is a new subproject of MDT, it will not produce maintenance releases 
-to align with the Ganymede SR releases.
-      </html:div>
-    </postamble>
-  </release_milestones>
-  <target_environments>
-    <html:div>
-In order to remain current, each Eclipse release targets reasonably current 
-versions of the underlying operating environments. The Eclipse Business Process 
-Model and Notation (MDT IMM) project depends upon on the Platform and other 
-projects, which are mostly "pure" Java<html:sup>TM</html:sup>. The 3.5 release 
-of the Eclipse Platform Project is written and compiled against version 1.4 of 
-the Java Platform APIs, and targeted to run on version 1.4 of the Java Runtime 
-Environment, Standard Edition. MDT IMM will target the same Java version as EMF 
-and UML2, which currently require Java 5. Eclipse Platform SDK 3.5 will be 
-tested and validated on a number of reference platforms. MDT IMM will be tested 
-and validated against a subset of those listed for the platform.
-    </html:div>
-    <internationalization>
-      <html:div>
-The Eclipse Platform is designed as the basis for internationalized products. 
-The user interface elements provided by the Eclipse SDK components, including 
-dialogs and error messages, are externalized. The English strings are provided 
-as the default resource bundles. As a result, the MDT IMM project will provide 
-English strings in its default bundles and be localized to a subset of those 
-locales offered by the Platform. This plan will be updated to indicate which 
-locales will be provided and the time frame for availability.
-      </html:div>
-    </internationalization>
-  </target_environments>
-  <compatibility_with_previous_releases />
-  <themes_and_priorities>
-    <preamble>
-      <html:div>
-A list of project requirements and agreed upon implementation time frames is 
-found in this document. For the milestones listed in this document, a set of 
-overall themes is used to indicate what major set of functionalities is to be 
-concentrated on for each. These themes are presented below, while the 
-requirements document and associated Bugzilla entries are left to those wanting 
-more detailed information on each.
-      </html:div>
-    </preamble>
-    <theme name="Compliance">
-      <description>
-        <html:div>
-As an implementation of the OMG<html:sup>TM</html:sup>'s IMM 1.0 specification, 
-the MDT IMM project will maintain currency with the adopted and finalized 
-specifications, as they become available.
-        </html:div>
-      </description>
-      <committed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;classification=Modeling&amp;product=MDT&amp;component=IMM&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;status_whiteboard_type=casesubstring&amp;status_whiteboard=Compliance&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <proposed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;classification=Modeling&amp;product=MDT&amp;component=IMM&amp;target_milestone=0.7.0&amp;status_whiteboard_type=casesubstring&amp;status_whiteboard=Compliance&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <deferred bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;classification=Modeling&amp;product=MDT&amp;component=IMM&amp;status_whiteboard_type=casesubstring&amp;status_whiteboard=Compliance&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-" />
-    </theme>
-  </themes_and_priorities>
-  <appendix name="Legal Notices">
-    <html:div>
-      <html:ul>
-        <html:li>Java is a trademark or a registered trademark of Sun Microsystems, Inc.</html:li>
-        <html:li>OMG is a trademark of the Object Management Group<html:sup>TM</html:sup>, Inc.</html:li>
-        <html:li>All other products or company names are mentioned for identification purposes only, and may be trademarks or service marks of their respective owners.</html:li>
-      </html:ul>
-    </html:div>
-  </appendix>
-</plan>
diff --git a/imm/project-info/project-page-paragraph.html b/imm/project-info/project-page-paragraph.html
deleted file mode 100644
index 885731b..0000000
--- a/imm/project-info/project-page-paragraph.html
+++ /dev/null
@@ -1 +0,0 @@
-<p>IMM is an open source component of the Model Development Tools (MDT) subproject to provide metamodel/profile implementations based on the forthcoming Information Management Metamodel (IMM) OMG specification.</p>
\ No newline at end of file
diff --git a/includes/docs.css b/includes/docs.css
deleted file mode 100644
index b859827..0000000
--- a/includes/docs.css
+++ /dev/null
@@ -1,5 +0,0 @@
-#midcolumn .homeitem3col ul li ul li
-{
-	border-style: none;
-	padding: 0;
-}
diff --git a/index.php b/index.php
deleted file mode 100644
index 30c6616..0000000
--- a/index.php
+++ /dev/null
@@ -1,91 +0,0 @@
-<?php
-require_once ("../includes/buildServer-common.php");
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon());
-
-require($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/db.php");
-
-ob_start();
-?>
-
-<div id="midcolumn">
-	<h1>Model Development Tools (MDT)</h1>
-	<?php
-	include($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/index-common.php");
-	?>
-</div>
-
-<div id="rightcolumn">
-	<div class="sideitem">
-	   <h6>Incubation</h6>
-	   <p>Some components are currently in their <a href="http://www.eclipse.org/projects/dev_process/validation-phase.php">Validation (Incubation) Phase</a>.</p> 
-	   <div align="center"><a href="http://www.eclipse.org/projects/what-is-incubation.php"><img 
-	        align="center" src="http://www.eclipse.org/images/egg-incubation.png" 
-	        border="0" /></a></div>
-	   <!-- <div align="center"><a href="http://www.eclipse.org/projects/what-is-incubation.php"><img 
-	        align="center" src="/modeling/images/eclipse_incubation_v2.png" 
-	        border="0" /></a><br/>&#160;</div> -->
-	 </div>
- 
-	<div class="sideitem">
-		<h6>News</h6>
-		<?php getNews(4, "whatsnew"); ?>
-		<ul>
-			<li><a href="/<?php print $PR; ?>/news-whatsnew.php">Older news</a></li>
-		</ul>
-	</div>
-
-	<div class="sideitem">
-		<h6><a href="/modeling/mdt/feeds/"><img style="float:right" alt="Build Feeds" src="/modeling/images/rss-atom10.gif"/></a>
-		<?php echo $tmp && array_key_exists($proj,$tmp) && $tmp[$proj] ? $tmp[$proj] . " " : ""; ?>Build News</h6>
-		<?php build_news($cvsprojs, $cvscoms, $proj); ?>
-		<ul>
-			<li><a href="/<?php print $PR; ?>/news-whatsnew.php#build">Other build news</a></li>
-		</ul>
-	</div>
-
-	<div class="sideitem">
-		<h6>Modeling Corner</h6>
-		<p>Want to <a href="http://wiki.eclipse.org/index.php/Modeling_Corner">contribute</a> models, projects, files, ideas, utilities, or code to 
-		<a href="http://www.eclipse.org/modeling/mdt/">MDT</a> or any other part of the <a href="http://www.eclipse.org/modeling/">Modeling Project</a>? 
-		Now you can!</p>
-		<p>Have a look, post your comments, submit a link, or just read what others have written. <a href="http://wiki.eclipse.org/index.php/Modeling_Corner">Details here</a>.</p>
-	</div>
-
-	<a name="related"></a>
-	<div class="sideitem">
-		<h6>Related links</h6>
-		<ul>
-			<li><a href="http://www.eclipse.org/modeling">Eclipse Modeling</a></li>
-			<li>Web: <a href="http://www.eclipse.org/emf">EMF</a>, <a href="http://www.eclipse.org/emft">EMFT</a></li>
-			<li>Wiki: <a href="http://wiki.eclipse.org/index.php/Category:EMF">EMF</a>, <a href="http://wiki.eclipse.org/index.php/EMFT">EMFT</a></li>
-			<li><a href="http://www.eclipse.org/modeling/emf/docs/misc/UsingUpdateManager/UsingUpdateManager.html">Using Update Manager</a></li>
-			<li><a href="http://www.eclipse.org/newsgroups">Eclipse newsgroups</a></li>
-			<li><a href="http://wiki.eclipse.org/index.php/EMFT_Procedures">MDT Build &amp; Promote</a></li>
-		</ul>
-	</div>
-	
-	<?php
-	if ($isEMFserver)
-	{
-		$file = $_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/actions-common.php";
-		if (is_file($file) && is_readable($file))
-		{
-			include($file);
-		}
-	}
-	?>
-
-</div>
-
-<?php
-$html = ob_get_contents();
-ob_end_clean();
-
-$pageTitle = "Eclipse Modeling - MDT - Home";
-$pageKeywords = ""; // TODO: add something here
-$pageAuthor = "Neil Skrypuch";
-
-$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/modeling/includes/index.css"/>' . "\n");
-$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
-<!-- $Id: index.php,v 1.28 2007/08/24 05:49:09 nickb Exp $ -->
diff --git a/javadoc/index.php b/javadoc/index.php
deleted file mode 100644
index 0b4fc20..0000000
--- a/javadoc/index.php
+++ /dev/null
@@ -1,11 +0,0 @@
-<?php
-$projDetails = array(
-	"/modeling/mdt",
-	"/modeling/mdt/downloads",
-	"/modeling",
-	"MDT"
-);
-
-require_once ("../../includes/buildServer-common.php");
-require($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/javadoc-common.php");
-?>
\ No newline at end of file
diff --git a/news-whatsnew.php b/news-whatsnew.php
deleted file mode 100644
index ba89f01..0000000
--- a/news-whatsnew.php
+++ /dev/null
@@ -1,7 +0,0 @@
-<?php
-require_once ("../includes/buildServer-common.php");
-require($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/news-common.php");
-require($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/db.php");
-
-allnews("MDT", $cvsprojs, $cvscoms, $proj);
-?>
diff --git a/news/checkReleaseExists.php b/news/checkReleaseExists.php
deleted file mode 100644
index 7c63d92..0000000
--- a/news/checkReleaseExists.php
+++ /dev/null
@@ -1,4 +0,0 @@
-<?php
-require_once ("../../includes/buildServer-common.php");
-require($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/checkReleaseExists-common.php");
-?>
diff --git a/news/index.php b/news/index.php
deleted file mode 100644
index f5ae9c6..0000000
--- a/news/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: relnotes.php"); ?>
\ No newline at end of file
diff --git a/news/news.xml b/news/news.xml
deleted file mode 100644
index 40f35c2..0000000
--- a/news/news.xml
+++ /dev/null
@@ -1,194 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<doc>
-<news date="October 8, 2008" showOn="whatsnew">
-	The EODM component has been terminated; see the <a href="http://www.eclipse.org/project-slides/EODM Termination Review.pdf">Termination Review slides</a> for details.
-</news>
-<news date="October 8, 2008" showOn="whatsnew">
-	The OCL Tools component has been terminated; see the <a href="http://www.eclipse.org/project-slides/OCL Tools Termination Review.pdf">Termination Review slides</a> for details.
-</news>
-<news date="October 1, 2008" showOn="docs,whatsnew">
-    Check out what's new in the Galileo M2 milestone of the <a href="http://wiki.eclipse.org/MDT/OCL/New_and_Noteworthy/Galileo#Milestone_2">OCL</a> subcompoject.
-</news>
-<news date="June 25, 2008" showOn="whatsnew">
-	The <a href="http://www.eclipse.org/modeling/mdt/">MDT Project</a> 
-	ships 4 components in <a href="http://www.eclipse.org/projects/whatsnew.php">Ganymede</a>. An <a href="http://www.eclipse.org/downloads/packages/eclipse-modeling-tools-includes-incubating-components/ganymeder">All-in-One</a> download is available.
-</news>
-<news date="May 13, 2008" showOn="whatsnew">
-    A new <a href="http://wiki.eclipse.org/MDT-Papyrus-Proposal">Papyrus</a> component has been proposed.
-</news>
-<news date="April 9, 2008" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">EclipseCon 2008 "Creating Robust Scalable DSL's with UML" Tutorial</a> tutorial now available.
-</news>
-<news date="April 9, 2008" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2.html">EclipseCon 2008 "New Features of UML2" Long Talk</a> presentation now available.
-</news>
-<news date="March 19, 2008" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/docs/presentations/EclipseCon2008_ShortTalk.html">EclipseCon 2008 Short Talk</a> presentation now available.
-</news>
-<news date="March 18, 2008" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/docs/presentations/EclipseCon2008_LongTalk.html">EclipseCon 2008 Long Talk</a> presentation now available.
-</news>
-<news date="March 11, 2008" showOn="whatsnew">
-    The new <a href="http://www.eclipse.org/modeling/mdt/?project=sbvr">SBVR</a> component has been provisioned.
-</news>
-<news date="February 12, 2008" showOn="whatsnew">
-    The new <a href="http://www.eclipse.org/modeling/mdt/?project=bpmn2">BPMN2</a> and <a href="http://www.eclipse.org/modeling/mdt/?project=imm">IMM</a> components have been provisioned.
-</news>
-<news date="January 24, 2008" showOn="whatsnew">
-    The <a href="http://www.eclipse.org/modeling/mdt/docs/plans/mdt_project_plan_1_1.html">MDT 1.1 development plan</a> has been updated.
-</news>
-<news date="January 15, 2008" showOn="whatsnew">
-    A new <a href="http://wiki.eclipse.org/MDT-SBVR-Proposal">SVBR</a> component has been proposed.
-</news>
-<news date="October 17, 2007" showOn="whatsnew">
-    OCL parser <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">refactorings</a> for grammar extensibility and improved error handling now available in the OCL 1.2 <a href="http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&hlbuild=I200710171533&project=ocl#I200710171533">build</a> of 17 Oct.
-</news>
-<news date="March 29, 2007" showOn="whatsnew">
-    Details about <a href="http://wiki.eclipse.org/index.php/OCL_1.1_API_Changes">API Changes</a> for metamodel-specific bindings of the OCL Expressions package are available.
-</news>
-<news date="February 23, 2007" showOn="docs,whatsnew">
-	<a href="http://wiki.eclipse.org/index.php/MDT_1.0_New_and_Noteworthy">New &amp; Noteworthy</a> added.
-</news>
-<news date="February 22, 2007" showOn="docs,whatsnew">
-	<a href="http://wiki.eclipse.org/index.php/Generating_Dynamic_Ecore_from_XML_Schema">Generating Dynamic Ecore from XML Schema (XSD)</a> added.
-</news>
-<news date="December 22, 2006" showOn="whatsnew">
-    OCL 1.1 Milestone 4 is now available for <a href="http://www.eclipse.org/modeling/mdt/downloads/?showAll=1&hlbuild=S200612211659&project=ocl#S200612211659">download</a>.  Check out what's <a href="http://wiki.eclipse.org/index.php/OCL_1.1_New_and_Noteworthy#1.1_M4" New and Noteworthy</a>.
-</news>
-<news date="August 2, 2006" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/faq.php?project=uml2">UML2 FAQ</a> updated.
-</news>
-	<!-- other stats:
-	    Jan-July, total 2.0.0.x downloads: 40,378
-	    Jan-July, total 2.0.0 pre-release (I builds):  26,507, or about 4,000/mo
-	        UM to Zip ratio: 10,848 to 29,530 or about 1:3 (27% UM)
-	    Jan-July, total 2.0.0 release downloads:  13,871, or about 13,000/mo
-    	    UM to Zip ratio:  8,966 to 4,905 or about 2:1 (65% UM)
-	-->
-<news date="August 01, 2006" showOn="whatsnew">
-	Since January 2006, there have been over 333,000 downloads of UML2!
-</news>
-<news date="July 18, 2006" showOn="whatsnew">
-	Updated version of the <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Introduction_to_UML2_Profiles/article.html">Introduction to UML2 Profiles</a> article is now available.
-</news>
-<news date="July 17, 2006" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/uml2/docs/guides/UML2_2.0_Migration_Guide/guide.html">UML2 2.0 Migration Guide</a> updated.
-</news>
-<news date="July 13, 2006" showOn="whatsnew">
-	Updated version of the <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Getting_Started_with_UML2/article.html">Getting Started with UML2</a> article is now available.
-</news>
-<news date="June 13, 2006" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/uml2/docs/guides/UML2_2.0_Migration_Guide/guide.html">UML2 2.0 Migration Guide</a> updated.
-</news>
-<news date="June 08, 2006" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="June 08, 2006" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/uml2/docs/presentations/UML2_2.0_Release_Review.html">UML2 2.0 Release Review</a> presentation now available.
-</news>
-<news date="May 26, 2006" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="May 26, 2006" showOn="whatsnew">
-	Initial draft of the <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/guides/UML2_2.0_Migration_Guide/guide.html">UML2 2.0 Migration Guide</a> is now available.
-</news>
-<news date="April 17, 2006" showOn="whatsnew">
-	Slides from <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/presentations/EclipseCon2006_ShortTalk.html">UML2 Short Talk</a> at EclipseCon 2006 are now available.
-</news>
-<news date="April 17, 2006" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="March 16, 2006" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="March 6, 2006" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="February 20, 2006" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="January 9, 2006" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="December 12, 2005" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="November 7, 2005" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="September 30, 2005" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/updates/">Update Manager</a> site now supports mirrors.
-</news>
-<news date="September 26, 2005" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="August 04, 2005" showOn="whatsnew">
-	Updated version of the <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Getting_Started_with_UML2/article.html">Getting Started with UML2</a> article is now available.
-</news>
-<news date="August 04, 2005" showOn="whatsnew">
-	Updated version of the <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Introduction_to_UML2_Profiles/article.html">Introduction to UML2 Profiles</a> article is now available.
-</news>
-<news date="July 26, 2005" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="June 17, 2005" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/uml2/docs/presentations/UML2_1_1_ReleaseReview.html">UML2 1.1 Release Review</a> presentation now available.
-</news>
-<news date="May 20, 2005" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_1_1.html">UML2 1.1</a> development plan updated.
-</news>
-<news date="April 18, 2005" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_1_1.html">UML2 1.1</a> development plan updated.
-</news>
-<news date="March 07, 2005" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="March 07, 2005" showOn="whatsnew">
-	<a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_1_1.html">UML2 1.1</a> development plan updated.
-</news>
-<news date="March 07, 2005" showOn="whatsnew">
-	Slides from <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/presentations/EclipseCon2005_ProjectSprint.html">EMF and UML2 Project Sprint</a> at EclipseCon 2005 are now available.
-</news>
-<news date="February 14, 2005" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="February 07, 2005" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan updated.
-</news>
-<news date="February 07, 2005" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_1_1.html">UML2 1.1</a> development plan updated.
-</news>
-<news date="December 23, 2004" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_1_1.html">UML2 1.1</a> development plan updated.
-</news>
-<news date="December 13, 2004" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_1_1.html">UML2 1.1</a> development plan updated.
-</news>
-<news date="December 06, 2004" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2 2.0</a> development plan is now available.
-</news>
-<news date="December 06, 2004" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_1_1.html">UML2 1.1</a> development plan updated.
-</news>
-<news date="November 18, 2004" showOn="whatsnew">
-	UML2 <a href="http://www.eclipse.org/modeling/mdt/updates/">Update Manager Site</a> now available.
-</news>
-<news date="November 15, 2004" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_1_1.html">UML2 1.1</a> development plan updated.
-</news>
-<news date="November 10, 2004" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_1_1.html">UML2 1.1</a> development plan updated.
-</news>
-<news date="November 01, 2004" showOn="whatsnew">
-	Draft <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_1_1.html">UML2 1.1</a> development plan is now available.
-</news>
-<news date="October 29, 2004" showOn="whatsnew">
-	Updated version of the <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Introduction_to_UML2_Profiles/article.html">Introduction to UML2 Profiles</a> article is now available.
-</news>
-<news date="July 23, 2004" showOn="whatsnew">
-	Updated <a href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Getting_Started_with_UML2/article.html">"Getting Started with UML2"</a> article is available.
-</news>
-
-<!-- $Id: news.xml,v 1.31 2008/10/08 13:59:52 khussey Exp $ -->
-
-</doc>
diff --git a/news/release-notes.php b/news/release-notes.php
deleted file mode 100644
index f5ae9c6..0000000
--- a/news/release-notes.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: relnotes.php"); ?>
\ No newline at end of file
diff --git a/news/relnotes.php b/news/relnotes.php
deleted file mode 100644
index e375f0c..0000000
--- a/news/relnotes.php
+++ /dev/null
@@ -1,32 +0,0 @@
-<?php
-require_once ("../../includes/buildServer-common.php");
-
-$pageTitle = "Eclipse Modeling - MDT - Release Notes";
-
-$streams = array(
-	"xsd" => array(
-		"2.5.x" => "HEAD",
-		"2.4.x" => "R2_4_maintenance",
-		"2.3.x" => "R2_3_maintenance",
-		"2.2.x" => "R2_2_maintenance",
-		"2.1.x" => "R2_1_maintenance",
-		"2.0.x" => "R2_0_maintenance"
-	),
-	"ocl" => array(
-		"1.3.x" => "HEAD",
-		"1.2.x" => "R1_2_maintenance",
-		"1.1.x" => "R1_1_maintenance",
-		"1.0.x" => "R1_0_maintenance"
-	),
-	"uml2" => array(
-		"3.0.x" => "HEAD",
-		"2.2.x" => "R2_2_maintenance",
-		"2.1.x" => "R2_1_maintenance",
-		"2.0.x" => "R2_0_maintenance",
-		"1.1.x" => "",
-		"1.0.x" => ""
-	)
-);
-
-require ($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/relnotes-common.php");
-?>
diff --git a/newsgroup-mailing-list.php b/newsgroup-mailing-list.php
deleted file mode 100644
index 4821942..0000000
--- a/newsgroup-mailing-list.php
+++ /dev/null
@@ -1,28 +0,0 @@
-<?php 
-require_once ("../includes/buildServer-common.php");
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php");  require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon());
-
-$newsgroups = array("MDT (main)" => array("modeling.mdt"));
-foreach ($projects as $name => $suf) {
-	if (!isset($nonewsgroup) || !in_array($suf, $nonewsgroup))
-	{
-		$newsgroups[$name] = array("modeling.mdt.".$suf);
-	}
-}
-$newsgroups["UML2"][] = "tools.uml2"; /* add old one */
-$newsgroups["XSD"] = array("technology.xsd","tools.emf"); /* override */
-$newsgroups["Papyrus"] = array("papyrus"); /* override */
-$newsgroups["MST"] = array("mst"); /* override */
-
-$mailinglists = array("MDT (main)" => array("mdt.dev"));
-foreach ($projects as $name => $suf) {
-	if (!isset($nomailinglist) || !in_array($suf, $nomailinglist))
-	{
-		$mailinglists[$name] = array("mdt-".$suf.".dev");
-	}
-}
-array_unshift($mailinglists["XSD"],"emf-dev"); /* override */
-
-require_once($_SERVER['DOCUMENT_ROOT'] . "/modeling/includes/newsgroup-mailing-list-common.php");
-
-?>
\ No newline at end of file
diff --git a/ocl/.cvsignore b/ocl/.cvsignore
deleted file mode 100644
index 8ba8eed..0000000
--- a/ocl/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-downloads
diff --git a/ocl/build/.cvsignore b/ocl/build/.cvsignore
deleted file mode 100644
index 79eb93b..0000000
--- a/ocl/build/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-.htaccess
\ No newline at end of file
diff --git a/ocl/build/_common.php b/ocl/build/_common.php
deleted file mode 100755
index be43e43..0000000
--- a/ocl/build/_common.php
+++ /dev/null
@@ -1,43 +0,0 @@
-<?php
-require_once ("../../../includes/buildServer-common.php");
-
-$options = array (
-	"BaseBuilderBranch" => "R35_M5",
-	
-	"BranchAndJDK" => array (
-		"emf.torolab.ibm.com=------------,------------",
-        "1.3.0=HEAD,/opt/sun-java2-5.0",
-        "1.2.3=R1_2_maintenance,/opt/sun-java2-5.0",
-		"1.1.2=R1_1_maintenance,/opt/sun-java2-5.0",
-		#"1.0.3=R1_0_maintenance,/opt/sun-java2-1.4",
-		
-		"emft.eclipse.org=------------,------------",
-        "1.3.0=HEAD,/opt/sun-java2-5.0",
-        "1.2.3=R1_2_maintenance,/opt/sun-java2-5.0",
-		"1.1.2=R1_1_maintenance,/opt/sun-java2-5.0",
-		#"1.0.3=R1_0_maintenance,/opt/sun-java2-1.4",
-		
-		"build.eclipse.org=------------,------------",
-        "1.3.0=HEAD,/opt/public/common/ibm-java2-ppc-50",
-        "1.2.3=R1_2_maintenance,/opt/public/common/ibm-java2-ppc-50",
-		"1.1.2=R1_1_maintenance,/opt/public/common/ibm-java2-ppc-50",
-		#"1.0.3=R1_0_maintenance,/opt/public/stp/apps/IBMJava2-ppc-142" // bug 178681
-	),
-
-	/* define a regular expression to be used to collect the most recent 
-	 * matching dependencies for running a build. See also releng-common/tools/scripts/start_cron.sh
-	 * and /home/www-data/build/requests/dependencies.urls.txt 
-	 * */ 	
-	"regex" => "I200.*/eclipse-SDK-|[SR]-.*200.*/eclipse-SDK-|" . 
-			"2\.5\..+/[ISR]200.*/emf-xsd-SDK-|" .
-			"3\.0\..+/[ISR]200.*/mdt-uml2-SDK|" .
-			"orbit-",
-	
-	"Mapfile_Rule_Default" => 0, // 0: "Use Map, No Tagging=use-false" or 1:"Generate Map, No Tagging=gen-false"
-
-	"EmailDefault" => "nickboldt@gmail.com", // prefil email contact box with comma-sep'd list
-	
-	"Users" => array("nickb","nickb",NULL) /* build user, eclipse cvs user, IES cvs user */
-);
-
-?>
diff --git a/ocl/build/clean.php b/ocl/build/clean.php
deleted file mode 100755
index e98dbf0..0000000
--- a/ocl/build/clean.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/clean-common.php"); ?>
diff --git a/ocl/build/index.php b/ocl/build/index.php
deleted file mode 100755
index 912d64d..0000000
--- a/ocl/build/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/build-common.php"); ?>
diff --git a/ocl/build/promo.php b/ocl/build/promo.php
deleted file mode 100755
index 3d5b264..0000000
--- a/ocl/build/promo.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/promo-common.php"); ?>
diff --git a/ocl/docs/ocl_project_plan_1_1.html b/ocl/docs/ocl_project_plan_1_1.html
deleted file mode 100644
index 940160a..0000000
--- a/ocl/docs/ocl_project_plan_1_1.html
+++ /dev/null
@@ -1,286 +0,0 @@
-<html>
-<head>
-<title>MDT OCL 1.1</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<meta name="author" content="Christian W. Damus"/>
-<meta name="keywords" content="modeling, UML, UML2, OCL"/>
-<link rel="stylesheet" href="http://dev.eclipse.org/default_style.css" type="text/css">
-<style type="text/css">
-<!--
-.style2 {font-size: x-small}
-A:link {color: #0080c0; text-decoration: none}
-A:active {color: #0080c0; text-decoration: none}
-A:visited {color: #0080c0; text-decoration: none}
--->
-</style>
-</head>
-<body bgcolor="#FFFFFF" text="#000000">
-
-<table border="0" cellspacing="5" cellpadding="2" width="100%">
-  <tr> 
-    <td align="left" width="72%"> <font class="indextop"> mdt ocl </font><br>
-    <font class="indexsub"> Object Constraint Language </font></td>
-    <td width="28%">
-    	<a href="/modeling"><img src="../../../images/modeling_pos_logo_fc_med.png" border="0" height="200" width="296" alt="Modeling Logo"></a></td>
-  </tr>
-</table>
-
-<h3>Component 1.1 Draft Plan</h3>
-
-<blockquote>Last revised 14 May, 2007 15.45 EST.
-    <img width="12" height="12" src="../images/new.gif" border="0"> indicates changes over the
-    <a href="http://dev.eclipse.org/viewcvs/index.cgi/*checkout*/www/modeling/mdt/ocl/docs/ocl_project_plan_1_1.html?rev=1.10&cvsroot=Eclipse_Website">previous version</a>.</blockquote>
-<p>
-This is the draft plan for the MDT OCL component.
-
-Please send comments about this draft plan to the
-<a href="mailto:mdt-ocl.dev@eclipse.org">mdt-ocl.dev@eclipse.org</a>
-developer mailing list or the
-<a href="news://news.eclipse.org/eclipse.modeling.mdt.ocl">eclipse.modeling.mdt.ocl</a>
-newsgroup. 
-</p>
-
-<table border="0" cellspacing="5" cellpadding="2" width="100%">
-  <tbody>
-    <tr> 
-      <td align="left" valign="top" colspan="2" bgcolor="#0080c0"><b><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Plan Item Queries </font></font></b></td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td>By Status:</td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td>
-<blockquote>
-<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=UML2+OCL&target_milestone=M4&target_milestone=M5&target_milestone=M6&target_milestone=M7&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED">All Open</a>
-| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=UML2+OCL&target_milestone=M4&target_milestone=M5&target_milestone=M6&target_milestone=M7&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED">All Resolved</a>
-| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=UML2+OCL&target_milestone=M4&target_milestone=M5&target_milestone=M6&target_milestone=M7&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">All Items</a>
-</blockquote>
-        </td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td>By Milestone:</td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td>
-<blockquote>
-<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=UML2+OCL&target_milestone=M4&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">1.1 M4</a>
-| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=UML2+OCL&target_milestone=M5&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">1.1 M5</a>
-| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=UML2+OCL&target_milestone=M6&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">1.1 M6</a>
-| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=UML2+OCL&target_milestone=M7&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">1.1 M7</a>
-</blockquote>
-        </td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td>Other Items:</td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td>
-<blockquote>
-<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=UML2+OCL&target_milestone=1.1.0&keywords_type=allwords&keywords=helpwanted&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">Help Wanted</a>
-| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=UML2+OCL&target_milestone=1.1.0&keywords_type=nowords&keywords=plan+helpwanted&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">Unassigned</a>
-</blockquote>
-        </td>
-    </tr>
-  </tbody>
-</table>
-
-<h4>Milestone Plans</h4>
-
-
-<table border="0" cellspacing="5" cellpadding="2" width="100%">
-  <tbody>
-    <tr> 
-      <td align="left" valign="top" colspan="2" bgcolor="#0080c0"><b><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Milestone Plan (1.1 M4)</font></font></b></td>
-    </tr>
-    <tr> 
-      <td valign="top"><img src="http://dev.eclipse.org/images/Adarrow.gif" nosave=""
-			border="0" height="16" width="16"></td>
-      <td width="94%"><strong>Key Dates </strong> <ul>
-          <li>R1.1 Milestone 4: 22 December, 2006</li>
-          <li>Last day of development: 15 December, 2006</li>
-          <li>Build/test/fix pass: 19 December, 2006</li>
-        </ul></td>
-    </tr>
-    <tr> 
-      <td colspan="2" valign="top" bgcolor="#0080c0"><span class="style2"><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Plan details </font></font></span></td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td><p><strong><img src="../images/ok.gif" nosave="" height="5" width="14" border="0">
-      Project Restructuring</strong></p>
-        <ul>
-          <li>LPG. Consume LPG runtime library from the Orbit project.
-          </li>
-        </ul></td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td><p><strong><img src="../images/ok.gif" nosave="" height="5" width="14" border="0">
-      Appealing to a Broader Community</strong></p>
-        <ul>
-          <li>Stand-alone support. Provide a stand-alone (Eclipse-free) OCL build.
-          </li>
-        </ul></td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td><p><strong><img src="../images/ok.gif" nosave="" height="5" width="14" border="0">
-      Enable Consistent Multi-language Support</strong></p>
-        <ul>
-          <li>ICU4J. Isolate and minimize dependency on ICU4J; ensure support for the 'thin' variant of ICU4J.
-          </li>
-        </ul></td>
-    </tr>
-    <tr><td>&nbsp;</td></tr>
-    
-    <tr> 
-      <td align="left" valign="top" colspan="2" bgcolor="#0080c0"><b><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Milestone Plan (1.1 M5)</font></font></b></td>
-    </tr>
-    <tr> 
-      <td valign="top"><img src="http://dev.eclipse.org/images/Adarrow.gif" nosave=""
-			border="0" height="16" width="16"></td>
-      <td width="94%"><strong>Key Dates </strong> <ul>
-          <li>R1.1 Milestone 5: 16 February, 2007</li>
-          <li>Last day of development: 9 February, 2007</li>
-          <li>Build/test/fix pass: 13 February, 2007</li>
-        </ul></td>
-    </tr>
-    <tr> 
-      <td colspan="2" valign="top" bgcolor="#0080c0"><span class="style2"><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Plan details </font></font></span></td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td><p><strong><img src="../images/ok.gif" nosave="" height="5" width="14" border="0">
-      Cohesion</strong></p>
-        <ul>
-          <li>Integration with UML. Provide support for parsing and evaluating OCL constraints and expressions on the UML metamodel.
-          </li>
-        </ul></td>
-    </tr>
-    <tr>
-      <td  valign="top">&nbsp;</td>
-      <td><p><strong><img src="../images/ok.gif" nosave="" height="5" width="14" border="0">
-      Design for Extensibility -- Be a Better Platform</strong></p>
-        <ul>
-          <li>Parsing API. Provide a public API for parsing OCL documents, with the complete context declaration syntax.
-          </li>
-          <li>EMF 2.3 / J2SE 5 Support. Adopt EMF 2.3, including regeneration of the OCL metamodel.
-          </li>
-        </ul></td>
-    </tr>
-    <tr><td>&nbsp;</td></tr>
-    
-    
-    <tr> 
-      <td align="left" valign="top" colspan="2" bgcolor="#0080c0"><b><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Milestone Plan (1.1 M6: API Freeze)</font></font></b></td>
-    </tr>
-    <tr> 
-      <td valign="top"><img src="http://dev.eclipse.org/images/Adarrow.gif" nosave=""
-			border="0" height="16" width="16"></td>
-      <td width="94%"><strong>Key Dates </strong> <ul>
-          <li>R1.1 Milestone 6: 30 March, 2007</li>
-          <li>Last day of development: 23 March, 2007</li>
-          <li>Build/test/fix pass: 27 March, 2007</li>
-        </ul></td>
-    </tr>
-    <tr> 
-      <td colspan="2" valign="top" bgcolor="#0080c0"><span class="style2"><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Plan details </font></font></span></td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td><p><strong><img src="../images/investigate.gif" nosave="" height="12" width="12" border="0">
-      Design for Extensibility -- Be a Better Platform</strong></p>
-        <ul>
-          <li>OCL Conformance. Validate and document the API's conformance to the OCL Specification's compliance points. This includes which language capabilities are supported and which metamodels (EMOF/Ecore, UML) are supported.
-          </li>
-        </ul></td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td><p><strong><img src="../images/investigate.gif" nosave="" height="12" width="12" border="0">
-      Appealing to a Broader Community</strong></p>
-        <ul>
-          <li>Standard Compliance. Maintain currency of the API with the OMG's OCL, ensuring backward API compatibility.
-          </li>
-        </ul></td>
-    </tr>
-    <tr><td>&nbsp;</td></tr>
-    
-    
-    <tr> 
-      <td align="left" valign="top" colspan="2" bgcolor="#0080c0"><b><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Milestone Plan (1.1 M7: RC0)</font></font></b></td>
-    </tr>
-    <tr> 
-      <td valign="top"><img src="http://dev.eclipse.org/images/Adarrow.gif" nosave=""
-			border="0" height="16" width="16"></td>
-      <td width="94%"><strong>Key Dates </strong> <ul>
-          <li>R1.1 Milestone 7 (RC0): 11 May, 2007</li>
-          <li>Last day of development: 4 May, 2007</li>
-          <li>Build/test/fix pass: 18 May, 2007</li>
-        </ul></td>
-    </tr>
-    <tr> 
-      <td colspan="2" valign="top" bgcolor="#0080c0"><span class="style2"><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Plan details </font></font></span></td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td><p><strong><img src="../images/ok.gif" nosave="" height="5" width="14" border="0">
-      Simple to Use</strong> <img width="12" height="12" src="../images/new.gif" border="0"></p>
-        <ul>
-          <li>Improved Documentation. Develop a complete Programmer's Guide for the OCL subcomponent.
-          </li>
-        </ul></td>
-    </tr>
-    <tr><td>&nbsp;</td></tr>
-  </tbody>
-</table>
-
-<table border="0" cellspacing="5" cellpadding="2" width="100%">
-  <tbody>
-    <tr><td>&nbsp;</td></tr>
-	<tr>
-		<td align="left" valign="top" colspan="4" bgcolor="#0080c0"
-			width="100%"><b><font face="Arial,Helvetica"><font color="#ffffff">
-		Legend</font></font></b></td>
-	</tr>
-	<tr>
-		<td valign="center"><img src="../images/progress.gif" nosave="" height="5" width="14" border="0">
-		</td>
-		<td width="50%">item is under development.
-		</td>
-		<td valign="center"><img src="../images/investigate.gif" nosave="" height="12" width="12" border="0">
-		</td>
-		<td width="50%">item is under investigation or help is wanted.
-		</td>
-	</tr>
-	<tr>
-		<td valign="center"><img src="../images/ok.gif" nosave="" height="5" width="14" border="0">
-		</td>
-		<td width="50%">item is finished.
-		</td>
-		<td valign="center"><img src="../images/waiting.gif" nosave="" height="5" width="14" border="0">
-		</td>
-		<td width="50%">item is not started.
-		</td>
-	</tr>
-	<tr>
-  </tbody>
-</table>
-
-</body>
-</html>
\ No newline at end of file
diff --git a/ocl/docs/ocl_project_plan_1_2.html b/ocl/docs/ocl_project_plan_1_2.html
deleted file mode 100644
index 86af404..0000000
--- a/ocl/docs/ocl_project_plan_1_2.html
+++ /dev/null
@@ -1,253 +0,0 @@
-<html>
-<head>
-<title>MDT OCL 1.2</title>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-<meta name="author" content="Christian W. Damus"/>
-<meta name="keywords" content="OCL, modeling, UML, UML2, Ecore, EMF"/>
-<link rel="stylesheet" href="http://dev.eclipse.org/default_style.css" type="text/css">
-<style type="text/css">
-<!--
-.style2 {font-size: x-small}
-A:link {color: #0080c0; text-decoration: none}
-A:active {color: #0080c0; text-decoration: none}
-A:visited {color: #0080c0; text-decoration: none}
--->
-</style>
-</head>
-<body bgcolor="#FFFFFF" text="#000000">
-
-<table border="0" cellspacing="5" cellpadding="2" width="100%">
-  <tr> 
-    <td align="left" width="72%"> <font class="indextop"> mdt ocl </font><br>
-    <font class="indexsub"> Object Constraint Language </font></td>
-    <td width="28%">
-    	<a href="/modeling"><img src="../../../images/modeling_pos_logo_fc_med.png" border="0" height="200" width="296" alt="Modeling Logo"></a></td>
-  </tr>
-</table>
-
-<h3>Component 1.2 Draft Plan</h3>
-
-<blockquote>Last revised 14 November, 2007 15.00 EST.
-    <img width="12" height="12" src="../images/new.gif" border="0"> indicates changes over the
-    <a href="http://dev.eclipse.org/viewcvs/index.cgi/*checkout*/www/modeling/mdt/ocl/docs/ocl_project_plan_1_2.html?rev=1.3&cvsroot=Eclipse_Website">previous version</a>.
-</blockquote>
-<p>
-This is the draft plan for the MDT OCL component.
-
-Please send comments about this draft plan to the
-<a href="mailto:mdt-ocl.dev@eclipse.org">mdt-ocl.dev@eclipse.org</a>
-developer mailing list or the
-<a href="news://news.eclipse.org/eclipse.modeling.mdt.ocl">eclipse.modeling.mdt.ocl</a>
-newsgroup. 
-</p>
-
-<table border="0" cellspacing="5" cellpadding="2" width="100%">
-  <tbody>
-    <tr> 
-      <td align="left" valign="top" colspan="2" bgcolor="#0080c0"><b><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Plan Item Queries </font></font></b></td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td>By Status:</td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td>
-<blockquote>
-<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=OCL&target_milestone=M3&target_milestone=M4&target_milestone=M5&target_milestone=M6&target_milestone=M7&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED">All Open</a>
-| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=OCL&target_milestone=M3&target_milestone=M4&target_milestone=M5&target_milestone=M6&target_milestone=M7&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org&bug_status=RESOLVED&bug_status=VERIFIED&bug_status=CLOSED">All Resolved</a>
-| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=OCL&target_milestone=M3&target_milestone=M4&target_milestone=M5&target_milestone=M6&target_milestone=M7&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">All Items</a>
-</blockquote>
-        </td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td>By Milestone:</td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td>
-<blockquote>
-<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=OCL&target_milestone=M3&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">1.2 M3</a>
-| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=OCL&target_milestone=M4&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">1.2 M4</a>
-| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=OCL&target_milestone=M5&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">1.2 M5</a>
-| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=OCL&target_milestone=M6&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">1.2 M6</a>
-| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=OCL&target_milestone=M7&keywords_type=allwords&keywords=plan&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">1.2 M7</a>
-</blockquote>
-        </td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td>Other Items:</td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td>
-<blockquote>
-<a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=OCL&target_milestone=1.2.0&keywords_type=allwords&keywords=helpwanted&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">Help Wanted</a>
-| <a href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&classification=Modeling&product=MDT&component=OCL&target_milestone=1.2.0&keywords_type=nowords&keywords=plan+helpwanted&emailassigned_to1=1&emailtype1=notregexp&email1=.*inbox%40eclipse.org">Unassigned</a>
-</blockquote>
-        </td>
-    </tr>
-  </tbody>
-</table>
-
-<h4>Milestone Plans</h4>
-
-
-<table border="0" cellspacing="5" cellpadding="2" width="100%">
-  <tbody>
-    <tr> 
-      <td align="left" valign="top" colspan="2" bgcolor="#0080c0"><b><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Milestone Plan (1.2 M3)</font></font></b></td>
-    </tr>
-    <tr> 
-      <td valign="top"><img src="http://dev.eclipse.org/images/Adarrow.gif" nosave=""
-			border="0" height="16" width="16"></td>
-      <td width="94%"><strong>Key Dates </strong> <ul>
-          <li>R1.2 Milestone 3: 14 November, 2007</li>
-          <li>Last day of development: 9 November, 2007</li>
-        </ul></td>
-    </tr>
-    <tr> 
-      <td colspan="2" valign="top" bgcolor="#0080c0"><span class="style2"><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Plan details </font></font></span></td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td><p><strong><img src="../images/ok.gif" nosave="" height="5" width="14" border="0">
-      End-to-End MDSD</strong></p>
-        <ul>
-          <li>Grammar/parser refactorings for improved extensibility, especially
-              targeting QVT implementations
-              [<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>]</li>
-          <li>Navigation of unnamed association ends (for UML models)
-              [<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=194245">194245</a>]</li>
-        </ul></td>
-    </tr>
-    <tr> 
-      <td  valign="top">&nbsp;</td>
-      <td><p><strong><img src="../images/ok.gif" nosave="" height="5" width="14" border="0">
-      Improved Usability</strong></p>
-        <ul>
-          <li>Redesign of parse error detection for better error reporting
-              [<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=176110">176110</a>]</li>
-        </ul></td>
-    </tr>
-    <tr><td>&nbsp;</td></tr>
-    
-    <tr> 
-      <td align="left" valign="top" colspan="2" bgcolor="#0080c0"><b><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Milestone Plan (1.2 M4)</font></font></b></td>
-    </tr>
-    <tr> 
-      <td valign="top"><img src="http://dev.eclipse.org/images/Adarrow.gif" nosave=""
-			border="0" height="16" width="16"></td>
-      <td width="94%"><strong>Key Dates </strong> <img width="12" height="12" src="../images/new.gif" border="0"><ul>
-          <li>R1.2 Milestone 4: 17 December, 2007</li>
-          <li>Last day of development: 12 December, 2007</li>
-        </ul></td>
-    </tr>
-    <tr> 
-      <td colspan="2" valign="top" bgcolor="#0080c0"><span class="style2"><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Plan details </font></font></span></td>
-    </tr>
-    <tr><td>&nbsp;</td></tr>
-    <tr><td>&nbsp;</td></tr>
-    
-    <tr> 
-      <td align="left" valign="top" colspan="2" bgcolor="#0080c0"><b><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Milestone Plan (1.2 M5)</font></font></b></td>
-    </tr>
-    <tr> 
-      <td valign="top"><img src="http://dev.eclipse.org/images/Adarrow.gif" nosave=""
-			border="0" height="16" width="16"></td>
-      <td width="94%"><strong>Key Dates </strong> <img width="12" height="12" src="../images/new.gif" border="0"><ul>
-          <li>R1.2 Milestone 5: 11 February, 2008</li>
-          <li>Last day of development: 6 February, 2008</li>
-        </ul></td>
-    </tr>
-    <tr> 
-      <td colspan="2" valign="top" bgcolor="#0080c0"><span class="style2"><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Plan details </font></font></span></td>
-    </tr>
-    <tr><td>&nbsp;</td></tr>
-    <tr><td>&nbsp;</td></tr>
-    
-    
-    <tr> 
-      <td align="left" valign="top" colspan="2" bgcolor="#0080c0"><b><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Milestone Plan (1.2 M6: API Freeze)</font></font></b></td>
-    </tr>
-    <tr> 
-      <td valign="top"><img src="http://dev.eclipse.org/images/Adarrow.gif" nosave=""
-			border="0" height="16" width="16"></td>
-      <td width="94%"><strong>Key Dates </strong> <img width="12" height="12" src="../images/new.gif" border="0"><ul>
-          <li>R1.2 Milestone 6: 31 March, 2008</li>
-          <li>Last day of development: 26 March, 2008</li>
-        </ul></td>
-    </tr>
-    <tr> 
-      <td colspan="2" valign="top" bgcolor="#0080c0"><span class="style2"><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Plan details </font></font></span></td>
-    </tr>
-    <tr><td>&nbsp;</td></tr>
-    <tr><td>&nbsp;</td></tr>
-    
-    
-    <tr> 
-      <td align="left" valign="top" colspan="2" bgcolor="#0080c0"><b><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Milestone Plan (1.2 M7: RC0)</font></font></b></td>
-    </tr>
-    <tr> 
-      <td valign="top"><img src="http://dev.eclipse.org/images/Adarrow.gif" nosave=""
-			border="0" height="16" width="16"></td>
-      <td width="94%"><strong>Key Dates </strong> <img width="12" height="12" src="../images/new.gif" border="0"><ul>
-          <li>R1.2 Milestone 7 (RC0): 5 May, 2008</li>
-          <li>Last day of development: 30 April, 2008</li>
-        </ul></td>
-    </tr>
-    <tr> 
-      <td colspan="2" valign="top" bgcolor="#0080c0"><span class="style2"><font face="Arial,Helvetica"><font color="#ffffff"> 
-        Plan details </font></font></span></td>
-    </tr>
-    <tr><td>&nbsp;</td></tr>
-    <tr><td>&nbsp;</td></tr>
-  </tbody>
-</table>
-
-<table border="0" cellspacing="5" cellpadding="2" width="100%">
-  <tbody>
-    <tr><td>&nbsp;</td></tr>
-	<tr>
-		<td align="left" valign="top" colspan="4" bgcolor="#0080c0"
-			width="100%"><b><font face="Arial,Helvetica"><font color="#ffffff">
-		Legend</font></font></b></td>
-	</tr>
-	<tr>
-		<td valign="center"><img src="../images/progress.gif" nosave="" height="5" width="14" border="0">
-		</td>
-		<td width="50%">item is under development.
-		</td>
-		<td valign="center"><img src="../images/investigate.gif" nosave="" height="12" width="12" border="0">
-		</td>
-		<td width="50%">item is under investigation or help is wanted.
-		</td>
-	</tr>
-	<tr>
-		<td valign="center"><img src="../images/ok.gif" nosave="" height="5" width="14" border="0">
-		</td>
-		<td width="50%">item is finished.
-		</td>
-		<td valign="center"><img src="../images/waiting.gif" nosave="" height="5" width="14" border="0">
-		</td>
-		<td width="50%">item is not started.
-		</td>
-	</tr>
-	<tr>
-  </tbody>
-</table>
-
-</body>
-</html>
\ No newline at end of file
diff --git a/ocl/eclipse-project-ip-log.csv b/ocl/eclipse-project-ip-log.csv
deleted file mode 100644
index a458d56..0000000
--- a/ocl/eclipse-project-ip-log.csv
+++ /dev/null
@@ -1,22 +0,0 @@
-Section 1 (Committers),,,,
-
-dev.eclise.org Login,,,,
-cdamus,,,,
-cmcgee,,,,
-vramaswamy,,,,
-
-Section 2 (Developers),,,,
-
-Component,Bug #,Contributor,Size,Committer
-org.eclipse.emf.ocl,134792,Christian Vogt,35509 LOC,cdamus
-org.eclipse.emf.ocl,141413,Christian Vogt,557 LOC,cdamus
-org.eclipse.emf.ocl,141641,Christian Vogt,small,cdamus
-org.eclipse.emf.ocl,141992,Christian Vogt,small,cdamus
-org.eclipse.emf.ocl,143882,Edward Willink,small,cdamus
-
-Section 3 (Third Party Software),,,,
-
-Name,Location,License,Usage,
-LPG Java Runtime v1.0,/cvsroot/technology/org.eclipse.emft/ocl/plugins/org.eclipse.emf.ocl/lib/lpgjavaruntime.jar,Eclipse Public License Version 1.0,unmodified entire package
-LPG Java Runtime v1.0,/cvsroot/tools/org.eclipse.orbit/net.sourceforge.lpg.lpgjavaruntime v1_0,Eclipse Public License Version 1.0,original lpgjavaruntime.jar repackaged as an OSGi bundle
-LPG Java Runtime v1.1,/cvsroot/tools/org.eclipse.orbit/net.sourceforge.lpg.lpgjavaruntime v1_1,Eclipse Public License Version 1.0,original lpgjavaruntime.jar repackaged as an OSGi bundle
diff --git a/ocl/images/investigate.gif b/ocl/images/investigate.gif
deleted file mode 100644
index b2e75b0..0000000
--- a/ocl/images/investigate.gif
+++ /dev/null
Binary files differ
diff --git a/ocl/images/new.gif b/ocl/images/new.gif
deleted file mode 100644
index 3ef5f5e..0000000
--- a/ocl/images/new.gif
+++ /dev/null
Binary files differ
diff --git a/ocl/images/ok.gif b/ocl/images/ok.gif
deleted file mode 100755
index 30a2ccd..0000000
--- a/ocl/images/ok.gif
+++ /dev/null
Binary files differ
diff --git a/ocl/images/progress.gif b/ocl/images/progress.gif
deleted file mode 100755
index bb7a15f..0000000
--- a/ocl/images/progress.gif
+++ /dev/null
Binary files differ
diff --git a/ocl/images/waiting.gif b/ocl/images/waiting.gif
deleted file mode 100644
index 06a3767..0000000
--- a/ocl/images/waiting.gif
+++ /dev/null
Binary files differ
diff --git a/ocl/index.php b/ocl/index.php
deleted file mode 100644
index fad322e..0000000
--- a/ocl/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: http://www.eclipse.org/modeling/mdt/?project=ocl"); ?>

diff --git a/ocl/project-info/contributors.html b/ocl/project-info/contributors.html
deleted file mode 100644
index 6237dae..0000000
--- a/ocl/project-info/contributors.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<p>
-  <li>Christian Damus</li>
-  <li>Chris McGee</li>
-  <li>Vishy Ramaswamy</li>
-  <li>Christian Vogt</li>
-  <li>Edward Willink</li>
-  <li>Yasser Lulu</li>
-  <li>Edith Schonberg</li>
-  <li>Tim Klinger</li>
-</p>
diff --git a/ocl/project-info/overview.html b/ocl/project-info/overview.html
deleted file mode 100644
index 8d8e696..0000000
--- a/ocl/project-info/overview.html
+++ /dev/null
@@ -1,14 +0,0 @@
-<p>OCL is an implementation of the <a href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#OCL">Object Constraint Language (OCL)</a> OMG standard for EMF-based models.</p>
-<p>The OCL component provides the following capabilities to support OCL integration:</p>
-<ul>
-	<li>Defines APIs for parsing and evaluating OCL constraints and queries on EMF models.</li>
-	<li>Defines an Ecore implementation of the OCL abstract syntax model, including support for
-	    serialization of parsed OCL expressions.</li>
-	<li>Provides a Visitor API for analyzing/transforming the AST model of OCL expressions.</li>
-	<li>Provides an extensibility API for clients to customize the parsing and evaluation
-	    environments used by the parser.</li>
-</ul>
-<p>The OCL parser is generated by the LALR Parser Generator, a SourceForge project,
-licensed under the <a href="http://www.eclipse.org/legal/epl-v10.html">EPL v1.0</a>.
-Download it from the <a href="http://sourceforge.net/projects/lpg/">LPG home page</a>.
-This site includes the generator executable required to regenerate the parser code.</p>
diff --git a/ocl/project-info/plan.xml b/ocl/project-info/plan.xml
deleted file mode 100644
index 0c960c4..0000000
--- a/ocl/project-info/plan.xml
+++ /dev/null
@@ -1,199 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
-<?xml-stylesheet type="text/xsl" href="http://www.eclipse.org/projects/project-plan.xsl"?>
-<plan plan-format="1.0" xmlns="http://www.eclipse.org/project/plan" xmlns:html="http://www.w3.org/1999/xhtml"
-      name="Project Name">
-   <release projectid="modeling.mdt" version="1.3.0"/>
-   <introduction>
-     <html:div>
-<html:p>
-This document lays out the feature and API set for the
-fourth release of the Eclipse Object Constraint Language (MDT OCL)
-Project, version 1.3.0. This project plan inherits from the Modeling
-Project Plan, which should be referenced when consulting this
-individual project plan.
-</html:p><html:p>
-<html:i><html:b>Note</html:b> that, depending on the nature of the anticipated OCL&#174; 2.1
-revised specification from the OMG<html:sup>TM</html:sup>, <html:b>MDT OCL may require incompatible
-API changes</html:b> and release as version <html:b>2.0.0</html:b>.</html:i>
-</html:p>
-     </html:div>
-   </introduction>
-   <release_deliverables>
-     <html:div>
-The release deliverables have the same form as is found in most Eclipse projects, namely:
-<html:ul>
-<html:li>MDT OCL source code release, available as versions tagged "R1_3" in the project's CVS repository.</html:li>
-<html:li>MDT OCL SDK (includes runtime, sources, examples, and documentation) (downloadable and update site).</html:li>
-<html:li>MDT OCL runtime binary distribution (downloadable and update site).</html:li>
-<html:li>MDT OCL stand-alone binary distribution (downloadable).</html:li>
-<html:li>MDT OCL tests (downloadable)</html:li>
-</html:ul>
-     </html:div>
-   </release_deliverables>
-   <release_milestones>
-      <preamble>
-         <html:div>
-Release milestone occurring at roughly 6 week intervals and follow the
-Platform milestone releases by approximately 1 week; that is, until the
-final 3.5 release of the Platform, upon which MDT OCL and other projects
-will release simultaneously. As MDT OCL is a dependency of numerous
-other projects, MDT OCL will deliver its milestones within one week of
-the Eclipse Platform. It is anticipated that MDT OCL will synchronize its
-milestones with the Galileo milestone schedule.
-         </html:div>
-      </preamble>
-<milestone date="08/13/2008" milestone="M1"></milestone>
-<milestone date="09/24/2008" milestone="M2"></milestone>
-<milestone date="11/05/2008" milestone="M3"></milestone>
-<milestone date="12/17/2008" milestone="M4"></milestone>
-<milestone date="02/03/2009" milestone="M5"></milestone>
-<milestone date="03/16/2009" milestone="M6"><html:div>API freeze</html:div></milestone>
-<milestone date="05/04/2009" milestone="M7"><html:div>Feature Freeze</html:div></milestone>
-<milestone date="05/18/2009" milestone="RC1"></milestone>
-<milestone date="05/25/2009" milestone="RC2"></milestone>
-<milestone date="06/01/2009" milestone="RC3"></milestone>
-<milestone date="06/08/2009" milestone="RC4"></milestone>
-<milestone date="06/15/2009" milestone="RC5"></milestone>
-<milestone date="06/28/2009" milestone="1.3.0"></milestone>
-      <postamble><html:div>
-MDT OCL will produce maintenance releases to align with the Ganymede SR
-releases, that includes the Eclipse Platform 3.4.1 and 3.4.2 releases.
-MDT OCL may produce interim maintenance releases in addition to these in
-order to satisfy clients requests.
-<html:ul>
-  <html:li>Friday, August 15, 2008 - MDT OCL 1.2.1 maintenance release</html:li>
-  <html:li>Friday, September 26, 2008 - MDT OCL 1.2.2 maintenance release (Ganymede Service Release 1)</html:li>
-  <html:li>Friday, February 27, 2009 - MDT OCL 1.2.3 maintenance release (Ganymede Service Release 2)</html:li>
-  <html:li>A list of issues indicated for the 1.2.x maintenance stream can be found in
-      bugzilla, or by using links on maintenance stream build pages.</html:li>
-</html:ul> 
-      </html:div></postamble>
-   </release_milestones>
-   <target_environments>
-     <html:div>
-        In order to remain current, each Eclipse release targets reasonably
-        current versions of the underlying operating environments. The Eclipse
-        Object Constraint Language (MDT OCL) project depends upon on the
-        Platform and other projects, which are mostly "pure" Java<html:sup>TM</html:sup>. The 3.5
-        release of the Eclipse Platform Project is written and compiled
-        against version 1.4 of the Java Platform APIs, and targeted to run on
-        version 1.4 of the Java Runtime Environment, Standard Edition. MDT OCL
-        will target the same Java version as EMF and UML2, which currently require
-        Java 5. Eclipse Platform SDK 3.5 will be tested and validated on a
-        number of reference platforms. MDT OCL will be tested and validated
-        against a subset of those listed for the platform.
-     </html:div>
-     <internationalization>
-          <html:div>
-The Eclipse Platform is designed as the basis
-for internationalized products. The user interface elements provided
-by the Eclipse SDK components, including dialogs and error messages,
-are externalized. The English strings are provided as the default
-resource bundles. As a result, the MDT OCL
-project will provide English strings in its default bundles and be
-localized to a subset of those locales offered by the Platform. This
-plan will be updated to indicate which locales will be provided and
-the time frame for availability.
-          </html:div>
-     </internationalization>
-   </target_environments>
-   <compatibility_with_previous_releases>
-       <html:div>
-Compatibility of Release 1.3: The MDT OCL project
-will be developed in parallel, and released simultaneously, with the
-following projects. As stated above, each milestone release of the
-MDT OCL project will be compatible with the
-corresponding milestones for each of these projects, and delivered the
-appropriate offset.
-<html:ul>
-    <html:li>Eclipse Platform SDK version 3.5</html:li>
-    <html:li>Eclipse Modeling Framework (EMF) version 2.5</html:li>
-    <html:li>Model Development Tools (MDT) UML2 version 2.3</html:li>
-</html:ul>
-Therefore, the MDT OCL initial release will be
-compatible with these versions and will publish binary and source
-compatibilities with migration guides on subsequent releases.
-       </html:div>
-   </compatibility_with_previous_releases>
-   <themes_and_priorities>
-     <preamble>
-         <html:div>
-A list of project requirements and agreed upon
-implementation time frames is found in this document. For the
-milestones listed in this document, a set of overall themes is used
-to indicate what major set of functionalities is to be concentrated
-on for each. These themes are presented below, while the requirements
-document and associated Bugzilla entries are left to those wanting
-more detailed information on each.
-         </html:div>
-     </preamble>
-        <theme name="Release Currency">
-            <description>
-                <html:div>
-The MDT OCL project will maintain currency with its
-dependencies, in particular advances in the EMF and MDT UML2 projects.
-Additionally, as an implementation of the OMG's OCL 2.0 specification,
-the MDT OCL project will maintain currency with the revised 2.1
-specification.
-                </html:div>
-            </description>
-            <committed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Release+Currency&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </committed>
-            <proposed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Release+Currency&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;target_milestone=1.3.0&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </proposed>
-            <deferred
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Release+Currency&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-">
-            </deferred>
-        </theme>
-        <theme name="Extensibility">
-            <description>
-                <html:div>
-The Object Constraint Language is re-used and extended
-by other language specifications, in particular the OMG MOF&#174; Query/View/Transformation
-family of languages.  This theme addresses the need for extensibility
-of the MDT OCL language implementation and APIs.
-                </html:div>
-            </description>
-            <committed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Extensibility&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </committed>
-            <proposed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Extensibility&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;target_milestone=1.3.0&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </proposed>
-            <deferred
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Extensibility&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-">
-            </deferred>
-        </theme>
-        <theme name="Appealing to a Broader Community">
-            <description>
-                <html:div>
-There are a few fairly routine capabilities which, historically, MDT OCL has not
-supplied because of its narrow focus on parsing and evaluating OCL text.  User
-demand shows the value of providing the EMF.Edit plug-ins, for example, as well
-as a more flexible feature structure.
-                </html:div>
-            </description>
-            <committed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Broad+Appeal&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </committed>
-            <proposed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Broad+Appeal&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;target_milestone=1.3.0&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </proposed>
-            <deferred
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Broad+Appeal&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-">
-            </deferred>
-        </theme>
-   </themes_and_priorities>
-   <appendix name="Legal Notices">
-        <html:div>
-<html:ul>
-<html:li>Java is a trademark or a registered trademark of Sun Microsystems, Inc.</html:li>
-<html:li>OCL and OMG are trademarks or registered trademark of the Object Management Group<html:sup>TM</html:sup>, Inc.</html:li>
-<html:li>All other products or company names are mentioned for identification purposes only, and
-    may be trademarks or service marks of their respective owners.</html:li>
-</html:ul>
-        </html:div>
-   </appendix>
-</plan>
diff --git a/ocl/project-info/plan_1_3.html b/ocl/project-info/plan_1_3.html
deleted file mode 100644
index 456bd77..0000000
--- a/ocl/project-info/plan_1_3.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<html>
-<head>
-<meta http-equiv="REFRESH" content="10;URL=http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/ocl/project-info/plan.xml&component=OCL"/>
-</head>
-<body>
-This page has moved.  If you are not redirected automatically within 10 seconds,
-please click
-<a href="http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/ocl/project-info/plan.xml&component=OCL">here</a>.
-</body>
-</html>
\ No newline at end of file
diff --git a/ocl/project-info/project-page-paragraph.html b/ocl/project-info/project-page-paragraph.html
deleted file mode 100644
index 9528a18..0000000
--- a/ocl/project-info/project-page-paragraph.html
+++ /dev/null
@@ -1 +0,0 @@
-<p>OCL is an implementation of the <a href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#OCL">Object Constraint Language (OCL)</a> OMG standard for EMF-based models.</p>
diff --git a/project-info/contributors.html b/project-info/contributors.html
deleted file mode 100644
index f140ef3..0000000
--- a/project-info/contributors.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<p>
-  <li>James Bruck</li>
-  <li>Dave Carlson</li>
-  <li>Christian Damus</li>
-  <li>Sebastien Gerard</li>
-  <li>Michael Golubev</li>
-  <li>Kenn Hussey</li>
-  <li>Ed Merks</li>
-</p>
\ No newline at end of file
diff --git a/project-info/executive-summary.html b/project-info/executive-summary.html
deleted file mode 100644
index 4667c2d..0000000
--- a/project-info/executive-summary.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
-<html>
-
-<head>
-	<title>MDT Plan Summary</title>
-	<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
-</head>
-
-<body>
-  <p>
-    <strong>Project Name: </strong>MDT<br>
-    <br>
-    <strong>Project Leaders: </strong>Kenn Hussey<br>
-    <br>
-    <strong>Project Description: </strong>
-      The Model Development Tools (MDT) project focuses on big "M" modeling within the Modeling project.
-      See <a href="http://www.eclipse.org/mdt">http://www.eclipse.org/mdt</a>.<br>
-    <br>
-    <strong>Executive Summary: </strong>
-      The objectives of this project are to provide an implementation of industry standard metamodels and exemplary tools for developing models based on those metamodels.<br>
-  <p>
-    <strong>Key Release Dates: </strong>
-  </p>
-  <ul>
-    <li>Friday, October 3 - Milestone 2 (Galileo M2) - Stable Build based on Eclipse 3.5 M2</li>
-    <li>Friday, November 14 - Milestone 3 (Galileo M3) - Stable Build based on Eclipse 3.5 M3</li>
-    <li>Monday, January 5 - Milestone 4 (Galileo M4) - Stable Build based on Eclipse 3.5 M4</li>
-    <li>Tuesday, February 10 - Milestone 5 (Galileo M5) - Stable Build based on Eclipse 3.5 M5</li>
-    <li>Thursday, March 19 - Milestone 6 (Galileo M6) - API Freeze - Stable Build based on Eclipse 3.5 M6</li>
-    <li>Wednesday, May 6 - Milestone 7 (Galileo M7) - Feature Freeze - Stable Build based on Eclipse 3.5 M7</li>
-    <li>Wednesday, May 20 - Release Candidate 1 (Galileo RC1) - Stable Build based on Eclipse 3.5 RC1</li>
-    <li>Wednesday, May 27 - Release Candidate 2 (Galileo RC2) - Stable Build based on Eclipse 3.5 RC2</li>
-    <li>Wednesday, June 3 - Release Candidate 3 (Galileo RC3) - Stable Build based on Eclipse 3.5 RC3</li>
-    <li>Wednesday, June 10 - Release Candidate 4 (Galileo RC4) - Stable Build based on Eclipse 3.5 RC4</li>
-    <li>Wednesday, June 17 - Release Candidate 5 (Galileo RC5) - Stable Build based on Eclipse 3.5 RC5</li>
-    <li>Friday, June 26 - Release (Galileo) - Release Build based on Eclipse 3.5</li>
-  </ul>
-
-  <p>
-    <strong>URL to current planning document: </strong>
-      The MDT Galileo development plan is available <a href="http://www.eclipse.org/projects/project-plan.php?projectid=modeling.mdt">here</a>.<br>
-  </p>
-</body>
-
-</html>
diff --git a/project-info/home-page-one-liner.html b/project-info/home-page-one-liner.html
deleted file mode 100644
index 4be9493..0000000
--- a/project-info/home-page-one-liner.html
+++ /dev/null
@@ -1 +0,0 @@
-Model Development Tools (MDT)
\ No newline at end of file
diff --git a/project-info/ipquery.php b/project-info/ipquery.php
deleted file mode 100755
index eb0e291..0000000
--- a/project-info/ipquery.php
+++ /dev/null
@@ -1,41 +0,0 @@
-<?php
-$product_id = 67; # MDT 
-$committers = array(
- 	# taken from http://www.eclipse.org/projects/project_summary.php?projectid=modeling.mdt
-
-	"khussey" => "PMC, uml2",
-	"jbruck" => "uml2",
-
-	"davidms" => "xsd",
-	"emerks" => "xsd",
-	"marcelop" => "xsd",
-	"nickb" => "xsd, releng",
-
-	"cdamus" => "ocl",
-
-	"dcarlson" => "imm, sbvr",
-
-	"lzhang" => "eodm",
-	"yyang" => "eodm",
-
-	"tfesenko" => "uml2tools",
-	"sgribovsk" => "uml2tools",
-	"mgolubev" => "uml2tools",
-);
-
-$extra_IP = array(
-);
-
-$third_party = array(
-	"LPG Runtime and Generated OCL Parser 1, Orbit, , moved to MDT per CQ 1080, 303, ocl",
-	"LPG Java Runtime v1.0,/cvsroot/technology/org.eclipse.emft/ocl/plugins/org.eclipse.emf.ocl/lib/lpgjavaruntime.jar,Eclipse Public License Version 1.0,unmodified entire package, 1080, ocl",
-	"LPG Java Runtime v1.0,/cvsroot/tools/org.eclipse.orbit/net.sourceforge.lpg.lpgjavaruntime v1_0,Eclipse Public License Version 1.0,original lpgjavaruntime.jar repackaged as an OSGi bundle, 1080, ocl",
-	"LPG Java Runtime v1.1,/cvsroot/tools/org.eclipse.orbit/net.sourceforge.lpg.lpgjavaruntime v1_1,Eclipse Public License Version 1.0,original lpgjavaruntime.jar repackaged as an OSGi bundle, 1081, ocl",
-	
-);
-
-if (isset($_GET["ganymede"])){ 
-	$components = array("ocl", "uml2", "uml2tools", "xsd"); 
-} 
-require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/includes/ipquery-common.php"); 
-doIPQueryPage(); ?>
\ No newline at end of file
diff --git a/project-info/maillist b/project-info/maillist
deleted file mode 100644
index 321ed36..0000000
--- a/project-info/maillist
+++ /dev/null
@@ -1,9 +0,0 @@
-::mdt.dev::MDT Developers list.
-::mdt-bpmn2.dev::BPMN2 Developers list.
-::mdt-imm.dev::IMM Developers list.
-::mdt-ocl.dev::OCL Developers list.
-::mdt-papyrus.dev::Papyrus Developers list.
-::mdt-sbvr.dev::SBVR Developers list.
-::mdt-uml2.dev::UML2 Developers list.
-::mdt-uml2tools.dev::UML2 Tools Developers list.
-::mdt-xsd.dev::XSD Developers list.
\ No newline at end of file
diff --git a/project-info/newsgroup b/project-info/newsgroup
deleted file mode 100644
index 570804d..0000000
--- a/project-info/newsgroup
+++ /dev/null
@@ -1,6 +0,0 @@
-::eclipse.modeling.mdt::Come here to participate in discussions about development of the MDT project.
-The MDT project is organized into BPMN2, IMM, OCL, Papyrus, SBVR, UML2, UML2 Tools, and XSD components.
-::eclipse.modeling.mdt.ocl::Come here to participate in discussions about development of the OCL component of MDT.
-::eclipse.modeling.mdt.uml2::Come here to participate in discussions about development of the UML2 component of MDT.
-::eclipse.modeling.mdt.uml2tools::Come here to participate in discussions about development of the UML2 Tools component of MDT.
-::eclipse.modeling.mdt.xsd::Come here to participate in discussions about development of the XSD component of MDT.
diff --git a/project-info/overview.html b/project-info/overview.html
deleted file mode 100644
index 7d8d4d6..0000000
--- a/project-info/overview.html
+++ /dev/null
@@ -1,4 +0,0 @@
-<p>The next release of MDT is tentatively scheduled for the end of June 2009. 
-For the previous release, see <a href="http://wiki.eclipse.org/MDT_1.1_New_and_Noteworthy">1.1 New & Noteworthy</a>.
-</p>
-
diff --git a/project-info/plan_galileo.xml b/project-info/plan_galileo.xml
deleted file mode 100644
index 61b5b65..0000000
--- a/project-info/plan_galileo.xml
+++ /dev/null
@@ -1,235 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
-<?xml-stylesheet type="text/xsl" href="http://www.eclipse.org/projects/project-plan.xsl"?>
-<plan plan-format="1.0" xmlns="http://www.eclipse.org/project/plan" xmlns:html="http://www.w3.org/1999/xhtml" name="Project Name">
-  <release projectid="modeling.mdt" version="Galileo"/>
-  <introduction>
-    <html:div>
-      <html:p>
-This document lays out the feature and API set for the third release of the 
-Eclipse Model Development Tools (MDT) Project. This project plan inherits from 
-the Modeling Project Plan, which should be referenced when consulting this 
-individual project plan.
-      </html:p>
-    </html:div>
-  </introduction>
-  <release_deliverables>
-    <html:div>
-The release deliverables have the same form as is found in most Eclipse projects, namely:
-      <html:p>
-        <html:a href="http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/ocl/project-info/plan.xml&amp;component=OCL">OCL</html:a>
-        <html:ul>
-          <html:li>source code release, available as versions tagged "R1_3" in the project's CVS repository.</html:li>
-          <html:li>SDK (includes runtime, sources, examples, and documentation) (downloadable and update site).</html:li>
-          <html:li>runtime binary distribution (downloadable and update site).</html:li>
-          <html:li>tests (downloadable)</html:li>
-        </html:ul>
-      </html:p>
-      <html:p>
-        <html:a href="http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/uml2/project-info/plan.xml&amp;component=UML2">UML2</html:a>
-        <html:ul>
-          <html:li>source code release, available as versions tagged "R3_0" in the project's CVS repository.</html:li>
-          <html:li>SDK (includes runtime, sources, examples, and documentation) (downloadable and update site).</html:li>
-          <html:li>runtime binary distribution (downloadable and update site).</html:li>
-          <html:li>tests (downloadable)</html:li>
-        </html:ul>
-      </html:p>
-      <html:p>
-        <html:a href="http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/uml2tools/project-info/plan.xml&amp;component=UML2Tools">UML2 Tools</html:a>
-        <html:ul>
-          <html:li>source code release, available as versions tagged "R0_9" in the project's CVS repository.</html:li>
-          <html:li>SDK (includes runtime, sources, examples, and documentation) (downloadable and update site).</html:li>
-          <html:li>runtime binary distribution (downloadable and update site).</html:li>
-          <html:li>Tools tests (downloadable)</html:li>
-        </html:ul>
-      </html:p>
-      <html:p>
-        <html:a href="http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/xsd/project-info/plan.xml&amp;component=XSD">XSD</html:a>
-        <html:ul>
-          <html:li>source code release, available as versions tagged "R2_5" in the project's CVS repository.</html:li>
-          <html:li>SDK (includes runtime, sources, examples, and documentation) (downloadable and update site).</html:li>
-          <html:li>runtime binary distribution (downloadable and update site).</html:li>
-          <html:li>tests (downloadable)</html:li>
-        </html:ul>
-      </html:p>
-    </html:div>
-  </release_deliverables>
-  <release_milestones>
-    <preamble>
-      <html:div>
-Release milestone occurring at roughly 6 week intervals and follow the Platform 
-milestone releases by approximately 3 weeks; that is, until the final 3.5 
-release of the Platform, upon which MDT and other projects will release 
-simultaneously. Components of MDT that are dependencies of numerous other 
-projects will deliver their milestones within one week of the Eclipse Platform. 
-It is anticipated that MDT will synchronize its milestones with the Galileo 
-milestone schedule.
-      </html:div>
-    </preamble>
-    <milestone date="10/03/2008" milestone="M2" />
-    <milestone date="11/14/2008" milestone="M3" />
-    <milestone date="01/05/2009" milestone="M4" />
-    <milestone date="02/10/2009" milestone="M5" />
-    <milestone date="03/19/2009" milestone="M6">
-      <html:div>API Freeze</html:div>
-    </milestone>
-    <milestone date="05/06/2009" milestone="M7">
-      <html:div>Feature Freeze</html:div>
-    </milestone>
-    <milestone date="05/20/2009" milestone="RC1" />
-    <milestone date="05/27/2009" milestone="RC2" />
-    <milestone date="06/03/2009" milestone="RC3" />
-    <milestone date="06/10/2009" milestone="RC4" />
-    <milestone date="06/17/2009" milestone="RC5" />
-    <milestone date="06/26/2009" milestone="Galileo" />
-    <postamble>
-      <html:div>
-MDT will produce maintenance releases to align with the Ganymede SR releases, 
-that includes the Eclipse Platform 3.4.1 and 3.4.2 releases. MDT may produce 
-interim maintenance releases in addition to these in order to satisfy client 
-requests.
-      </html:div>
-    </postamble>
-  </release_milestones>
-  <target_environments>
-    <html:div>
-In order to remain current, each Eclipse release targets reasonably current 
-versions of the underlying operating environments. The Eclipse Model 
-Development Tools (MDT) project depends upon on the Platform and other 
-projects, which are mostly "pure" Java<html:sup>TM</html:sup>. The 3.5 
-release of the Eclipse Platform Project is written and compiled against version 
-1.4 of the Java Platform APIs, and targeted to run on version 1.4 of the Java 
-Runtime Environment, Standard Edition. MDT will target the same Java version as 
-EMF, which currently requires Java 5. Eclipse Platform SDK 3.5 will be tested 
-and validated on a number of reference platforms. MDT will be tested and 
-validated against a subset of those listed for the platform.
-    </html:div>
-    <internationalization>
-      <html:div>
-The Eclipse Platform is designed as the basis for internationalized products. 
-The user interface elements provided by the Eclipse SDK components, including 
-dialogs and error messages, are externalized. The English strings are provided 
-as the default resource bundles. As a result, the MDT project will provide 
-English strings in its default bundles and be localized to a subset of those 
-locales offered by the Platform. This plan will be updated to indicate which 
-locales will be provided and the time frame for availability.
-      </html:div>
-    </internationalization>
-  </target_environments>
-  <compatibility_with_previous_releases>
-    <html:div>
-Compatibility of Galileo Release: The MDT project will be developed in 
-parallel, and released simultaneously, with the following projects. As stated 
-above, each milestone release of the MDT project will be compatible with the 
-corresponding milestones for each of these projects, and delivered the 
-appropriate offset.
-      <html:ul>
-        <html:li>Eclipse Platform SDK version 3.5</html:li>
-        <html:li>Eclipse Modeling Framework (EMF) version 2.5</html:li>
-        <html:li>Graphical Modeling Framework (GMF) version 2.2</html:li>
-      </html:ul>
-Therefore, the MDT initial release will be compatible with these versions and 
-will publish binary and source compatibilities with migration guides on 
-subsequent releases.
-    </html:div>
-  </compatibility_with_previous_releases>
-  <themes_and_priorities>
-    <preamble>
-      <html:div>
-A list of project requirements and agreed upon implementation time frames is 
-found in this document. For the milestones listed in this document, a set of 
-overall themes is used to indicate what major set of functionalities is to be 
-concentrated on for each. These themes are presented below, while the 
-requirements document and associated Bugzilla entries are left to those wanting 
-more detailed information on each.
-      </html:div>
-    </preamble>
-    <theme name="Release Currency">
-      <description>
-        <html:div>
-          <html:a href="http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/ocl/project-info/plan.xml&amp;component=OCL">OCL</html:a>
-        </html:div>
-      </description>
-      <committed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Release+Currency&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <proposed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Release+Currency&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;target_milestone=1.3.0&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <deferred bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Release+Currency&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-" />
-    </theme>
-    <theme name="">
-      <description>
-        <html:div>
-          <html:a href="http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/uml2/project-info/plan.xml&amp;component=UML2">UML2</html:a>
-        </html:div>
-      </description>
-      <committed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Release+Currency&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <proposed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Release+Currency&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;target_milestone=3.0.0&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <deferred bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Release+Currency&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-" />
-    </theme>
-    <theme name="Extensibility">
-      <description>
-        <html:div>
-          <html:a href="http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/ocl/project-info/plan.xml&amp;component=OCL">OCL</html:a>
-        </html:div>
-      </description>
-      <committed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Extensibility&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <proposed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Extensibility&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;target_milestone=1.3.0&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-  	  <deferred bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Extensibility&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-" />
-    </theme>
-    <theme name="Appealing to a Broader Community">
-      <description>
-        <html:div>
-          <html:a href="http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/ocl/project-info/plan.xml&amp;component=OCL">OCL</html:a>
-        </html:div>
-      </description>
-      <committed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Broad+Appeal&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <proposed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Broad+Appeal&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;target_milestone=1.3.0&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-  	  <deferred bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Broad+Appeal&amp;classification=Modeling&amp;product=MDT&amp;component=OCL&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-" />
-    </theme>
-    <theme name="Compliance">
-      <description>
-        <html:div>
-          <html:a href="http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/uml2/project-info/plan.xml&amp;component=UML2">UML2</html:a>
-        </html:div>
-      </description>
-      <committed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Compliance&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <proposed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Compliance&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;target_milestone=3.0.0&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <deferred bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Compliance&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-" />
-    </theme>
-    <theme name="Community Support">
-      <description>
-        <html:div>
-          <html:a href="http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/uml2/project-info/plan.xml&amp;component=UML2">UML2</html:a>
-        </html:div>
-      </description>
-      <committed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Community+Support&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <proposed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Community+Support&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;target_milestone=3.0.0&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <deferred bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Community+Support&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-" />
-    </theme>
-    <theme name="    ">
-      <description>
-        <html:div>
-          <html:a href="http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/xsd/project-info/plan.xml&amp;component=XSD">XSD</html:a>
-        </html:div>
-      </description>
-      <committed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Community+Support&amp;classification=Modeling&amp;product=MDT&amp;component=XSD&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <proposed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Community+Support&amp;classification=Modeling&amp;product=MDT&amp;component=XSD&amp;target_milestone=2.5.0&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <deferred bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Community+Support&amp;classification=Modeling&amp;product=MDT&amp;component=XSD&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-" />
-    </theme>
-    <theme name="Usability">
-      <description>
-        <html:div>
-          <html:a href="http://www.eclipse.org/projects/project-plan.php?planurl=http://www.eclipse.org/modeling/mdt/uml2tools/project-info/plan.xml&amp;component=UML2Tools">UML2 Tools</html:a>
-        </html:div>
-      </description>
-      <committed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Usability&amp;classification=Modeling&amp;product=MDT&amp;component=UML2Tools&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <proposed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Usability&amp;classification=Modeling&amp;product=MDT&amp;component=UML2Tools&amp;target_milestone=0.9.0&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-      <deferred bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Usability&amp;classification=Modeling&amp;product=MDT&amp;component=UML2Tools&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-" />
-    </theme>
-  </themes_and_priorities>
-  <appendix name="Legal Notices">
-    <html:div>
-      <html:ul>
-        <html:li>Java is a trademark or a registered trademark of Sun Microsystems, Inc.</html:li>
-        <html:li>All other products or company names are mentioned for identification purposes only, and may be trademarks or service marks of their respective owners.</html:li>
-      </html:ul>
-    </html:div>
-  </appendix>
-</plan>
diff --git a/project-info/project-page-paragraph.html b/project-info/project-page-paragraph.html
deleted file mode 100644
index 6643bb1..0000000
--- a/project-info/project-page-paragraph.html
+++ /dev/null
@@ -1,7 +0,0 @@
-<p>
-The Model Development Tools (MDT) project focuses on big "M" modeling within the Modeling project. Its purpose is twofold:
-  <ol>
-    <li>To provide an implementation of industry standard metamodels.</li>
-    <li>To provide exemplary tools for developing models based on those metamodels.</li>
-  </ol>
-</p>
diff --git a/project-info/team.php b/project-info/team.php
deleted file mode 100644
index c757d96..0000000
--- a/project-info/team.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php $isIncubating = true; include_once "../../includes/team-common.php"; ?>
diff --git a/project-info/teamAdmin.php b/project-info/teamAdmin.php
deleted file mode 100644
index 39e00ec..0000000
--- a/project-info/teamAdmin.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php include_once "../../includes/teamAdmin-common.php"; ?>
diff --git a/sbvr/.cvsignore b/sbvr/.cvsignore
deleted file mode 100644
index e970233..0000000
--- a/sbvr/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-.project
\ No newline at end of file
diff --git a/sbvr/.project b/sbvr/.project
deleted file mode 100644
index 9022660..0000000
--- a/sbvr/.project
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
-	<name>modeling.mdt.sbvr</name>
-	<comment></comment>
-	<projects>
-	</projects>
-	<buildSpec>
-	</buildSpec>
-	<natures>
-	</natures>
-</projectDescription>
diff --git a/sbvr/build/.cvsignore b/sbvr/build/.cvsignore
deleted file mode 100644
index 79eb93b..0000000
--- a/sbvr/build/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-.htaccess
\ No newline at end of file
diff --git a/sbvr/build/_common.php b/sbvr/build/_common.php
deleted file mode 100644
index 721f384..0000000
--- a/sbvr/build/_common.php
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-require_once ("../../../includes/buildServer-common.php");
-
-$options = array (
-	"BaseBuilderBranch" => "M6_34",
-	
-	"BranchAndJDK" => array (
-		"emf.torolab.ibm.com=------------,------------",
-		"0.7.0=HEAD,/opt/sun-java2-5.0",
-		
-		"build.eclipse.org=------------,------------",
-		"0.7.0=HEAD,/opt/public/common/ibm-java2-ppc-50"
-	),
-	
-	"Mapfile_Rule_Default" => 0, // 0: "Use Map, No Tagging=use-false" or 1:"Generate Map, No Tagging=gen-false"
-
-	"EmailDefault" => "dcarlson@xmlmodeling.com", // prefil email contact box with comma-sep'd list
-	
-	"Users" => array ("dcarlson", "dcarlson", "dcarlson") /* build user, eclipse cvs user, IES cvs user */
-);
-
-?>
diff --git a/sbvr/build/clean.php b/sbvr/build/clean.php
deleted file mode 100755
index e98dbf0..0000000
--- a/sbvr/build/clean.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/clean-common.php"); ?>
diff --git a/sbvr/build/index.php b/sbvr/build/index.php
deleted file mode 100644
index 912d64d..0000000
--- a/sbvr/build/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/build-common.php"); ?>
diff --git a/sbvr/build/promo.php b/sbvr/build/promo.php
deleted file mode 100644
index 3d5b264..0000000
--- a/sbvr/build/promo.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/promo-common.php"); ?>
diff --git a/sbvr/eclipse-project-ip-log.csv b/sbvr/eclipse-project-ip-log.csv
deleted file mode 100644
index 1d7ce87..0000000
--- a/sbvr/eclipse-project-ip-log.csv
+++ /dev/null
@@ -1,12 +0,0 @@
-Section 1 (Committers),,,,
-
-dev.eclise.org Login,,,,
-dcarlson,,,,
-
-Section 2 (Developers),,,,
-
-Component,Bug #,Contributor,Size,Committer
-
-Section 3 (Third Party Software),,,,
-
-Name,Location,License,Usage,
diff --git a/sbvr/index.php b/sbvr/index.php
deleted file mode 100644
index 22d7ff1..0000000
--- a/sbvr/index.php
+++ /dev/null
@@ -1,42 +0,0 @@
-<?php  																														require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php");	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); 	require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); 	$App 	= new App();	$Nav	= new Nav();	$Menu 	= new Menu();		include($App->getProjectCommon());    # All on the same line to unclutter the user's desktop'
-
-	#*****************************************************************************
-	#
-	# index.php
-	#
-	# Author: 		Dave Carlson
-	# Date:			$Id: $
-	#
-	# Description: SBVR project home page.
-	#
-	#
-	#****************************************************************************
-	
-	#
-	# Begin: page-specific settings.  Change these. 
-	$pageTitle 		= "SBVR";
-	$pageKeywords	= "Eclipse, EMF, SBVR, UML";
-	$pageAuthor		= "Dave Carlson";
-	
-	# Add page-specific Nav bars here
-	# Format is Link text, link URL (can be http://www.someothersite.com/), target (_self, _blank), level (1, 2 or 3)
-	# $Nav->addNavSeparator("My Page Links", 	"downloads.php");
-	# $Nav->addCustomNav("My Link", "mypage.php", "_self", 3);
-	# $Nav->addCustomNav("Google", "http://www.google.com/", "_blank", 3);
-
-	# End: page-specific settings
-	#
-		
-	# Paste your HTML content between the EOHTML markers!	
-	$html = <<<EOHTML
-
-	<div id="midcolumn">
-	  This project was just provisioned, so there is nothing to see here.
-	</div>
-
-EOHTML;
-
-
-	# Generate the web page
-	$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
diff --git a/sbvr/project-info/contributors.html b/sbvr/project-info/contributors.html
deleted file mode 100644
index 46ed4ff..0000000
--- a/sbvr/project-info/contributors.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<p>
-  <li>Dave Carlson</li>
-</p>
\ No newline at end of file
diff --git a/sbvr/project-info/overview.html b/sbvr/project-info/overview.html
deleted file mode 100644
index 541e8a8..0000000
--- a/sbvr/project-info/overview.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<p>SBVR provides a metamodel implementation and sample
-tools based on the adopted <a target="external"
-	href="http://www.omg.org/spec/SBVR/1.0/"> Semantics
-of Business Vocabulary and Business Rules (SBVR)</a> OMG specification.</p>
-<p>
-The objectives of the SBVR component are to provide:
-<ul>
-  <li>an open source "reference" implementation of the SBVR specification</li>
-  <li>an EMF-based foundation on which business vocabulary and business rules modeling tools can be built</li>
-  <li>a basis for integrating and interchanging artifacts between business vocabulary and business rules tools</li>
-  <li>a forum for engaging the community in validation of the SBVR specification</li>
-</ul>
-
-In addition to an implementation of the SBVR metamodel, this component
-will include sample tools that aid in testing and validating the
-metamodel implementation, and that help SBVR newcomers to better
-understand its use and potential.
-<ul>
-  <li>Project Explorer navigator view for business vocabularies and rules</li>
-  <li>Import business vocabulary from UML domain models</li>
-  <li>Code generation to Platform-Independent Model (PIM) technologies, such as UML and OCL</li>
-</ul>
-</p>
-<p>
-For more details on SBVR, see the <a href="http://wiki.eclipse.org/MDT-SBVR">Wiki</a>.
-</p>
diff --git a/sbvr/project-info/plan_0_7.xml b/sbvr/project-info/plan_0_7.xml
deleted file mode 100644
index dfd7d9a..0000000
--- a/sbvr/project-info/plan_0_7.xml
+++ /dev/null
@@ -1,137 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
-<?xml-stylesheet type="text/xsl" href="http://www.eclipse.org/projects/project-plan.xsl"?>
-<plan plan-format="1.0" xmlns="http://www.eclipse.org/project/plan"
-	xmlns:html="http://www.w3.org/1999/xhtml" name="SBVR">
-	<release projectid="modeling.mdt" version="0.7.0" />
-	<introduction>
-		<html:div>
-<p> This project plan outlines the milestone schedule and work items for
-	the Eclipse Semantics of Business Vocabulary and Business Rules (MDT
-	SBVR) Project, version 0.7.0. This project plan inherits from the
-	Modeling Project Plan, which should be referenced when consulting this
-	individual project plan.</p>
-    	</html:div>
-	</introduction>
-	<release_deliverables>
-		<html:div>
-The release deliverables have the same form as is found in most Eclipse projects, namely:
-<ul>
-<li>MDT SBVR source code release, available as versions tagged "R0_7" in the project's CVS repository</li>
-<li>MDT SBVR SDK (includes runtime, sources, examples, and documentation) (downloadable and update site)</li>
-<li>MDT SBVR runtime binary distribution (downloadable and update site).</li>
-<li>MDT SBVR stand-alone binary distribution (downloadable)</li>
-<li>MDT SBVR tests (downloadable)</li>
-</ul>
-    	</html:div>
-	</release_deliverables>
-	<release_milestones>
-		<preamble>
-			<html:div>
-Release milestone occurring at roughly 6 week intervals and follow the
-Platform milestone releases by approximately 1 week; that is, until the
-final 3.5 release of the Platform, upon which MDT SBVR and other projects
-will release simultaneously. As MDT SBVR may become a dependency of numerous
-other projects, MDT SBVR will deliver its milestones within one week of
-the Eclipse Platform. It is anticipated that MDT SBVR will synchronize its
-milestones with the Galileo milestone schedule.
-        	</html:div>
-		</preamble>
-		<milestone date="08/13/2008" milestone="M1" />
-		<milestone date="09/24/2008" milestone="M2" />
-		<milestone date="11/05/2008" milestone="M3" />
-		<milestone date="12/17/2008" milestone="M4" />
-		<milestone date="02/03/2009" milestone="M5" />
-		<milestone date="03/16/2009" milestone="M6">
-			<html:div>API freeze</html:div>
-		</milestone>
-		<milestone date="05/04/2009" milestone="M7">
-			<html:div>Feature Freeze</html:div>
-		</milestone>
-		<milestone date="05/18/2009" milestone="RC1" />
-		<milestone date="05/25/2009" milestone="RC2" />
-		<milestone date="06/01/2009" milestone="RC3" />
-		<milestone date="06/08/2009" milestone="RC4" />
-		<milestone date="06/15/2009" milestone="RC5" />
-		<milestone date="06/28/2009" milestone="0.7.0" />
-		<postamble>
-			<html:div>
-As MDT SBVR is a new subproject of MDT, it will not produce maintenance releases
-to align with the Ganymede SR releases.
-      </html:div>
-		</postamble>
-	</release_milestones>
-	<target_environments>
-		<html:div> In order to remain current, each Eclipse release targets
-		reasonably current versions of the underlying operating environments.
-		The Eclipse MDT SBVR project depends upon on the Platform and other
-		projects, which are mostly "pure" Java. The 3.5 release of the Eclipse
-		Platform Project is written and compiled against version 1.4 of the
-		Java Platform APIs, and targeted to run on version 1.4 of the Java
-		Runtime Environment, Standard Edition. MDT SBVR will target the same
-		Java version as EMF and UML2, which currently require Java 5. Eclipse
-		Platform SDK 3.5 will be tested and validated on a number of reference
-		platforms. MDT SBVR will be tested and validated against a subset of
-		those listed for the platform.
-		</html:div>
-		<internationalization>
-			<html:div>
-The Eclipse Platform is designed as the basis
-for internationalized products. The user interface elements provided
-by the Eclipse SDK components, including dialogs and error messages,
-are externalized. The English strings are provided as the default
-resource bundles. As a result, the MDT SBVR
-project will provide English strings in its default bundles and be
-localized to a subset of those locales offered by the Platform. This
-plan will be updated to indicate which locales will be provided and
-the time frame for availability.
-          </html:div>
-		</internationalization>
-	</target_environments>
-	<compatibility_with_previous_releases/>
-	<themes_and_priorities>
-		<preamble>
-			<html:div>
-A list of project requirements and agreed upon
-implementation time frames is found in this document. For the
-milestones listed in this document, a set of overall themes is used
-to indicate what major set of functionalities is to be concentrated
-on for each. These themes are presented below, while the requirements
-document and associated Bugzilla entries are left to those wanting
-more detailed information on each.
-         </html:div>
-		</preamble>
-		<theme name="Compliance">
-			<description>
-				<html:div>
-As an implementation of the OMG's SBVR 1.0 specification,
-the MDT SBVR project will maintain currency with the adopted
-and finalized specifications, as they become available.
-                </html:div>
-			</description>
-	      <committed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;classification=Modeling&amp;product=MDT&amp;component=SBVR&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;status_whiteboard_type=casesubstring&amp;status_whiteboard=Compliance&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-	      <proposed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;classification=Modeling&amp;product=MDT&amp;component=SBVR&amp;target_milestone=0.7.0&amp;status_whiteboard_type=casesubstring&amp;status_whiteboard=Compliance&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-	      <deferred bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;classification=Modeling&amp;product=MDT&amp;component=SBVR&amp;status_whiteboard_type=casesubstring&amp;status_whiteboard=Compliance&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-" />
-	    </theme>
-		<theme name="Sample Tools">
-			<description>
-				<html:div>
-The MDT SBVR project will implement sample tools that validate usability
-of the metamodel APIs and demonstrate use by developers.
-                </html:div>
-			</description>
-	      <committed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;classification=Modeling&amp;product=MDT&amp;component=SBVR&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;status_whiteboard_type=casesubstring&amp;status_whiteboard=Sample+Tools&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-	      <proposed bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;classification=Modeling&amp;product=MDT&amp;component=SBVR&amp;target_milestone=0.7.0&amp;status_whiteboard_type=casesubstring&amp;status_whiteboard=Sample+Tools&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-" />
-	      <deferred bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;classification=Modeling&amp;product=MDT&amp;component=SBVR&amp;status_whiteboard_type=casesubstring&amp;status_whiteboard=Sample+Tools&amp;keywords_type=allwords&amp;keywords=plan&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-" />
-	    </theme>
-	</themes_and_priorities>
-	<appendix name="Legal Notices">
-		<html:div>
-<ul>
-<li>Java is a trademark or a registered trademark of Sun Microsystems, Inc.</li>
-<li>SBVR, UML, and OMG are trademarks or registered trademark of the Object Management Group™, Inc.</li>
-<li>All other products or company names are mentioned for identification purposes only, and
-    may be trademarks or service marks of their respective owners.</li>
-</ul>
-        </html:div>
-	</appendix>
-</plan>
\ No newline at end of file
diff --git a/sbvr/project-info/project-page-paragraph.html b/sbvr/project-info/project-page-paragraph.html
deleted file mode 100644
index aa6d70b..0000000
--- a/sbvr/project-info/project-page-paragraph.html
+++ /dev/null
@@ -1,4 +0,0 @@
-<p>SBVR provides a metamodel implementation and sample tools
-based on the adopted <a target="external"
-	href="http://www.omg.org/spec/SBVR/1.0/"> Semantics of Business Vocabulary and Business Rules
-(SBVR)</a> OMG specification.</p>
diff --git a/searchcvs.php b/searchcvs.php
deleted file mode 100644
index 23a588a..0000000
--- a/searchcvs.php
+++ /dev/null
@@ -1,4 +0,0 @@
-<?php
-require_once ("../includes/buildServer-common.php");
-require($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/searchcvs-common.php");
-?>
diff --git a/uml2/.cvsignore b/uml2/.cvsignore
deleted file mode 100644
index 99cd9b4..0000000
--- a/uml2/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-downloads
-.project
diff --git a/uml2/build/.cvsignore b/uml2/build/.cvsignore
deleted file mode 100644
index 79eb93b..0000000
--- a/uml2/build/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-.htaccess
\ No newline at end of file
diff --git a/uml2/build/_common.php b/uml2/build/_common.php
deleted file mode 100644
index a78d061..0000000
--- a/uml2/build/_common.php
+++ /dev/null
@@ -1,46 +0,0 @@
-<?php
-require_once ("../../../includes/buildServer-common.php");
-
-$options = array (
-	"BaseBuilderBranch" => "R35_M5",
-
-	"BranchAndJDK" => array (
-		"emf.torolab.ibm.com=------------,------------",
-		"3.0.0=HEAD,/opt/sun-java2-5.0",
-		"2.2.2=R2_2_maintenance,/opt/sun-java2-5.0",
-		"2.1.1=R2_1_maintenance,/opt/sun-java2-5.0",
-		"2.0.5=R2_0_maintenance,/opt/sun-java2-1.4",
-
-		"emft.eclipse.org=------------,------------",
-		"3.0.0=HEAD,/opt/sun-java2-5.0",
-		"2.2.2=R2_2_maintenance,/opt/sun-java2-5.0",
-		"2.1.1=R2_1_maintenance,/opt/sun-java2-5.0",
-		"2.0.5=R2_0_maintenance,/opt/sun-java2-1.4",
-
-		"modeling.eclipse.org=------------,------------",
-		"3.0.0=HEAD,/opt/sun-java2-5.0",
-		"2.2.2=R2_2_maintenance,/opt/sun-java2-5.0",
-		"2.1.1=R2_1_maintenance,/opt/sun-java2-5.0",
-		"2.0.5=R2_0_maintenance,/opt/sun-java2-1.4",
-
-		"build.eclipse.org=------------,------------",
-		"3.0.0=HEAD,/opt/public/common/ibm-java2-ppc-50",
-		"2.2.2=R2_2_maintenance,/opt/public/common/ibm-java2-ppc-50",
-		"2.1.1=R2_1_maintenance,/opt/public/common/ibm-java2-ppc-50",
-		"2.0.5=R2_0_maintenance,/opt/public/stp/apps/IBMJava2-ppc-142" // bug 178681
-	),
-
-	/* define a regular expression to be used to collect the most recent 
-	 * matching dependencies for running a build. See also releng-common/tools/scripts/start_cron.sh
-	 * and /home/www-data/build/requests/dependencies.urls.txt 
-	 * */ 	
-	"regex" => "I200.*/eclipse-SDK-|[SR]-.*200.*/eclipse-SDK-|[ISR]200.*/emf-xsd-SDK-|[ISR]200.*/emf-sdo-xsd-SDK-",
-
-	"Mapfile_Rule_Default" => 0, // 0: "Use Map, No Tagging=use-false" or 1:"Generate Map, No Tagging=gen-false"
-
-	"EmailDefault" => "jbruck@ca.ibm.com", // prefil email contact box with comma-sep'd list
-
-	"Users" => array ("nickb", "nickb", "nboldt") /* build user, eclipse cvs user, IES cvs user */
-);
-
-?>
diff --git a/uml2/build/clean.php b/uml2/build/clean.php
deleted file mode 100755
index e98dbf0..0000000
--- a/uml2/build/clean.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/clean-common.php"); ?>
diff --git a/uml2/build/index.php b/uml2/build/index.php
deleted file mode 100755
index 912d64d..0000000
--- a/uml2/build/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/build-common.php"); ?>
diff --git a/uml2/build/promo.php b/uml2/build/promo.php
deleted file mode 100755
index 3d5b264..0000000
--- a/uml2/build/promo.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/promo-common.php"); ?>
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article.html b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article.html
deleted file mode 100644
index 501043c..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article.html
+++ /dev/null
@@ -1,3755 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="article_files/filelist.xml">
-<link rel=Edit-Time-Data href="article_files/editdata.mso">
-<link rel=OLE-Object-Data href="article_files/oledata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Customizing UML</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="country-region"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="place"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>jbruck, khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>jbruck</o:LastAuthor>
-  <o:Revision>606</o:Revision>
-  <o:TotalTime>21545</o:TotalTime>
-  <o:LastPrinted>2006-09-12T15:08:00Z</o:LastPrinted>
-  <o:Created>2004-07-06T14:17:00Z</o:Created>
-  <o:LastSaved>2008-06-23T17:59:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>4747</o:Words>
-  <o:Characters>27058</o:Characters>
-  <o:Company>IBM</o:Company>
-  <o:Lines>225</o:Lines>
-  <o:Paragraphs>63</o:Paragraphs>
-  <o:CharactersWithSpaces>31742</o:CharactersWithSpaces>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Tahoma;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:238;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:1627421319 -2147483648 8 0 66047 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:238;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-style-link:"Heading 4 Char";
-	mso-style-next:Normal;
-	margin-top:12.0pt;
-	margin-right:0in;
-	margin-bottom:3.0pt;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	page-break-after:avoid;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	mso-bidi-font-size:14.0pt;
-	font-family:Arial;
-	mso-bidi-font-family:"Times New Roman";
-	font-weight:bold;}
-p.MsoCaption, li.MsoCaption, div.MsoCaption
-	{mso-style-noshow:yes;
-	mso-style-next:Normal;
-	margin-top:6.0pt;
-	margin-right:0in;
-	margin-bottom:6.0pt;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:purple;
-	text-decoration:underline;
-	text-underline:single;}
-p.MsoDocumentMap, li.MsoDocumentMap, div.MsoDocumentMap
-	{mso-style-noshow:yes;
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	background:navy;
-	font-size:12.0pt;
-	font-family:Tahoma;
-	mso-fareast-font-family:"Times New Roman";}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.Heading4Char
-	{mso-style-name:"Heading 4 Char";
-	mso-style-link:"Heading 4";
-	mso-ansi-font-size:12.0pt;
-	mso-bidi-font-size:14.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-language:EN-US;
-	mso-fareast-language:EN-US;
-	mso-bidi-language:AR-SA;
-	font-weight:bold;}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.NormalWeb20, li.NormalWeb20, div.NormalWeb20
-	{mso-style-name:"Normal \(Web\)20";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	border:solid windowtext 1.0pt;
-	mso-border-alt:solid windowtext .5pt;
-	padding:24.0pt 24.0pt 24.0pt 24.0pt;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:144593442;
-	mso-list-template-ids:1135626828;}
-@list l1
-	{mso-list-id:255553693;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-267987446 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:478545422;
-	mso-list-template-ids:74583296;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:517741502;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-162223636 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
-@list l3:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:529877076;
-	mso-list-template-ids:108792314;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:532773372;
-	mso-list-template-ids:-19074778;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:549002421;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1286779964 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:589234754;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1596542860 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:685324530;
-	mso-list-template-ids:-978666272;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:719548679;
-	mso-list-template-ids:-797676954;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:728964541;
-	mso-list-type:hybrid;
-	mso-list-template-ids:690360822 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l10:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11
-	{mso-list-id:771710111;
-	mso-list-type:hybrid;
-	mso-list-template-ids:556288082 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12
-	{mso-list-id:799109081;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1868734138 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l12:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l12:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13
-	{mso-list-id:811143652;
-	mso-list-type:hybrid;
-	mso-list-template-ids:328496344 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l13:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l13:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14
-	{mso-list-id:847869548;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1267585690 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l14:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l14:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15
-	{mso-list-id:853154983;
-	mso-list-template-ids:-988006538;}
-@list l16
-	{mso-list-id:904529610;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1076248554 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l16:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l16:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17
-	{mso-list-id:1007514218;
-	mso-list-type:hybrid;
-	mso-list-template-ids:539417408 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l17:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l17:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l18
-	{mso-list-id:1027103804;
-	mso-list-template-ids:1984749596;}
-@list l18:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l19
-	{mso-list-id:1034844399;
-	mso-list-template-ids:1746536754;}
-@list l19:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l20
-	{mso-list-id:1125197649;
-	mso-list-template-ids:333978974;}
-@list l20:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l21
-	{mso-list-id:1143425324;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-793502586 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l21:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l21:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22
-	{mso-list-id:1236545736;
-	mso-list-template-ids:999078962;}
-@list l22:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l23
-	{mso-list-id:1286883312;
-	mso-list-template-ids:277090318;}
-@list l24
-	{mso-list-id:1331255473;
-	mso-list-template-ids:-1595142070;}
-@list l24:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l25
-	{mso-list-id:1374891901;
-	mso-list-template-ids:384856622;}
-@list l25:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l26
-	{mso-list-id:1470051823;
-	mso-list-template-ids:-1612799752;}
-@list l26:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l27
-	{mso-list-id:1494178132;
-	mso-list-template-ids:1552964670;}
-@list l27:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l28
-	{mso-list-id:1515462140;
-	mso-list-template-ids:-337994500;}
-@list l28:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l29
-	{mso-list-id:1597405131;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-464640288 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l29:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l29:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l29:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l29:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l29:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l29:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l29:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l29:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l29:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l30
-	{mso-list-id:1708675427;
-	mso-list-template-ids:297816472;}
-@list l30:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l31
-	{mso-list-id:1755127003;
-	mso-list-template-ids:1305669862;}
-@list l31:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l32
-	{mso-list-id:1760832891;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-40578748 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l32:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l32:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33
-	{mso-list-id:1786540090;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-171164678 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l33:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l33:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34
-	{mso-list-id:1812405428;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-643256280 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l34:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l34:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35
-	{mso-list-id:1875536204;
-	mso-list-template-ids:-952757150;}
-@list l35:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l36
-	{mso-list-id:1927689794;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1847530706 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
-@list l36:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37
-	{mso-list-id:1941181149;
-	mso-list-template-ids:-1179713952;}
-@list l37:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l38
-	{mso-list-id:2007048353;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-875133158 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
-@list l38:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39
-	{mso-list-id:2065056820;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1923922954 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l39:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l39:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l40
-	{mso-list-id:2114591223;
-	mso-list-template-ids:-2066551808;}
-@list l40:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableSimple2
-	{mso-style-name:"Table Simple 2";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableSimple2FirstRow
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:first-row;
-	mso-tstyle-border-bottom:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2LastRow
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:last-row;
-	mso-tstyle-border-top:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2FirstCol
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:first-column;
-	mso-tstyle-border-right:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2LastCol
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:last-column;
-	mso-tstyle-border-left:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2NECell
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:ne-cell;
-	mso-tstyle-border-left:0in none windowtext;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2SWCell
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:sw-cell;
-	mso-tstyle-border-top:0in none windowtext;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableClassic1
-	{mso-style-name:"Table Classic 1";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	border-top:solid black 1.5pt;
-	border-left:none;
-	border-bottom:solid black 1.5pt;
-	border-right:none;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableClassic1FirstRow
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:first-row;
-	mso-tstyle-border-bottom:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-style:italic;
-	mso-bidi-font-style:italic;}
-table.MsoTableClassic1LastRow
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:last-row;
-	mso-tstyle-border-top:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;}
-table.MsoTableClassic1FirstCol
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:first-column;
-	mso-tstyle-border-right:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;}
-table.MsoTableClassic1NECell
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:ne-cell;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;
-	mso-ansi-font-style:normal;
-	mso-bidi-font-style:normal;}
-table.MsoTableClassic1SWCell
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:sw-cell;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableList1
-	{mso-style-name:"Table List 1";
-	mso-tstyle-rowband-size:1;
-	mso-tstyle-colband-size:0;
-	border-top:1.5pt;
-	border-left:1.0pt;
-	border-bottom:1.5pt;
-	border-right:1.0pt;
-	border-color:teal;
-	border-style:solid;
-	mso-border-top-alt:1.5pt;
-	mso-border-left-alt:.75pt;
-	mso-border-bottom-alt:1.5pt;
-	mso-border-right-alt:.75pt;
-	mso-border-color-alt:teal;
-	mso-border-style-alt:solid;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableList1FirstRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:first-row;
-	mso-tstyle-shading:white;
-	mso-tstyle-pattern:solid silver;
-	mso-tstyle-border-bottom:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:maroon;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;
-	mso-ansi-font-style:italic;
-	mso-bidi-font-style:italic;}
-table.MsoTableList1LastRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:last-row;
-	mso-tstyle-border-top:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;}
-table.MsoTableList1OddRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:odd-row;
-	mso-tstyle-shading:white;
-	mso-tstyle-pattern:solid silver;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;}
-table.MsoTableList1EvenRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:even-row;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;}
-table.MsoTableList1SWCell
-	{mso-style-name:"Table List 1";
-	mso-table-condition:sw-cell;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableList4
-	{mso-style-name:"Table List 4";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	border:solid black 1.5pt;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-border-insideh:.75pt solid black;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableList4FirstRow
-	{mso-style-name:"Table List 4";
-	mso-table-condition:first-row;
-	mso-tstyle-shading:white;
-	mso-tstyle-pattern:solid gray;
-	mso-tstyle-border-bottom:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]><!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="59394"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=purple style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<p class=MsoNormal align=right style='text-align:right'><span style='font-size:
-10.0pt'>Copyright © 2007 International Business Machines Corp.</span><span
-style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></p>
-
-<div align=right>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width="100%"
- style='width:100.0%;mso-cellspacing:0in;mso-padding-alt:1.5pt 1.5pt 1.5pt 1.5pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td valign=top style='background:#0080C0;padding:1.5pt 1.5pt 1.5pt 1.5pt'>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;font-family:Arial;
-  color:white'>&nbsp;</span></b><span style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></p>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<h1><img width=120 height=86 id="_x0000_i1025" src="../../../../images/Idea.jpg"
-align=CENTER></h1>
-
-<p>&nbsp;</p>
-
-<h1 align=center style='text-align:center'>Customizing UML: </h1>
-
-<h1 align=center style='text-align:center'>Which Technique is Right for You?</h1>
-
-<h1 align=center style='text-align:center'><o:p>&nbsp;</o:p></h1>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:Arial'>Summary</span></b><span
-style='font-size:10.0pt;font-family:Arial'><br style='mso-special-character:
-line-break'>
-<![if !supportLineBreakNewLine]><br style='mso-special-character:line-break'>
-<![endif]><o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>Extending
-or restricting UML to suit a particular domain is not a simple task.<span
-style='mso-spacerun:yes'>  </span>Several different options are available, each
-of which presents its own set of challenges.<span style='mso-spacerun:yes'> 
-</span>This article walks the reader through the decision making process of
-figuring out which technique to use.<span style='mso-spacerun:yes'>  </span>The
-mechanics of actually extending UML to suit a domain will be handled in future
-articles.<span style='mso-spacerun:yes'>  </span><o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p><b>By James <span class=SpellE>Bruck</span> and <span class=SpellE>Kenn</span>
-Hussey, IBM</b><br>
-<st1:date Month="6" Day="19" Year="2008">June 19, 2008</st1:date> </p>
-
-</blockquote>
-
-<div class=MsoNormal align=center style='text-align:center'><span
-style='font-size:10.0pt;font-family:Arial'>
-
-<hr size=2 width="100%" align=center>
-
-</span></div>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2>Glossary</h2>
-
-<p>A few terms and abbreviations will be used throughout this document.</p>
-
-<table class=MsoTableList4 border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-alt:solid black 1.5pt;
- mso-yfti-tbllook:160;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-insideh:
- .75pt solid black'>
- <tr style='mso-yfti-irow:-1'>
-  <td width=168 valign=top style='width:125.75pt;border:solid black 1.5pt;
-  border-right:none;background:gray;mso-shading:white;mso-pattern:solid gray;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:1'><b><span style='color:white'>Term<o:p></o:p></span></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border:solid black 1.5pt;
-  border-left:none;background:gray;mso-shading:white;mso-pattern:solid gray;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:1'><b><span style='color:white'>Definition<o:p></o:p></span></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:0'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.0pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-left-alt:solid black 1.5pt;mso-border-bottom-alt:solid black .75pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>DSL <o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;mso-border-right-alt:solid black 1.5pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p>Domain Specific Language.<span style='mso-spacerun:yes'>   </span>A
-  language designed to be useful for a specific set of tasks.<span
-  style='mso-spacerun:yes'>  </span>This is in contrast to a general-purpose modeling
-  language such as UML.<span style='mso-spacerun:yes'>  </span>A DSL is created
-  specifically to solve problems in a particular domain and is not intended to
-  be able to solve problems outside of it.<span style='mso-spacerun:yes'> 
-  </span>DSLÂ’s are usually small, more declarative and less expressive than a
-  general-purpose language.</p>
-  <p><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.0pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-left-alt:solid black 1.5pt;mso-border-bottom-alt:solid black .75pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>MOF<o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;mso-border-right-alt:solid black 1.5pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p><st1:place>Meta</st1:place> Object Facility.<span
-  style='mso-spacerun:yes'>  </span>MOF is an OMG standard for Model Driven
-  Engineering.<span style='mso-spacerun:yes'>  </span>MOF is designed as a four
-  level architecture.<span style='mso-spacerun:yes'>   </span>UML is considered
-  a layer 2 MOF model.<span style='mso-spacerun:yes'>  </span>M3 is the
-  language used by MOF to build meta-models.</p>
-  <p><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.5pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>OMG<o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p>Object Management Group.<span style='mso-spacerun:yes'>  </span>A
-  consortium that promotes the adoptions of standards.</p>
-  <p><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.5pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>UML Testing Profile<o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p>The UML testing profile can be found at: <a
-  href="http://www.omg.org/technology/documents/formal/test_profile.htm">http://www.omg.org/technology/documents/formal/test_profile.htm</a>.<span
-  style='mso-spacerun:yes'>  </span>It is a demonstration of creating a DSL
-  using both a profile and MOF based approach.</p>
-  <p><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4;mso-yfti-lastrow:yes'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.5pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>UML<o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p>UML2 2.1. This refers to the latest version of the UML API which is based
-  on the UML 2.1.2 specification defined by OMG</p>
-  <p>The latest draft of the UML Superstructure Specification can be found at: <a
-  href="http://www.omg.org/technology/documents/formal/uml.htm">http://www.omg.org/technology/documents/formal/uml.htm</a></p>
-  <p><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2>Introduction</h2>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>The ability
-to customize UML to a specific domain is one of the great features of UML.<span
-style='mso-spacerun:yes'>  </span>Creating customizations allows one to
-leverage existing modeling tools and conventions defined by the UML
-specification while making modeling easier for the end user (and possibly less
-abstract).<span style='mso-spacerun:yes'>   </span>The type of customizations
-required often depends on the nature of the domain and how the extended model
-is intended to be used.<span style='mso-spacerun:yes'>  </span>If one wants to
-make simple customizations, by adding new properties to existing UML
-meta-classes, then a light-weight extension is the way to go.<span
-style='mso-spacerun:yes'>  </span>However, if one wants to extend the behavior
-of UML, add restrictions on certain collections, or, take advantage of the more
-complex features of UML such as redefinition, then a heavy weight extension is
-the way to go.<span style='mso-spacerun:yes'>  </span>As the <a
-href="http://www.omg.org/technology/documents/formal/uml.htm">superstructure
-specification</a> further points out, there are several reasons why one may
-want to customize a meta-model: <o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<ul style='margin-top:0in' type=disc>
- <li class=MsoNormal style='mso-list:l29 level1 lfo3;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Give a terminology that is
-     adapted to a particular domain.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l29 level1 lfo3;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Give a syntax for constructs
-     that do not have a notation.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l29 level1 lfo3;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Give a different notation for
-     already existing symbols<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l29 level1 lfo3;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Add semantics that is left
-     unspecified in the meta-model.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l29 level1 lfo3;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Add semantics that do not exist
-     in the meta-model.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l29 level1 lfo3;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Add constraints that restrict
-     the way you use the meta-model.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l29 level1 lfo3;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Add information that can be
-     used when transforming a model to another model or code.<o:p></o:p></span></li>
-</ul>
-
-<h2>Decisions, Decisions Â…</h2>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>Creating
-your own Domain Specific Language has several advantages:<span
-style='mso-spacerun:yes'>    </span><o:p></o:p></span></p>
-
-<ul style='margin-top:0in' type=disc>
- <li class=MsoNormal style='mso-list:l10 level1 lfo6;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>DSLÂ’s allow solutions to be
-     expressed at the level of abstraction of the problem domain.<span
-     style='mso-spacerun:yes'>  </span>Therefore domain experts can understand,
-     validate and modify them easily.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l10 level1 lfo6;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>DSLÂ’s enhance quality,
-     productivity, maintainability, reusability.<o:p></o:p></span></li>
-</ul>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>And some
-disadvantages:<o:p></o:p></span></p>
-
-<ul style='margin-top:0in' type=disc>
- <li class=MsoNormal style='mso-list:l33 level1 lfo9;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Cost of designing, implementing
-     and maintaining a DSL.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l33 level1 lfo9;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Difficulty in balancing between
-     domain-specific and general-purpose language constructs.<o:p></o:p></span></li>
-</ul>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h3>Where do you go from here?</h3>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>The first
-decision that will have to be made will be to decide if you want to build on
-top of existing UML concepts or not.<span style='mso-spacerun:yes'>   
-</span>That is to say, do you intend on extending or restrict existing UML
-concepts and meta-types, or not.<span style='mso-spacerun:yes'>  </span>This
-can be answered by analyzing the domain space of your DSL.<span
-style='mso-spacerun:yes'>  </span>If there is much overlap between the concepts
-in UML and those within your DSL then favor extending UML.<span
-style='mso-spacerun:yes'>  </span>If there is little overlap then favor a MOF
-based solution.<span style='mso-spacerun:yes'>  </span><o:p></o:p></span></p>
-
-<p style='margin-left:8.5pt;page-break-after:avoid'><!--[if gte vml 1]><v:shapetype
- id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t"
- path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
- <v:stroke joinstyle="miter"/>
- <v:formulas>
-  <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-  <v:f eqn="sum @0 1 0"/>
-  <v:f eqn="sum 0 0 @1"/>
-  <v:f eqn="prod @2 1 2"/>
-  <v:f eqn="prod @3 21600 pixelWidth"/>
-  <v:f eqn="prod @3 21600 pixelHeight"/>
-  <v:f eqn="sum @0 0 1"/>
-  <v:f eqn="prod @6 1 2"/>
-  <v:f eqn="prod @7 21600 pixelWidth"/>
-  <v:f eqn="sum @8 21600 0"/>
-  <v:f eqn="prod @7 21600 pixelHeight"/>
-  <v:f eqn="sum @10 21600 0"/>
- </v:formulas>
- <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" aspectratio="t"/>
-</v:shapetype><v:shape id="_x0000_i1027" type="#_x0000_t75" style='width:449.25pt;
- height:137.25pt' o:bordertopcolor="this" o:borderleftcolor="this"
- o:borderbottomcolor="this" o:borderrightcolor="this">
- <v:imagedata src="article_files/image001.jpg" o:title="venndiagram"/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=599 height=183
-src="article_files/image001.jpg" v:shapes="_x0000_i1027"><![endif]></p>
-
-<p class=MsoCaption>Figure <!--[if supportFields]><span style='mso-element:
-field-begin'></span><span style='mso-spacerun:yes'> </span>SEQ Figure \* ARABIC
-<span style='mso-element:field-separator'></span><![endif]--><span
-style='mso-no-proof:yes'>1</span><!--[if supportFields]><span style='mso-element:
-field-end'></span><![endif]-->:<span style='mso-spacerun:yes'>  </span>UML
-Extension vs. MOF based</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>An example
-of MOF based vs. profile based approaches to developing a DSL is demonstrated with
-the UML <a href="http://www.omg.org/docs/formal/05-07-07.pdf">testing profile</a>.<span
-style='mso-spacerun:yes'>   </span>In that specification, the same DSL is
-developed using two different techniques.<span style='mso-spacerun:yes'> 
-</span><o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><!--[if gte vml 1]><v:shape
- id="_x0000_i1028" type="#_x0000_t75" style='width:45.75pt;height:9.75pt'>
- <v:imagedata src="article_files/image006.gif" o:title="tryit"/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=61 height=13
-src="article_files/image006.gif" v:shapes="_x0000_i1028"><![endif]><span
-style='mso-spacerun:yes'> </span>Have a look at the UML <a
-href="http://www.omg.org/docs/formal/05-07-07.pdf">testing profile</a>.<o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>This
-article focuses on extending concepts from UML.<span
-style='mso-spacerun:yes'>   </span>If you wish to take the MOF based approach,
-you can stop reading here and have a look at the <span class=SpellE>OMGÂ’s</span>
-MOF standard.<span style='mso-spacerun:yes'>    </span>Although the preferred
-approach in the modeling of languages involves using UML with customizations, it
-should be noted that, there is great value in creation of custom languages in
-specialized circumstances.<span style='mso-spacerun:yes'>   </span>UML itself
-is defined using MOF and there exist many other languages that are defined in
-MOF terms.<span style='mso-spacerun:yes'>   </span>In fact, the Eclipse
-Modeling Framework (EMF), the component on which UML2 component is based, has
-the ability to generate a Java implementation for working with MOF-defined
-languages.<span style='mso-spacerun:yes'>   </span><o:p></o:p></span></p>
-
-<h2><o:p>&nbsp;</o:p></h2>
-
-<h2>Techniques for extending UML</h2>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>You have
-several options when it comes to extending/constraining UML in your quest to
-create a DSL.<span style='mso-spacerun:yes'>  </span>Choosing the correct
-method is critical for the success of your project because you will have to
-commit to your decision and invest time and effort addressing the hurdles associated
-with each.<span style='mso-spacerun:yes'>  </span>To that end, a general
-description of each technique and then a table summarizing the features of each
-approach will be provided. <o:p></o:p></span></p>
-
-<p><img border=0 width=64 height=15 id="_x0000_i1029"
-src="../../../../images/tip.gif"><span style='mso-spacerun:yes'> </span>As you
-continue to read about the techniques for extending UML, you should keep the
-following in mind:<span style='mso-spacerun:yes'>  </span></p>
-
-<ul style='margin-top:0in' type=disc>
- <li class=MsoNormal style='mso-list:l7 level1 lfo12;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>As much as possible, you should
-     be favoring the “lightweight approach” or the use of profiles.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l7 level1 lfo12;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>As much as possible, you should
-     be leaning away from the use of “middleweight” extensions.<o:p></o:p></span></li>
-</ul>
-
-<p style='margin-left:.25in'><o:p>&nbsp;</o:p></p>
-
-<h3><a name="_Featherweight_extension"></a>Featherweight extension</h3>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>Featherweight
-extensions involve the use of adding keywords.<span
-style='mso-spacerun:yes'>    </span>Keywords are reserved words that normally
-appear as text annotations attached to a UML element.<span
-style='mso-spacerun:yes'>  </span><span style='mso-spacerun:yes'> </span>The
-superstructure specification describes the use of keywords and maintains a list
-of predefined keywords (see <a
-href="http://www.omg.org/technology/documents/formal/uml.htm">Superstructure
-Specification</a> Annex B).<span style='mso-spacerun:yes'>   </span>Keywords
-are always enclosed in guillemots which serve as visual cues to more readily
-distinguish when a keyword is being used.<span style='mso-spacerun:yes'> 
-</span><o:p></o:p></span></p>
-
-<p><img border=0 width=64 height=15 id="_x0000_i1030"
-src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>Keywords are case sensitive.</p>
-
-<p><i style='mso-bidi-font-style:normal'><u>Example</u></i>: </p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>The meta-<span
-class=GramE>type<span style='mso-spacerun:yes'>  </span><span class=SpellE><i>uml</i></span></span><span
-class=SpellE><i>::Interface</i></span> has a similar appearance to <span
-class=SpellE><i>uml::Class</i></span>.<span style='mso-spacerun:yes'>  
-</span>For this reason, the keyword &lt;&lt;interface&gt;&gt; is used to
-distinguish interfaces from other classifiers.<o:p></o:p></span></p>
-
-<p style='margin-left:8.5pt;page-break-after:avoid'><span
-style='mso-spacerun:yes'>         </span><!--[if gte vml 1]><v:shape id="_x0000_i1031"
- type="#_x0000_t75" style='width:81pt;height:51pt'>
- <v:imagedata src="article_files/image014.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=108 height=68
-src="article_files/image007.jpg" v:shapes="_x0000_i1031"><![endif]></p>
-
-<p class=MsoCaption>Figure <!--[if supportFields]><span style='mso-element:
-field-begin'></span><span style='mso-spacerun:yes'> </span>SEQ Figure \* ARABIC
-<span style='mso-element:field-separator'></span><![endif]--><span
-style='mso-no-proof:yes'>2</span><!--[if supportFields]><span style='mso-element:
-field-end'></span><![endif]-->: Use of keywords on meta-type</p>
-
-<p><i style='mso-bidi-font-style:normal'><u>Example</u></i>: </p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>In the
-following example, it becomes immediately obvious that keywords are critical
-for distinguishing between different types of relationships.<o:p></o:p></span></p>
-
-<p style='margin-left:8.5pt;page-break-after:avoid'><!--[if gte vml 1]><v:shape
- id="_x0000_i1032" type="#_x0000_t75" style='width:215.25pt;height:221.25pt'>
- <v:imagedata src="article_files/image010.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=287 height=295
-src="article_files/image005.jpg" v:shapes="_x0000_i1032"><![endif]></p>
-
-<p class=MsoCaption>Figure <!--[if supportFields]><span style='mso-element:
-field-begin'></span><span style='mso-spacerun:yes'> </span>SEQ Figure \* ARABIC
-<span style='mso-element:field-separator'></span><![endif]--><span
-style='mso-no-proof:yes'>3</span><!--[if supportFields]><span style='mso-element:
-field-end'></span><![endif]-->: Use of keyword on relationships</p>
-
-<p>Keywords are used for four different purposes:</p>
-
-<ol style='margin-top:0in' start=1 type=1>
- <li class=MsoNormal style='mso-list:l38 level1 lfo15;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>To distinguish a particular UML
-     concept (meta-class) from others sharing the same general graphical form.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l38 level1 lfo15;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>To distinguish a particular
-     kind of relationship between UML concepts from other relationships sharing
-     the same graphical form. <o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l38 level1 lfo15;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>To specify the value of some
-     modifier attached to a UML concept (meta-attribute value).<span
-     style='mso-spacerun:yes'>   </span>Thus the keyword &lt;&lt;<span
-     class=SpellE>singleExecution</span>&gt;&gt; appearing within an Activity
-     signifies that the <span class=SpellE>isSingleExecution</span> attribute
-     of the Activity is true.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l38 level1 lfo15;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>To indicate standard
-     stereotype.<span style='mso-spacerun:yes'>  </span>For example the
-     &lt;&lt;<span class=SpellE>modelLibrary</span>&gt;&gt; keyword attached to
-     a package identify that the package contains a set of model elements
-     intended to be shared by multiple models.<o:p></o:p></span></li>
-</ol>
-
-<p>Keywords created in this manner will appear in the labels of the item when
-viewed with the existing UML editor.<span style='mso-spacerun:yes'> 
-</span>When keywords get created, they are added as an annotation as shown
-below.<span style='mso-spacerun:yes'>  </span></p>
-
-<p style='margin-left:8.5pt;page-break-after:avoid'><!--[if gte vml 1]><v:shape
- id="_x0000_i1033" type="#_x0000_t75" style='width:588pt;height:62.25pt'
- o:bordertopcolor="this" o:borderleftcolor="this" o:borderbottomcolor="this"
- o:borderrightcolor="this">
- <v:imagedata src="article_files/image002.jpg" o:title="keyword"/>
- <w:bordertop type="single" width="4" shadow="t"/>
- <w:borderleft type="single" width="4" shadow="t"/>
- <w:borderbottom type="single" width="4" shadow="t"/>
- <w:borderright type="single" width="4" shadow="t"/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=788 height=87
-src="article_files/image003.jpg" v:shapes="_x0000_i1033"><![endif]></p>
-
-<p class=MsoCaption>Figure <!--[if supportFields]><span style='mso-element:
-field-begin'></span><span style='mso-spacerun:yes'> </span>SEQ Figure \* ARABIC
-<span style='mso-element:field-separator'></span><![endif]--><span
-style='mso-no-proof:yes'>4</span><!--[if supportFields]><span style='mso-element:
-field-end'></span><![endif]-->: Keywords in a model</p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>It is important
-to note that the use of annotations in this manner is non-standard and
-therefore not directly supported by the UML editor.<span
-style='mso-spacerun:yes'>   </span>If you decide to export your model with
-keywords to XMI, the annotations would be moved into an XMI extension.<span
-style='mso-spacerun:yes'>   </span>Consumers of the XMI format could
-conceivably continue to use your keywords if they know how to work with the
-newly created XMI elements.<span style='mso-spacerun:yes'>  </span><o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>The UML2
-API does support the use a keywords through the API:<o:p></o:p></span></p>
-
-<ul style='margin-top:0in' type=disc>
- <li class=MsoNormal style='mso-list:l13 level1 lfo18;tab-stops:list .5in'><span
-     class=SpellE><span style='font-size:10.0pt;font-family:Arial'>Element#addKeyword</span></span><span
-     style='font-size:10.0pt;font-family:Arial'>()<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l13 level1 lfo18;tab-stops:list .5in'><span
-     class=SpellE><span style='font-size:10.0pt;font-family:Arial'>Element#getKeyword</span></span><span
-     style='font-size:10.0pt;font-family:Arial'>()<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l13 level1 lfo18;tab-stops:list .5in'><span
-     class=SpellE><span style='font-size:10.0pt;font-family:Arial'>Element#removeKeyword</span></span><span
-     style='font-size:10.0pt;font-family:Arial'>()<o:p></o:p></span></li>
-</ul>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>The use of
-keywords is somewhat limited in that one cannot attach constraints or add
-properties to existing meta-types.<span style='mso-spacerun:yes'>  
-</span>Keywords are strictly used as a tag to visually distinguish similar
-items.<span style='mso-spacerun:yes'>  </span>Another downside to keywords is
-that there is no formally defined concept of a dictionary of keywords.<span
-style='mso-spacerun:yes'>   </span>The implication of this is that if one
-defines some keywords for a particular domain, he cannot directly share them
-with others.<span style='mso-spacerun:yes'>   </span>The set of appropriate
-keywords would have to be agreed upon and applied by the end user.<span
-style='mso-spacerun:yes'>   </span>A means of consistently displaying keywords
-would also have to be supported by the modeling tool you are using.<span
-style='mso-spacerun:yes'>  </span><o:p></o:p></span></p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableList1 border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-top-alt:1.5pt;
- mso-border-left-alt:.75pt;mso-border-bottom-alt:1.5pt;mso-border-right-alt:
- .75pt;mso-border-color-alt:teal;mso-border-style-alt:solid;mso-yfti-tbllook:
- 128;mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0'>
-  <td width=84 valign=top style='width:63.1pt;border-top:solid teal 1.5pt;
-  border-left:solid teal 1.0pt;border-bottom:none;border-right:none;mso-border-top-alt:
-  solid teal 1.5pt;mso-border-left-alt:solid teal .75pt;background:silver;
-  mso-shading:white;mso-pattern:solid silver;padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:64'><b style='mso-bidi-font-weight:normal'>Pros<o:p></o:p></b></p>
-  </td>
-  <td width=756 valign=top style='width:567.0pt;border-top:solid teal 1.5pt;
-  border-left:none;border-bottom:none;border-right:solid teal 1.0pt;mso-border-top-alt:
-  solid teal 1.5pt;mso-border-right-alt:solid teal .75pt;background:silver;
-  mso-shading:white;mso-pattern:solid silver;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l16 level1 lfo21;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Adding
-       keywords is trivial<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l16 level1 lfo21;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Great
-       to visually distinguish between similar looking items.<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='mso-yfti-cnfc:64'><span style='font-size:10.0pt;
-  font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes'>
-  <td width=84 valign=top style='width:63.1pt;border-top:none;border-left:solid teal 1.0pt;
-  border-bottom:solid teal 1.5pt;border-right:none;mso-border-left-alt:solid teal .75pt;
-  mso-border-bottom-alt:solid teal 1.5pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:128'><b style='mso-bidi-font-weight:normal'>Cons<o:p></o:p></b></p>
-  </td>
-  <td width=756 valign=top style='width:567.0pt;border-top:none;border-left:
-  none;border-bottom:solid teal 1.5pt;border-right:solid teal 1.0pt;mso-border-bottom-alt:
-  solid teal 1.5pt;mso-border-right-alt:solid teal .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l21 level1 lfo24;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Limited
-       functionality.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l21 level1 lfo24;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>No
-       concept of dictionary of keywords to share common keywords.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l21 level1 lfo24;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>No
-       way to validate application of keywords.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l21 level1 lfo24;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Not
-       standardized or formally defined by superstructure specification.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l21 level1 lfo24;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>No
-       way to truly extend existing meta-types by adding attributes or
-       operations<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='mso-yfti-cnfc:128'><span style='font-size:10.0pt;
-  font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h3><a name="_Lightweight_extension"></a>Lightweight extension<span
-style='font-size:10.0pt'><o:p></o:p></span></h3>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>Lightweight
-extensions involve using profiles.<span style='mso-spacerun:yes'> 
-</span>Profiles are described in detail in the <a
-href="http://www.omg.org/technology/documents/formal/uml.htm">UML
-Superstructure specification</a> chapter 18. <o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>Profiles should
-be your first instinctive choice when deciding to extend or customize UML.<span
-style='mso-spacerun:yes'>  </span>A profile defines limited extensions to a
-reference meta-model with the purpose of adapting the meta-model to a specific
-platform domain.<span style='mso-spacerun:yes'>  </span>The primary extension
-construct is the Stereotype, which is defined as part of a Profile.<span
-style='mso-spacerun:yes'>  </span>Stereotypes can be used to add:<span
-style='mso-spacerun:yes'>  </span>keywords, constraints, images, and properties
-(tagged values) to model elements.<span style='mso-spacerun:yes'>  </span><o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>The profile
-mechanism is not a first-class mechanism, that is to say, it does not allow for
-specialization through inheritance of meta-types from the referenced
-meta-model.<span style='mso-spacerun:yes'>  </span>Rather, the intention of a
-profile is to give a straight-forward mechanism for adapting an existing
-meta-model with constructs that are specific to a particular domain.<span
-style='mso-spacerun:yes'>  </span>Each such adaptation is grouped in a
-profile.<span style='mso-spacerun:yes'>  </span><o:p></o:p></span></p>
-
-<p style='margin-left:8.5pt;page-break-after:avoid'><!--[if gte vml 1]><v:shape
- id="_x0000_i1034" type="#_x0000_t75" style='width:712.5pt;height:279.75pt'
- o:ole="">
- <v:imagedata src="article_files/image012.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=950 height=373
-src="article_files/image013.jpg" v:shapes="_x0000_i1034"><![endif]><!--[if gte mso 9]><xml>
- <o:OLEObject Type="Embed" ProgID="MSPhotoEd.3" ShapeID="_x0000_i1034"
-  DrawAspect="Content" ObjectID="_1275734745">
- </o:OLEObject>
-</xml><![endif]--></p>
-
-<p class=MsoCaption>Figure <!--[if supportFields]><span style='mso-element:
-field-begin'></span><span style='mso-spacerun:yes'> </span>SEQ Figure \* ARABIC
-<span style='mso-element:field-separator'></span><![endif]--><span
-style='mso-no-proof:yes'>5</span><!--[if supportFields]><span style='mso-element:
-field-end'></span><![endif]-->: Profile as defined by UML meta-model</p>
-
-<p>Two new concepts have been introduced into the UML2 2.1 API.<span
-style='mso-spacerun:yes'>  </span>These concepts will be mentioned here but
-will be explored in more detail in future articles.<span
-style='mso-spacerun:yes'>     </span></p>
-
-<ul style='margin-top:0in' type=disc>
- <li class=MsoNormal style='mso-list:l12 level1 lfo27;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Static Profile Definition:<span
-     style='mso-spacerun:yes'>   </span>Newly introduced in UML2 2.1 is the
-     ability to create statically defined profiles.<span
-     style='mso-spacerun:yes'>   </span>Users now have the option to generate
-     code from their profile and provide implementations for operations and
-     derived features.<o:p></o:p></span></li>
-</ul>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<ul style='margin-top:0in' type=disc>
- <li class=MsoNormal style='mso-list:l12 level1 lfo27;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>OCL Integration:<span
-     style='mso-spacerun:yes'>  </span>Users can specify invariant constraints
-     or operation bodies in OCL and have code generated from the expressions
-     entered in the UML model.<span style='mso-spacerun:yes'>  
-     </span>Validation of constraints created on stereotypes is possible after
-     the stereotype has been applied.<o:p></o:p></span></li>
-</ul>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='margin-left:.25in'><span style='font-size:10.0pt;
-font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>Newly
-introduced in UML 2.0 is the notion of “strict” application of a profile.<span
-style='mso-spacerun:yes'>  </span>This is a means of specifying the kinds of
-meta-types that your DSL is concerned with.<span style='mso-spacerun:yes'>  
-</span>For example, say you were really only interested in Classes, Properties
-and Operations but you only wanted to specify a stereotype for Class.<span
-style='mso-spacerun:yes'>   </span>You could create meta-class reference to
-Property and Operation.<span style='mso-spacerun:yes'>  </span>Then when
-applying your profile, you could specify a “strict” application.<span
-style='mso-spacerun:yes'>    </span>UML editors should respect the strict
-attribute of the profile application and remove all other UML concepts from
-palettes etc and just leave those that your DSL is concerned with.<span
-style='mso-spacerun:yes'>  </span>This is a feature that may or may not be
-supported by a given tool.<span style='mso-spacerun:yes'>   </span>Without a
-strict application of a profile, all other UML concepts would be available.<o:p></o:p></span></p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableList1 border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-top-alt:1.5pt;
- mso-border-left-alt:.75pt;mso-border-bottom-alt:1.5pt;mso-border-right-alt:
- .75pt;mso-border-color-alt:teal;mso-border-style-alt:solid;mso-yfti-tbllook:
- 128;mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0'>
-  <td width=84 valign=top style='width:63.1pt;border-top:solid teal 1.5pt;
-  border-left:solid teal 1.0pt;border-bottom:none;border-right:none;mso-border-top-alt:
-  solid teal 1.5pt;mso-border-left-alt:solid teal .75pt;background:silver;
-  mso-shading:white;mso-pattern:solid silver;padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:64'><b style='mso-bidi-font-weight:normal'>Pros<o:p></o:p></b></p>
-  </td>
-  <td width=756 valign=top style='width:567.0pt;border-top:solid teal 1.5pt;
-  border-left:none;border-bottom:none;border-right:solid teal 1.0pt;mso-border-top-alt:
-  solid teal 1.5pt;mso-border-right-alt:solid teal .75pt;background:silver;
-  mso-shading:white;mso-pattern:solid silver;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l11 level1 lfo31;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Easy
-       to create such extensions<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l11 level1 lfo31;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Well
-       described with documentation in Superstructure Specification<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l11 level1 lfo31;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Standard
-       means to define icons<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l11 level1 lfo31;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Well
-       defined display options.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l11 level1 lfo31;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Application
-       of profiles and how to use them is well defined.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l11 level1 lfo31;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Can
-       add structure<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l11 level1 lfo31;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Low
-       development cost<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l11 level1 lfo31;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Leverage
-       existing UML editors<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l11 level1 lfo31;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Ease
-       of deployment.<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='mso-yfti-cnfc:64'><span style='font-size:10.0pt;
-  font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes'>
-  <td width=84 valign=top style='width:63.1pt;border-top:none;border-left:solid teal 1.0pt;
-  border-bottom:solid teal 1.5pt;border-right:none;mso-border-left-alt:solid teal .75pt;
-  mso-border-bottom-alt:solid teal 1.5pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:128'><b style='mso-bidi-font-weight:normal'>Cons<o:p></o:p></b></p>
-  </td>
-  <td width=756 valign=top style='width:567.0pt;border-top:none;border-left:
-  none;border-bottom:solid teal 1.5pt;border-right:solid teal 1.0pt;mso-border-bottom-alt:
-  solid teal 1.5pt;mso-border-right-alt:solid teal .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l34 level1 lfo34;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Cannot
-       specify behavior<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l34 level1 lfo34;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Only
-       possibly to add new constraints, not to remove constraints.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l34 level1 lfo34;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Clumsy
-       programmatic usage<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l34 level1 lfo34;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Cannot
-       modify existing structures<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='mso-yfti-cnfc:128'><span style='font-size:10.0pt;
-  font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h3><a name="_Hlt174419544"></a><a name="_Middleweight_extension"></a>Middleweight
-extension</h3>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>The
-middleweight extension mechanism extends UML through specialization of UML
-meta-types.<span style='mso-spacerun:yes'>  </span>Middleweight extensions can
-be considered a first class extension mechanism and as such expose advanced
-building block concepts such as sub-setting and redefinition (concepts explored
-later in this document).<o:p></o:p></span></p>
-
-<p>Middleweight extensions have two main components: </p>
-
-<ol style='margin-top:0in' start=1 type=1>
- <li class=MsoNormal style='mso-list:l3 level1 lfo37;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Extend by referencing <span
-     class=SpellE><i>UML.metamodel.uml</i></span> (the merged UML <span
-     class=SpellE>metamodel</span>).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l3 level1 lfo37;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>To that merged set of
-     meta-types, add your own domain specific types.<o:p></o:p></span></li>
-</ol>
-
-<p>We make the distinction between middleweight and heavyweight based on what
-gets extended.</p>
-
-<p>Even though middleweight extensions are initially easier to create (because
-you omit the Language unit merge step in heavyweight extensions) middleweight
-extensions are discouraged for two main reasons.<span
-style='mso-spacerun:yes'>   </span></p>
-
-<ul style='margin-top:0in' type=disc>
- <li class=MsoNormal style='mso-list:l14 level1 lfo40;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>You create dependency on a
-     specific version of UML.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l14 level1 lfo40;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>You extend all of UML even if
-     you may only be interested in certain aspects of it.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l14 level1 lfo40;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Implementation classes in the
-     specialized meta-model reference internal UML implementation classes and
-     result in compiler warnings.<o:p></o:p></span></li>
-</ul>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>If you
-require the flexibility of defining behavior, sub-classing or redefining
-existing collections, then you should favor <a href="#_Heavyweight_extension">heavyweight
-extensions</a>.<span style='mso-spacerun:yes'>   </span>If your DSL on the
-other hand has much overlap with UML, you could consider using middleweight
-extensions.<o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>It is
-important to stress that when using such extensions,<span
-style='mso-spacerun:yes'>  </span>you will be creating a dependency on
-open-source UML implementation and the internal .implementation classes.<span
-style='mso-spacerun:yes'>  </span>That is to say, if UML changes in some way,
-your newly introduced model elements that extend them might also have to change
-<o:p></o:p></span></p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableList1 border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-top-alt:1.5pt;
- mso-border-left-alt:.75pt;mso-border-bottom-alt:1.5pt;mso-border-right-alt:
- .75pt;mso-border-color-alt:teal;mso-border-style-alt:solid;mso-yfti-tbllook:
- 128;mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0'>
-  <td width=84 valign=top style='width:63.1pt;border-top:solid teal 1.5pt;
-  border-left:solid teal 1.0pt;border-bottom:none;border-right:none;mso-border-top-alt:
-  solid teal 1.5pt;mso-border-left-alt:solid teal .75pt;background:silver;
-  mso-shading:white;mso-pattern:solid silver;padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:64'><b style='mso-bidi-font-weight:normal'>Pros<o:p></o:p></b></p>
-  </td>
-  <td width=756 valign=top style='width:567.0pt;border-top:solid teal 1.5pt;
-  border-left:none;border-bottom:none;border-right:solid teal 1.0pt;mso-border-top-alt:
-  solid teal 1.5pt;mso-border-right-alt:solid teal .75pt;background:silver;
-  mso-shading:white;mso-pattern:solid silver;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l32 level1 lfo43;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Easier
-       than heavyweight to create initially.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l32 level1 lfo43;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Easy
-       for end user to use programmatically.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l32 level1 lfo43;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Can
-       add and modify behavior<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l32 level1 lfo43;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Can
-       add and modify structure<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l32 level1 lfo43;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Can
-       add and modify constraints<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l32 level1 lfo43;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>API
-       is domain specific<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l32 level1 lfo43;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>First
-       class extension mechanism<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='mso-yfti-cnfc:64'><span style='font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes'>
-  <td width=84 valign=top style='width:63.1pt;border-top:none;border-left:solid teal 1.0pt;
-  border-bottom:solid teal 1.5pt;border-right:none;mso-border-left-alt:solid teal .75pt;
-  mso-border-bottom-alt:solid teal 1.5pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:128'><b style='mso-bidi-font-weight:normal'>Cons<o:p></o:p></b></p>
-  </td>
-  <td width=756 valign=top style='width:567.0pt;border-top:none;border-left:
-  none;border-bottom:solid teal 1.5pt;border-right:solid teal 1.0pt;mso-border-bottom-alt:
-  solid teal 1.5pt;mso-border-right-alt:solid teal .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l17 level1 lfo46;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Creates
-       dependence on specific version of UML.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l17 level1 lfo46;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Difficult
-       to maintain especially if UML specification changes.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l17 level1 lfo46;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>High
-       development cost<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l17 level1 lfo46;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>File
-       format is non-standard<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l17 level1 lfo46;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>End users
-       must know about 2 factories for creating elements: One factory for
-       creating types from the extended meta-model and one defined by the
-       extension.</span><span style='font-family:Arial'><o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='mso-yfti-cnfc:128'><span style='font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h3><a name="_Heavyweight_extension"></a>Heavyweight extension</h3>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>Heavyweight
-extensions involve reuse by copy and merge instead of reuse by specializing
-types from a referenced meta-model as with middleweight extensions.<o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>Creating
-heavyweight extensions involve 2 steps: <o:p></o:p></span></p>
-
-<ol style='margin-top:0in' start=1 type=1>
- <li class=MsoNormal style='mso-list:l36 level1 lfo49;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Select the language units you
-     wish to extend and merge them. <span style='mso-spacerun:yes'> </span><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l36 level1 lfo49;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>To that merged set of
-     meta-types, add your own domain specific types.<o:p></o:p></span></li>
-</ol>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>Although
-the concept and terminology for “heavyweight” extension is not mentioned in the
-official UML specification, the notion of using package merge to define languages
-is mentioned and forms the bases for constructing UML itself.<o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>So why
-exactly would you even consider a heavyweight extension?<span
-style='mso-spacerun:yes'>  </span>The simple answer is: “ability to customize
-and specify behavior”.<span style='mso-spacerun:yes'>    </span>With
-heavyweight extensions you have access to advanced concepts such as sub-setting
-and redefinition that are used to create UML itself.<span
-style='mso-spacerun:yes'>   </span>Support for these concepts is handled
-through the customized UML code generator.<span style='mso-spacerun:yes'> 
-</span>The details of these concepts will be explored in a future article but
-the basics are as follows:</span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>Heavyweight
-extensions are great if you want to allow users to work programmatically with
-your code by presenting a very clean API or if you want to add or customize
-behavior.<span style='mso-spacerun:yes'>  </span>The downside to heavyweight
-extension is that it is the most costly approach:<span
-style='mso-spacerun:yes'>  </span>it is the most difficult to develop and its
-overall usefulness might be limited to those who have intimate knowledge of
-your API and customizations.<span style='mso-spacerun:yes'>  </span><o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>Deploying
-heavyweight extensions so that user may programmatically create instances of your
-DSL involve deploying all the <span class=SpellE>plugins</span> involved as
-opposed to a deploying a single profile as with lightweight extensions.<span
-style='mso-spacerun:yes'>  </span><o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<table class=MsoTableList1 border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-top-alt:1.5pt;
- mso-border-left-alt:.75pt;mso-border-bottom-alt:1.5pt;mso-border-right-alt:
- .75pt;mso-border-color-alt:teal;mso-border-style-alt:solid;mso-yfti-tbllook:
- 128;mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0'>
-  <td width=84 valign=top style='width:63.1pt;border-top:solid teal 1.5pt;
-  border-left:solid teal 1.0pt;border-bottom:none;border-right:none;mso-border-top-alt:
-  solid teal 1.5pt;mso-border-left-alt:solid teal .75pt;background:silver;
-  mso-shading:white;mso-pattern:solid silver;padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:64'><b style='mso-bidi-font-weight:normal'>Pros<o:p></o:p></b></p>
-  </td>
-  <td width=756 valign=top style='width:567.0pt;border-top:solid teal 1.5pt;
-  border-left:none;border-bottom:none;border-right:solid teal 1.0pt;mso-border-top-alt:
-  solid teal 1.5pt;mso-border-right-alt:solid teal .75pt;background:silver;
-  mso-shading:white;mso-pattern:solid silver;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l1 level1 lfo52;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Easy
-       for end users to use programmatically (only 1 meta-model in the end)<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l1 level1 lfo52;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Ability
-       to override or customize operations and behavior<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l1 level1 lfo52;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Selectively
-       reuse UML concepts as required.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l1 level1 lfo52;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Constraints
-       are enforced at compile time ( type safety )<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l1 level1 lfo52;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>API
-       is domain specific<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l1 level1 lfo52;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Can
-       add behavior/constraints/structure<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l1 level1 lfo52;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>Isolate
-       yourself from changes to UML meta-model (you merge a copy into your
-       meta-model)<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l1 level1 lfo52;tab-stops:list .5in;
-       mso-yfti-cnfc:64'><span style='font-size:10.0pt;font-family:Arial'>You
-       can stratify your own specialized meta-model for different levels of
-       abstraction and DSL concerns.<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='mso-yfti-cnfc:64'><span style='font-size:10.0pt;
-  font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes'>
-  <td width=84 valign=top style='width:63.1pt;border-top:none;border-left:solid teal 1.0pt;
-  border-bottom:solid teal 1.5pt;border-right:none;mso-border-left-alt:solid teal .75pt;
-  mso-border-bottom-alt:solid teal 1.5pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:128'><b style='mso-bidi-font-weight:normal'>Cons<o:p></o:p></b></p>
-  </td>
-  <td width=756 valign=top style='width:567.0pt;border-top:none;border-left:
-  none;border-bottom:solid teal 1.5pt;border-right:solid teal 1.0pt;mso-border-bottom-alt:
-  solid teal 1.5pt;mso-border-right-alt:solid teal .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l39 level1 lfo55;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Costly
-       development (more complex than profiles)<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l39 level1 lfo55;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Difficult
-       to develop such an extension <o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l39 level1 lfo55;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Difficult
-       to maintain (re-merge)<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l39 level1 lfo55;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Slightly
-       more difficult to deploy.<span style='mso-spacerun:yes'> 
-       </span>Involves deploying all <span class=SpellE>plugins</span>
-       involved.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l39 level1 lfo55;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Cannot
-       modify existing behavior<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l39 level1 lfo55;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>File
-       format is non-standard<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l39 level1 lfo55;tab-stops:list .5in;
-       mso-yfti-cnfc:128'><span style='font-size:10.0pt;font-family:Arial'>Lose
-       interoperability with other UML based tools since we have a new
-       meta-model.<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='mso-yfti-cnfc:128'><span style='font-size:10.0pt;
-  font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h3>“First Class” extension concepts</h3>
-
-<h4>Subsets</h4>
-
-<p class=MsoNormal>The UML specification describes <span class=SpellE>subsetting</span>
-in the following way: </p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>“<span
-class=SpellE>Subsetting</span> represents the familiar set-theoretic concept.
-It is applicable to the collections represented by association ends, not to the
-association itself. It means that the <span class=SpellE>subsetting</span>
-association end is a collection that is either equal to the collection that it
-is <span class=SpellE>subsetting</span> or a proper subset of that collection.
-(Proper <span class=SpellE>subsetting</span> implies that the superset is not
-empty and that the subset has fewer members.) <span class=SpellE>Subsetting</span>
-is a relationship in the domain of extensional semantics. <i>Specialization </i>is,
-in contrast to <span class=SpellE>subsetting</span>, a relationship in the
-domain of intentional semantics, which is to say it characterized the criteria
-whereby membership in the collection is defined, not by the membership. One
-classifier may specialize another by adding or redefining features; a set
-cannot specialize another set. A naïve but popular and useful view has it that
-as the classifier becomes more specialized, the extent of the collection(s) of
-classified objects narrows. In the case of associations, <span class=SpellE>subsetting</span>
-ends, according to this view, correlates positively with specializing the
-association. This view falls down because it ignores the case of classifiers which,
-for whatever reason, denote the empty set. Adding new criteria for membership
-does not narrow the extent if the classifier already has a null denotation.”<o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>A property
-may be marked as the subset of another, as long as every element in the context
-of the <span class=SpellE>subsetting</span> property conforms to the
-corresponding element in the context of the <span class=SpellE>subsetted</span>
-property.<span style='mso-spacerun:yes'>  </span>The UML2 API and code
-generator provide support for Java code to enforce subset constraints.<o:p></o:p></span></p>
-
-<p><span class=SpellE>Subsetting</span> comes in two basic flavors: </p>
-
-<ul style='margin-top:0in' type=disc>
- <li class=MsoNormal style='mso-list:l6 level1 lfo58;tab-stops:list .5in'><b><span
-     style='font-size:10.0pt;font-family:Arial'>Derived subsets<o:p></o:p></span></b></li>
-</ul>
-
-<p class=MsoNormal style='margin-left:25.5pt'><span style='font-size:10.0pt;
-font-family:Arial'>If a property is a derived subset, then its value or values
-can be computed from the value of one or more other properties.<span
-style='mso-spacerun:yes'>  </span>That is to say that the values exist in some
-form somewhere else in the meta-model and that those values can be
-computed.<span style='mso-spacerun:yes'>  </span>Since the values for derived
-subsets are calculated, users cannot add directly to such collections.<o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:8.5pt;text-indent:.25in'><span
-style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='margin-left:8.5pt;text-indent:8.5pt'><span
-style='font-size:10.0pt;font-family:Arial'><img border=0 width=64 height=15
-id="_x0000_i1035" src="../../../../images/tip.gif">Derived properties are often
-specified to be read-only.<span style='mso-spacerun:yes'>   </span><o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='margin-left:8.5pt;text-indent:17.0pt'><i
-style='mso-bidi-font-style:normal'><u><span style='font-size:10.0pt;font-family:
-Arial'>Example:</span></u></i><span style='font-size:10.0pt;font-family:Arial'>
-<o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:53.0pt'><span class=SpellE><i><span
-style='font-size:10.0pt;font-family:Arial'>Package.nestedPackage</span></i></span><span
-style='font-size:10.0pt;font-family:Arial'> is a derived subset of <span
-class=SpellE><i>Package.packageableElement</i></span>.<span
-style='mso-spacerun:yes'>   </span>In this case derivation is based on some
-aspect of the property, namely, the type.<o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<ul style='margin-top:0in' type=disc>
- <li class=MsoNormal style='mso-list:l6 level1 lfo58;tab-stops:list .5in'><b><span
-     style='font-size:10.0pt;font-family:Arial'>Non-derived subsets<o:p></o:p></span></b></li>
-</ul>
-
-<p class=MsoNormal style='margin-left:8.5pt;text-indent:.25in'><span
-style='font-size:10.0pt;font-family:Arial'>Non-derived subsets also apply to properties
-but such properties contain values that cannot be calculated directly from
-existing features.<span style='mso-spacerun:yes'>  </span><o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:8.5pt;text-indent:.25in'><span
-style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='margin-left:8.5pt;text-indent:8.5pt'><span
-style='font-size:10.0pt;font-family:Arial'><img border=0 width=64 height=15
-id="_x0000_i1036" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>Non-derived subsets must be writable.<o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:8.5pt;text-indent:8.5pt'><span
-style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='margin-left:8.5pt;text-indent:8.5pt'><i
-style='mso-bidi-font-style:normal'><u><span style='font-size:10.0pt;font-family:
-Arial'>Example:</span></u></i><span style='font-size:10.0pt;font-family:Arial'><span
-style='mso-spacerun:yes'>   </span><o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:.5in;text-indent:19.0pt'><span
-class=SpellE><i><span style='font-size:10.0pt;font-family:Arial'>Operation::precondition</span></i></span><span
-style='font-size:10.0pt;font-family:Arial'> subset <span class=SpellE><i>Namespace::ownedRule</i></span>
-but must be populated explicitly.<span style='mso-spacerun:yes'>  </span>Newly
-added items to <span class=SpellE><i>Operation::precondition</i></span> also
-get added to the <span class=SpellE><i>Namespace::ownedRule</i></span>
-collection.<span style='mso-spacerun:yes'>   </span>A precondition has a “subset-superset”
-implementation meaning that if a constraint was added to the owned rule
-collection that it would not be added to the precondition list.<span
-style='mso-spacerun:yes'>   </span>However, adding to the precondition
-collection does mean that it gets added to the owned rule collection.<o:p></o:p></span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><o:p>&nbsp;</o:p></p>
-
-<h4>Redefinition</h4>
-
-<p class=MsoNormal>The UML specification defines redefinition in the following
-way:</p>
-
-<p class=MsoNormal><i><span style='font-size:10.0pt;font-family:Arial'>“Redefinition
-</span></i><span style='font-size:10.0pt;font-family:Arial'>is a relationship
-between features of classifiers within a specialization hierarchy. Redefinition
-may be used to change the definition of a feature, and thereby introduce a
-specialized classifier in place of the original featuring classifier, but this
-usage is incidental. The difference in domain (that redefinition applies to
-features) differentiates redefinition from specialization.”<o:p></o:p></span></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal>More simply put, r<span style='font-size:10.0pt;font-family:
-Arial'>edefinition is a way to narrow the scope of a property or to constrain
-it.<span style='mso-spacerun:yes'>  </span>If you wish to restrict what can be
-added to an existing collection, you should use redefinition.<span
-style='mso-spacerun:yes'>  </span>In effect, redefinition replaces an existing
-property.<span style='mso-spacerun:yes'>  </span>You cannot widen the scope of
-a property with redefinition.<span style='mso-spacerun:yes'> 
-</span>Redefinition only makes sense in the context of specialization.<span
-style='mso-spacerun:yes'>  </span>That is to say, for example, that a
-redefining property must be owned by a <span class=SpellE><i>uml::Class</i></span>
-that is a specialization of another <span class=SpellE><i>uml::Class</i></span>
-which owns the redefined property. <o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>Redefinition
-can be used to narrow the type of a property by referring to a more specific
-type.<span style='mso-spacerun:yes'>  </span>Redefinition of features which are
-lists of items replaces the entire list.<span style='mso-spacerun:yes'> 
-</span>That is, any items contributed via inheritance will be disregarded and
-the redefined list will be recalculated.<span style='mso-spacerun:yes'>  
-</span>If you wish to contribute items to an existing list, you can use a
-derived union. The name and visibility of a property are not required to match
-those of any property it redefines.<span style='mso-spacerun:yes'>  </span><o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>It should
-be pointed out that the detailed semantics of redefinition vary for each
-specialization of <span class=SpellE><i>RedefinableElement</i></span> in UML,
-and that the name of a property which as been redefined does not have to match
-the one redefining it.<o:p></o:p></span></p>
-
-<p><i style='mso-bidi-font-style:normal'><u>Example</u></i>: </p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>In the
-following example, <span class=SpellE><i>Class::superClass</i></span> redefines
-<span class=SpellE><i>Classifier::general</i></span><i>.<span
-style='mso-spacerun:yes'>  </span></i>In this case, the name of the redefining
-property has changed as well as the type!<o:p></o:p></span></p>
-
-<p style='margin-left:8.5pt;page-break-after:avoid'><!--[if gte vml 1]><v:shape
- id="_x0000_i1037" type="#_x0000_t75" style='width:460.5pt;height:286.5pt'>
- <v:imagedata src="article_files/image004.gif" o:title="Redefinition"/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=614 height=382
-src="article_files/image004.gif" v:shapes="_x0000_i1037"><![endif]></p>
-
-<p class=MsoCaption>Figure <!--[if supportFields]><span style='mso-element:
-field-begin'></span><span style='mso-spacerun:yes'> </span>SEQ Figure \* ARABIC
-<span style='mso-element:field-separator'></span><![endif]--><span
-style='mso-no-proof:yes'>6</span><!--[if supportFields]><span style='mso-element:
-field-end'></span><![endif]-->: Redefinition</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h4>Derived Unions</h4>
-
-<p class=MsoNormal>The UML specification defines derived unions in the
-following way:</p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>“A property
-may be marked as being a derived union. This means that the collection of
-values denoted by the property in some context is derived by being the strict
-union of all of the values denoted, in the same context, by properties defined
-to subset it. If the property has a multiplicity upper bound of 1, then this
-means that the values of all the subsets must be null or the same.”<o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>More simply
-put, derived unions indicate that a feature is the union of one or more
-collections or scalar. Derived unions are analogous to abstract methods in
-Java.<span style='mso-spacerun:yes'>  </span>As with abstract methods, derived
-unions really only make sense in the context of a concrete type defining what
-is contributed.<span style='mso-spacerun:yes'>   </span>Derived unions are
-useful if you wish to indicate that a particular meta-type defines a feature
-but that feature is to be defined within the context of other meta-types.<span
-style='mso-spacerun:yes'>   </span>Users of derived unions would create a
-property which subsets the property marked as a derived union and then
-contributes more objects to the collection.<span style='mso-spacerun:yes'> 
-</span>A derived union is typically applied to properties on abstract types
-high up in the inheritance hierarchy.<span style='mso-spacerun:yes'>  </span><o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<ul style='margin-top:0in' type=disc>
- <li class=MsoNormal style='mso-list:l6 level1 lfo58;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>A derived union is read
-     only.<span style='mso-spacerun:yes'>  </span><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l6 level1 lfo58;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>A derived union is derived.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l6 level1 lfo58;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>A derived union is a derived
-     subset but not vice versa necessarily.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-list:l6 level1 lfo58;tab-stops:list .5in'><span
-     style='font-size:10.0pt;font-family:Arial'>Concrete types make derived
-     unions useful by contributing subsets.<o:p></o:p></span></li>
-</ul>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><i
-style='mso-bidi-font-style:normal'><u>Example</u></i>:</p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>In this
-example we see that <span class=SpellE><i>Element::ownedElement</i></span> is a
-derived union.<span style='mso-spacerun:yes'>  </span>Element contributes <span
-class=SpellE><i>Element::ownedComment</i></span> to that collection.<span
-style='mso-spacerun:yes'>  </span>Package contributes <span class=SpellE><i>Package::ownedTemplateSignature</i></span>
-and <span class=SpellE><i>Package::profileApplication</i></span> amongst
-others.<o:p></o:p></span></p>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1038" type="#_x0000_t75" style='width:464.25pt;
- height:461.25pt'>
- <v:imagedata src="article_files/image008.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=619 height=615
-src="article_files/image009.jpg" v:shapes="_x0000_i1038"><![endif]></p>
-
-<h2>Option summary</h2>
-
-<p>If you have stuck with this document this far you have a sense that the
-decision making process of how to extend UML is not straightforward or
-simple.<span style='mso-spacerun:yes'>  </span>The following is a table
-summarizing the various options.</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableSimple2 border=0 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;mso-yfti-tbllook:160;mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:-1;height:47.75pt'>
-  <td width=168 valign=top style='width:126.1pt;border:solid windowtext 1.0pt;
-  border-bottom:solid black 1.5pt;mso-border-alt:solid windowtext .5pt;
-  mso-border-bottom-alt:solid black 1.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:47.75pt'>
-  <p class=MsoNormal style='mso-yfti-cnfc:5'><b><o:p>&nbsp;</o:p></b></p>
-  <p style='mso-yfti-cnfc:5'><b><o:p>&nbsp;</o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;border:none;border-bottom:solid black 1.5pt;
-  mso-border-left-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:47.75pt'>
-  <p align=center style='text-align:center;mso-yfti-cnfc:1'><b><a
-  href="#_Featherweight_extension"><span style='font-weight:normal'>Featherweight</span></a>
-  <o:p></o:p></b></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;border:none;border-bottom:solid black 1.5pt;
-  background:white;padding:0in 5.4pt 0in 5.4pt;height:47.75pt'>
-  <p align=center style='text-align:center;mso-yfti-cnfc:1'><b><a
-  href="#_Lightweight_extension"><span style='font-weight:normal'>Lightweight</span></a><o:p></o:p></b></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;border:none;border-bottom:solid black 1.5pt;
-  padding:0in 5.4pt 0in 5.4pt;height:47.75pt'>
-  <p align=center style='text-align:center;mso-yfti-cnfc:1'><b><a
-  href="#_Middleweight_extension"><span style='font-weight:normal'>Middleweight</span></a><o:p></o:p></b></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;border:none;border-bottom:solid black 1.5pt;
-  padding:0in 5.4pt 0in 5.4pt;height:47.75pt'>
-  <p align=center style='text-align:center;mso-yfti-cnfc:1'><b><a
-  href="#_Heavyweight_extension"><span style='font-weight:normal'>Heavyweight</span></a><o:p></o:p></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:0;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid windowtext 1.0pt;
-  mso-border-top-alt:solid windowtext .5pt;mso-border-top-alt:solid windowtext .5pt;
-  mso-border-right-alt:solid windowtext .5pt;background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Keyword support<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;border:none;mso-border-top-alt:
-  solid black 1.5pt;mso-border-left-alt:solid windowtext .5pt;background:#E6E6E6;
-  padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Simply used as a tag to highlight
-  certain characteristics</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Yes<o:p></o:p></b></p>
-  <p align=center style='text-align:center'>Part of Stereotype definition in
-  Superstructure Specification.</p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;border:none;mso-border-top-alt:
-  solid black 1.5pt;background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes*</p>
-  <p align=center style='text-align:center'>Not directly supported although can
-  be accomplished if implementer customizes display code.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;border:none;mso-border-top-alt:
-  solid black 1.5pt;background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes*</p>
-  <p align=center style='text-align:center'>Not directly supported although can
-  be accomplished if implementer customizes display code.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:white;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Icon support<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Yes<o:p></o:p></b></p>
-  <p align=center style='text-align:center'>Profiles directly support applying
-  and displaying icons.</p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes*</p>
-  <p align=center style='text-align:center'>Not directly supported although can
-  be accomplished if implementer customizes display code</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes*</p>
-  <p align=center style='text-align:center'>Not directly supported although can
-  be accomplished if implementer customizes display code.</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid windowtext 1.0pt;
-  mso-border-right-alt:solid windowtext .5pt;background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Restrict or constrain existing types<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;border:none;mso-border-left-alt:
-  solid windowtext .5pt;background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Yes <o:p></o:p></b></p>
-  <p align=center style='text-align:center'>Add additional OCL
-  constraints.<span style='mso-spacerun:yes'>  </span>Some OCL integration
-  support.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Add additional OCL
-  constraints.<span style='mso-spacerun:yes'>  </span>Some OCL integration
-  support.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Add additional OCL
-  constraints.<span style='mso-spacerun:yes'>  </span>Some OCL integration
-  support</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid windowtext 1.0pt;
-  mso-border-right-alt:solid windowtext .5pt;background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Extend existing types<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;border:none;mso-border-left-alt:
-  solid windowtext .5pt;background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Yes<o:p></o:p></b></p>
-  <p align=center style='text-align:center'>Extend existing types through Stereotype
-  Generalization</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Extend existing types through
-  generalizations</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Extend existing types through
-  generalizations</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid windowtext 1.0pt;
-  mso-border-right-alt:solid windowtext .5pt;background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Add new types that do not extend an existing
-  type<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;border:none;mso-border-left-alt:
-  solid windowtext .5pt;background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>No<o:p></o:p></b></p>
-  <p align=center style='text-align:center'>Stereotypes must be applied to some
-  existing UML concept to come into existence</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Create any type you want without
-  generalization and use freely.</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Create any type you want without
-  generalization and use freely.</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:5;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Remove existing type<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>No</b> *</p>
-  <p align=center style='text-align:center'>You are applying your newly created
-  Stereotypes to the UML domain.</p>
-  <p align=center style='text-align:center'>Use of “strict” application of
-  profile.</p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  <p align=center style='text-align:center'>All of UML pulled in.<span
-  style='mso-spacerun:yes'>  </span>Your DSL extends all of UML.</p>
-  <p align=center style='text-align:center'>Simply extend <span class=SpellE>uml.metamodel.uml</span></p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Your DSL extension would extend
-  only the merged language units that you would be interested in.</p>
-  <p align=center style='text-align:center'>Development is complicated because
-  of this merge step.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:6;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:white;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Add new properties<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Yes<o:p></o:p></b></p>
-  <p align=center style='text-align:center'>Apply Profile, apply Stereotype
-  that adds property. Use <span class=SpellE>setValue</span>() to get and set
-  property. </p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Getters and setters for newly added
-  properties are created automatically.</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Getters and setters for newly added
-  properties are created automatically.</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:7;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:white;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Remove existing properties<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>No<o:p></o:p></b></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>No*</p>
-  <p align=center style='text-align:center'>Can only exclude entire types
-  depending on granularity of Language Unit.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:8;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:white;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Restrict/constrain existing properties<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Yes<o:p></o:p></b></p>
-  <p align=center style='text-align:center'>OCL constraints.</p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Directly by use of Sub-setting and
-  Redefinition.<span style='mso-spacerun:yes'>  </span>Indirectly by adding
-  additional constraints in which case code is generated.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Directly by use of Sub-setting and
-  Redefinition.<span style='mso-spacerun:yes'>  </span>Indirectly by adding
-  additional constraints in which case code is generated.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:9;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Add new operations<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>No<o:p></o:p></b></p>
-  <p align=center style='text-align:center'>Not able to specify behavior in a
-  profile currently.<span style='mso-spacerun:yes'>   </span>In the future, you
-  might be able to add behavior through OCL constraints.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>You can specify operations and
-  behavior.</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>You can specify operations and
-  behavior.</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:10;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Remove existing operations<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>No<o:p></o:p></b></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>No*</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes*</p>
-  <p align=center style='text-align:center'>Since the merged language unit code
-  gets regenerated it is possible to completely customize.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:11;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Restrict/constrain existing operations<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Yes<o:p></o:p></b></p>
-  <p align=center style='text-align:center'>OCL constraints can be attached to
-  operations</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:12;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:white;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Reuse UML concepts<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Yes<o:p></o:p></b></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Possible to customize exactly which
-  concepts to reuse by merging your own Language Units</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:13;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Restrict multiplicity<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Yes<o:p></o:p></b></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:14;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Remove existing constraints<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>No<o:p></o:p></b></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:15;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Add new constraints<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Yes<o:p></o:p></b></p>
-  <p align=center style='text-align:center'>Add OCL constraints.<span
-  style='mso-spacerun:yes'>  </span>Currently no runtime checks</p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Add operations that directly
-  restrict operations.<span style='mso-spacerun:yes'>  </span>Type safety at
-  compile time.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Add operations that directly
-  restrict operations.<span style='mso-spacerun:yes'>  </span>Type safety at
-  compile time.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:16;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:#E6E6E6;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>First class extensibility<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>No<o:p></o:p></b></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E6E6E6;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:17;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Validation<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>No<o:p></o:p></b></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Custom validation stubs are
-  automatically generated.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Custom validation stubs are
-  automatically generated.</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:18;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:#E0E0E0;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Programmatic usage<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Easy</p>
-  <p align=center style='text-align:center'>Simply apply tag.</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Awkward<o:p></o:p></b></p>
-  <p align=center style='text-align:center'>*Programmatic usage covered in
-  future document</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Easy</p>
-  <p align=center style='text-align:center'>Concepts are straight forward and
-  familiar to developers.</p>
-  <p align=center style='text-align:center'>*Programmatic usage covered in
-  future document</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Easy</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:19;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:#E0E0E0;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Efficiency of running code<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Very efficient</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Not optimal</p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Very efficient</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Very efficient</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:20;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Cost of development<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Low</p>
-  <p align=center style='text-align:center'>Trivial development</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Medium<o:p></o:p></b></p>
-  <p align=center style='text-align:center'>Extension technique is well defined
-  and documented.</p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>High</p>
-  <p align=center style='text-align:center'>Developer must understand complex
-  concepts such as redefinition, <span class=SpellE>subsetting</span>, derived
-  unions</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Highest</p>
-  <p align=center style='text-align:center'>Must merge language units and
-  developer must understand complex concepts such as redefinition, <span
-  class=SpellE>subsetting</span>, derived unions</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:21;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:#E0E0E0;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Ability to evolve<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Easy</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Easy<o:p></o:p></b></p>
-  <p align=center style='text-align:center'>Just modify profile and reapply</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Difficult</p>
-  <p align=center style='text-align:center'>Regenerate code</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Difficult</p>
-  <p align=center style='text-align:center'>Regenerate code</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:22;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Deploy so end users can work with<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>N/A</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:white;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>Easy<o:p></o:p></b></p>
-  <p align=center style='text-align:center'>Deploy profile, user must apply
-  profile and apply stereotype.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Easy</p>
-  <p align=center style='text-align:center'>Deploy <span class=SpellE>plugins</span></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;padding:0in 5.4pt 0in 5.4pt;
-  height:13.85pt'>
-  <p align=center style='text-align:center'>Easy</p>
-  <p align=center style='text-align:center'>Deploy <span class=SpellE>plugins</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:23;mso-yfti-lastrow:yes;height:13.85pt'>
-  <td width=168 valign=top style='width:126.1pt;border:none;border-right:solid black 1.5pt;
-  background:#E0E0E0;padding:0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p style='mso-yfti-cnfc:4'><b>Dependency on UML implementation<o:p></o:p></b></p>
-  </td>
-  <td width=145 valign=top style='width:108.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>No</p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'><b style='mso-bidi-font-weight:
-  normal'>No</b> *</p>
-  <p align=center style='text-align:center'>Unless the meta-type is removed
-  altogether your extension will be valid.</p>
-  </td>
-  <td width=205 valign=top style='width:153.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>Yes</p>
-  <p align=center style='text-align:center'>Generator model references <span
-  class=SpellE>uml.metamodel.uml</span> which causes dependency on a particular
-  version of UML2.<span style='mso-spacerun:yes'>  </span>Depends on uml2
-  implementation</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
-  <td width=191 valign=top style='width:143.5pt;background:#E0E0E0;padding:
-  0in 5.4pt 0in 5.4pt;height:13.85pt'>
-  <p align=center style='text-align:center'>No *</p>
-  <p align=center style='text-align:center'>You will be dependent on your
-  merged model based on language units but you control that.</p>
-  <p align=center style='text-align:center'><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Conclusion</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Congratulations!
-YouÂ’ve made it this far, so youÂ’ve gone through the thought process of
-selecting the extension technique that is right for you.<span
-style='mso-spacerun:yes'>  </span>Hopefully enough information has been provided
-to enable you to decisively conclude the right approach for you.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>We
-have explored some of the pros and cons of each type of extension as well as
-provided a summary of all the techniques.<span style='mso-spacerun:yes'> 
-</span>Detailed information of how to create heavy-weight extensions will be
-explored in more detail in future articles.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=63 height=14 id="_x0000_i1039" src="../../../../images/tip.gif">The
-main conclusion of this article is: The use of <a href="#_Hlt174419544">Middleweight
-extensions</a> is discouraged and <a href="#_Lightweight_extension">Lightweight
-extensions</a> should be your first instinct.<span style='mso-spacerun:yes'>  
-</span>Heavyweight extensions should be used in rare cases where much control
-is required.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>For
-more information on UML2, visit the <a href="http://www.eclipse.org/uml2">home
-page</a> or join the <a href="news://news.eclipse.org/eclipse.modeling.mdt.uml2">newsgroup</a>.</p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>References</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>[1]
-K. Hussey. “Getting Started with UML2”. International Business Machines Corp.,
-2004, 2006.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>[2]
-K. Hussey. “Introduction to UML2 Profiles”. International Business Machines
-Corp., 2004, 2006.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>[3]
-UML Testing Profile. Version 1.0, formal/05-07-07. OMG., July 2005.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><o:p>&nbsp;</o:p></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><o:p>&nbsp;</o:p></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='font-size:7.5pt'>Java and all Java-based trademarks and logos are trademarks
-or registered trademarks of Sun Microsystems, Inc. in the </span><st1:country-region><st1:place><span
-  style='font-size:7.5pt'>United States</span></st1:place></st1:country-region><span
-style='font-size:7.5pt'>, other countries, or both.</span></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/Thumbs.db b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/Thumbs.db
deleted file mode 100644
index 740bde4..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/Thumbs.db
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/filelist.xml b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/filelist.xml
deleted file mode 100644
index 0aafbbf..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/filelist.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:MainFile HRef="../article.html"/>
- <o:File HRef="image001.jpg"/>
- <o:File HRef="image006.gif"/>
- <o:File HRef="image014.png"/>
- <o:File HRef="image007.jpg"/>
- <o:File HRef="image010.png"/>
- <o:File HRef="image005.jpg"/>
- <o:File HRef="image002.jpg"/>
- <o:File HRef="image003.jpg"/>
- <o:File HRef="image012.png"/>
- <o:File HRef="image013.jpg"/>
- <o:File HRef="oledata.mso"/>
- <o:File HRef="image004.gif"/>
- <o:File HRef="image008.png"/>
- <o:File HRef="image009.jpg"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image001.jpg b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image001.jpg
deleted file mode 100644
index 3609ba7..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image001.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image002.jpg b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image002.jpg
deleted file mode 100644
index 3badfc6..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image002.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image003.jpg b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image003.jpg
deleted file mode 100644
index efba46a..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image003.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image004.gif b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image004.gif
deleted file mode 100644
index e254940..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image004.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image005.gif b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image005.gif
deleted file mode 100644
index 478d251..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image005.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image005.jpg b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image005.jpg
deleted file mode 100644
index 40fd598..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image005.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image006.gif b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image006.gif
deleted file mode 100644
index f4927a4..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image006.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image007.jpg b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image007.jpg
deleted file mode 100644
index 0c3ad93..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image007.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image008.png b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image008.png
deleted file mode 100644
index 281ff75..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image008.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image009.jpg b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image009.jpg
deleted file mode 100644
index 388fbc8..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image009.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image010.png b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image010.png
deleted file mode 100644
index c5727f4..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image010.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image012.png b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image012.png
deleted file mode 100644
index a7f734a..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image012.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image013.jpg b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image013.jpg
deleted file mode 100644
index c47549b..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image013.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image014.png b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image014.png
deleted file mode 100644
index 3c9aa3c..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/image014.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/oledata.mso b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/oledata.mso
deleted file mode 100644
index 0358f6d..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/article_files/oledata.mso
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/default_style.css b/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/default_style.css
deleted file mode 100644
index 2bbff30..0000000
--- a/uml2/docs/articles/Customizing_UML2_Which_Technique_is_Right_For_You/default_style.css
+++ /dev/null
@@ -1,11 +0,0 @@
-p, table, td, th {  font-family: arial, helvetica, geneva; font-size: 10pt}

-pre {  font-family: "Courier New", Courier, mono; font-size: 10pt}

-h2 { font-family: arial, helvetica, geneva; font-size: 18pt; font-weight: bold ; line-height: 14px}

-code {  font-family: "Courier New", Courier, mono; font-size: 10pt}

-sup {  font-family: arial,helvetica,geneva; font-size: 10px}

-h3 {  font-family: arial, helvetica, geneva; font-size: 14pt; font-weight: bold}

-li {  font-family: arial, helvetica, geneva; font-size: 10pt}

-h1 {  font-family: arial, helvetica, geneva; font-size: 28px; font-weight: bold}

-body {  font-family: arial, helvetica, geneva; font-size: 10pt; clip:   rect(   ); margin-top: 5mm; margin-left: 3mm}

-.indextop { font-size: x-large;; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold}

-.indexsub { font-size: xx-small;; font-family: Arial, Helvetica, sans-serif; color: #8080FF}

diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article.html b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article.html
deleted file mode 100644
index 292994b..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article.html
+++ /dev/null
@@ -1,2616 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="article_files/filelist.xml">
-<link rel=Edit-Time-Data href="article_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Generics in UML</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="country-region"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="place"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>jbruck</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>jbruck</o:LastAuthor>
-  <o:Revision>742</o:Revision>
-  <o:TotalTime>24748</o:TotalTime>
-  <o:LastPrinted>2006-09-12T15:08:00Z</o:LastPrinted>
-  <o:Created>2004-07-06T14:17:00Z</o:Created>
-  <o:LastSaved>2007-10-05T14:35:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2895</o:Words>
-  <o:Characters>16504</o:Characters>
-  <o:Company>IBM</o:Company>
-  <o:Lines>137</o:Lines>
-  <o:Paragraphs>38</o:Paragraphs>
-  <o:CharactersWithSpaces>19361</o:CharactersWithSpaces>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:ActiveWritingStyle Lang="EN-US" VendorID="64" DLLVersion="131078"
-   NLCheck="1">1</w:ActiveWritingStyle>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"Tms Rmn";
-	panose-1:2 2 6 3 4 5 5 2 3 4;
-	mso-font-alt:"Times New Roman";
-	mso-font-charset:0;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:variable;
-	mso-font-signature:3 0 0 0 1 0;}
-@font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:"Arial Unicode MS";
-	panose-1:2 11 6 4 2 2 2 2 2 4;
-	mso-font-charset:128;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:-1 -369098753 63 0 4129279 0;}
-@font-face
-	{font-family:Tahoma;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:1627421319 -2147483648 8 0 66047 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:"\@Arial Unicode MS";
-	panose-1:2 11 6 4 2 2 2 2 2 4;
-	mso-font-charset:128;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:-1 -369098753 63 0 4129279 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-style-next:Normal;
-	margin-top:12.0pt;
-	margin-right:0in;
-	margin-bottom:3.0pt;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	page-break-after:avoid;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	mso-bidi-font-size:14.0pt;
-	font-family:Arial;
-	mso-bidi-font-family:"Times New Roman";
-	font-weight:bold;}
-p.MsoCaption, li.MsoCaption, div.MsoCaption
-	{mso-style-noshow:yes;
-	mso-style-next:Normal;
-	margin-top:6.0pt;
-	margin-right:0in;
-	margin-bottom:6.0pt;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:purple;
-	text-decoration:underline;
-	text-underline:single;}
-p.MsoDocumentMap, li.MsoDocumentMap, div.MsoDocumentMap
-	{mso-style-noshow:yes;
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	background:navy;
-	font-size:12.0pt;
-	font-family:Tahoma;
-	mso-fareast-font-family:"Times New Roman";}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-tt
-	{font-family:"Arial Unicode MS";
-	mso-ascii-font-family:"Arial Unicode MS";
-	mso-fareast-font-family:"Arial Unicode MS";
-	mso-hansi-font-family:"Arial Unicode MS";
-	mso-bidi-font-family:"Arial Unicode MS";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:80419148;
-	mso-list-type:hybrid;
-	mso-list-template-ids:998395232 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
-@list l0:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:93326361;
-	mso-list-template-ids:-1930790778;}
-@list l2
-	{mso-list-id:267591677;
-	mso-list-template-ids:-665690670;}
-@list l3
-	{mso-list-id:297878226;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1290409668 67698691 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:974219966;
-	mso-list-template-ids:2113853940;}
-@list l5
-	{mso-list-id:985623800;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1387151514 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
-@list l5:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:1029720438;
-	mso-list-template-ids:355487190;}
-@list l7
-	{mso-list-id:1184899670;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-45207776 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
-@list l7:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:1224634209;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1234604792 67698691 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1356535618;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-556531444 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
-@list l9:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10
-	{mso-list-id:1490828746;
-	mso-list-type:hybrid;
-	mso-list-template-ids:2099921038 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
-@list l10:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11
-	{mso-list-id:1512450557;
-	mso-list-template-ids:236911118;}
-@list l12
-	{mso-list-id:1669483133;
-	mso-list-template-ids:-941987204;}
-@list l13
-	{mso-list-id:1969629405;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1313463162 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
-@list l13:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14
-	{mso-list-id:1975402694;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1530842176 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
-@list l14:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15
-	{mso-list-id:2054108931;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1688889934 67698691 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l15:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l15:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableSimple2
-	{mso-style-name:"Table Simple 2";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableSimple2FirstRow
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:first-row;
-	mso-tstyle-border-bottom:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2LastRow
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:last-row;
-	mso-tstyle-border-top:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2FirstCol
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:first-column;
-	mso-tstyle-border-right:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2LastCol
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:last-column;
-	mso-tstyle-border-left:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2NECell
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:ne-cell;
-	mso-tstyle-border-left:0in none windowtext;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2SWCell
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:sw-cell;
-	mso-tstyle-border-top:0in none windowtext;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableClassic1
-	{mso-style-name:"Table Classic 1";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	border-top:solid black 1.5pt;
-	border-left:none;
-	border-bottom:solid black 1.5pt;
-	border-right:none;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableClassic1FirstRow
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:first-row;
-	mso-tstyle-border-bottom:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-style:italic;
-	mso-bidi-font-style:italic;}
-table.MsoTableClassic1LastRow
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:last-row;
-	mso-tstyle-border-top:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;}
-table.MsoTableClassic1FirstCol
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:first-column;
-	mso-tstyle-border-right:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;}
-table.MsoTableClassic1NECell
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:ne-cell;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;
-	mso-ansi-font-style:normal;
-	mso-bidi-font-style:normal;}
-table.MsoTableClassic1SWCell
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:sw-cell;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableList1
-	{mso-style-name:"Table List 1";
-	mso-tstyle-rowband-size:1;
-	mso-tstyle-colband-size:0;
-	border-top:1.5pt;
-	border-left:1.0pt;
-	border-bottom:1.5pt;
-	border-right:1.0pt;
-	border-color:teal;
-	border-style:solid;
-	mso-border-top-alt:1.5pt;
-	mso-border-left-alt:.75pt;
-	mso-border-bottom-alt:1.5pt;
-	mso-border-right-alt:.75pt;
-	mso-border-color-alt:teal;
-	mso-border-style-alt:solid;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableList1FirstRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:first-row;
-	mso-tstyle-shading:white;
-	mso-tstyle-pattern:solid silver;
-	mso-tstyle-border-bottom:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:maroon;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;
-	mso-ansi-font-style:italic;
-	mso-bidi-font-style:italic;}
-table.MsoTableList1LastRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:last-row;
-	mso-tstyle-border-top:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;}
-table.MsoTableList1OddRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:odd-row;
-	mso-tstyle-shading:white;
-	mso-tstyle-pattern:solid silver;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;}
-table.MsoTableList1EvenRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:even-row;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;}
-table.MsoTableList1SWCell
-	{mso-style-name:"Table List 1";
-	mso-table-condition:sw-cell;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableList4
-	{mso-style-name:"Table List 4";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	border:solid black 1.5pt;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-border-insideh:.75pt solid black;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableList4FirstRow
-	{mso-style-name:"Table List 4";
-	mso-table-condition:first-row;
-	mso-tstyle-shading:white;
-	mso-tstyle-pattern:solid gray;
-	mso-tstyle-border-bottom:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableGrid
-	{mso-style-name:"Table Grid";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	border:solid windowtext 1.0pt;
-	mso-border-alt:solid windowtext .5pt;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-border-insideh:.5pt solid windowtext;
-	mso-border-insidev:.5pt solid windowtext;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]><!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="66562"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=purple style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<p class=MsoNormal align=right style='text-align:right'><span style='font-size:
-10.0pt'>Copyright © 2007 International Business Machines Corp.</span><span
-style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></p>
-
-<div align=right>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width="100%"
- style='width:100.0%;mso-cellspacing:0in;mso-padding-alt:1.5pt 1.5pt 1.5pt 1.5pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td valign=top style='background:#0080C0;padding:1.5pt 1.5pt 1.5pt 1.5pt'>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;font-family:Arial;
-  color:white'>&nbsp;</span></b><span style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></p>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<h1><img width=120 height=86 id="_x0000_i1025" src="../../../../images/Idea.jpg"
-align=CENTER></h1>
-
-<p>&nbsp;</p>
-
-<h1 align=center style='text-align:center'>Defining Generics with UML Templates</h1>
-
-<h1 align=center style='text-align:center'><o:p>&nbsp;</o:p></h1>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:Arial'>Summary</span></b><span
-style='font-size:10.0pt;font-family:Arial'><br style='mso-special-character:
-line-break'>
-<![if !supportLineBreakNewLine]><br style='mso-special-character:line-break'>
-<![endif]><o:p></o:p></span></p>
-
-<p>Generics in Java have been around for a while but support for mapping
-generically specified artifacts in UML to their Ecore representation is new to
-UML2 2.1.<span style='mso-spacerun:yes'>  </span>This article will walk the
-reader through the details of the mapping process with the end goal of
-producing generically specified code. This article assumes some level of
-familiarity with generics and is not intended as a tutorial in Java
-generics.<span style='mso-spacerun:yes'>  </span></p>
-
-<p>This article might also be useful to readers who are only interested in how
-generics can be specified with UML.<span style='mso-spacerun:yes'>  </span>In
-such cases, the reader can simply ignore the Ecore mapping and focus on the UML
-and Java representations.</p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p><b>By James Bruck, IBM </b><br>
-<st1:date Month="9" Day="12" Year="2007">September 12, 2007</st1:date> </p>
-
-</blockquote>
-
-<div class=MsoNormal align=center style='text-align:center'><span
-style='font-size:10.0pt;font-family:Arial'>
-
-<hr size=2 width="100%" align=center>
-
-</span></div>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2>Glossary</h2>
-
-<p>A few terms and abbreviations will be used throughout this document.</p>
-
-<table class=MsoTableList4 border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-alt:solid black 1.5pt;
- mso-yfti-tbllook:160;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-insideh:
- .75pt solid black'>
- <tr style='mso-yfti-irow:-1'>
-  <td width=168 valign=top style='width:125.75pt;border:solid black 1.5pt;
-  border-right:none;background:gray;mso-shading:white;mso-pattern:solid gray;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:1'><b><span style='color:white'>Term<o:p></o:p></span></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border:solid black 1.5pt;
-  border-left:none;background:gray;mso-shading:white;mso-pattern:solid gray;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:1'><b><span style='color:white'>Definition<o:p></o:p></span></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.5pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>UML specification<o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p>This refers to the latest version of the UML API which is based on the UML
-  2.1.1 specification defined by OMG</p>
-  <p>The latest draft of the UML Superstructure Specification can be found at: <a
-  href="http://www.omg.org/docs/formal/07-02-05.pdf">http://www.omg.org/docs/formal/07-02-05.pdf</a></p>
-  <p><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
-</table>
-
-<h2>Introduction</h2>
-
-<p>There are two main benefits in familiarizing yourself with UML templates:
-firstly, you can express and communicate your ideas more accurately, and
-secondly, code generated via conversion through Ecore will result in
-generically specified Java.<span style='mso-spacerun:yes'>  </span>Through a
-series of examples, this article attempts to explain how templates in UML map
-to generics in Ecore and Java.<span style='mso-spacerun:yes'>  </span></p>
-
-<p>Some concepts involving generics in UML do not map directly to Java (or
-Ecore).<span style='mso-spacerun:yes'>   </span>In general, UML is more verbose
-and requires a modeler to create more constructs to convey ideas that would
-otherwise be more simply described in Java (or Ecore).</p>
-
-<p>Consider template bindings for example: template bindings are constructs
-that do not explicitly exist in Java (or Ecore).<span
-style='mso-spacerun:yes'>   </span>The template binding concept in UML can be
-considered to be a “merging” of <span class=SpellE>templateable</span> items
-into the bound item where actual parameters are substituted for formal
-parameters.<span style='mso-spacerun:yes'>  </span>More about this in the
-section entitled “<a href="#_Some_UML_Basics">Some UML Basics</a>”.</p>
-
-<p>Concrete classifiers that result from applying template bindings to a <span
-class=SpellE>templated</span> classifier can also be considered an “artificial”
-construct required by UML.<span style='mso-spacerun:yes'>  </span>Such
-additional classifiers are not needed when describing generics in Java (or
-Ecore).<span style='mso-spacerun:yes'>  </span>The examples listed later in
-this document will explain these ideas in detail.</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2>Enhanced Ecore Profile</h2>
-
-<p>The mapping from UML to Ecore as implemented in the UML2 2.1 API is intended
-to be a lossless conversion.<span style='mso-spacerun:yes'>  </span>Round
-tripping from UML to Ecore and back again should produce the original UML
-model.<span style='mso-spacerun:yes'>  </span>To achieve this lossless
-conversion, concepts present in Ecore, but not in UML have been added to an
-enhanced Ecore profile.<span style='mso-spacerun:yes'>   </span>The information
-added to stereotyped items will be reapplied when converting back.</p>
-
-<p>What UML does not capture that Ecore does:</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l8 level1 lfo2;
-tab-stops:list .5in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Multiple
-bounds on <span class=SpellE>ETypeParameters</span>.<span
-style='mso-spacerun:yes'>  </span>The &lt;&lt;<span class=SpellE>eTypeParameter</span>&gt;&gt;
-stereotype has been created for this purpose.</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l8 level1 lfo2;
-tab-stops:list .5in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>Upper
-and lower bounds on <span class=SpellE>EGenericTypes</span>. (It should be
-pointed out that it is possible to specify a single bound on type parameters in
-UML via the <span class=SpellE>ClassifierTemplateParameter::constrainingClassifier</span>
-property but this is currently a scalar value).<span style='mso-spacerun:yes'> 
-</span>The &lt;&lt;<span class=SpellE>eGenericType</span>&gt;&gt; stereotype
-has been created for this purpose.</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l8 level1 lfo2;
-tab-stops:list .5in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>UML
-requires “additional” classifiers to specify bound generic types.<span
-style='mso-spacerun:yes'>  </span>These need to be marked in order to remove
-them when converting from UML to Ecore.<span style='mso-spacerun:yes'> 
-</span>The &lt;&lt;<span class=SpellE>eGenericType</span>&gt;&gt; stereotype is
-used as a marker so that conversion from UML to Ecore will result in dropping
-elements with such stereotypes.</p>
-
-<p>The subset of newly added stereotypes to the Ecore profile is shown in the
-following diagram:</p>
-
-<p><!--[if gte vml 1]><v:shapetype id="_x0000_t75" coordsize="21600,21600"
- o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
- stroked="f">
- <v:stroke joinstyle="miter"/>
- <v:formulas>
-  <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-  <v:f eqn="sum @0 1 0"/>
-  <v:f eqn="sum 0 0 @1"/>
-  <v:f eqn="prod @2 1 2"/>
-  <v:f eqn="prod @3 21600 pixelWidth"/>
-  <v:f eqn="prod @3 21600 pixelHeight"/>
-  <v:f eqn="sum @0 0 1"/>
-  <v:f eqn="prod @6 1 2"/>
-  <v:f eqn="prod @7 21600 pixelWidth"/>
-  <v:f eqn="sum @8 21600 0"/>
-  <v:f eqn="prod @7 21600 pixelHeight"/>
-  <v:f eqn="sum @10 21600 0"/>
- </v:formulas>
- <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" aspectratio="t"/>
-</v:shapetype><v:shape id="_x0000_i1027" type="#_x0000_t75" style='width:573.75pt;
- height:230.25pt'>
- <v:imagedata src="article_files/image001.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=765 height=307
-src="article_files/image002.jpg" v:shapes="_x0000_i1027"><![endif]></p>
-
-<p>While we are on the topic of differences between Ecore and UML we should
-mention that UML has some ‘quirkiness’ in the area of templates.<span
-style='mso-spacerun:yes'>  </span>In the current version of the UML
-specification, UML has multiple actual parameters per formal parameter.<span
-style='mso-spacerun:yes'>   </span>It is unclear how multiple parameters could
-be substituted for one formal parameter.<span style='mso-spacerun:yes'> 
-</span>The conversion process therefore considers only one actual per formal
-parameter.<span style='mso-spacerun:yes'>  </span>An <a
-href="http://www.omg.org/issues/uml2-rtf.open.html#Issue9398">issue</a> for this
-has been raised at OMG and should be resolved by the next revision of the UML
-specification.</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2><a name="_Some_UML_Basics"></a>Some UML Basics</h2>
-
-<p>UML allows users to model generics via templates and template bindings.<span
-style='mso-spacerun:yes'>   </span>Section 17.5 of the UML superstructure
-specification describes all the constructs required to describe templates.</p>
-
-<p>Quoting from the UML superstructure specificationÂ…</p>
-
-<p><i style='mso-bidi-font-style:normal'>A <span class=SpellE>TemplateableElement</span>
-that has a template signature is a specification of a template.<span
-style='mso-spacerun:yes'>  </span>A template is a parameterized element that
-can be used to generate other model elements using <span class=SpellE>TemplateBinding</span>
-relationships.<span style='mso-spacerun:yes'>   </span><span class=SpellE>TemplateableElements</span>
-can have template signatures and template bindings.<span
-style='mso-spacerun:yes'>  </span>Thus a <span class=SpellE>templateable</span>
-element may be both a template and a bound element.<span
-style='mso-spacerun:yes'>    </span>The template parameters for the template
-signature specify the formal parameters that will be substituted by actual
-parameters in a binding.<o:p></o:p></i></p>
-
-<p><i style='mso-bidi-font-style:normal'>A template cannot be used in the same
-manner as a non-template element of the same kind.<span
-style='mso-spacerun:yes'>   </span>The template element can only be used to
-generate bound elements or as part of the specification of another
-template.<span style='mso-spacerun:yes'>  </span>A bound element is an ordinary
-element and can be used in the same manner as a non-bound element of the same
-kind.<span style='mso-spacerun:yes'>  </span></i>This is an important point
-since it means that a template class cannot be used as the type of a typed
-element.</p>
-
-<p><span class=SpellE><i style='mso-bidi-font-style:normal'>ParameterableElement</i></span><i
-style='mso-bidi-font-style:normal'> is an element that can be exposed as a
-formal template parameter for a template or specified as an actual parameter in
-a binding of a template.<span style='mso-spacerun:yes'>  </span>A <span
-class=SpellE>ParameterableElement</span> may be part of the definition of a template
-parameter.<span style='mso-spacerun:yes'>  </span>In an element bound to the
-template, any use of the template parameter will be substituted by the use of
-the actual parameter.<span style='mso-spacerun:yes'>  </span>If a <span
-class=SpellE>ParameterableElement</span> is exposed as a template parameter,
-then <span class=SpellE>parameterable</span> element is only meaningful within
-the template.<o:p></o:p></i></p>
-
-<p><i style='mso-bidi-font-style:normal'>A <span class=SpellE>TemplateBinding</span>
-represents a relationship between a <span class=SpellE>templateable</span>
-element and a template.<span style='mso-spacerun:yes'>   </span>A template
-binding specifies the substitutions of actual parameters for the formal
-parameters of the template.<span style='mso-spacerun:yes'>  </span>The presence
-of a template binding relationship implies the same semantics as if the
-contents of the template owning the target template signature were copied into
-the bound element, substituting and elements exposed as formal template
-parameters by the corresponding elements specified as actual parameters in the
-binding.<o:p></o:p></i></p>
-
-<p>The kinds of UML metatypes that can be <span class=SpellE>templateable</span>
-are Classifier (Class, Component etc.), Operation, Package and less commonly,
-Property, and <span class=SpellE>StringExpression</span>.</p>
-
-<p>Neither <span class=SpellE>Ecore</span> nor Java has this template binding
-concept so having a firm grasp of the UML metamodel is important if you are
-only familiar with generics in Java.</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2>The Ecore Meta-Model</h2>
-
-<p>The following diagram showing a subset of the Ecore metamodel (highlighting
-generics) will be used as a reference when describing the UML to Ecore
-mapping.<span style='mso-spacerun:yes'>   </span></p>
-
-<h2 style='margin-left:8.5pt;page-break-after:avoid'><span style='font-size:
-10.0pt;mso-bidi-font-size:18.0pt;font-family:"Tms Rmn"'><!--[if gte vml 1]><v:shape
- id="_x0000_i1028" type="#_x0000_t75" style='width:420.75pt;height:411pt'>
- <v:imagedata src="article_files/image003.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=561 height=548
-src="article_files/image004.jpg" v:shapes="_x0000_i1028"><![endif]></span></h2>
-
-<p class=MsoCaption>Figure <!--[if supportFields]><span style='mso-element:
-field-begin'></span><span style='mso-spacerun:yes'> </span>SEQ Figure \* ARABIC
-<span style='mso-element:field-separator'></span><![endif]--><span
-style='mso-no-proof:yes'>1</span><!--[if supportFields]><span style='mso-element:
-field-end'></span><![endif]-->: Ecore meta-model</p>
-
-<p>With this metamodel in mind, we can mention several interesting points:</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l3 level1 lfo4;
-tab-stops:list .5in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]><span
-class=SpellE>ETypeParameter</span> correspond roughly to <span class=SpellE>TemplateParameter</span>
-in UML.</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l3 level1 lfo4;
-tab-stops:list .5in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]><span
-class=SpellE>EGenericType</span> has no direct mapping to UML</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l3 level1 lfo4;
-tab-stops:list .5in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]><span
-class=SpellE>EGenericType</span> can be specified by setting its <span
-class=SpellE>eClassifier</span> or <span class=SpellE>eTypeParameter</span>
-property.</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l3 level1 lfo4;
-tab-stops:list .5in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]><span
-class=SpellE>EOperation</span> and <span class=SpellE>EClassifier</span> can be
-parameterized with <span class=SpellE>ETypeParameter</span>.<span
-style='mso-spacerun:yes'>   </span>Similarly, Operation and Classifier in UML
-can have a template signature with parameters.</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l3 level1 lfo4;
-tab-stops:list .5in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]><span
-class=SpellE>EClass</span> can have <span class=SpellE>eGenericSuperTypes</span>.<span
-style='mso-spacerun:yes'>  </span>That is, <span class=SpellE>supertypes</span>
-of some <span class=SpellE>EClass</span> can be represented by some <span
-class=SpellE>EGenericType</span>.</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l3 level1 lfo4;
-tab-stops:list .5in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]><span
-class=SpellE>ETypedElement</span> can have some <span class=SpellE>EGenericType</span>
-as a type.</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l3 level1 lfo4;
-tab-stops:list .5in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]><span
-class=SpellE>ETypeParameter</span> can have bounds which are of type <span
-class=SpellE>EGenericType</span>.</p>
-
-<p>If you wish to follow along with the examples and experiment on your own,
-you should first enable the showing of generics for your Ecore model.</p>
-
-<p>Showing of generics is enabled from the “Sample Ecore Editor” menu when the
-Ecore editor is being used:<span style='mso-spacerun:yes'>  </span>From the
-toolbar, select “<b style='mso-bidi-font-weight:normal'>Sample Ecore Editor
-&gt; Show Generics</b>”.</p>
-
-<p><span style='mso-tab-count:1'>         </span><!--[if gte vml 1]><v:shape
- id="_x0000_i1029" type="#_x0000_t75" style='width:110.25pt;height:114pt'>
- <v:imagedata src="article_files/image005.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=147 height=152
-src="article_files/image006.jpg" v:shapes="_x0000_i1029"><![endif]></p>
-
-<p>Further details on working with generics in EMF can be found at <a
-href="http://wiki.eclipse.org/EMF_2.3_Generics">http://wiki.eclipse.org/EMF_2.3_Generics</a>.</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2>Case Studies</h2>
-
-<p><img border=0 width=63 height=14 id="_x0000_i1030"
-src="../../../../images/tip.gif"><span style='mso-spacerun:yes'> </span>If you
-are familiar with generics in Java and you just want to discover how to create
-the equivalent UML representation, I would recommend starting with the Ecore
-representation of your generically specified model.<span
-style='mso-spacerun:yes'>   </span>Then, convert your Ecore model to UML.<span
-style='mso-spacerun:yes'>  </span>The resulting UML model will have expanded
-all bindings, and any required stereotypes will be applied.<span
-style='mso-spacerun:yes'>  </span>The reason for starting with Ecore is that it
-is much easier to specify generics using Ecore and requires fewer constructs.</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo6;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>1.<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]>In your development environment, ensure you have
-the UML examples plug-ins installed.</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo6;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>2.<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]>Create an Ecore model using generics in
-Ecore.<span style='mso-spacerun:yes'>  </span>The resulting Ecore model should
-closely match the Java representation.</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo6;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>3.<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]>From the sample Ecore editor, select the root
-package of your Ecore model.</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo6;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>4.<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]>From the toolbar select “<b style='mso-bidi-font-weight:
-normal'>Sample Ecore Editor &gt; Convert to UML Model …”</b></p>
-
-<p><span style='mso-spacerun:yes'>  </span></p>
-
-<div style='border:none;border-bottom:solid windowtext 1.5pt;padding:0in 0in 1.0pt 0in'>
-
-<h3 style='border:none;mso-border-bottom-alt:solid windowtext 1.5pt;padding:
-0in;mso-padding-alt:0in 0in 1.0pt 0in'>Baby steps: Simple type parameter</h3>
-
-</div>
-
-<p>Consider a simple case where we define a generic class with one property of
-some generic type.</p>
-
-<h4>Visually</h4>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1031" type="#_x0000_t75" style='width:132.75pt;
- height:60pt'>
- <v:imagedata src="article_files/image007.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=177 height=80
-src="article_files/image008.jpg" v:shapes="_x0000_i1031"><![endif]></p>
-
-<h4>Java</h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p><code><span style='color:gray'>1</span>&nbsp;<b><span style='color:#7F0055'>public&nbsp;interface&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>MyClass</span></span><span
-  style='color:black'>&lt;E&gt;&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>EObject</span></span><span
-  style='color:black'>&nbsp;{</span></code><span style='font-family:"Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><span
-  style='color:black'>E&nbsp;<span class=SpellE>getMyProperty</span>();</span></code><br>
-  <code><span style='color:gray'>3</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><b><span
-  style='color:#7F0055'>void&nbsp;</span></b><span class=SpellE><span
-  style='color:black'>setMyProperty</span></span><span style='color:black'>(E&nbsp;value);</span></code><br>
-  <code><span style='color:gray'>4</span>&nbsp;<span style='color:black'>}</span></code></span></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=598 valign=top style='width:448.8pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><code><span style='font-size:10.0pt;color:gray'>1</span></code><code><span
-  style='font-size:10.0pt'>&nbsp;<b><span style='color:#7F0055'>public&nbsp;class&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>MyClassImpl</span></span><span
-  style='color:black'>&lt;E&gt;&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>EObjectImpl</span></span><span
-  style='color:black'>&nbsp;</span><b><span style='color:#7F0055'>implements&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>MyClass</span></span><span
-  style='color:black'>&lt;E&gt;&nbsp;{</span></span></code><span
-  style='font-size:10.0pt;font-family:"Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><b><span
-  style='color:#7F0055'>protected&nbsp;</span></b><span style='color:black'>E&nbsp;<span
-  class=SpellE>myProperty</span>;</span></code><br>
-  <code><span style='color:gray'>3</span>&nbsp;<span style='color:black'>}</span></code></span>
-  </p>
-  </td>
-<!-- end source code -->
- </tr>
-</table>
-
-<h4>Ecore</h4>
-
-<p>The Ecore representation would look like the following:</p>
-
-<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt;
- mso-yfti-tbllook:480;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-insideh:
- .5pt solid windowtext;mso-border-insidev:.5pt solid windowtext'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=216 valign=top style='width:162.1pt;border:solid windowtext 1.0pt;
-  mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><!--[if gte vml 1]><v:shape id="_x0000_i1032" type="#_x0000_t75"
-   style='width:138pt;height:80.25pt;mso-position-horizontal:left;
-   mso-position-horizontal-relative:text;mso-position-vertical:top;
-   mso-position-vertical-relative:line' o:allowoverlap="f">
-   <v:imagedata src="article_files/image009.png" o:title=""/>
-  </v:shape><![endif]--><![if !vml]><img border=0 width=184 height=107
-  src="article_files/image010.jpg" v:shapes="_x0000_i1032"><![endif]></p>
-  </td>
-  <td width=612 style='width:459.0pt;border:solid windowtext 1.0pt;border-left:
-  none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <ol style='margin-top:0in' start=1 type=1>
-   <li class=MsoNormal style='mso-list:l9 level1 lfo9;tab-stops:list .5in'>We
-       create a simple <span class=SpellE>EClass</span> with an <span
-       class=SpellE>ETypeParameter</span> <i style='mso-bidi-font-style:normal'>E</i>.</li>
-   <li class=MsoNormal style='mso-list:l9 level1 lfo9;tab-stops:list .5in'>We
-       create an <span class=SpellE>EReference</span> whose type is an <span
-       class=SpellE>EGenericType</span> with <span class=SpellE>eTypeParameter</span>
-       set to <i style='mso-bidi-font-style:normal'>E</i>.</li>
-  </ol>
-  <p class=MsoNormal style='margin-left:.25in'><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
-</table>
-
-<h4>UML</h4>
-
-<p>As you can see, the UML representation is more verbose than the Ecore
-representation. </p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l15 level1 lfo11;
-tab-stops:list .5in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>The
-UML representation creates a template by constructing a template signature
-owned by <span class=SpellE><i style='mso-bidi-font-style:normal'>MyClass</i></span>.<span
-style='mso-spacerun:yes'>  </span></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l15 level1 lfo11;
-tab-stops:list .5in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>The
-signature in this case has one template parameter <i style='mso-bidi-font-style:
-normal'>E</i>.<span style='mso-spacerun:yes'>  </span></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l15 level1 lfo11;
-tab-stops:list .5in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp; </span></span></span><![endif]>The
-template parameter directly owns another class <i style='mso-bidi-font-style:
-normal'>E</i> and uses that class as its <span class=SpellE>parametered</span>
-element.<span style='mso-spacerun:yes'>  </span></p>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1033" type="#_x0000_t75" style='width:294.75pt;
- height:90.75pt'>
- <v:imagedata src="article_files/image011.gif" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=393 height=121
-src="article_files/image011.gif" v:shapes="_x0000_i1033"><![endif]><span
-style='mso-spacerun:yes'>      </span></p>
-
-<p>The class <i style='mso-bidi-font-style:normal'>E</i> is the <span
-class=SpellE>parametered</span> element that will be the focus of bindings when
-we replace formal parameters with actual parameters.<span
-style='mso-spacerun:yes'>    </span>We can say that the template parameter
-‘exposes’ the <span class=SpellE>parametered</span> element (<i
-style='mso-bidi-font-style:normal'>E</i> in this case) as a formal
-parameter.<span style='mso-spacerun:yes'>  </span></p>
-
-<p>You may have also noticed the &lt;&lt;<span class=SpellE><i
-style='mso-bidi-font-style:normal'>eTypeParameter</i></span>&gt;&gt;
-stereotype.<span style='mso-spacerun:yes'>  </span>The &lt;&lt;<span
-class=SpellE><i style='mso-bidi-font-style:normal'>eTypeParameter</i></span>&gt;&gt;
-stereotype contributes the concept of “bounds” to UML template parameters.<span
-style='mso-spacerun:yes'>  </span>In Ecore, generic bound types allow one to
-place constraints on the types of allowable substitutions.<span
-style='mso-spacerun:yes'>   </span>For example, one could express that substitutions
-for the template parameter must extend some particular classifier such as <span
-class=SpellE><i style='mso-bidi-font-style:normal'>MyClass</i></span><i
-style='mso-bidi-font-style:normal'>&lt;? <span class=GramE>extends</span> <span
-class=SpellE>MyOtherClass</span>&gt;.</i><span style='mso-spacerun:yes'>  
-</span>This will be explored more in the following examples.</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<div style='border:none;border-bottom:solid windowtext 1.5pt;padding:0in 0in 1.0pt 0in'>
-
-<h3 style='border:none;mso-border-bottom-alt:solid windowtext 1.5pt;padding:
-0in;mso-padding-alt:0in 0in 1.0pt 0in'>Baby steps: Creating a generic type</h3>
-
-</div>
-
-<p>In a little more realistic example, we might have something like the
-following.</p>
-
-<h4>Visually</h4>
-
-<p><span style='mso-bidi-font-size:14.0pt'><!--[if gte vml 1]><v:shape id="_x0000_i1034"
- type="#_x0000_t75" style='width:279pt;height:88.5pt'>
- <v:imagedata src="article_files/image012.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=372 height=118
-src="article_files/image013.jpg" v:shapes="_x0000_i1034"><![endif]></span><span
-style='mso-spacerun:yes'>  </span><span style='mso-bidi-font-size:14.0pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1035" type="#_x0000_t75" style='width:255.75pt;height:93pt'>
- <v:imagedata src="article_files/image014.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=341 height=124
-src="article_files/image015.jpg" v:shapes="_x0000_i1035"><![endif]></span></p>
-
-<h4><span lang=FR style='mso-ansi-language:FR'>Java<o:p></o:p></span></h4>
-
-<p class=MsoNormal><span lang=FR style='mso-ansi-language:FR'><o:p>&nbsp;</o:p></span></p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><code><span style='font-size:10.0pt;color:gray'>1</span></code><code><span
-  style='font-size:10.0pt'>&nbsp;<b><span style='color:#7F0055'>public&nbsp;interface&nbsp;</span></b><span
-  style='color:black'>List&lt;E&gt;&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>EObject</span></span><span
-  style='color:black'>&nbsp;{</span></span></code><span style='font-size:10.0pt;
-  font-family:"Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><b><span
-  style='color:#7F0055'>void&nbsp;</span></b><span style='color:black'>add(E&nbsp;x);</span></code><br>
-  <code><span style='color:gray'>3</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><span
-  class=SpellE><span style='color:black'>Iterator</span></span><span
-  style='color:black'>&lt;E&gt;&nbsp;<span class=SpellE>iterator</span>();</span></code><br>
-  <code><span style='color:gray'>4</span>&nbsp;<span style='color:black'>}&nbsp;</span></code></span>
-  </p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><code><span style='font-size:10.0pt;color:gray'>1</span></code><code><span
-  style='font-size:10.0pt'>&nbsp;<b><span style='color:#7F0055'>public&nbsp;interface&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>Iterator</span></span><span
-  style='color:black'>&lt;E&gt;&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>EObject</span></span><span
-  style='color:black'>&nbsp;{</span></span></code><span style='font-size:10.0pt;
-  font-family:"Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><span
-  style='color:black'>E&nbsp;next();</span></code><br>
-  <code><span style='color:gray'>3</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><span
-  class=SpellE><b><span style='color:#7F0055'>boolean</span></b></span><b><span
-  style='color:#7F0055'>&nbsp;</span></b><span class=SpellE><span
-  style='color:black'>hasNext</span></span><span style='color:black'>();</span></code><br>
-  <code><span style='color:gray'>4</span>&nbsp;<span style='color:black'>}&nbsp;</span></code></span>
-  </p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h4>Ecore</h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt;
- mso-yfti-tbllook:480;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-insideh:
- .5pt solid windowtext;mso-border-insidev:.5pt solid windowtext'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=216 valign=top style='width:162.1pt;border:solid windowtext 1.0pt;
-  mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><!--[if gte vml 1]><v:shape id="_x0000_i1036" type="#_x0000_t75"
-   style='width:139.5pt;height:182.25pt'>
-   <v:imagedata src="article_files/image016.png" o:title=""/>
-  </v:shape><![endif]--><![if !vml]><img border=0 width=186 height=243
-  src="article_files/image017.jpg" v:shapes="_x0000_i1036"><![endif]></p>
-  </td>
-  <td width=612 style='width:459.0pt;border:solid windowtext 1.0pt;border-left:
-  none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <ol style='margin-top:0in' start=1 type=1>
-   <li class=MsoNormal style='mso-list:l14 level1 lfo14;tab-stops:list .5in'>We
-       create an <span class=SpellE>ETypeParameter</span> for the <span
-       class=SpellE>EClass</span> <i style='mso-bidi-font-style:normal'>List</i></li>
-   <li class=MsoNormal style='mso-list:l14 level1 lfo14;tab-stops:list .5in'>We
-       create an <span class=SpellE>EOperation</span> <span class=GramE><i
-       style='mso-bidi-font-style:normal'>add(</i></span><i style='mso-bidi-font-style:
-       normal'>)</i> with a parameter <i style='mso-bidi-font-style:normal'>x</i>
-       of <span class=SpellE>EGenericType</span> <i style='mso-bidi-font-style:
-       normal'>E</i>.</li>
-   <li class=MsoNormal style='mso-list:l14 level1 lfo14;tab-stops:list .5in'>We
-       create another <span class=SpellE>EOperation</span> <span class=SpellE><span
-       class=GramE><i style='mso-bidi-font-style:normal'>iterator</i></span></span><span
-       class=GramE><i style='mso-bidi-font-style:normal'>(</i></span><i
-       style='mso-bidi-font-style:normal'>) </i>of return type <span
-       class=SpellE><i style='mso-bidi-font-style:normal'>Iterator</i></span><i
-       style='mso-bidi-font-style:normal'>&lt;E&gt;.<span
-       style='mso-spacerun:yes'>  </span></i>Here the return type is an <span
-       class=SpellE>EGenericType</span> whose <span class=SpellE>eClassifier</span>
-       is set to <span class=SpellE><i style='mso-bidi-font-style:normal'>Iterator</i></span><i
-       style='mso-bidi-font-style:normal'>&lt;E&gt;.</i><span
-       style='mso-spacerun:yes'>  </span>The <span class=SpellE>EGenericType</span>
-       has an <span class=SpellE>eTypeAgrument</span> (<span class=SpellE>EGenericType</span>)
-       whose <span class=SpellE>eTypeParameter</span> is set to <i
-       style='mso-bidi-font-style:normal'>E</i>.</li>
-   <li class=MsoNormal style='mso-list:l14 level1 lfo14;tab-stops:list .5in'>The
-       <span class=SpellE><i style='mso-bidi-font-style:normal'>Iterator</i></span>
-       is similarly specified.</li>
-  </ol>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h4>UML</h4>
-
-<p>The main elements in the UML representation are: a class called <i
-style='mso-bidi-font-style:normal'>List</i>, a class called <span class=SpellE><i
-style='mso-bidi-font-style:normal'>Iterator</i></span> and a newly introduced
-class called <span class=SpellE><i style='mso-bidi-font-style:normal'>Iterator_E</i></span>,
-see below.</p>
-
-<h4><!--[if gte vml 1]><v:shape id="_x0000_i1037" type="#_x0000_t75" style='width:297pt;
- height:267.75pt'>
- <v:imagedata src="article_files/image018.gif" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=396 height=357
-src="article_files/image018.gif" v:shapes="_x0000_i1037"><![endif]></h4>
-
-<p>You might be scratching your head about <span class=SpellE><i
-style='mso-bidi-font-style:normal'>Iterator_E</i></span>.<span
-style='mso-spacerun:yes'>    </span>This construct is required because the
-class <i style='mso-bidi-font-style:normal'>List</i> has an operation that
-returns an <span class=SpellE>iterator</span> that is bound to the same element
-passed as an argument to “List” itself.<span style='mso-spacerun:yes'>  
-</span>UML does not allow us to use templates as the type of an <span
-class=GramE>element,</span> therefore we need to create a new bound class: <span
-class=SpellE><i style='mso-bidi-font-style:normal'>Iterator_E</i></span>.</p>
-
-<p>The template parameter substitution for <span class=SpellE><i
-style='mso-bidi-font-style:normal'>Iterator_<span class=GramE>E</span></i></span><span
-class=GramE><span style='mso-spacerun:yes'>  </span>above</span> has the
-following binding:</p>
-
-<p><span style='mso-spacerun:yes'> </span><!--[if gte vml 1]><v:shape id="_x0000_i1038"
- type="#_x0000_t75" style='width:288.75pt;height:24.75pt'>
- <v:imagedata src="article_files/image019.gif" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=385 height=33
-src="article_files/image019.gif" v:shapes="_x0000_i1038"><![endif]>.<span
-style='mso-spacerun:yes'>  </span></p>
-
-<p>The formal template parameter for <span class=SpellE><i style='mso-bidi-font-style:
-normal'>Iterator</i></span><i style='mso-bidi-font-style:normal'>&lt;E&gt;</i>
-is bound to the actual parameter <i style='mso-bidi-font-style:normal'>E</i> of
-<i style='mso-bidi-font-style:normal'>List</i>.</p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<div style='border:none;border-bottom:solid windowtext 1.5pt;padding:0in 0in 1.0pt 0in'>
-
-<h3 style='border:none;mso-border-bottom-alt:solid windowtext 1.5pt;padding:
-0in;mso-padding-alt:0in 0in 1.0pt 0in'>Basics: Binding to a generic class</h3>
-
-</div>
-
-<p>LetÂ’s put together some of the basic ideas we have already explored.<span
-style='mso-spacerun:yes'>  </span>In this example, <span class=SpellE><i
-style='mso-bidi-font-style:normal'>ArrayList</i></span><i style='mso-bidi-font-style:
-normal'>&lt;E&gt;</i> is a generic array list whose super type is the generic <i
-style='mso-bidi-font-style:normal'>List&lt;E&gt;.</i><span
-style='mso-spacerun:yes'>  </span>In UML we require the creation of the
-concrete type <span class=SpellE><i style='mso-bidi-font-style:normal'>List_E</i></span>
-with its bindings set up.<span style='mso-spacerun:yes'>  </span>In addition, <span
-class=SpellE><i style='mso-bidi-font-style:normal'>TestClass</i></span> has a
-property which is an <span class=SpellE><i style='mso-bidi-font-style:normal'>ArrayList</i></span>
-of Cars.<span style='mso-spacerun:yes'>   </span>Again, we create a new class <span
-class=SpellE><i style='mso-bidi-font-style:normal'>ArrayList</i>_<i
-style='mso-bidi-font-style:normal'>Car</i></span> with bindings set up to the
-class <i style='mso-bidi-font-style:normal'>Car</i>.</p>
-
-<h4>Visually</h4>
-
-<h4><span style='font-weight:normal'><!--[if gte vml 1]><v:shape id="_x0000_i1039"
- type="#_x0000_t75" style='width:740.25pt;height:221.25pt'>
- <v:imagedata src="article_files/image020.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=987 height=295
-src="article_files/image021.jpg" v:shapes="_x0000_i1039"><![endif]></span></h4>
-
-<h4>Java</h4>
-
-<p>The <span class=SpellE><i style='mso-bidi-font-style:normal'>TestClass</i></span>
-class:</p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><code><span style='font-size:10.0pt;color:gray'>1</span></code><code><span
-  style='font-size:10.0pt'>&nbsp;<b><span style='color:#7F0055'>public&nbsp;interface&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>TestClass</span></span><span
-  style='color:black'>&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>EObject</span></span><span
-  style='color:black'>&nbsp;{</span></span></code><span style='font-size:10.0pt;
-  font-family:"Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><span
-  class=SpellE><span style='color:black'>ArrayList</span></span><span
-  style='color:black'>&lt;Car&gt;&nbsp;<span class=SpellE>getMyCars</span>();</span></code><br>
-  <code><span style='color:gray'>3</span>&nbsp;<span style='color:black'>}&nbsp;</span></code></span></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p><code><span style='color:gray'>1</span>&nbsp;<b><span style='color:#7F0055'>public&nbsp;class&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>TestClassImpl</span></span><span
-  style='color:black'>&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>EObjectImpl</span></span><span
-  style='color:black'>&nbsp;</span><b><span style='color:#7F0055'>implements&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>TestClass</span></span><span
-  style='color:black'>&nbsp;{</span></code><span style='font-family:"Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><b><span
-  style='color:#7F0055'>protected&nbsp;</span></b><span class=SpellE><span
-  style='color:black'>ArrayList</span></span><span style='color:black'>&lt;Car&gt;&nbsp;<span
-  class=SpellE>myCars</span>;</span></code><br>
-  <code><span style='color:gray'>3</span>&nbsp;<span style='color:black'>}</span></code></span>
-  </p>
-  </td>
-<!-- end source code -->
- </tr>
-<!-- start Java2Html link -->
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<p>The <span class=SpellE><i style='mso-bidi-font-style:normal'>ArrayList</i></span>
-class:</p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p><code><span style='color:gray'>1</span>&nbsp;<b><span style='color:#7F0055'>public&nbsp;interface&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>ArrayList</span></span><span
-  style='color:black'>&lt;E&gt;&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  style='color:black'>List&lt;E&gt;&nbsp;{</span></code><span style='font-family:
-  "Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:black'>}&nbsp;</span></code></span></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p><code><span style='color:gray'>1</span>&nbsp;<b><span style='color:#7F0055'>public&nbsp;class&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>ArrayListImpl</span></span><span
-  style='color:black'>&lt;E&gt;&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>ListImpl</span></span><span
-  style='color:black'>&lt;E&gt;&nbsp;</span><b><span style='color:#7F0055'>implements&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>ArrayList</span></span><span
-  style='color:black'>&lt;E&gt;&nbsp;{</span></code><span style='font-family:
-  "Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><b><span
-  style='color:#7F0055'>protected&nbsp;</span></b><span class=SpellE><span
-  style='color:black'>ArrayListImpl</span></span><span style='color:black'>()&nbsp;{</span></code><br>
-  <code><span style='color:gray'>3</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;&nbsp;&nbsp;</span><b><span
-  style='color:#7F0055'>super</span></b><span style='color:black'>();</span></code><br>
-  <code><span style='color:gray'>4</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><span
-  style='color:black'>}</span></code><br>
-  <code><span style='color:gray'>5</span>&nbsp;<span style='color:black'>}&nbsp;</span></code></span></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h4>Ecore</h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><!--[if gte vml 1]><v:shape id="_x0000_i1040" type="#_x0000_t75"
- style='width:137.25pt;height:101.25pt' o:bordertopcolor="this"
- o:borderleftcolor="this" o:borderbottomcolor="this" o:borderrightcolor="this">
- <v:imagedata src="article_files/image022.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=183 height=135
-src="article_files/image023.jpg" v:shapes="_x0000_i1040"><![endif]><span
-style='mso-spacerun:yes'>      </span><!--[if gte vml 1]><v:shape id="_x0000_i1041"
- type="#_x0000_t75" style='width:127.5pt;height:76.5pt' o:bordertopcolor="this"
- o:borderleftcolor="this" o:borderbottomcolor="this" o:borderrightcolor="this">
- <v:imagedata src="article_files/image024.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=170 height=102
-src="article_files/image025.jpg" v:shapes="_x0000_i1041"><![endif]><span
-style='mso-spacerun:yes'>        </span><!--[if gte vml 1]><v:shape id="_x0000_i1042"
- type="#_x0000_t75" style='width:124.5pt;height:51pt' o:bordertopcolor="this"
- o:borderleftcolor="this" o:borderbottomcolor="this" o:borderrightcolor="this">
- <v:imagedata src="article_files/image026.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=166 height=68
-src="article_files/image027.jpg" v:shapes="_x0000_i1042"><![endif]><span
-style='mso-spacerun:yes'>        </span><!--[if gte vml 1]><v:shape id="_x0000_i1043"
- type="#_x0000_t75" style='width:146.25pt;height:53.25pt' o:bordertopcolor="this"
- o:borderleftcolor="this" o:borderbottomcolor="this" o:borderrightcolor="this">
- <v:imagedata src="article_files/image028.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=195 height=71
-src="article_files/image029.jpg" v:shapes="_x0000_i1043"><![endif]><span
-style='mso-spacerun:yes'>     </span><!--[if gte vml 1]><v:shape id="_x0000_i1044"
- type="#_x0000_t75" style='width:69pt;height:14.25pt' o:bordertopcolor="this"
- o:borderleftcolor="this" o:borderbottomcolor="this" o:borderrightcolor="this">
- <v:imagedata src="article_files/image030.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=92 height=19
-src="article_files/image031.jpg" v:shapes="_x0000_i1044"><![endif]></p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h4>UML</h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><!--[if gte vml 1]><v:shape id="_x0000_i1045" type="#_x0000_t75"
- style='width:279.75pt;height:78pt' o:bordertopcolor="this" o:borderleftcolor="this"
- o:borderbottomcolor="this" o:borderrightcolor="this">
- <v:imagedata src="article_files/image032.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=373 height=104
-src="article_files/image033.jpg" v:shapes="_x0000_i1045"><![endif]><span
-style='mso-spacerun:yes'>               </span><!--[if gte vml 1]><v:shape
- id="_x0000_i1046" type="#_x0000_t75" style='width:280.5pt;height:65.25pt'
- o:bordertopcolor="this" o:borderleftcolor="this" o:borderbottomcolor="this"
- o:borderrightcolor="this">
- <v:imagedata src="article_files/image034.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=374 height=87
-src="article_files/image035.jpg" v:shapes="_x0000_i1046"><![endif]></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><!--[if gte vml 1]><v:shape id="_x0000_i1047" type="#_x0000_t75"
- style='width:281.25pt;height:102pt'>
- <v:imagedata src="article_files/image036.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=375 height=136
-src="article_files/image037.jpg" v:shapes="_x0000_i1047"><![endif]><span
-style='mso-spacerun:yes'>                </span><!--[if gte vml 1]><v:shape
- id="_x0000_i1048" type="#_x0000_t75" style='width:273pt;height:65.25pt'>
- <v:imagedata src="article_files/image038.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=364 height=87
-src="article_files/image039.jpg" v:shapes="_x0000_i1048"><![endif]><span
-style='mso-spacerun:yes'>     </span><!--[if gte vml 1]><v:shape id="_x0000_i1049"
- type="#_x0000_t75" style='width:118.5pt;height:15pt' o:bordertopcolor="this"
- o:borderleftcolor="this" o:borderbottomcolor="this" o:borderrightcolor="this">
- <v:imagedata src="article_files/image040.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=158 height=20
-src="article_files/image041.jpg" v:shapes="_x0000_i1049"><![endif]></p>
-
-<p><span class=SpellE><i style='mso-bidi-font-style:normal'>ArrayList</i></span>
-is the specialization of the concrete <span class=SpellE><i style='mso-bidi-font-style:
-normal'>List_E</i></span> class where the formal template parameter <i
-style='mso-bidi-font-style:normal'>E</i> of <i style='mso-bidi-font-style:normal'>List</i>
-is substituted for the actual <span class=SpellE>parameterable</span> element <i
-style='mso-bidi-font-style:normal'>E</i> of <span class=SpellE><i
-style='mso-bidi-font-style:normal'>ArrayList</i></span>.<span
-style='mso-spacerun:yes'>  </span>These are the substitutions for the binding
-of <span class=SpellE><i style='mso-bidi-font-style:normal'>List_E</i></span>: </p>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1050" type="#_x0000_t75" style='width:292.5pt;
- height:28.5pt'>
- <v:imagedata src="article_files/image042.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=390 height=38
-src="article_files/image043.jpg" v:shapes="_x0000_i1050"><![endif]></p>
-
-<p>The class <span class=SpellE><i style='mso-bidi-font-style:normal'>ArrayList_Car</i></span>
-substitutes the actual parameter Car for the exposed template parameter of <i
-style='mso-bidi-font-style:normal'>E</i> of <span class=SpellE><i
-style='mso-bidi-font-style:normal'>ArrayList</i></span>.<span
-style='mso-spacerun:yes'>  </span>These are the substitutions for the <span
-class=SpellE><i style='mso-bidi-font-style:normal'>ArrayList_Car</i></span>:</p>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1051" type="#_x0000_t75" style='width:289.5pt;
- height:33pt'>
- <v:imagedata src="article_files/image044.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=386 height=44
-src="article_files/image045.jpg" v:shapes="_x0000_i1051"><![endif]></p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<div style='border:none;border-bottom:solid windowtext 1.5pt;padding:0in 0in 1.0pt 0in'>
-
-<h3 style='border:none;mso-border-bottom-alt:solid windowtext 1.5pt;padding:
-0in;mso-padding-alt:0in 0in 1.0pt 0in'>Basics: Operation with template
-parameter </h3>
-
-</div>
-
-<p>In UML, operations are <span class=SpellE>templateable</span> elements.<span
-style='mso-spacerun:yes'>   </span>In this next example we will have a look at
-adding template parameters to an operation.<span style='mso-spacerun:yes'> 
-</span>The operation will have a template parameter <i style='mso-bidi-font-style:
-normal'>T</i>, and will return elements of type <i style='mso-bidi-font-style:
-normal'>T</i>.<span style='mso-spacerun:yes'>  </span>The operation will also
-have a parameter <i style='mso-bidi-font-style:normal'>p1</i> of type <i
-style='mso-bidi-font-style:normal'>T</i>.</p>
-
-<h4>Visually</h4>
-
-<p class=MsoNormal><!--[if gte vml 1]><v:shape id="_x0000_i1052" type="#_x0000_t75"
- style='width:226.5pt;height:78pt'>
- <v:imagedata src="article_files/image046.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=302 height=104
-src="article_files/image047.jpg" v:shapes="_x0000_i1052"><![endif]></p>
-
-<h4>Java</h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p><code><span style='color:gray'>1</span>&nbsp;<b><span style='color:#7F0055'>public&nbsp;interface&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>MyClass</span></span><span
-  style='color:black'>&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>EObject</span></span><span
-  style='color:black'>&nbsp;{</span></code><span style='font-family:"Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><span
-  style='color:black'>&lt;T&gt;&nbsp;T&nbsp;<span class=SpellE>someOperation</span>(T&nbsp;p1);</span></code><br>
-  <code><span style='color:gray'>3</span>&nbsp;<span style='color:black'>}</span></code></span></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><code><span style='font-size:10.0pt;color:gray'>1</span></code><code><span
-  style='font-size:10.0pt'>&nbsp;<b><span style='color:#7F0055'>public&nbsp;class&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>MyClassImpl</span></span><span
-  style='color:black'>&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>EObjectImpl</span></span><span
-  style='color:black'>&nbsp;</span><b><span style='color:#7F0055'>implements&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>MyClass</span></span><span
-  style='color:black'>&nbsp;{</span></span></code><span style='font-size:10.0pt;
-  font-family:"Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><b><span
-  style='color:#7F0055'>public&nbsp;</span></b><span style='color:black'>&lt;T&gt;&nbsp;T&nbsp;<span
-  class=SpellE>someOperation</span>(T&nbsp;p1)&nbsp;{</span></code><br>
-  <code><span style='color:gray'>3</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span
-  style='color:#3F7F5F'>//...</span></code><br>
-  <code><span style='color:gray'>4</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><span
-  style='color:black'>}</span></code><br>
-  <code><span style='color:gray'>5</span>&nbsp;<span style='color:black'>}</span></code></span><tt><span
-  style='font-size:10.0pt'><o:p></o:p></span></tt></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h4>Ecore</h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt;
- mso-yfti-tbllook:480;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-insideh:
- .5pt solid windowtext;mso-border-insidev:.5pt solid windowtext'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=240 valign=top style='width:180.1pt;border:solid windowtext 1.0pt;
-  mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><!--[if gte vml 1]><v:shape id="_x0000_i1053" type="#_x0000_t75"
-   style='width:153pt;height:79.5pt'>
-   <v:imagedata src="article_files/image048.png" o:title=""/>
-  </v:shape><![endif]--><![if !vml]><img border=0 width=204 height=106
-  src="article_files/image049.jpg" v:shapes="_x0000_i1053"><![endif]></p>
-  </td>
-  <td width=767 style='width:575.1pt;border:solid windowtext 1.0pt;border-left:
-  none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <ol style='margin-top:0in' start=1 type=1>
-   <li class=MsoNormal style='mso-list:l13 level1 lfo17;tab-stops:list .5in'><span
-       class=SpellE><i style='mso-bidi-font-style:normal'>MyClass</i></span>
-       has an <span class=SpellE>EOperation</span> called <span class=SpellE><i
-       style='mso-bidi-font-style:normal'>someOperation</i></span>.</li>
-   <li class=MsoNormal style='mso-list:l13 level1 lfo17;tab-stops:list .5in'>The
-       <span class=SpellE>EOperation</span> <span class=SpellE>someOperation</span>
-       has an <span class=SpellE>ETypeParameter</span> <i style='mso-bidi-font-style:
-       normal'>T</i>.</li>
-   <li class=MsoNormal style='mso-list:l13 level1 lfo17;tab-stops:list .5in'>The
-       <span class=SpellE>EOperation</span> has a parameter <i
-       style='mso-bidi-font-style:normal'>p1</i> whose type is an <span
-       class=SpellE>EGenericType</span> whose <span class=SpellE>eTypeParameter</span>
-       is <i style='mso-bidi-font-style:normal'>T</i>.</li>
-   <li class=MsoNormal style='mso-list:l13 level1 lfo17;tab-stops:list .5in'>The
-       <span class=SpellE>EOperation</span><span style='mso-spacerun:yes'> 
-       </span>has an <span class=SpellE>EGenericType</span> as its type, whose <span
-       class=SpellE>eTypeParameter</span> is <i style='mso-bidi-font-style:
-       normal'>T</i>.</li>
-  </ol>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h4>UML</h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Arial Unicode MS"'><!--[if gte vml 1]><v:shape
- id="_x0000_i1054" type="#_x0000_t75" style='width:311.25pt;height:90.75pt'>
- <v:imagedata src="article_files/image050.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=415 height=121
-src="article_files/image051.jpg" v:shapes="_x0000_i1054"><![endif]></span></p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<div style='border:none;border-bottom:solid windowtext 1.5pt;padding:0in 0in 1.0pt 0in'>
-
-<h3 style='border:none;mso-border-bottom-alt:solid windowtext 1.5pt;padding:
-0in;mso-padding-alt:0in 0in 1.0pt 0in'>Basics: Bound operation parameters </h3>
-
-</div>
-
-<p>In this example we show an operation with two parameters that are lists of
-cars.<span style='mso-spacerun:yes'>  </span>As you might have guessed, the UML
-version will require an extra bound class.</p>
-
-<h4>Visually</h4>
-
-<p class=MsoNormal><!--[if gte vml 1]><v:shape id="_x0000_i1055" type="#_x0000_t75"
- style='width:450.75pt;height:255pt'>
- <v:imagedata src="article_files/image052.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=601 height=340
-src="article_files/image053.jpg" v:shapes="_x0000_i1055"><![endif]></p>
-
-<h4>Java</h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p><code><span style='color:gray'>1</span>&nbsp;<b><span style='color:#7F0055'>public&nbsp;interface&nbsp;</span></b><span
-  style='color:black'>MyClass2&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>EObject</span></span><span
-  style='color:black'>&nbsp;{</span></code><span style='font-family:"Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><b><span
-  style='color:#7F0055'>void&nbsp;</span></b><span style='color:black'>op1(List&lt;Car&gt;&nbsp;p1,&nbsp;List&lt;Car&gt;&nbsp;p2);</span></code><br>
-  <code><span style='color:gray'>3</span>&nbsp;<span style='color:black'>}</span></code></span></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><code><span style='font-size:10.0pt;color:gray'>1</span></code><code><span
-  style='font-size:10.0pt'>&nbsp;<b><span style='color:#7F0055'>public&nbsp;class&nbsp;</span></b><span
-  style='color:black'>MyClass2Impl&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>EObjectImpl</span></span><span
-  style='color:black'>&nbsp;</span><b><span style='color:#7F0055'>implements&nbsp;</span></b><span
-  style='color:black'>MyClass2&nbsp;{</span></span></code><span
-  style='font-size:10.0pt;font-family:"Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><b><span
-  style='color:#7F0055'>public&nbsp;void&nbsp;</span></b><span
-  style='color:black'>op1(List&lt;Car&gt;&nbsp;p1,&nbsp;List&lt;Car&gt;&nbsp;p2)&nbsp;{</span></code><br>
-  <code><span style='color:gray'>3</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;&nbsp;&nbsp;</span><span
-  style='color:#3F7F5F'>//...&nbsp;&nbsp;&nbsp;&nbsp;</span></code><br>
-  <code><span style='color:gray'>4</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><span
-  style='color:black'>}</span></code><br>
-  <code><span style='color:gray'>5</span>&nbsp;<span style='color:black'>}</span></code></span></p>
-  </td>
- </tr>
-</table>
-
-<h4>Ecore</h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt;
- mso-yfti-tbllook:480;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-insideh:
- .5pt solid windowtext;mso-border-insidev:.5pt solid windowtext'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=228 valign=top style='width:171.1pt;border:solid windowtext 1.0pt;
-  mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><!--[if gte vml 1]><v:shape id="_x0000_i1056" type="#_x0000_t75"
-   style='width:154.5pt;height:102.75pt'>
-   <v:imagedata src="article_files/image054.png" o:title=""/>
-  </v:shape><![endif]--><![if !vml]><img border=0 width=206 height=137
-  src="article_files/image055.jpg" v:shapes="_x0000_i1056"><![endif]></p>
-  </td>
-  <td width=779 style='width:584.1pt;border:solid windowtext 1.0pt;border-left:
-  none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <ol style='margin-top:0in' start=1 type=1>
-   <li class=MsoNormal style='mso-list:l0 level1 lfo20;tab-stops:list .5in'>We
-       create an operation with parameter <i style='mso-bidi-font-style:normal'>p1</i>.</li>
-   <li class=MsoNormal style='mso-list:l0 level1 lfo20;tab-stops:list .5in'>Parameter<i
-       style='mso-bidi-font-style:normal'> p1</i> has as its type an <span
-       class=SpellE>EGenericType</span> whose <span class=SpellE>eClassifier</span>
-       is <i style='mso-bidi-font-style:normal'>List&lt;E&gt;.</i></li>
-   <li class=MsoNormal style='mso-list:l0 level1 lfo20;tab-stops:list .5in'>The
-       <span class=SpellE>EGenericType</span> of <i style='mso-bidi-font-style:
-       normal'>p1</i> has a type argument (<span class=SpellE>EGenericType</span>)
-       whose <span class=SpellE>eClassifier</span> is set to <i
-       style='mso-bidi-font-style:normal'>Car</i>.</li>
-  </ol>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h4>UML</h4>
-
-<h4><!--[if gte vml 1]><v:shape id="_x0000_i1057" type="#_x0000_t75" style='width:5in;
- height:102.75pt'>
- <v:imagedata src="article_files/image056.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=480 height=137
-src="article_files/image057.jpg" v:shapes="_x0000_i1057"><![endif]></h4>
-
-<p>The only important thing to point out here is that the bound <span
-class=SpellE><i style='mso-bidi-font-style:normal'>List_Car</i></span> is not
-duplicated in the UML representation. The bound <span class=SpellE><i
-style='mso-bidi-font-style:normal'>List_Car</i></span> is used in the context
-of MyClass2.</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<div style='border:none;border-bottom:solid windowtext 1.5pt;padding:0in 0in 1.0pt 0in'>
-
-<h3 style='border:none;mso-border-bottom-alt:solid windowtext 1.5pt;padding:
-0in;mso-padding-alt:0in 0in 1.0pt 0in'>Advanced: Wildcards (specifying upper
-and lower bounds on parameters)</h3>
-
-</div>
-
-<p>It is possible to specify wildcards when using parameters in Ecore and
-Java.<span style='mso-spacerun:yes'>   </span>Wildcards are represented <span
-class=GramE>by <b style='mso-bidi-font-weight:normal'>?</b>.</span><span
-style='mso-spacerun:yes'>   </span><span class=GramE>The <b style='mso-bidi-font-weight:
-normal'>?</b></span><b style='mso-bidi-font-weight:normal'> </b><span
-class=GramE>stands</span> for an unknown type.<span style='mso-spacerun:yes'> 
-</span>It is possible to specify upper and lower bounds on such wildcards.<span
-style='mso-spacerun:yes'>   </span>When we talk about bounds, we refer to the
-ability to specify that bindings to a generic type parameter must either be the
-super type of some classifier or extend some classifier.<span
-style='mso-spacerun:yes'>   </span>In this way, tighter restrictions can be
-placed on acceptable bindings.<span style='mso-spacerun:yes'>  </span>In
-addition to tightening restrictions, upper bounds (extends) are particularly
-useful for ensuring that substitutions will have features that are required by
-the template for its behavior.<span style='mso-spacerun:yes'>  </span>For
-example, one might have <i style='mso-bidi-font-style:normal'>List&lt;E extends
-Comparable&gt;</i> because the list actually needs to be able to compare EÂ’s
-using the <span class=SpellE><i style='mso-bidi-font-style:normal'>Comparable::<span
-class=GramE>compareTo</span></i></span><span class=GramE><i style='mso-bidi-font-style:
-normal'>(</i></span><i style='mso-bidi-font-style:normal'>Â…)</i> operation.</p>
-
-<h4>Visually</h4>
-
-<p class=MsoNormal><!--[if gte vml 1]><v:shape id="_x0000_i1058" type="#_x0000_t75"
- style='width:471pt;height:405.75pt'>
- <v:imagedata src="article_files/image058.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=628 height=541
-src="article_files/image059.jpg" v:shapes="_x0000_i1058"><![endif]></p>
-
-<h4>Java</h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p><code><span style='color:gray'>1</span>&nbsp;<b><span style='color:#7F0055'>public&nbsp;class&nbsp;</span></b><span
-  style='color:black'>MyClass3Impl&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  class=SpellE><span style='color:black'>EObjectImpl</span></span><span
-  style='color:black'>&nbsp;</span><b><span style='color:#7F0055'>implements&nbsp;</span></b><span
-  style='color:black'>MyClass3&nbsp;{</span></code><span style='font-family:
-  "Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><b><span
-  style='color:#7F0055'>protected&nbsp;</span></b><span style='color:black'>List&lt;?&nbsp;</span><b><span
-  style='color:#7F0055'>extends&nbsp;</span></b><span style='color:black'>Car&gt;&nbsp;<span
-  class=SpellE>someReference</span>;</span></code><br>
-  <code><span style='color:gray'>3</span>&nbsp;<span style='color:white'>&nbsp;&nbsp;</span><b><span
-  style='color:#7F0055'>protected&nbsp;</span></b><span style='color:black'>List&lt;?&nbsp;</span><b><span
-  style='color:#7F0055'>super&nbsp;</span></b><span style='color:black'>Car&gt;&nbsp;<span
-  class=SpellE>anotherReference</span>;</span></code><br>
-  <code><span style='color:gray'>4</span>&nbsp;<span style='color:black'>}</span></code></span></p>
-  </td>
- </tr>
-</table>
-
-<h4>Ecore</h4>
-
-<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt;
- mso-yfti-tbllook:480;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-insideh:
- .5pt solid windowtext;mso-border-insidev:.5pt solid windowtext'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=276 valign=top style='width:207.1pt;border:solid windowtext 1.0pt;
-  mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><!--[if gte vml 1]><v:shape id="_x0000_i1059" type="#_x0000_t75"
-   style='width:194.25pt;height:114.75pt'>
-   <v:imagedata src="article_files/image060.png" o:title=""/>
-  </v:shape><![endif]--><![if !vml]><img border=0 width=259 height=153
-  src="article_files/image061.jpg" v:shapes="_x0000_i1059"><![endif]></p>
-  </td>
-  <td width=576 style='width:6.0in;border:solid windowtext 1.0pt;border-left:
-  none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:solid windowtext .5pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <ol style='margin-top:0in' start=1 type=1>
-   <li class=MsoNormal style='mso-list:l5 level1 lfo23;tab-stops:list .5in'>We
-       create an <span class=SpellE>EReference</span> for <span class=SpellE><i
-       style='mso-bidi-font-style:normal'>someReference</i></span><i
-       style='mso-bidi-font-style:normal'>.</i></li>
-   <li class=MsoNormal style='mso-list:l5 level1 lfo23;tab-stops:list .5in'>We
-       create an <span class=SpellE>EGenericType</span> for the type of <span
-       class=SpellE><i style='mso-bidi-font-style:normal'>someReference</i></span>
-       whose <span class=SpellE>eClassifier</span> is set to <i
-       style='mso-bidi-font-style:normal'>List&lt;E&gt;</i></li>
-   <li class=MsoNormal style='mso-list:l5 level1 lfo23;tab-stops:list .5in'>The
-       generic type of <span class=SpellE><i style='mso-bidi-font-style:normal'>someReference</i></span>
-       has an <span class=SpellE>eTypeArgument</span> (an <span class=SpellE>EGenericType</span>)
-       whose upper bound is set to <i style='mso-bidi-font-style:normal'>Car</i>.</li>
-  </ol>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h4>UML</h4>
-
-<h4><span style='font-weight:normal'><!--[if gte vml 1]><v:shape id="_x0000_i1060"
- type="#_x0000_t75" style='width:351pt;height:141pt'>
- <v:imagedata src="article_files/image062.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=468 height=188
-src="article_files/image063.jpg" v:shapes="_x0000_i1060"><![endif]><o:p></o:p></span></h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p>If we focus on the “<span class=SpellE>someReference</span>” property, we
-see that we need to create a new class called “<span class=SpellE>Wildcard_extends_Car</span>”.<span
-style='mso-spacerun:yes'>   </span>This particular class has its stereotype
-property for the upper bound set to <i style='mso-bidi-font-style:normal'>Car</i>:
-</p>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1061" type="#_x0000_t75" style='width:204.75pt;
- height:36pt'>
- <v:imagedata src="article_files/image064.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=273 height=48
-src="article_files/image065.jpg" v:shapes="_x0000_i1061"><![endif]></p>
-
-<p><span style='mso-spacerun:yes'> </span>Next, we see that another new class
-is created in order to bind the formal parameter of the generic <i
-style='mso-bidi-font-style:normal'>List</i> to classes of <span class=SpellE><i
-style='mso-bidi-font-style:normal'>Wildcard_extends_Car</i></span><i
-style='mso-bidi-font-style:normal'>:<o:p></o:p></i></p>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1062" type="#_x0000_t75" style='width:310.5pt;
- height:39pt'>
- <v:imagedata src="article_files/image066.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=414 height=52
-src="article_files/image067.jpg" v:shapes="_x0000_i1062"><![endif]></p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<div style='border:none;border-bottom:solid windowtext 1.5pt;padding:0in 0in 1.0pt 0in'>
-
-<h3 style='border:none;mso-border-bottom-alt:solid windowtext 1.5pt;padding:
-0in;mso-padding-alt:0in 0in 1.0pt 0in'>Advanced: Type parameters that extend
-multiple classifiers</h3>
-
-</div>
-
-<p>Type parameters in Ecore can also have bounds and in such cases it is
-possible to specify multiple upper bounds. </p>
-
-<h4>Visually</h4>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1063" type="#_x0000_t75" style='width:185.25pt;
- height:1in'>
- <v:imagedata src="article_files/image068.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=247 height=96
-src="article_files/image069.jpg" v:shapes="_x0000_i1063"><![endif]></p>
-
-<p>The interesting part is the bounds information stored in the stereotype (see
-below).</p>
-
-<h4>Java</h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p><code><span style='color:gray'>1</span>&nbsp;<b><span style='color:#7F0055'>public&nbsp;interface&nbsp;</span></b><span
-  style='color:black'>MyClass4&lt;P1&nbsp;</span><b><span style='color:#7F0055'>extends&nbsp;</span></b><span
-  style='color:black'>A&nbsp;&amp;&nbsp;B&gt;&nbsp;</span><b><span
-  style='color:#7F0055'>extends&nbsp;</span></b><span class=SpellE><span
-  style='color:black'>EObject</span></span><span style='color:black'>&nbsp;{</span></code><span
-  style='font-family:"Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:black'>}</span></code></span></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=0 cellspacing=0 cellpadding=0
- style='background:#F3F3F3;border-collapse:collapse;mso-yfti-tbllook:480;
- mso-padding-alt:0in 5.4pt 0in 5.4pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=590 valign=top style='width:6.15in;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><code><span style='font-size:10.0pt;color:gray'>1</span></code><code><span
-  style='font-size:10.0pt'>&nbsp;<b><span style='color:#7F0055'>public&nbsp;class&nbsp;</span></b><span
-  style='color:black'>MyClass4Impl&lt;P1&nbsp;</span><b><span style='color:
-  #7F0055'>extends&nbsp;</span></b><span style='color:black'>A&nbsp;&amp;&nbsp;B&gt;&nbsp;</span><b><span
-  style='color:#7F0055'>extends&nbsp;</span></b><span class=SpellE><span
-  style='color:black'>EObjectImpl</span></span><span style='color:black'>&nbsp;</span><b><span
-  style='color:#7F0055'>implements&nbsp;</span></b><span style='color:black'>MyClass4&lt;P1&gt;&nbsp;{</span></span></code><span
-  style='font-size:10.0pt;font-family:"Courier New"'><br>
-  <code><span style='color:gray'>2</span>&nbsp;<span style='color:black'>}&nbsp;</span></code></span></p>
-  </td>
- </tr>
-</table>
-
-<h4>Ecore</h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableGrid border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-alt:solid windowtext .5pt;
- mso-yfti-tbllook:480;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-insideh:
- .5pt solid windowtext;mso-border-insidev:.5pt solid windowtext'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width=240 valign=top style='width:180.1pt;border:solid windowtext 1.0pt;
-  mso-border-alt:solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><!--[if gte vml 1]><v:shape id="_x0000_i1064" type="#_x0000_t75"
-   style='width:145.5pt;height:51pt'>
-   <v:imagedata src="article_files/image070.png" o:title=""/>
-  </v:shape><![endif]--><![if !vml]><img border=0 width=194 height=68
-  src="article_files/image071.jpg" v:shapes="_x0000_i1064"><![endif]></p>
-  </td>
-  <td width=767 valign=top style='width:575.1pt;border:solid windowtext 1.0pt;
-  border-left:none;mso-border-left-alt:solid windowtext .5pt;mso-border-alt:
-  solid windowtext .5pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ol style='margin-top:0in' start=1 type=1>
-   <li class=MsoNormal style='mso-list:l7 level1 lfo26;tab-stops:list .5in'><i
-       style='mso-bidi-font-style:normal'>MyClass4</i> has an <span
-       class=SpellE>ETypeParameter</span> <i style='mso-bidi-font-style:normal'>P1</i>.</li>
-   <li class=MsoNormal style='mso-list:l7 level1 lfo26;tab-stops:list .5in'>The
-       <span class=SpellE>ETypeParameter</span> of <i style='mso-bidi-font-style:
-       normal'>P1</i> has its <span class=SpellE>eBounds</span> set to an <span
-       class=SpellE>EGenericType</span> whose <span class=SpellE>eClassifer</span>
-       is <i style='mso-bidi-font-style:normal'>A</i> and another <span
-       class=SpellE>EGenericType</span> whose <span class=SpellE>eClassifier</span>
-       is set to <i style='mso-bidi-font-style:normal'>B</i>.</li>
-  </ol>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h4>UML</h4>
-
-<h4><!--[if gte vml 1]><v:shape id="_x0000_i1065" type="#_x0000_t75" style='width:278.25pt;
- height:52.5pt'>
- <v:imagedata src="article_files/image072.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=371 height=70
-src="article_files/image073.jpg" v:shapes="_x0000_i1065"><![endif]><span
-style='font-weight:normal'><o:p></o:p></span></h4>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p>For the template parameter <i style='mso-bidi-font-style:normal'>P1</i> we
-have to specify the bounds using the stereotype since multiple bounds on such
-parameters are not possible using UML:</p>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1066" type="#_x0000_t75" style='width:312pt;
- height:36pt'>
- <v:imagedata src="article_files/image074.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=416 height=48
-src="article_files/image075.jpg" v:shapes="_x0000_i1066"><![endif]>.</p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Conclusion</h2>
-
-<p>Congratulations! YouÂ’ve made it this far, if youÂ’ve followed through the
-examples, you will no doubt have discovered that the UML representation is
-verbose and intricate in comparison to Ecore or Java.<span
-style='mso-spacerun:yes'>   </span>Hopefully, with a bit of practice, the UML
-representation will become second nature.<span style='mso-spacerun:yes'>  
-</span>This article really only scratches the surface of the intricate possible
-scenarios one may create when working with generics.<span
-style='mso-spacerun:yes'>   </span>By using templates in UML you can express
-and communicate your ideas more accurately, and code generated via conversion
-through Ecore will result in generically specified Java.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>For
-more information on UML2, visit the <a
-href="http://www.eclipse.org/modeling/mdt/?project=uml2">home page</a> or join
-the <a href="news://news.eclipse.org/eclipse.modeling.mdt.uml2">newsgroup</a>.</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Acknowledgements</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Thanks
-to Kenn Hussey, Ed <span class=SpellE>Merks</span> and Christian <span
-class=SpellE>Damus</span> for their thorough and careful reviews.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><o:p>&nbsp;</o:p></p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>References</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='mso-spacerun:yes'> </span><span class=GramE>[1] Unified Modeling Language:
-Superstructure, version 2.1.1; formal/2007-02-05.</span> <span class=GramE>OMG.</span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='mso-spacerun:yes'> </span>[2] RTF Issue <a
-href="http://www.omg.org/issues/uml2-rtf.open.html#Issue9398">9398</a></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><o:p>&nbsp;</o:p></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='font-size:7.5pt'>Java and all Java-based trademarks and logos are
-trademarks or registered trademarks of Sun Microsystems, Inc. in the </span><st1:country-region><st1:place><span
-  style='font-size:7.5pt'>United States</span></st1:place></st1:country-region><span
-style='font-size:7.5pt'>, other countries, or both.</span></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/filelist.xml b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/filelist.xml
deleted file mode 100644
index 23830d0..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/filelist.xml
+++ /dev/null
@@ -1,79 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:MainFile HRef="../article.html"/>
- <o:File HRef="image001.png"/>
- <o:File HRef="image002.jpg"/>
- <o:File HRef="image003.png"/>
- <o:File HRef="image004.jpg"/>
- <o:File HRef="image005.png"/>
- <o:File HRef="image006.jpg"/>
- <o:File HRef="image007.png"/>
- <o:File HRef="image008.jpg"/>
- <o:File HRef="image009.png"/>
- <o:File HRef="image010.jpg"/>
- <o:File HRef="image011.gif"/>
- <o:File HRef="image012.png"/>
- <o:File HRef="image013.jpg"/>
- <o:File HRef="image014.png"/>
- <o:File HRef="image015.jpg"/>
- <o:File HRef="image016.png"/>
- <o:File HRef="image017.jpg"/>
- <o:File HRef="image018.gif"/>
- <o:File HRef="image019.gif"/>
- <o:File HRef="image020.png"/>
- <o:File HRef="image021.jpg"/>
- <o:File HRef="image022.png"/>
- <o:File HRef="image023.jpg"/>
- <o:File HRef="image024.png"/>
- <o:File HRef="image025.jpg"/>
- <o:File HRef="image026.png"/>
- <o:File HRef="image027.jpg"/>
- <o:File HRef="image028.png"/>
- <o:File HRef="image029.jpg"/>
- <o:File HRef="image030.png"/>
- <o:File HRef="image031.jpg"/>
- <o:File HRef="image032.png"/>
- <o:File HRef="image033.jpg"/>
- <o:File HRef="image034.png"/>
- <o:File HRef="image035.jpg"/>
- <o:File HRef="image036.png"/>
- <o:File HRef="image037.jpg"/>
- <o:File HRef="image038.png"/>
- <o:File HRef="image039.jpg"/>
- <o:File HRef="image040.png"/>
- <o:File HRef="image041.jpg"/>
- <o:File HRef="image042.png"/>
- <o:File HRef="image043.jpg"/>
- <o:File HRef="image044.png"/>
- <o:File HRef="image045.jpg"/>
- <o:File HRef="image046.png"/>
- <o:File HRef="image047.jpg"/>
- <o:File HRef="image048.png"/>
- <o:File HRef="image049.jpg"/>
- <o:File HRef="image050.png"/>
- <o:File HRef="image051.jpg"/>
- <o:File HRef="image052.png"/>
- <o:File HRef="image053.jpg"/>
- <o:File HRef="image054.png"/>
- <o:File HRef="image055.jpg"/>
- <o:File HRef="image056.png"/>
- <o:File HRef="image057.jpg"/>
- <o:File HRef="image058.png"/>
- <o:File HRef="image059.jpg"/>
- <o:File HRef="image060.png"/>
- <o:File HRef="image061.jpg"/>
- <o:File HRef="image062.png"/>
- <o:File HRef="image063.jpg"/>
- <o:File HRef="image064.png"/>
- <o:File HRef="image065.jpg"/>
- <o:File HRef="image066.png"/>
- <o:File HRef="image067.jpg"/>
- <o:File HRef="image068.png"/>
- <o:File HRef="image069.jpg"/>
- <o:File HRef="image070.png"/>
- <o:File HRef="image071.jpg"/>
- <o:File HRef="image072.png"/>
- <o:File HRef="image073.jpg"/>
- <o:File HRef="image074.png"/>
- <o:File HRef="image075.jpg"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image001.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image001.png
deleted file mode 100644
index c5a2af8..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image001.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image002.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image002.jpg
deleted file mode 100644
index aa6c3ac..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image002.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image003.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image003.png
deleted file mode 100644
index fc6d7f8..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image003.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image004.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image004.jpg
deleted file mode 100644
index 229f31a..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image005.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image005.png
deleted file mode 100644
index 43ba0df..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image005.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image006.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image006.jpg
deleted file mode 100644
index 7b58c2f..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image006.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image007.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image007.png
deleted file mode 100644
index 6ef3509..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image007.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image008.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image008.jpg
deleted file mode 100644
index 13dbbe9..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image008.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image009.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image009.png
deleted file mode 100644
index 564af94..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image009.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image010.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image010.jpg
deleted file mode 100644
index 362b9df..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image010.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image011.gif b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image011.gif
deleted file mode 100644
index ebb6bb5..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image011.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image012.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image012.png
deleted file mode 100644
index 0e8d4b4..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image012.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image013.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image013.jpg
deleted file mode 100644
index 72f2a0c..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image013.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image014.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image014.png
deleted file mode 100644
index a18c6a3..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image014.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image015.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image015.jpg
deleted file mode 100644
index 9d10c8f..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image015.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image016.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image016.png
deleted file mode 100644
index 0390198..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image016.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image017.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image017.jpg
deleted file mode 100644
index 7cb8f22..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image017.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image018.gif b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image018.gif
deleted file mode 100644
index b179e9f..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image018.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image019.gif b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image019.gif
deleted file mode 100644
index 681f5ad..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image019.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image020.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image020.png
deleted file mode 100644
index 6853950..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image020.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image021.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image021.jpg
deleted file mode 100644
index f888e1f..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image021.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image022.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image022.png
deleted file mode 100644
index 7cf7f8a..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image022.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image023.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image023.jpg
deleted file mode 100644
index 5e81e86..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image023.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image024.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image024.png
deleted file mode 100644
index eb13f7a..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image024.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image025.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image025.jpg
deleted file mode 100644
index 1504e50..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image025.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image026.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image026.png
deleted file mode 100644
index 3da4336..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image026.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image027.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image027.jpg
deleted file mode 100644
index e983e33..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image027.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image028.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image028.png
deleted file mode 100644
index 9a44818..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image028.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image029.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image029.jpg
deleted file mode 100644
index c4df8e4..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image029.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image030.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image030.png
deleted file mode 100644
index e26cfb6..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image030.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image031.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image031.jpg
deleted file mode 100644
index 8ce3d7e..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image031.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image032.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image032.png
deleted file mode 100644
index 5136403..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image032.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image033.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image033.jpg
deleted file mode 100644
index 521d4a2..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image033.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image034.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image034.png
deleted file mode 100644
index 7705bf1..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image034.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image035.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image035.jpg
deleted file mode 100644
index b85326c..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image035.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image036.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image036.png
deleted file mode 100644
index 1e66720..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image036.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image037.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image037.jpg
deleted file mode 100644
index 6f2b3f3..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image037.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image038.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image038.png
deleted file mode 100644
index 520254c..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image038.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image039.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image039.jpg
deleted file mode 100644
index 5d8f5ba..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image039.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image040.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image040.png
deleted file mode 100644
index 509b2ca..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image040.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image041.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image041.jpg
deleted file mode 100644
index a0a932e..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image041.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image042.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image042.png
deleted file mode 100644
index ee163d5..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image042.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image043.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image043.jpg
deleted file mode 100644
index c61d7cd..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image043.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image044.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image044.png
deleted file mode 100644
index 3af1b36..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image044.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image045.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image045.jpg
deleted file mode 100644
index 7447651..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image045.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image046.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image046.png
deleted file mode 100644
index f9230b0..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image046.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image047.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image047.jpg
deleted file mode 100644
index f3088dd..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image047.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image048.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image048.png
deleted file mode 100644
index 6777113..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image048.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image049.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image049.jpg
deleted file mode 100644
index 01f2f54..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image049.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image050.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image050.png
deleted file mode 100644
index d95131e..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image050.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image051.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image051.jpg
deleted file mode 100644
index b5a395f..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image051.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image052.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image052.png
deleted file mode 100644
index 4b1796d..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image052.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image053.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image053.jpg
deleted file mode 100644
index 6366011..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image053.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image054.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image054.png
deleted file mode 100644
index e6dac41..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image054.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image055.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image055.jpg
deleted file mode 100644
index d663ba8..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image055.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image056.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image056.png
deleted file mode 100644
index 7f6a3b8..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image056.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image057.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image057.jpg
deleted file mode 100644
index 1e6de07..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image057.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image058.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image058.png
deleted file mode 100644
index afc6b67..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image058.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image059.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image059.jpg
deleted file mode 100644
index 27c9483..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image059.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image060.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image060.png
deleted file mode 100644
index d9379da..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image060.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image061.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image061.jpg
deleted file mode 100644
index 730dc8a..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image061.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image062.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image062.png
deleted file mode 100644
index b2acf3c..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image062.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image063.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image063.jpg
deleted file mode 100644
index 2d5695b..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image063.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image064.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image064.png
deleted file mode 100644
index e2a2e88..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image064.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image065.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image065.jpg
deleted file mode 100644
index 3fb7dc5..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image065.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image066.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image066.png
deleted file mode 100644
index f9a8c8f..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image066.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image067.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image067.jpg
deleted file mode 100644
index 5f252a1..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image067.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image068.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image068.png
deleted file mode 100644
index 56a9fc1..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image068.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image069.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image069.jpg
deleted file mode 100644
index 0a04d7f..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image069.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image070.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image070.png
deleted file mode 100644
index af4e949..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image070.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image071.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image071.jpg
deleted file mode 100644
index 85173ab..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image071.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image072.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image072.png
deleted file mode 100644
index 337d6d6..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image072.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image073.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image073.jpg
deleted file mode 100644
index 36fa5cb..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image073.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image074.png b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image074.png
deleted file mode 100644
index d3dbf07..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image074.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image075.jpg b/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image075.jpg
deleted file mode 100644
index 102a9c7..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/article_files/image075.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Defining_Generics_with_UML_Templates/default_style.css b/uml2/docs/articles/Defining_Generics_with_UML_Templates/default_style.css
deleted file mode 100644
index 2bbff30..0000000
--- a/uml2/docs/articles/Defining_Generics_with_UML_Templates/default_style.css
+++ /dev/null
@@ -1,11 +0,0 @@
-p, table, td, th {  font-family: arial, helvetica, geneva; font-size: 10pt}

-pre {  font-family: "Courier New", Courier, mono; font-size: 10pt}

-h2 { font-family: arial, helvetica, geneva; font-size: 18pt; font-weight: bold ; line-height: 14px}

-code {  font-family: "Courier New", Courier, mono; font-size: 10pt}

-sup {  font-family: arial,helvetica,geneva; font-size: 10px}

-h3 {  font-family: arial, helvetica, geneva; font-size: 14pt; font-weight: bold}

-li {  font-family: arial, helvetica, geneva; font-size: 10pt}

-h1 {  font-family: arial, helvetica, geneva; font-size: 28px; font-weight: bold}

-body {  font-family: arial, helvetica, geneva; font-size: 10pt; clip:   rect(   ); margin-top: 5mm; margin-left: 3mm}

-.indextop { font-size: x-large;; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold}

-.indexsub { font-size: xx-small;; font-family: Arial, Helvetica, sans-serif; color: #8080FF}

diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article.html b/uml2/docs/articles/Getting_Started_with_UML2/article.html
deleted file mode 100644
index 25c5bd2..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article.html
+++ /dev/null
@@ -1,1578 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="article_files/filelist.xml">
-<link rel=Edit-Time-Data href="article_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Getting Started with UML2</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>jbruck</o:LastAuthor>
-  <o:Revision>128</o:Revision>
-  <o:TotalTime>5345</o:TotalTime>
-  <o:Created>2004-07-06T14:17:00Z</o:Created>
-  <o:LastSaved>2008-07-11T18:06:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>5435</o:Words>
-  <o:Characters>30981</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>258</o:Lines>
-  <o:Paragraphs>72</o:Paragraphs>
-  <o:CharactersWithSpaces>36344</o:CharactersWithSpaces>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Tahoma;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:238;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:1627421319 -2147483648 8 0 66047 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:238;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:purple;
-	text-decoration:underline;
-	text-underline:single;}
-p.MsoDocumentMap, li.MsoDocumentMap, div.MsoDocumentMap
-	{mso-style-noshow:yes;
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	background:navy;
-	font-size:12.0pt;
-	font-family:Tahoma;
-	mso-fareast-font-family:"Times New Roman";}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:2098360590;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-501428010 67698705 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
-@list l0:level1
-	{mso-level-text:"%1\)";
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]><!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="16386"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=purple style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<p class=MsoNormal align=right style='text-align:right'><span style='font-size:
-10.0pt'>Copyright © 2004, 2008 International Business Machines Corp.</span><span
-style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></p>
-
-<div align=right>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width="100%"
- style='width:100.0%;mso-cellspacing:0in;mso-padding-alt:1.5pt 1.5pt 1.5pt 1.5pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td valign=top style='background:#0080C0;padding:1.5pt 1.5pt 1.5pt 1.5pt'>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;font-family:Arial;
-  color:white'>&nbsp;</span></b><span style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></p>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<h1><img width=120 height=86 id="_x0000_i1025" src="../../../../images/Idea.jpg"
-align=CENTER></h1>
-
-<p>&nbsp;</p>
-
-<h1 align=center style='text-align:center'>Getting Started with UML2</h1>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:Arial'>Summary</span></b><span
-style='font-size:10.0pt;font-family:Arial'><br style='mso-special-character:
-line-break'>
-<![if !supportLineBreakNewLine]><br style='mso-special-character:line-break'>
-<![endif]><o:p></o:p></span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>This
-article describes how to get started with the UML2 plug-ins for Eclipse. In
-particular, it gives an overview of how to create models (and their contents)
-both programmatically and by using the sample UML editor.<o:p></o:p></span></p>
-
-<p><b>By <span class=SpellE>Kenn</span> Hussey, IBM</b><br>
-<st1:date Year="2006" Day="18" Month="7">July 18, 2006</st1:date> <span
-style='mso-spacerun:yes'>   </span><span
-style='mso-spacerun:yes'> </span>(Updated: <st1:date Year="2008" Day="11"
-Month="7">July 11, 2008</st1:date> for Eclipse 3.4; James <span class=SpellE>Bruck</span>)</p>
-
-</blockquote>
-
-<div class=MsoNormal align=center style='text-align:center'><span
-style='font-size:10.0pt;font-family:Arial'>
-
-<hr size=2 width="100%" align=center>
-
-</span></div>
-
-<h2>Prerequisites</h2>
-
-<p>To start using UML2 (and to follow along with the example in this article),
-you must have <span class=MsoHyperlink><a
-href="http://download.eclipse.org/eclipse/downloads/">Eclipse 3.4</a></span>, <span
-class=MsoHyperlink><a
-href="http://www.eclipse.org/modeling/emf/downloads/?project=emf">EMF 2.4</a></span>,
-and <span class=MsoHyperlink><a
-href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2">UML2 2.2</a></span>
-installed.<span style='mso-spacerun:yes'>  </span></p>
-
-<p>You can either download the zips individually and expand them out or follow the
-steps below: <span style='mso-spacerun:yes'> </span></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo1;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>1)<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]><span dir=LTR><span
-style='mso-spacerun:yes'> </span>Download and run Eclipse 3.4</span></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo1;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>2)<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]><span dir=LTR><span
-style='mso-spacerun:yes'> </span>Select the <b>Help</b> &gt; <b>Software
-Updates Â… </b>menu</span></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo1;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>3)<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]><span dir=LTR><span
-style='mso-spacerun:yes'> </span>Select the <b>Available Software</b> tab and expand
-the <b>Ganymede\Model and Model Development</b> tree item.</span></p>
-
-<p style='margin-left:.25in'><!--[if gte vml 1]><v:shapetype id="_x0000_t75"
- coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
- filled="f" stroked="f">
- <v:stroke joinstyle="miter"/>
- <v:formulas>
-  <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-  <v:f eqn="sum @0 1 0"/>
-  <v:f eqn="sum 0 0 @1"/>
-  <v:f eqn="prod @2 1 2"/>
-  <v:f eqn="prod @3 21600 pixelWidth"/>
-  <v:f eqn="prod @3 21600 pixelHeight"/>
-  <v:f eqn="sum @0 0 1"/>
-  <v:f eqn="prod @6 1 2"/>
-  <v:f eqn="prod @7 21600 pixelWidth"/>
-  <v:f eqn="sum @8 21600 0"/>
-  <v:f eqn="prod @7 21600 pixelHeight"/>
-  <v:f eqn="sum @10 21600 0"/>
- </v:formulas>
- <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" aspectratio="t"/>
-</v:shapetype><v:shape id="_x0000_i1087" type="#_x0000_t75" style='width:581.25pt;
- height:408.75pt'>
- <v:imagedata src="article_files/image001.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=775 height=545
-src="article_files/image022.jpg" v:shapes="_x0000_i1087"><![endif]></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo1;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>4)<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]><span dir=LTR><span
-style='mso-spacerun:yes'> </span>Select <b>UML2 End-User Features</b> and <b>UML2
-Extender SDK</b>.<span style='mso-spacerun:yes'>  </span>The version should
-indicate 2.2.0 (or later).</span></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo1;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>5)<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]><span dir=LTR><span
-style='mso-spacerun:yes'> </span>Click <b>Install<span class=GramE>Â… <span
-style='font-weight:normal'>.</span></span></b></span></p>
-
-<p>At this stage, UML2 2.2 and all dependencies should be installed.</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2>Introduction</h2>
-
-<p>This article will walk you through the basics of creating models using UML2.
-Using a simple model (the ExtendedPO2 model, shamelessly “borrowed” from the EMF
-“bible” [1]) as an example, we’ll look at what’s involved in creating some of
-the more common elements that make up a model. For each type of element, weÂ’ll
-first explain the creation process using the sample UML editor and then explore
-how to accomplish the same thing using Java code. The ExtendedPO2 model is
-shown below.</p>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1027" type="#_x0000_t75" style='width:554.25pt;
- height:406.5pt'>
- <v:imagedata src="article_files/image021.emz" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=739 height=542
-src="article_files/image002.gif" v:shapes="_x0000_i1027"><![endif]></p>
-
-<h2>Getting Started</h2>
-
-<p>Before getting started, youÂ’ll need to create a simple project in your
-workspace. This project will serve as the container for the model that weÂ’ll
-create using the UML editor. To create a simple project for this article,
-follow these steps:</p>
-
-<p style='margin-left:27.5pt'>1) Select the <b>Window &gt; Open Perspective
-&gt; <span class=GramE>Other</span>Â…</b> menu item.</p>
-
-<p style='margin-left:27.5pt'>2) Select the <b>Resource</b> perspective and
-press the <b>OK</b> button.</p>
-
-<p style='margin-left:27.5pt'>3) Select the <b>File &gt; New &gt; Project...</b>
-menu item.</p>
-
-<p style='margin-left:27.5pt'>4) Select the <b>Project</b> wizard from the <b>General</b>
-category and press the <b>Next &gt;</b> button.</p>
-
-<p style='margin-left:27.5pt'>5) Enter a project name (i.e. “Getting Started
-with UML2”) and press the <b>Finish</b> button.</p>
-
-<p>At this point your workspace should look something like this:</p>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1088" type="#_x0000_t75" style='width:655.5pt;
- height:447.75pt'>
- <v:imagedata src="article_files/image023.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=874 height=597
-src="article_files/image024.jpg" v:shapes="_x0000_i1088"><![endif]></p>
-
-<p>OK, that should be enough to get us going with the UML editor. Now, to
-follow along with the programmatic approach to creating models, weÂ’ll assume
-that you’ve created a class (named, say, “GettingStartedWithUML2”) in which you
-can write some code to construct our sample model. The code snippets weÂ’ll show
-assume youÂ’ve defined the following utility methods to give the user
-information on the programÂ’s status:</p>
-
-<pre style='margin-left:9.0pt'><img border=0 width=24 height=14
-id="_x0000_i1028" src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-tab-count:1'>  </span><span class=GramE>public</span> static <span
-class=SpellE>boolean</span> DEBUG = true;</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static void out(String output) {</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>if</span> (DEBUG) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=14 id="_x0000_i1029"
-src="../../../../images/tag_2.gif" align=CENTER><span style='mso-tab-count:
-3'>                 </span><span class=SpellE><span class=GramE>System.out.println</span></span><span
-class=GramE>(</span>output);</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span>}</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:1'>     </span>}</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static void err(String error) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=14 id="_x0000_i1030"
-src="../../../../images/tag_3.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span><span class=SpellE><span class=GramE>System.err.println</span></span><span
-class=GramE>(</span>error);</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>A
-static debug flag <img border=0 width=24 height=14 id="_x0000_i1031"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>can be used to enable or disable verbose
-information printed to the systemÂ’s output <span class=GramE>stream </span><img
-border=0 width=24 height=14 id="_x0000_i1032" src="../../../../images/tag_2.gif"
-align=CENTER>. Errors will always be printed to the systemÂ’s error <span
-class=GramE>stream </span><img border=0 width=24 height=14 id="_x0000_i1033"
-src="../../../../images/tag_3.gif" align=CENTER>.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>All
-<span class=SpellE>righty</span> then! In each of the following subsections,
-weÂ’ll look at how to create a different kind of UML element, starting with
-models.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Models</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-the root of a typical UML model is a model element. It contains a
-(hierarchical) set of elements that together describe the physical system being
-modeled. To create a model using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a project (i.e. <b>Getting Started with UML2</b>) in the <b>Project
-Explorer</b> view and select the <b>File &gt; New &gt; <span class=GramE>Other</span>...</b>
-menu item.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Select the <b>UML Model</b> wizard from the <b>Example EMF Model Creation
-Wizards</b> category and press the <b>Next &gt;</b> button.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Enter a file name (i.e. “ExtendedPO2.uml”) and press the <b>Next &gt;</b>
-button.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>4)
-Select <b>Model</b> for the model object and press the <b>Finish</b> button.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>5)
-Select the <b>Window &gt; Show View &gt; Properties</b> menu item.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>6)
-<span class=GramE>Select</span> the &lt;<b>Model&gt;</b> element in the UML
-editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>7)
-Enter a value (i.e. “epo2”) for the <b>Name</b> property in the <b>Properties</b>
-view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1089" type="#_x0000_t75" style='width:655.5pt;height:447.75pt'>
- <v:imagedata src="article_files/image025.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=874 height=597
-src="article_files/image026.jpg" v:shapes="_x0000_i1089"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically creates and returns a model with a
-specified name.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static Model <span class=SpellE>createModel</span>(String name) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=14 id="_x0000_i1034"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span>Model <span class=SpellE>model</span> = <span class=SpellE><span
-class=GramE>UMLFactory.eINSTANCE.createModel</span></span><span class=GramE>(</span>);</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=14 id="_x0000_i1035"
-src="../../../../images/tag_2.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span><span class=SpellE><span class=GramE>model.setName</span></span><span
-class=GramE>(</span>name);</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=14 id="_x0000_i1036"
-src="../../../../images/tag_3.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span><span class=GramE>out(</span>&quot;Model '&quot; + <span
-class=SpellE>model.getQualifiedName</span>() + &quot;' created.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><img
-border=0 width=24 height=14 id="_x0000_i1037" src="../../../../images/tag_4.gif"
-align=CENTER><span style='mso-tab-count:2'>         </span><span class=GramE>return</span> model;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>First,
-we ask the UML factory singleton <img border=0 width=24 height=14
-id="_x0000_i1038" src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>to create a model, and we set its <span
-class=GramE>name </span><img border=0 width=24 height=14 id="_x0000_i1039"
-src="../../../../images/tag_2.gif" align=CENTER>. Then, we output information <img
-border=0 width=24 height=14 id="_x0000_i1040" src="../../../../images/tag_3.gif"
-align=CENTER><span style='mso-spacerun:yes'> </span>to the user to let them
-know that the model has been successfully created. Finally, we return <img
-border=0 width=24 height=14 id="_x0000_i1041" src="../../../../images/tag_4.gif"
-align=CENTER><span style='mso-spacerun:yes'> </span>the model. YouÂ’ll notice
-most, if not all, of the code snippets in this article will follow this pattern
-– create the element (and set some properties on it), inform the user, and
-return it.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=63 height=14 id="_x0000_i1042" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>All named elements (a model is a type of named
-element) have a “simple” name and a qualified name. The qualified name is the
-“simple” name prefixed with the “simple” names of <span class=GramE>all of the</span>
-named elementÂ’s containing namespaces. Note that the qualified name of a named
-element is only defined if all of its containing namespaces have non-empty
-“simple” names.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create a model named
-‘epo2’ as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>Model epo2Model = <span
-class=SpellE><span class=GramE>createModel</span></span><span class=GramE>(</span>&quot;epo2&quot;);</pre>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Packages</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>A
-package is a namespace for its members (<span class=SpellE><i style='mso-bidi-font-style:
-normal'>packageable</i></span><i style='mso-bidi-font-style:normal'> elements</i>),
-and may contain other packages. A package can import either individual members
-of other packages, or all of the members of other packages. To create a package
-using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a package (e.g. &lt;<b>Package&gt; <span class=SpellE>foo</span></b>) in
-the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Right-click and select the <b>New Child &gt; Packaged Element Package</b>
-option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Enter a value (e.g. “bar”) for the <b>Name</b> property in the <b>Properties</b>
-view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>We
-donÂ’t actually need to create a package because our sample model doesnÂ’t
-contain anyÂ… except of course for the root package (i.e. the model). ThatÂ’s
-right – a model is a type of package.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically creates and returns a package with a
-specified name in a specified nesting package.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static org.eclipse.uml2.uml.Package <span
-class=SpellE>createPackage</span>(</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span><span class=GramE>org.eclipse.uml2.uml.Package</span> <span
-class=SpellE>nestingPackage</span>, String name) {</pre><pre style='margin-left:
-9.0pt'><img border=0 width=24 height=14 id="_x0000_i1043"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span>org.eclipse.uml2.uml.Package package_ = <span class=SpellE>nestingPackage</span></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>.<span
-class=SpellE><span class=GramE>createNestedPackage</span></span><span
-class=GramE>(</span>name);</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>out(</span>&quot;Package '&quot; + <span class=SpellE>package_.getQualifiedName</span>() + &quot;' created.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>return</span> package_;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here,
-instead of asking the factory to create the package for us, weÂ’re making use of
-one of the factory methods <img border=0 width=24 height=14 id="_x0000_i1044"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>in the UML2 API.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=63 height=14 id="_x0000_i1045" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>In UML2, a factory method exists for every feature
-that can contain other elements (i.e. every containment feature). In addition,
-more convenient factory methods exist for commonly created types (like
-packages). In this case, the package has a feature (<span class=SpellE><code>packagedElement</code></span>)
-that can contain <span class=SpellE>packageable</span> elements, so we could
-obtain the <span class=SpellE>Ecore</span> class of the type of (<span
-class=SpellE>packageable</span>) element we want to create (i.e. <code>Package</code>)
-from the UML <span class=SpellE>Ecore</span> package singleton, and pass it to
-the <span class=SpellE><span class=GramE><code>createPackagedElement</code></span></span><span
-class=GramE><code>(</code></span><code>String, <span class=SpellE>EClass</span>)</code>
-factory method. Instead, we use the more convenient <span class=SpellE><span
-class=GramE><code>createNestedPackage</code></span></span><span class=GramE><code>(</code></span><code>String)</code>
-factory method which implicitly creates a package and accepts the desired
-package name as an argument. Behind the scenes, the package will create a
-nested package, set its name, and add the package to its list of packaged elements.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create a package named
-‘bar’ in nesting package ‘<span class=SpellE>foo</span>’ as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>org.eclipse.uml2.uml.Package</span> <span class=SpellE>barPackage</span> = <span
-class=SpellE>createPackage</span>(<span class=SpellE>fooPackage</span>, &quot;bar&quot;);</pre>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Primitive Types</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>A
-primitive type defines a predefined data type, without any relevant
-substructure. Primitive types used in UML™ itself include <code>Boolean</code>,
-<code>Integer</code>, <span class=SpellE><code>UnlimitedNatural</code></span>,
-and <code>String</code>. To create a primitive type using the UML editor,
-follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a package (i.e. &lt;<b>Model&gt; epo2</b>) in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Right-click and select the <b>New Child &gt; Packaged Element &gt; Primitive
-Type</b> option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Enter a value (i.e. “<span class=SpellE>int</span>”) for the <b>Name</b>
-property in the <b>Properties</b> view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1046" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Create the remaining primitive types from the
-ExtendedPO2 model using the UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1090" type="#_x0000_t75" style='width:655.5pt;height:447.75pt'>
- <v:imagedata src="article_files/image003.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=874 height=597
-src="article_files/image004.jpg" v:shapes="_x0000_i1090"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically creates and returns a primitive type with
-a specified name in a specified package.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static <span class=SpellE>PrimitiveType</span> <span
-class=SpellE>createPrimitiveType</span>(</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span>org.eclipse.uml2.uml.Package package_, String name) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=13 id="_x0000_i1047"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span><span class=SpellE>PrimitiveType</span> <span class=SpellE>primitiveType</span> = (<span
-class=SpellE>PrimitiveType</span>) package_</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span>.<span class=SpellE><span
-class=GramE>createOwnedPrimitiveType</span></span><span class=GramE>(</span>name);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>out(</span>&quot;Primitive type '&quot; + <span
-class=SpellE>primitiveType.getQualifiedName</span>()</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>+ &quot;' created.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>return</span> <span
-class=SpellE>primitiveType</span>;</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call the <span class=SpellE><span class=GramE><code>createOwnedPrimitiveType</code></span></span><span
-class=GramE><code>(</code></span><code>String)</code> convenience factory
-method <img border=0 width=24 height=13 id="_x0000_i1048"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>to ask the package to create a primitive type
-with the specified name as one of its packaged elements.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create a primitive type
-named ‘<span class=SpellE>int</span>’ in model ‘epo2’ as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE>PrimitiveType</span> <span class=SpellE>intPrimitiveType</span> = <span
-class=SpellE><span class=GramE>createPrimitiveType</span></span><span
-class=GramE>(</span>epo2Model, &quot;<span class=SpellE>int</span>&quot;);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1049" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically create the
-remaining primitive types from the ExtendedPO2 model.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Enumerations</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>An
-enumeration is a kind of data type whose instances may be any of a number of
-user-defined enumeration literals. To create an enumeration using the UML
-editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a package (i.e. &lt;<b>Model&gt; epo2</b>) in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Right-click and select the <b>New Child &gt; Packaged Element &gt; Enumeration</b>
-option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Enter a value (i.e. “<span class=SpellE>OrderStatus</span>”) for the <b>Name</b>
-property in the <b>Properties</b> view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1091" type="#_x0000_t75" style='width:655.5pt;height:447.75pt'>
- <v:imagedata src="article_files/image005.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=874 height=597
-src="article_files/image006.jpg" v:shapes="_x0000_i1091"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically creates and returns an enumeration with a
-specified name in a specified package.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static Enumeration <span class=SpellE>createEnumeration</span>(</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>org.eclipse.uml2.uml.Package package_, String name) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=13 id="_x0000_i1050"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span>Enumeration <span class=SpellE>enumeration</span> = (Enumeration) package_</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>.<span
-class=SpellE><span class=GramE>createOwnedEnumeraton</span></span><span
-class=GramE>(</span>name);</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>out(</span>&quot;Enumeration '&quot; + <span class=SpellE>enumeration.getQualifiedName</span>() + &quot;' created.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>return</span> enumeration;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call the <span class=SpellE><span class=GramE><code>createOwnedEnumeration</code></span></span><span
-class=GramE><code>(</code></span><code>String)</code> convenience factory
-method <img border=0 width=24 height=13 id="_x0000_i1051"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>to ask the package to create a primitive type
-with the specified name as one of its packaged elements.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create an enumeration
-named ‘<span class=SpellE>OrderStatus</span>’ in model ‘epo2’ as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>Enumeration <span
-class=SpellE>orderStatusEnumeration</span> = <span class=SpellE><span
-class=GramE>createEnumeration</span></span><span class=GramE>(</span>epo2Model,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>&quot;<span
-class=SpellE>OrderStatus</span>&quot;);</pre>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Enumeration Literals</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>An
-enumeration literal is a user-defined data value for an enumeration. To create
-an enumeration literal using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select an enumeration (i.e. &lt;<b>Enumeration&gt; <span class=SpellE>OrderStatus</span></b>)
-in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Right-click and select the <b>New Child &gt; Owned Literal &gt; Enumeration
-Literal</b> option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Enter a value (i.e. “Pending”) for the <b>Name</b> property in the <b>Properties</b>
-view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1052" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Create the remaining enumeration literals from
-the ExtendedPO2 model using the UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1092" type="#_x0000_t75" style='width:655.5pt;height:447.75pt'>
- <v:imagedata src="article_files/image007.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=874 height=597
-src="article_files/image008.jpg" v:shapes="_x0000_i1092"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically creates and returns an enumeration literal
-with a specified name in a specified enumeration.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static <span class=SpellE>EnumerationLiteral</span> <span
-class=SpellE>createEnumerationLiteral</span>(</pre><pre style='margin-left:
-9.0pt'><span style='mso-tab-count:3'>                    </span>Enumeration <span
-class=SpellE>enumeration</span>, String name) {</pre><pre style='margin-left:
-9.0pt'><img border=0 width=24 height=13 id="_x0000_i1053"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span><span class=SpellE>EnumerationLiteral</span> <span
-class=SpellE>enumerationLiteral</span> = enumeration</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>.<span
-class=SpellE><span class=GramE>createOwnedLiteral</span></span><span
-class=GramE>(</span>name);</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>out(</span>&quot;Enumeration literal '&quot; + <span class=SpellE>enumerationLiteral.getQualifiedName</span>()</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>+ &quot;' created.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>return</span> <span
-class=SpellE>enumerationLiteral</span>;</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call a <span class=SpellE><span class=GramE><code>createOwnedLiteral</code></span></span><span
-class=GramE><code>(</code></span><code>String)</code> convenience factory
-method <img border=0 width=24 height=13 id="_x0000_i1054"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>to ask the enumeration to create an
-enumeration literal with the specified name as one of its owned literals.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create an enumeration
-literal named ‘Pending’ in enumeration ‘<span class=SpellE>OrderStatus</span>’
-as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>createEnumerationLiteral</span></span><span
-class=GramE>(</span><span class=SpellE>orderStatusEnumeration</span>, &quot;Pending&quot;);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1055" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically create the
-remaining enumeration literals from the ExtendedPO2 model.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Classes</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>A
-class is a kind of classifier whose features are attributes (some of which may
-represent the navigable ends of associations) and operations. To create a class
-using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a package (i.e. &lt;<b>Model&gt; epo2</b>) in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Right-click and select the <b>New Child &gt; Packaged Element &gt; Class</b>
-option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Enter a value (i.e. “Supplier”) for the <b>Name</b> property in the <b>Properties</b>
-view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1056" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Create the remaining classes from the
-ExtendedPO2 model using the UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1093" type="#_x0000_t75" style='width:655.5pt;height:509.25pt'>
- <v:imagedata src="article_files/image009.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=874 height=679
-src="article_files/image010.jpg" v:shapes="_x0000_i1093"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically creates and returns <span class=GramE>a(</span>n)
-(abstract) class with a specified name in a specified package.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static org.eclipse.uml2.uml.Class <span
-class=SpellE>createClass</span>(</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span>org.eclipse.uml2.uml.Package package_, String name, <span
-class=SpellE><span class=GramE>boolean</span></span> <span class=SpellE>isAbstract</span>) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=13 id="_x0000_i1057"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span>org.eclipse.uml2.uml.Class class_ = <span class=SpellE>package_.<span
-class=GramE>createOwnedClass</span></span><span class=GramE>(</span>name,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>isAbstract</span></span>);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>out(</span>&quot;Class '&quot; + <span
-class=SpellE>class_.getQualifiedName</span>() + &quot;' created.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>return</span> class_;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call the <span class=SpellE><span class=GramE><code>createOwnedClass</code></span></span><span
-class=GramE><code>(</code></span><code>String, <span class=SpellE>boolean</span>)</code>
-convenience factory method <img border=0 width=24 height=13 id="_x0000_i1058"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>to ask the package to create a class with the
-specified name as one of its packaged elements, and set the <span class=SpellE><code>isAbstract</code></span>
-attribute of the class based on the specified <span class=SpellE><code>boolean</code></span>
-argument.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1059" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>You may have noticed that we have been fully
-qualifying references to the <code>Package</code> and <code>Class</code>
-interfaces. This is recommended so that these types are not confused with <span
-class=SpellE><code>java.lang.Class</code></span> and <span class=SpellE><code>java.lang.Package</code></span>,
-which are imported implicitly in Java.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create a non-abstract
-class named ‘Supplier’ in model ‘epo2’ as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>org.eclipse.uml2.uml.Class</span> <span class=SpellE>supplierClass</span> = <span
-class=SpellE>createClass</span>(epo2Model,</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span>&quot;Supplier&quot;, false);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1060" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically create the
-remaining classes from the ExtendedPO2 model.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Generalizations</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>A
-generalization is a taxonomic relationship between a specific classifier and a
-more general classifier whereby each instance of the specific classifier is
-also an indirect instance of, and inherits the features of, the general
-classifier. To create a generalization using the UML editor, follow these
-steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a classifier (i.e. &lt;<b>Class&gt; <span class=SpellE>USAddress</span></b>)
-in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Right-click and select the <b>New Child &gt; Generalization &gt; Generalization</b>
-option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Select a value (i.e. <b>epo2::Address</b>) for the <b>General</b> property in
-the <b>Properties</b> view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1061" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Create the remaining generalizations from the
-ExtendedPO2 model using the UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1094" type="#_x0000_t75" style='width:655.5pt;height:509.25pt'>
- <v:imagedata src="article_files/image011.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=874 height=679
-src="article_files/image012.jpg" v:shapes="_x0000_i1094"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically creates and returns a generalization
-between specified specific and general classifiers.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static Generalization <span class=SpellE>createGeneralization</span>(</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>Classifier <span
-class=SpellE>specificClassifier</span>, Classifier <span class=SpellE>generalClassifier</span>) {</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>Generalization <span
-class=SpellE>generalization</span> = <span class=SpellE>specificClassifier</span></pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=13 id="_x0000_i1062"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-3'>                 </span>.<span class=SpellE><span class=GramE>createGeneralization</span></span><span
-class=GramE>(</span><span class=SpellE>generalClassifier</span>);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>out(</span>&quot;Generalization &quot; + <span
-class=SpellE>specificClassifier.getQualifiedName</span>() + &quot; -&gt;&gt; &quot;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>+ <span
-class=SpellE><span class=GramE>generalClassifier.getQualifiedName</span></span><span
-class=GramE>(</span>) + &quot; created.&quot;);</pre><pre style='margin-left:
-9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>return</span> generalization;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call a convenience factory method on the specific classifier that creates a
-generalization <img border=0 width=24 height=13 id="_x0000_i1063"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>as one of its children and sets the general
-classifier to the specified argument.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create a generalization
-between specific class ‘<span class=SpellE>USAddress</span>’ and general class
-‘Address’ as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>createGeneralization</span></span><span
-class=GramE>(</span><span class=SpellE>usAddressClass</span>, <span
-class=SpellE>addressClass</span>);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1064" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically create the
-remaining generalizations from the ExtendedPO2 model.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Attributes</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>When
-a property is owned by a classifier it represents an attribute; in this case is
-relates an instance of the classifier to a value or set of values of the type
-of the attribute.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1065" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>The types of <code>Classifier</code> that can
-own attributes in UML2 include <code>Artifact</code>, <span class=SpellE><code>DataType</code></span>,
-<code>Interface</code>, <code>Signal</code>, and <span class=SpellE><code>StructuredClassifier</code></span>
-(and their subtypes).</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>To
-create an attribute using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a classifier (i.e. &lt;<b>Class&gt; Address</b>) in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Right-click and select the <b>New Child &gt; Owned Attribute &gt; Property</b>
-option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Enter a value (i.e. &quot;name”) for the <b>Name</b> property in the <b>Properties</b>
-view.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>4)
-Select a value (i.e. <b>epo2::String</b>) for the <b>Type</b> property in the <b>Properties</b>
-view.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>5)
-Enter a value (i.e. 0) for the <b style='mso-bidi-font-weight:normal'>Lower</b>
-property in the <b style='mso-bidi-font-weight:normal'>Properties</b> view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1066" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>Lower and upper values for multiplicity
-elements (like properties) are represented as value specifications (first-class
-objects) in UML™ 2.x. The default value for lower and upper bounds is 1, unless
-a child value specification exists, in which case its value is used. Specifying
-a value for the lower or upper property will create a child value specification
-if none exists, or update its value if one does. Note that, to be treated as a
-bound, the lower value must be an integer and the upper value must be an
-unlimited natural. </p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1067" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Create the remaining attributes from the
-ExtendedPO2 model using the UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1095" type="#_x0000_t75" style='width:699pt;height:643.5pt'>
- <v:imagedata src="article_files/image013.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=932 height=858
-src="article_files/image014.jpg" v:shapes="_x0000_i1095"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically creates and returns an attribute with a
-specified upper bound, lower bound, type, and name in a specified class.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static Property <span class=SpellE>createAttribute</span>(org.eclipse.uml2.uml.Class class_,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>String name, Type <span
-class=SpellE>type</span>, <span class=SpellE>int</span> <span class=SpellE>lowerBound</span>, <span
-class=SpellE>int</span> <span class=SpellE>upperBound</span>) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=13 id="_x0000_i1068"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span>Property attribute = <span class=SpellE>class_.<span
-class=GramE>createOwnedAttribute</span></span><span class=GramE>(</span>name, type,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>lowerBound</span></span>, <span class=SpellE>upperBound</span>);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE>StringBuffer</span> <span
-class=SpellE>sb</span> = new <span class=SpellE><span class=GramE>StringBuffer</span></span><span
-class=GramE>(</span>);</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;Attribute '&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span><span
-class=SpellE>attribute.getQualifiedName</span>());</pre><pre style='margin-left:
-9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;' : &quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span><span
-class=SpellE>type.getQualifiedName</span>());</pre><pre style='margin-left:
-9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>&quot; [&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span><span
-class=SpellE>lowerBound</span>);</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;..&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span><span
-class=SpellE>LiteralUnlimitedNatural.UNLIMITED</span> == <span class=SpellE>upperBound</span></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>? &quot;*&quot;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>: <span
-class=SpellE><span class=GramE>String.valueOf</span></span><span class=GramE>(</span><span
-class=SpellE>upperBound</span>));</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;]&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>&quot; created.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>out(</span><span
-class=SpellE>sb.toString</span>());</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>return</span> attribute;</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call a <span class=SpellE><code>createOwnedAttribute</code></span><code>(String,
-Type, <span class=SpellE>int</span>, <span class=SpellE>int</span>)</code>
-convenience factory method <img border=0 width=24 height=13 id="_x0000_i1069"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>to ask the class to create a property as one
-of its owned attributes, set the type of the attribute to the specified type,
-and set the lower and upper bounds of the attribute (the factory method
-indirectly creates a literal integer and literal unlimited natural,
-respectively, and sets their values to the specified integer values).</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1070" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>The <span class=SpellE><code>LiteralUnlimitedNatural.UNLIMITED</code></span>
-constant represents the unlimited value for upper bounds (-1), as it does in
-EMF; when setting this value in the <b style='mso-bidi-font-weight:normal'>Properties</b>
-view, an asterisk (‘*’) can alternatively be specified.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create an attribute with
-multiplicity 0<span class=GramE>..1</span> of type ‘String’ named ‘name’ in
-class ‘Supplier’ as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>createAttribute</span></span><span class=GramE>(</span><span
-class=SpellE>supplierClass</span>, &quot;name&quot;, <span class=SpellE>stringPrimitiveType</span>, 0, 1);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1071" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically create the
-remaining attributes from the ExtendedPO2 model.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Associations</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>An
-association specifies a semantic relationship that can occur between two or
-more typed instances; its ends are represented by properties, each of which is
-connected to the type of the end. When a property is owned by an association it
-represents a non-navigable end of the association, in which case the type of
-the property is the type of the association end.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1072" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>The notion of association end navigability was
-separated from that of ownership in the UML™ 2.0 <span class=GramE>specification</span>,
-so a property that is owned by an association isnÂ’t necessarily non-navigable
-as of UML2 2.0.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>To
-create an association using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a package (i.e. &lt;<b>Model&gt; epo2</b>) in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Right-click and select the <b>New Child &gt; Packaged Element &gt; Association</b>
-option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Enter a value (e.g. “<span class=SpellE>A_orders_supplier</span>”) for the <b>Name</b>
-property in the <b>Properties</b> view.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>4)
-<span class=GramE>Select</span> the association (i.e. &lt;<b>Association&gt; <span
-class=SpellE>A_orders_supplier</span></b>) in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>5)
-Right-click and select the <b>New Child &gt; Owned End &gt; Property</b> option
-from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>6)
-Select a value (i.e. <b>epo2::Supplier</b>) for the <b>Type</b> property in the
-<b>Properties</b> view.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>7)
-<span class=GramE>Select</span> a class (i.e. &lt;<b>Class&gt; Supplier</b>) in
-the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>8)
-Right-click and select the <b>New Child &gt; Owned Attribute &gt; Property</b>
-option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>9)
-Select a value (i.e. <b>Composite</b>) for the <b>Aggregation</b> property in
-the <b>Properties</b> view.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>10)
-Select a value (i.e. <b>epo2::A_orders_supplier</b>) for the <b>Association</b>
-property in the <b>Properties</b> view.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>11)
-Enter a value (i.e. &quot;orders&quot;) for the <b>Name</b> property in the <b>Properties</b>
-view.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>12)
-Select a value (i.e. <b>epo2::PurchaseOrder</b>) for the <b>Type</b> property
-in the <b>Properties</b> view.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>13)
-Enter a value (i.e. 0) for the <b style='mso-bidi-font-weight:normal'>Lower</b>
-property in the <b style='mso-bidi-font-weight:normal'>Properties</b> view.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>14)
-Enter a value (i.e. *) for the <b style='mso-bidi-font-weight:normal'>Upper</b>
-property in the <b style='mso-bidi-font-weight:normal'>Properties</b> view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1073" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Create the remaining associations from the
-ExtendedPO2 model using the UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1096" type="#_x0000_t75" style='width:699pt;height:643.5pt'>
- <v:imagedata src="article_files/image015.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=932 height=858
-src="article_files/image016.jpg" v:shapes="_x0000_i1096"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically creates and returns an association between
-two specified types, with ends that have the specified upper bounds, lower
-bounds, role names, aggregation kinds, and <span class=SpellE>navigabilities</span>.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static Association <span class=SpellE>createAssociation</span>(Type type1,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>boolean</span></span> end1IsNavigable, <span
-class=SpellE>AggregationKind</span> end1Aggregation,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>String end1Name, <span
-class=SpellE>int</span> end1LowerBound, <span class=SpellE>int</span> end1UpperBound,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>Type type2, <span
-class=SpellE><span class=GramE>boolean</span></span> end2IsNavigable,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE>AggregationKind</span> end2Aggregation, String end2Name,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>int</span></span> end2LowerBound, <span
-class=SpellE>int</span> end2UpperBound) {</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=13 id="_x0000_i1074"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span>Association <span class=SpellE>association</span> = <span
-class=GramE>type1.createAssociation(</span>end1IsNavigable,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>end1Aggregation, end1Name, end1LowerBound, end1UpperBound, type2,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>end2IsNavigable, end2Aggregation, end2Name, end2LowerBound,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>end2UpperBound);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE>StringBuffer</span> <span
-class=SpellE>sb</span> = new <span class=SpellE><span class=GramE>StringBuffer</span></span><span
-class=GramE>(</span>);</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;Association &quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>if</span> (null == end1Name || 0 == end1Name.length()) {</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>'{');</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>type1.getQualifiedName());</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>'}');</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>} else {</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;'&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>type1.getQualifiedName());</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span><span
-class=SpellE>NamedElement.SEPARATOR</span>);</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>end1Name);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;'&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>}</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>&quot; [&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>end1LowerBound);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;..&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span><span
-class=SpellE>LiteralUnlimitedNatural.UNLIMITED</span> == end1UpperBound</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>? &quot;*&quot;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>: <span
-class=SpellE><span class=GramE>String.valueOf</span></span><span class=GramE>(</span>end1UpperBound));</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;] &quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>end2IsNavigable</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>? '&lt;'</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>: '-');</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>'-');</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>end1IsNavigable</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>? '&gt;'</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>: '-');</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>' <span
-class=SpellE>'</span>);</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>if</span> (null == end2Name || 0 == end2Name.length()) {</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>'{');</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>type2.getQualifiedName());</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>'}');</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>} else {</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;'&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>type2.getQualifiedName());</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span><span
-class=SpellE>NamedElement.SEPARATOR</span>);</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>end2Name);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;'&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>}</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>&quot; [&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>end2LowerBound);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;..&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span><span
-class=SpellE>LiteralUnlimitedNatural.UNLIMITED</span> == end2UpperBound</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>? &quot;*&quot;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>: <span
-class=SpellE><span class=GramE>String.valueOf</span></span><span class=GramE>(</span>end2UpperBound));</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;]&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>&quot; created.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>out(</span><span
-class=SpellE>sb.toString</span>());</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>return</span> association;</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call a convenience factory method on the first end type that creates an
-association (and its ends) between it and another type <img border=0 width=24
-height=13 id="_x0000_i1075" src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>as one of its siblings (i.e. as a child of its
-package namespace) and with the specified upper bounds, lower bounds, role
-names, aggregation kinds, and <span class=SpellE>navigabilities</span>. The
-owners of the association ends (properties) are based on the specified <span
-class=SpellE>navigabilities</span> – navigable ends are owned by the end type
-if allowed, otherwise they are owned by the association; non-navigable ends are
-owned by the association.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1076" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>The <span class=SpellE><code>NamedElement.SEPARATOR</code></span>
-constant represents the standard separator (<b>::</b>) used in qualified names.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create a unidirectional
-composition (composite association) between classes ‘Supplier’ and ‘<span
-class=SpellE>PurchaseOrder</span>’ in model ‘epo2’ as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>createAssociation</span></span><span
-class=GramE>(</span><span class=SpellE>supplierClass</span>, true,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE>AggregationKind.COMPOSITE_LITERAL</span>, &quot;orders&quot;, 0,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE>LiteralUnlimitedNatural.UNLIMITED</span>, <span class=SpellE>purchaseOrderClass</span>,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>false, <span
-class=SpellE>AggregationKind.NONE_LITERAL</span>, &quot;&quot;, 1, 1);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1077" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically create the
-remaining associations from the ExtendedPO2 model.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Saving
-Models</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Now
-that weÂ’ve spent all this time creating a model, weÂ’d better save our work.
-When we created our model using the UML model wizard, a UML resource was
-created for us, so now all that needs to be done is to serialize the contents
-of our model as XMI to our file on disk (i.e. <code>ExtendedPO2.uml</code>). To
-save a model using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select the <b>File &gt; Save</b> menu item.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>ItÂ’s
-that simple. Programmatically, we have a bit more work to do because so far,
-weÂ’ve been creating our model in a vacuum, i.e. without a containing resource.
-The code snippet below shows a method that saves a specified package to a
-resource with a specified URI.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static void save(org.eclipse.uml2.uml.Package package_, URI <span
-class=SpellE>uri</span>) {</pre><pre style='margin-left:9.0pt'><img border=0
-width=24 height=13 id="_x0000_i1078" src="../../../../images/tag_1.gif"
-align=CENTER><span style='mso-tab-count:2'>         </span>Resource <span
-class=SpellE>resource</span> = new <span class=SpellE><span class=GramE>ResourceSetImpl</span></span><span
-class=GramE>(</span>).<span class=SpellE>createResource</span>(<span
-class=SpellE>uri</span>);</pre><pre style='margin-left:9.0pt'><img border=0
-width=24 height=13 id="_x0000_i1079" src="../../../../images/tag_2.gif"
-align=CENTER><span style='mso-tab-count:2'>         </span><span class=SpellE><span
-class=GramE>resource.getContents</span></span><span class=GramE>(</span>).add(package_);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>try</span> {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=13 id="_x0000_i1080"
-src="../../../../images/tag_3.gif" align=CENTER><span style='mso-tab-count:
-3'>                 </span><span class=SpellE><span class=GramE>resource.save</span></span><span
-class=GramE>(</span>null);</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span><span class=GramE>out(</span>&quot;Done.&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>} catch (<span
-class=SpellE>IOException</span> <span class=SpellE>ioe</span>) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=13 id="_x0000_i1081"
-src="../../../../images/tag_4.gif" align=CENTER><span style='mso-tab-count:
-3'>                 </span><span class=GramE>err(</span><span class=SpellE>ioe.getMessage</span>());</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>}</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we create a resource set <img border=0 width=24 height=13 id="_x0000_i1082"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>and a resource with the specified URI, add the
-package to the resourceÂ’s contents <img border=0 width=24 height=13
-id="_x0000_i1083" src="../../../../images/tag_2.gif" align=CENTER>, and ask the
-resource to save itself <img border=0 width=24 height=13 id="_x0000_i1084"
-src="../../../../images/tag_3.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>using the default options. If an exception
-occurs, we notify the user <img border=0 width=24 height=13 id="_x0000_i1085"
-src="../../../../images/tag_4.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>via our handy utility method.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-let’s see this method in action. For example, we could save the ‘epo2’ model to
-a resource with URI ‘ExtendedPO2.uml’ (relative to a URI passed in as an
-argument) as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>save(</span>epo2Model, <span class=SpellE>URI.createURI</span>(<span
-class=SpellE>args</span>[0]).<span class=SpellE>appendSegment</span>(&quot;ExtendedPO2&quot;)</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>.<span
-class=SpellE><span class=GramE>appendFileExtension</span></span><span
-class=GramE>(</span><span class=SpellE>UMLResource.FILE_EXTENSION</span>));</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1086" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>The <span class=SpellE><code>UMLResource.FILE_EXTENSION</code></span>
-constant represents the file extension for UML resources (<code>.<span
-class=SpellE>uml</span></code>). Note that the <span class=SpellE><code>UMLResource</code></span>
-interface contains a number of constants that you will find useful when working
-with UML resources.</p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Conclusion</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Congratulations!
-If youÂ’ve made it this far, youÂ’ve successfully created a simple model
-programmatically and/or using the UML editor. ThereÂ’s a whole lot more that
-could be said, but the purpose of this article was just to get you started.
-Stay tuned for more articles on how to develop tools with UML2.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>For
-more information on UML2, visit the <a
-href="http://www.eclipse.org/modeling/mdt/?project=uml2#uml2">home page</a> or
-join the <a href="news://news.eclipse.org/eclipse.modeling.mdt.uml2">newsgroup</a>.</p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>References</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-class=GramE>[1] F. <span class=SpellE>Budinsky</span>, D. Steinberg, E. <span
-class=SpellE>Merks</span>, R. <span class=SpellE>Ellersick</span>, and T. J. <span
-class=SpellE>Grose</span>.</span> <i style='mso-bidi-font-style:normal'>Eclipse
-Modeling Framework</i>. Pearson Education, Inc., Boston, MA, 2003.</p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Source
-Code</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>To
-run the example or view the source code for this article, unzip <a
-href="http://download.eclipse.org/modeling/mdt/uml2/downloads/articles/uml2.articles_200607181325.zip">uml2.articles_200607181325.zip</a>
-into your Eclipse home directory and import the <code>com.ibm.uml2.articles</code>
-plug-in into your workspace as a binary project with linked content (<b>File
-&gt; ImportÂ… &gt; External Plug-ins and Fragments</b>). You can run the <code>GettingStartedWithUML2</code>
-class as a Java application with a file URI (e.g. “file:/C:/Getting <span
-class=GramE>Started</span> with UML2”) as a program argument.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='font-size:7.5pt'>Java and all Java-based trademarks and logos are
-trademarks or registered trademarks of Sun Microsystems, Inc. in the United
-States, other countries, or both.</span></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/filelist.xml b/uml2/docs/articles/Getting_Started_with_UML2/article_files/filelist.xml
deleted file mode 100644
index 4ae358d..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/filelist.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:MainFile HRef="../article.html"/>
- <o:File HRef="image001.png"/>
- <o:File HRef="image022.jpg"/>
- <o:File HRef="image021.emz"/>
- <o:File HRef="image002.gif"/>
- <o:File HRef="image023.png"/>
- <o:File HRef="image024.jpg"/>
- <o:File HRef="image025.png"/>
- <o:File HRef="image026.jpg"/>
- <o:File HRef="image003.png"/>
- <o:File HRef="image004.jpg"/>
- <o:File HRef="image005.png"/>
- <o:File HRef="image006.jpg"/>
- <o:File HRef="image007.png"/>
- <o:File HRef="image008.jpg"/>
- <o:File HRef="image009.png"/>
- <o:File HRef="image010.jpg"/>
- <o:File HRef="image011.png"/>
- <o:File HRef="image012.jpg"/>
- <o:File HRef="image013.png"/>
- <o:File HRef="image014.jpg"/>
- <o:File HRef="image015.png"/>
- <o:File HRef="image016.jpg"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image001.png b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image001.png
deleted file mode 100644
index 0b3545b..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image001.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image002.gif b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image002.gif
deleted file mode 100644
index 79891d2..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image002.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image003.png b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image003.png
deleted file mode 100644
index 300200c..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image003.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image004.jpg b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image004.jpg
deleted file mode 100644
index 896b235..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image005.png b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image005.png
deleted file mode 100644
index 33de634..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image005.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image006.jpg b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image006.jpg
deleted file mode 100644
index 7849c8f..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image006.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image007.png b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image007.png
deleted file mode 100644
index 6bcc4a6..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image007.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image008.jpg b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image008.jpg
deleted file mode 100644
index f53051b..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image008.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image009.png b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image009.png
deleted file mode 100644
index 412c9e8..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image009.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image010.jpg b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image010.jpg
deleted file mode 100644
index 362743c..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image010.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image011.png b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image011.png
deleted file mode 100644
index 358bad7..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image011.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image012.jpg b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image012.jpg
deleted file mode 100644
index 4c28e00..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image012.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image013.png b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image013.png
deleted file mode 100644
index d180a97..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image013.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image014.jpg b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image014.jpg
deleted file mode 100644
index 896f777..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image014.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image015.png b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image015.png
deleted file mode 100644
index 45d29bb..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image015.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image016.jpg b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image016.jpg
deleted file mode 100644
index 20ed973..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image016.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image021.emz b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image021.emz
deleted file mode 100644
index 79289b9..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image021.emz
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image022.jpg b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image022.jpg
deleted file mode 100644
index 6a6b7c5..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image022.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image023.png b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image023.png
deleted file mode 100644
index 79f3757..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image023.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image024.jpg b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image024.jpg
deleted file mode 100644
index 327adba..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image024.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image025.png b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image025.png
deleted file mode 100644
index 997e89e..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image025.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image026.jpg b/uml2/docs/articles/Getting_Started_with_UML2/article_files/image026.jpg
deleted file mode 100644
index 37b9d32..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/article_files/image026.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Getting_Started_with_UML2/default_style.css b/uml2/docs/articles/Getting_Started_with_UML2/default_style.css
deleted file mode 100644
index d725483..0000000
--- a/uml2/docs/articles/Getting_Started_with_UML2/default_style.css
+++ /dev/null
@@ -1,11 +0,0 @@
-p, table, td, th {  font-family: arial, helvetica, geneva; font-size: 10pt}
-pre {  font-family: "Courier New", Courier, mono; font-size: 10pt}
-h2 { font-family: arial, helvetica, geneva; font-size: 18pt; font-weight: bold ; line-height: 14px}
-code {  font-family: "Courier New", Courier, mono; font-size: 10pt}
-sup {  font-family: arial,helvetica,geneva; font-size: 10px}
-h3 {  font-family: arial, helvetica, geneva; font-size: 14pt; font-weight: bold}
-li {  font-family: arial, helvetica, geneva; font-size: 10pt}
-h1 {  font-family: arial, helvetica, geneva; font-size: 28px; font-weight: bold}
-body {  font-family: arial, helvetica, geneva; font-size: 10pt; clip:   rect(   ); margin-top: 5mm; margin-left: 3mm}
-.indextop { font-size: x-large;; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold}
-.indexsub { font-size: xx-small;; font-family: Arial, Helvetica, sans-serif; color: #8080FF}
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article.html b/uml2/docs/articles/Introduction_to_UML2_Profiles/article.html
deleted file mode 100644
index 42f5017..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article.html
+++ /dev/null
@@ -1,2279 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="article_files/filelist.xml">
-<link rel=Edit-Time-Data href="article_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Introduction to UML2 Profiles</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="country-region"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="place"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="State"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="City"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>jbruck</o:LastAuthor>
-  <o:Revision>179</o:Revision>
-  <o:TotalTime>4753</o:TotalTime>
-  <o:Created>2004-10-25T17:54:00Z</o:Created>
-  <o:LastSaved>2008-07-11T19:41:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>8775</o:Words>
-  <o:Characters>50024</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>416</o:Lines>
-  <o:Paragraphs>117</o:Paragraphs>
-  <o:CharactersWithSpaces>58682</o:CharactersWithSpaces>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Tahoma;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:238;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:1627421319 -2147483648 8 0 66047 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:238;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:purple;
-	text-decoration:underline;
-	text-underline:single;}
-p.MsoDocumentMap, li.MsoDocumentMap, div.MsoDocumentMap
-	{mso-style-noshow:yes;
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	background:navy;
-	font-size:12.0pt;
-	font-family:Tahoma;
-	mso-fareast-font-family:"Times New Roman";}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:2098360590;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-501428010 67698705 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
-@list l0:level1
-	{mso-level-text:"%1\)";
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]><!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="10242"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=purple style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<p class=MsoNormal align=right style='text-align:right'><span style='font-size:
-10.0pt;font-family:Arial'>&nbsp; </span><span style='font-size:10.0pt'>Copyright
-© 2004, 2008 International Business Machines Corp.</span><span
-style='font-size:10.0pt;font-family:Arial'> <o:p></o:p></span></p>
-
-<div align=right>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width="100%"
- style='width:100.0%;mso-cellspacing:0in;mso-padding-alt:1.5pt 1.5pt 1.5pt 1.5pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td valign=top style='background:#0080C0;padding:1.5pt 1.5pt 1.5pt 1.5pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<h1><img width=120 height=86 id="_x0000_i1025" src="../../../../images/Idea.jpg"
-align=CENTER></h1>
-
-<p>&nbsp;</p>
-
-<h1 align=center style='text-align:center'>Introduction to UML2 Profiles</h1>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:Arial'>Summary</span></b><span
-style='font-size:10.0pt;font-family:Arial'> <br>
-This article describes how to work with profiles using the UML2 plug-ins for
-Eclipse. In particular, it gives an overview of how to create and apply
-profiles (and their contents) both programmatically and by using the sample UML
-editor<o:p></o:p></span></p>
-
-<p><span class=SpellE><b>Kenn</b></span><b> Hussey, IBM</b><br>
-<st1:date Year="2006" Day="18" Month="7">July 18, 2006</st1:date> (Updated: <st1:date
-Year="2008" Day="11" Month="7">July 11, 2008</st1:date> for Eclipse 3.4; James <span
-class=SpellE>Bruck</span>)</p>
-
-</blockquote>
-
-<div class=MsoNormal align=center style='text-align:center'><span
-style='font-size:10.0pt;font-family:Arial'>
-
-<hr size=2 width="100%" align=center>
-
-</span></div>
-
-<h2>Prerequisites</h2>
-
-<p>To start using UML2 (and to follow along with the example in this article),
-you must have <span class=MsoHyperlink><a
-href="http://download.eclipse.org/eclipse/downloads/">Eclipse 3.4</a></span>, <span
-class=MsoHyperlink><a
-href="http://www.eclipse.org/modeling/emf/downloads/?project=emf">EMF 2.4</a></span>,
-and <span class=MsoHyperlink><a
-href="http://www.eclipse.org/modeling/mdt/downloads/?project=uml2">UML2 2.2</a></span>
-installed.<span style='mso-spacerun:yes'>  </span></p>
-
-<p>You can either download the zips individually and expand them out or follow
-the steps below:<span style='mso-spacerun:yes'>  </span></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo1;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>1)<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]><span dir=LTR><span
-style='mso-spacerun:yes'> </span>Download and run Eclipse 3.4</span></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo1;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>2)<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]><span dir=LTR><span
-style='mso-spacerun:yes'> </span>Select the <b>Help</b> &gt; <b>Software
-Updates Â… </b>menu</span></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo1;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>3)<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]><span dir=LTR><span
-style='mso-spacerun:yes'> </span>Select the <b>Available Software</b> tab and
-expand the <b>Ganymede\Model and Model Development</b> tree item.</span></p>
-
-<p style='margin-left:.25in'><!--[if gte vml 1]><v:shapetype id="_x0000_t75"
- coordsize="21600,21600" o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
- filled="f" stroked="f">
- <v:stroke joinstyle="miter"/>
- <v:formulas>
-  <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-  <v:f eqn="sum @0 1 0"/>
-  <v:f eqn="sum 0 0 @1"/>
-  <v:f eqn="prod @2 1 2"/>
-  <v:f eqn="prod @3 21600 pixelWidth"/>
-  <v:f eqn="prod @3 21600 pixelHeight"/>
-  <v:f eqn="sum @0 0 1"/>
-  <v:f eqn="prod @6 1 2"/>
-  <v:f eqn="prod @7 21600 pixelWidth"/>
-  <v:f eqn="sum @8 21600 0"/>
-  <v:f eqn="prod @7 21600 pixelHeight"/>
-  <v:f eqn="sum @10 21600 0"/>
- </v:formulas>
- <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" aspectratio="t"/>
-</v:shapetype><v:shape id="_x0000_i1128" type="#_x0000_t75" style='width:581.25pt;
- height:408.75pt'>
- <v:imagedata src="article_files/image037.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=775 height=545
-src="article_files/image038.jpg" v:shapes="_x0000_i1128"><![endif]></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo1;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>4)<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]><span dir=LTR><span
-style='mso-spacerun:yes'> </span>Select <b>UML2 End-User Features</b> and <b>UML2
-Extender SDK</b>.<span style='mso-spacerun:yes'>  </span>The version should
-indicate 2.2.0 (or later).</span></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo1;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>5)<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]><span dir=LTR><span
-style='mso-spacerun:yes'> </span>Click <b>Install<span class=GramE>Â… <span
-style='font-weight:normal'>.</span></span></b></span></p>
-
-<p>At this stage, UML2 2.2 and all dependencies should be installed.</p>
-
-<h2>Introduction</h2>
-
-<p>This article will walk you through the basics of creating and applying
-profiles using UML2. Using a subset of the <span class=SpellE>Ecore</span>
-profile (see below) and the model we described in the “Getting Started with
-UML2” article [1] (the ExtendedPO2 model, shamelessly “borrowed” from the EMF
-“bible” [2]) as an example, we’ll look at what’s involved in creating some of
-the more common elements that make up a profile. For each type of element,
-weÂ’ll first explain the creation process using the sample UML editor and
-explore how to accomplish the same thing using Java code. Then weÂ’ll look at
-whatÂ’s involved in applying profiles and stereotypes to models. The ExtendedPO2
-model is shown below.</p>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1027" type="#_x0000_t75" style='width:581.25pt;
- height:407.25pt'>
- <v:imagedata src="article_files/image039.emz" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=775 height=543
-src="article_files/image002.gif" v:shapes="_x0000_i1027"><![endif]></p>
-
-<p>As described in the EMF book, some of the attributes of certain <span
-class=SpellE>Ecore</span> elements cannot be expressed directly in UML™. EMF
-provides a Rose property file (<span class=SpellE><span style='font-family:
-"Courier New"'>ecore.pty</span></span>) that defines all the non- UML™
-properties needed to completely express an EMF model using Rational Rose. The
-same thing can be achieved for a UML2 model using a profile.</p>
-
-<p>The <span class=SpellE>Ecore</span> properties for attributes are shown
-below. These properties can be expressed in UML2 as properties owned by a
-stereotype that extends the <span style='font-family:"Courier New"'>Property</span>
-<span class=SpellE>metaclass</span>.</p>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1028" type="#_x0000_t75" style='width:258pt;
- height:306.75pt'>
- <v:imagedata src="article_files/image003.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=344 height=409
-src="article_files/image004.jpg" v:shapes="_x0000_i1028"><![endif]></p>
-
-<p>The <span class=SpellE>Ecore</span> properties for association ends are
-shown below. These properties can also be expressed in UML2 as properties owned
-by a stereotype that extends the <span style='font-family:"Courier New"'>Property</span>
-<span class=SpellE>metaclass</span>.</p>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1029" type="#_x0000_t75" style='width:258pt;
- height:320.25pt'>
- <v:imagedata src="article_files/image005.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=344 height=427
-src="article_files/image006.jpg" v:shapes="_x0000_i1029"><![endif]></p>
-
-<h2>Getting Started</h2>
-
-<p>Before getting started, youÂ’ll need to create a simple project in your
-workspace. This project will serve as the container for the profile that weÂ’ll
-create using the UML editor. To create a simple project for this article,
-follow these steps:</p>
-
-<p style='margin-left:27.5pt'>1) Select the <b>Window &gt; Open Perspective
-&gt; <span class=GramE>Other</span>Â…</b> menu item.</p>
-
-<p style='margin-left:27.5pt'>2) Select the <b>Resource</b> perspective and
-press the <b>OK</b> button.</p>
-
-<p style='margin-left:27.5pt'>3) Select the <b>File &gt; New &gt; Project...</b>
-menu item.</p>
-
-<p style='margin-left:27.5pt'>4) Select the <b>Project</b> wizard from the <b>General</b>
-category and press the <b>Next &gt;</b> button.</p>
-
-<p style='margin-left:27.5pt'>5) Enter a project name (i.e. “Introduction to
-UML2 Profiles”), and press the <b>Finish</b> button.</p>
-
-<p>At this point your workspace should look something like this:</p>
-
-<p><!--[if gte vml 1]><v:shape id="_x0000_i1129" type="#_x0000_t75" style='width:624pt;
- height:405.75pt'>
- <v:imagedata src="article_files/image001.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=832 height=541
-src="article_files/image040.jpg" v:shapes="_x0000_i1129"><![endif]></p>
-
-<p>OK, that should be enough to get us going with the UML editor. Now, to
-follow along with the programmatic approach to creating profiles, weÂ’ll assume
-that you’ve created a Java class (named, say, “IntroductionToUML2Profiles”) in
-which you can write some code to construct our sample profile. The code
-snippets weÂ’ll show assume youÂ’ve defined the following utility methods to give
-the user information on the programÂ’s status:</p>
-
-<pre style='margin-left:9.0pt'><img border=0 width=24 height=14
-id="_x0000_i1030" src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-tab-count:1'>  </span><span class=GramE>public</span> static <span
-class=SpellE>boolean</span> DEBUG = true;</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static void out(String output) {</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>if</span> (DEBUG) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=14 id="_x0000_i1031"
-src="../../../../images/tag_2.gif" align=CENTER><span style='mso-tab-count:
-3'>                 </span><span class=SpellE><span class=GramE>System.out.println</span></span><span
-class=GramE>(</span>output);</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span>}</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:1'>     </span>}</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static void err(String error) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=14 id="_x0000_i1032"
-src="../../../../images/tag_3.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span><span class=SpellE><span class=GramE>System.err.println</span></span><span
-class=GramE>(</span>error);</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>A
-static debug flag <img border=0 width=24 height=14 id="_x0000_i1033"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>can be used to enable or disable verbose information
-printed to the systemÂ’s output <span class=GramE>stream </span><img border=0
-width=24 height=14 id="_x0000_i1034" src="../../../../images/tag_2.gif"
-align=CENTER>. Errors will always be printed to the systemÂ’s error <span
-class=GramE>stream </span><img border=0 width=24 height=14 id="_x0000_i1035"
-src="../../../../images/tag_3.gif" align=CENTER>.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>All
-<span class=SpellE>righty</span> then! In each of the following subsections,
-weÂ’ll look at how to create or manipulate a different kind of UML element,
-starting with profiles.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Profiles</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-the root of every UML2 profile is a profile element. It defines limited
-extensions to a reference <span class=SpellE>metamodel</span> (i.e. UML) with
-the purpose of adapting the <span class=SpellE>metamodel</span> to a specific
-platform or domain (e.g. EMF). <span class=SpellE>Metaclasses</span> from the
-reference <span class=SpellE>metamodel</span> are extended via stereotypes,
-which are defined as part of profiles. To create a profile using the UML
-editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a project (i.e. <b>Introduction to UML2 Profiles</b>) in the <b>Project
-Explorer</b> view and select the <b>File &gt; New &gt; <span class=GramE>Other</span>...</b>
-menu item.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Select the <b>UML Model</b> wizard from the <b>Example EMF Model Creation
-Wizards</b> category and press the <b>Next &gt;</b> button.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Enter a file name (i.e. “<span class=SpellE>Ecore.profile.uml</span>”) and
-press the <b>Next &gt;</b> button.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>4)
-Select <b>Profile</b> for the model object and press the <b>Finish</b> button.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>5)
-Select the <b>Window &gt; Show View &gt; Properties</b> menu item.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>6)
-Select the <b>Profile</b> element in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>7)
-Enter a value (i.e. “<span class=SpellE>ecore</span>”) for the <b>Name</b>
-property in the <b>Properties</b> view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1036" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>By convention, resources that contain profiles
-end with a <code>.<span class=SpellE>profile.uml</span></code> file extension
-in UML2. </p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1130" type="#_x0000_t75" style='width:624pt;height:405.75pt'>
- <v:imagedata src="article_files/image041.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=832 height=541
-src="article_files/image042.jpg" v:shapes="_x0000_i1130"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically creates and returns a profile with a
-specified name.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static Profile <span class=SpellE>createProfile</span>(String name) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=14 id="_x0000_i1037"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span>Profile <span class=SpellE>profile</span> = <span
-class=SpellE><span class=GramE>UMLFactory.eINSTANCE.createProfile</span></span><span
-class=GramE>(</span>);</pre><pre style='margin-left:9.0pt'><img border=0
-width=24 height=14 id="_x0000_i1038" src="../../../../images/tag_2.gif"
-align=CENTER><span style='mso-tab-count:2'>         </span><span class=SpellE><span
-class=GramE>profile.setName</span></span><span class=GramE>(</span>name);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><img
-border=0 width=24 height=14 id="_x0000_i1039" src="../../../../images/tag_3.gif"
-align=CENTER><span style='mso-tab-count:2'>         </span><span class=GramE>out(</span>&quot;Profile '&quot; + <span
-class=SpellE>profile.getQualifiedName</span>() + &quot;' created.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><img
-border=0 width=24 height=14 id="_x0000_i1040" src="../../../../images/tag_4.gif"
-align=CENTER><span style='mso-tab-count:1'>  </span><span style='mso-tab-count:
-1'>        </span><span class=GramE>return</span> profile;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>First,
-we ask the UML factory singleton <img border=0 width=24 height=14
-id="_x0000_i1041" src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>to create a profile, and we set its <span
-class=GramE>name </span><img border=0 width=24 height=14 id="_x0000_i1042"
-src="../../../../images/tag_2.gif" align=CENTER>. Then, we output information <img
-border=0 width=24 height=14 id="_x0000_i1043" src="../../../../images/tag_3.gif"
-align=CENTER><span style='mso-spacerun:yes'> </span>to the user to let them
-know that the profile has been successfully created. Finally, we return <img
-border=0 width=24 height=14 id="_x0000_i1044" src="../../../../images/tag_4.gif"
-align=CENTER><span style='mso-spacerun:yes'> </span>the profile. YouÂ’ll notice
-most, if not all, of the code snippets in this article will follow this pattern
-– create the element (and set some properties on it), inform the user, and
-return it.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-let’s see this method in action. For example, we could create a profile named ‘<span
-class=SpellE>ecore</span>Â’ as follows:</p>
-
-<p style='margin-left:9.0pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='mso-tab-count:2'>                         </span>Profile <span
-class=SpellE>ecoreProfile</span> = <span class=SpellE><span class=GramE>createProfile</span></span><span
-class=GramE>(</span>&quot;<span class=SpellE>ecore</span>&quot;);</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Importing
-Primitive Types</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Just
-like a class, a stereotype may have properties, which may be referred to as tag
-definitions. The types of these properties may be pre-defined in
-(domain-specific) libraries referenced by the profile. A profile can be made to
-reference primitive types from libraries (such as those provided in the <span
-style='font-family:"Courier New"'>org.eclipse.uml2.uml.resources</span>
-plug-in) by creating an import relationship between the profile and the
-primitive type. To import a primitive type using the UML editor, follow these
-steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a package (i.e. <b style='mso-bidi-font-weight:normal'>&lt;<span
-style='mso-bidi-font-weight:bold'>Profile&gt; <span class=SpellE>ecore</span></span></b>)
-in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Select the <b style='mso-bidi-font-weight:normal'>UML Editor &gt; Package &gt;
-Import TypeÂ…</b> menu item.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Choose a primitive type (i.e. <span class=SpellE><b style='mso-bidi-font-weight:
-normal'>UMLPrimitiveTypes::Boolean</b></span>)<span class=GramE>,</span> press
-the <b style='mso-bidi-font-weight:normal'>Add</b> button, then press the <b
-style='mso-bidi-font-weight:normal'>OK</b> button.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1045" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Import the other required primitive type (<span
-class=SpellE><b style='mso-bidi-font-weight:normal'>UMLPrimitiveTypes::String</b></span>)
-into the <span class=SpellE>Ecore</span> profile using the UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1131" type="#_x0000_t75" style='width:624pt;height:405.75pt'>
- <v:imagedata src="article_files/image007.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=832 height=541
-src="article_files/image008.jpg" v:shapes="_x0000_i1131"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically imports the primitive type with a
-specified name from the UML primitive <span class=GramE>types</span> library
-into a specified package and returns it.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static <span class=SpellE>PrimitiveType</span> <span
-class=SpellE>importPrimitiveType</span>(</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span>org.eclipse.uml2.uml.Package package_, String name) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=14 id="_x0000_i1046"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span>Model <span class=SpellE>umlLibrary</span> = (Model) <span
-class=GramE>load(</span>URI</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span>.<span class=SpellE><span
-class=GramE>createURI</span></span><span class=GramE>(</span><span
-class=SpellE>UMLResource.UML_PRIMITIVE_TYPES_LIBRARY_URI</span>));</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><img
-border=0 width=24 height=14 id="_x0000_i1047" src="../../../../images/tag_2.gif"
-align=CENTER><span style='mso-tab-count:2'>         </span><span class=SpellE>PrimitiveType</span> <span
-class=SpellE>primitiveType</span> = (<span class=SpellE>PrimitiveType</span>) <span
-class=SpellE>umlLibrary</span></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span>.<span class=SpellE><span
-class=GramE>getOwnedType</span></span><span class=GramE>(</span>name);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><img
-border=0 width=24 height=14 id="_x0000_i1048" src="../../../../images/tag_3.gif"
-align=CENTER><span style='mso-tab-count:2'>         </span><span class=SpellE>package_.<span
-class=GramE>createElementImport</span></span><span class=GramE>(</span><span
-class=SpellE>primitiveType</span>);</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>out(</span>&quot;Primitive type '&quot; + <span class=SpellE>primitiveType.getQualifiedName</span>()</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>+ &quot;' imported.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>return</span> <span
-class=SpellE>primitiveType</span>;</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we load the model library <img border=0 width=24 height=14 id="_x0000_i1049"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>containing the UML primitive types (<span
-style='font-family:"Courier New"'>Boolean</span>, <span style='font-family:
-"Courier New"'>Integer</span>, <span style='font-family:"Courier New"'>String</span>,
-and <span class=SpellE><span style='font-family:"Courier New"'>UnlimitedNatural</span></span>)
-using a utility method (described later) and a URI defined on the <span
-class=SpellE><span style='font-family:"Courier New"'>UMLResource</span></span>
-interface. Next, we retrieve the desired (owned) primitive type from the model
-by name <img border=0 width=24 height=14 id="_x0000_i1050"
-src="../../../../images/tag_2.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>using one of the convenience methods defined
-in the UML2 API. Finally, we invoke another convenience method <img border=0
-width=24 height=14 id="_x0000_i1051" src="../../../../images/tag_3.gif"
-align=CENTER><span style='mso-spacerun:yes'> </span>to create the element
-import relationship between the package and the element (with default public
-visibility), notify the user, and return the primitive type.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1052" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>The UML resources plug-in (<span
-style='font-family:"Courier New"'>org.eclipse.uml2.uml.resources</span>)
-provides several model libraries (which by convention have a <code>.<span
-class=SpellE>library.uml</span></code> file extension) that contain commonly
-used primitive types, such as those defined by Java and <span class=SpellE>Ecore</span>
-(in addition to those defined by UML™ itself). These libraries can be accessed
-using <span class=SpellE>URIs</span> defined on the <span class=SpellE><span
-style='font-family:"Courier New"'>UMLResource</span></span> interface, as shown
-above.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=63 height=14 id="_x0000_i1053" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>In UML2, a method of the form <code>get&lt;feature
-name<span class=GramE>&gt;(</span>String)</code> exists for every feature that
-can contain or reference named elements. In this case, the package has a
-feature (<span class=SpellE><code>ownedType</code></span>) that can contain
-types, so we pass the unqualified name of the type we are looking for to the <span
-class=SpellE><span class=GramE><code>getOwnedType</code></span></span><span
-class=GramE><code>(</code></span><code>String)</code> convenience method.
-Behind the scenes, the package will iterate over all of its owned types and
-return the first one that it finds that has the specified (unqualified) name.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could import the primitive
-type named ‘Boolean’ into profile ‘<span class=SpellE>ecore</span>’ as follows:</p>
-
-<pre style='margin-left:8.5pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE>PrimitiveType</span> <span class=SpellE>booleanPrimitiveType</span> = <span
-class=SpellE><span class=GramE>importPrimitiveType</span></span><span
-class=GramE>(</span><span class=SpellE>ecoreProfile</span>,</pre><pre
-style='margin-left:8.5pt'><span style='mso-tab-count:3'>                    </span>&quot;Boolean&quot;);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1054" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically import the
-other required primitive type (i.e. ‘String’) into the <span class=SpellE>Ecore</span>
-profile.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Enumerations</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>As
-with packages, profiles can contain enumerations. An enumeration is a kind of
-data type whose instances may be any of a number of user-defined enumeration
-literals. To create an enumeration using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a profile (i.e. <b style='mso-bidi-font-weight:normal'>&lt;<span
-style='mso-bidi-font-weight:bold'>Profile&gt; <span class=SpellE>ecore</span></span></b>)
-in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Right-click and select the <b>New Child &gt; Packaged Element &gt; Enumeration</b>
-option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Enter a value (i.e. “<span class=SpellE>VisibilityKind</span>”) for the <b>Name</b>
-property in the <b>Properties</b> view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1055" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Create the other enumeration (i.e. “<span
-class=SpellE>FeatureKind</span>”) for the <span class=SpellE>Ecore</span>
-profile using the UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1132" type="#_x0000_t75" style='width:624pt;height:405.75pt'>
- <v:imagedata src="article_files/image009.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=832 height=541
-src="article_files/image010.jpg" v:shapes="_x0000_i1132"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-(from the <span style='font-family:"Courier New"'>GettingStartedWithUML2</span>
-class) shows a method that programmatically creates and returns an enumeration
-with a specified name in a specified package.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static Enumeration <span class=SpellE>createEnumeration</span>(</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>org.eclipse.uml2.uml.Package package_, String name) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=13 id="_x0000_i1056"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span>Enumeration <span class=SpellE>enumeration</span> = (Enumeration) package_</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>.<span
-class=SpellE><span class=GramE>createOwnedEnumeraton</span></span><span
-class=GramE>(</span>name);</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>out(</span>&quot;Enumeration '&quot; + <span class=SpellE>enumeration.getQualifiedName</span>() + &quot;' created.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>return</span> enumeration;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call the <span class=SpellE><span class=GramE><code>createOwnedEnumeration</code></span></span><span
-class=GramE><code>(</code></span><code>String)</code> convenience factory
-method <img border=0 width=24 height=13 id="_x0000_i1057"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>to ask the package to create a primitive type with
-the specified name as one of its packaged elements.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create an enumeration
-named ‘<span class=SpellE>VisibilityKind</span>’ in profile ‘<span
-class=SpellE>ecore</span>Â’ as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>Enumeration <span
-class=SpellE>visibilityKindEnumeration</span> = GettingStartedWithUML2</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>.<span
-class=SpellE><span class=GramE>createEnumeration</span></span><span
-class=GramE>(</span><span class=SpellE>ecoreProfile</span>, &quot;<span
-class=SpellE>VisibilityKind</span>&quot;);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1058" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically create the
-other enumeration (i.e. ‘<span class=SpellE>FeatureKind</span>’) for the <span
-class=SpellE>Ecore</span> profile.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Enumeration Literals</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>An
-enumeration literal is a user-defined data value for an enumeration. To create
-an enumeration literal using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select an enumeration (i.e. <b style='mso-bidi-font-weight:normal'>&lt;<span
-style='mso-bidi-font-weight:bold'>Enumeration&gt; <span class=SpellE>VisibilityKind</span></span></b>)
-in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Right-click and select the <b>New Child &gt; Owned Literal &gt; Enumeration
-Literal</b> option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Enter a value (i.e. “Unspecified”) for the <b>Name</b> property in the <b>Properties</b>
-view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1059" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Create the remaining enumeration literals for
-the <span class=SpellE>Ecore</span> profile (i.e. “None”, “<span class=SpellE>ReadOnly</span>”,
-“<span class=SpellE>ReadWrite</span>”, “<span class=SpellE>ReadOnlyUnsettable</span>”,
-and “<span class=SpellE>ReadWriteUnsettable</span>” for <b style='mso-bidi-font-weight:
-normal'>&lt;<span style='mso-bidi-font-weight:bold'>Enumeration&gt; <span
-class=SpellE>VisibilityKind</span></span></b>; “Unspecified”, “Simple”,
-“Attribute”, “Element”, “<span class=SpellE>AttributeWildcard</span>”, “<span
-class=SpellE>ElementWildcard</span>”, and “Group” for <b style='mso-bidi-font-weight:
-normal'>&lt;<span style='mso-bidi-font-weight:bold'>Enumeration <span
-class=SpellE>FeatureKind</span>&gt;</span></b>) using the UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1133" type="#_x0000_t75" style='width:696pt;height:607.5pt'>
- <v:imagedata src="article_files/image011.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=928 height=810
-src="article_files/image012.jpg" v:shapes="_x0000_i1133"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-(from the <span style='font-family:"Courier New"'>GettingStartedWithUML2</span>
-class) shows a method that programmatically creates and returns an enumeration
-literal with a specified name in a specified enumeration.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static <span class=SpellE>EnumerationLiteral</span> <span
-class=SpellE>createEnumerationLiteral</span>(</pre><pre style='margin-left:
-9.0pt'><span style='mso-tab-count:3'>                    </span>Enumeration <span
-class=SpellE>enumeration</span>, String name) {</pre><pre style='margin-left:
-9.0pt'><img border=0 width=24 height=13 id="_x0000_i1060"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span><span class=SpellE>EnumerationLiteral</span> <span
-class=SpellE>enumerationLiteral</span> = enumeration</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>.<span
-class=SpellE><span class=GramE>createOwnedLiteral</span></span><span
-class=GramE>(</span>name);</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>out(</span>&quot;Enumeration literal '&quot; + <span class=SpellE>enumerationLiteral.getQualifiedName</span>()</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>+ &quot;' created.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>return</span> <span
-class=SpellE>enumerationLiteral</span>;</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call the <span class=SpellE><span class=GramE><code>createOwnedLiteral</code></span></span><span
-class=GramE><code>(</code></span><code>String)</code> convenience factory
-method <img border=0 width=24 height=13 id="_x0000_i1061"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>to ask the enumeration to create an
-enumeration literal with the specified name as one of its owned literals.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create an enumeration
-literal named ‘Unspecified’ in enumeration ‘<span class=SpellE>VisibilityKind</span>’
-as follows:</p>
-
-<pre style='margin-left:8.5pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>GettingStartedWithUML2.createEnumerationLiteral(</span></pre><pre
-style='margin-left:8.5pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>visibilityKindEnumeration</span></span>, &quot;Unspecified&quot;);<span
-style='mso-tab-count:2'>            </span></pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1062" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically create the
-remaining enumeration literals (i.e. ‘None’, ‘<span class=SpellE>ReadOnly</span>’,
-‘<span class=SpellE>ReadWrite</span>’, ‘<span class=SpellE>ReadOnlyUnsettable</span>’,
-and ‘<span class=SpellE>ReadWriteUnsettable</span>’ in enumeration ‘<span
-class=SpellE>VisibilityKind</span>’; ‘Unspecified’, ‘Simple’, ‘Attribute’,
-‘Element’, ‘<span class=SpellE>AttributeWildcard</span>’, ‘<span class=SpellE>ElementWildcard</span>’,
-and ‘Group’ in enumeration ‘<span class=SpellE>FeatureKind</span>’) for the <span
-class=SpellE>Ecore</span> profile.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Stereotypes</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>A
-stereotype defines how an existing <span class=SpellE>metaclass</span> may be
-extended, and enables the use of platform- or domain-specific terminology or
-notation in place of, or in addition to, the ones used for the extended <span
-class=SpellE>metaclass</span>. Each stereotype may extend one or more classes
-through extensions as part of a profile. To create a stereotype using the UML
-editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a profile (i.e. <b style='mso-bidi-font-weight:normal'>&lt;<span
-style='mso-bidi-font-weight:bold'>Profile&gt; <span class=SpellE>ecore</span></span></b>)
-in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Right-click and select the <b>New Child &gt; Packaged Element &gt; Stereotype</b>
-option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Enter a value (i.e. “<span class=SpellE>EStructuralFeature</span>”) for the <b>Name</b>
-property in the <b>Properties</b> view.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>4)
-<span class=GramE>Select</span> a value (i.e. <b style='mso-bidi-font-weight:
-normal'>true</b>) for the <b style='mso-bidi-font-weight:normal'>Is Abstract</b>
-property in the <b style='mso-bidi-font-weight:normal'>Properties</b> view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1063" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Create the remaining stereotypes for the <span
-class=SpellE>Ecore</span> profile (i.e. “<span class=SpellE>EAttribute</span>”
-and “<span class=SpellE>EReference</span>”) using the UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1134" type="#_x0000_t75" style='width:696pt;height:607.5pt'>
- <v:imagedata src="article_files/image013.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=928 height=810
-src="article_files/image014.jpg" v:shapes="_x0000_i1134"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically creates and returns <span class=GramE>a(</span>n)
-(abstract) stereotype with a specified name in a specified profile.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static Stereotype <span class=SpellE>createStereotype</span>(Profile <span
-class=SpellE>profile</span>, String name,</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span><span class=SpellE><span
-class=GramE>boolean</span></span> <span class=SpellE>isAbstract</span>) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=14 id="_x0000_i1064"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span>Stereotype <span class=SpellE>stereotype</span> = <span
-class=SpellE><span class=GramE>profile.createOwnedStereotype</span></span><span
-class=GramE>(</span>name, <span class=SpellE>isAbstract</span>);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>out(</span>&quot;Stereotype '&quot; + <span
-class=SpellE>stereotype.getQualifiedName</span>() + &quot;' created.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>return</span> stereotype;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call the <span class=SpellE><span class=GramE><code>createOwnedStereotype</code></span></span><span
-class=GramE><code>(</code></span><code>String, <span class=SpellE>boolean</span>)</code>
-convenience factory method <img border=0 width=24 height=13 id="_x0000_i1065"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>to ask the profile to create a stereotype with
-the specified name as one of its owned members, and set the <span class=SpellE><code>isAbstract</code></span>
-attribute of the stereotype based on the specified <span class=SpellE><code>boolean</code></span>
-argument.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create an abstract
-stereotype named ‘<span class=SpellE>EStructuralFeature</span>’ in profile ‘<span
-class=SpellE>ecore</span>Â’ as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>Stereotype <span
-class=SpellE>eStructuralFeatureStereotype</span> = <span class=SpellE><span
-class=GramE>createStereotype</span></span><span class=GramE>(</span></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>ecoreProfile</span></span>, &quot;<span
-class=SpellE>EStructuralFeature</span>&quot;, true);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1066" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically create the
-remaining (non-abstract) stereotypes (i.e. ‘<span class=SpellE>EAttribute</span>’
-and ‘<span class=SpellE>EReference</span>’) for the <span class=SpellE>Ecore</span>
-profile.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Stereotype Generalizations</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Just
-like classes, stereotypes may be involved in generalizations. A generalization
-is a taxonomic relationship between a specific classifier and a more general
-classifier whereby each instance of the specific classifier is also an indirect
-instance of, and inherits the features of, the general classifier. To create a
-stereotype generalization using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a stereotype (i.e. <b style='mso-bidi-font-weight:normal'>&lt;<span
-style='mso-bidi-font-weight:bold'>Stereotype&gt; <span class=SpellE>EAttribute</span></span></b>)
-in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Right-click and select the <b>New Child &gt; Generalization &gt; Generalization</b>
-option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Select a value (i.e. <span class=SpellE><b>ecore::EStructuralFeature</b></span>)
-for the <b>General</b> property in the <b>Properties</b> view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1067" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Create the other generalization (i.e. between <span
-class=SpellE><b style='mso-bidi-font-weight:normal'>EReference</b></span> and <span
-class=SpellE><b style='mso-bidi-font-weight:normal'>EStructuralFeature</b></span>)
-for the <span class=SpellE>Ecore</span> profile using the UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1068" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>Be sure to pick the stereotype (the first <span
-class=SpellE><b style='mso-bidi-font-weight:normal'>ecore::EStructuralFeature</b></span>
-item) and not the class (it should show up in <b style='mso-bidi-font-weight:
-normal'>Properties</b> view as <b style='mso-bidi-font-weight:normal'>&lt;Stereotype&gt;
-<span class=SpellE>EStructuralFeature</span></b>, not <b style='mso-bidi-font-weight:
-normal'>&lt;Class&gt; <span class=SpellE>EStructuralFeature</span></b>), which
-comes from the <span class=SpellE>Ecore</span> <span class=SpellE>metamodel</span>.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1135" type="#_x0000_t75" style='width:696pt;height:607.5pt'>
- <v:imagedata src="article_files/image015.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=928 height=810
-src="article_files/image016.jpg" v:shapes="_x0000_i1135"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-(from the <span style='font-family:"Courier New"'>GettingStartedWithUML2</span>
-class) shows a method that programmatically creates and returns generalization
-between specified specific and general classifiers.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static Generalization <span class=SpellE>createGeneralization</span>(</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>Classifier <span
-class=SpellE>specificClassifier</span>, Classifier <span class=SpellE>generalClassifier</span>) {</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>Generalization <span
-class=SpellE>generalization</span> = <span class=SpellE>specificClassifier</span></pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=13 id="_x0000_i1069"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-3'>                 </span>.<span class=SpellE><span class=GramE>createGeneralization</span></span><span
-class=GramE>(</span><span class=SpellE>generalClassifier</span>);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>out(</span>&quot;Generalization &quot; + <span
-class=SpellE>specificClassifier.getQualifiedName</span>() + &quot; -&gt;&gt; &quot;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>+ <span
-class=SpellE><span class=GramE>generalClassifier.getQualifiedName</span></span><span
-class=GramE>(</span>) + &quot; created.&quot;);</pre><pre style='margin-left:
-9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>return</span> generalization;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call a convenience factory method on the specific classifier that creates a
-generalization <img border=0 width=24 height=13 id="_x0000_i1070"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>as one of its children and sets the general
-classifier to the specified argument.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create a generalization
-between specific stereotype ‘<span class=SpellE>EAttribute</span>’ and general
-stereotype ‘<span class=SpellE>EStructuralFeature</span>’ as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>GettingStartedWithUML2.createGeneralization(</span><span
-class=SpellE>eAttributeStereotype</span>,</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span><span class=SpellE><span
-class=GramE>eStructuralFeatureStereotype</span></span>);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1071" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically create the
-other generalization (i.e. between ‘<span class=SpellE>EReference</span>’ and ‘<span
-class=SpellE>EStructuralFeature</span>Â’) for the <span class=SpellE>Ecore</span>
-profile.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Stereotype Properties</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Again
-just like classes, stereotypes may have properties (attributes). When a
-stereotype is applied to a model element, the values of the properties may be
-referred to as tagged values. To create a stereotype property using the UML
-editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a stereotype (i.e. <b style='mso-bidi-font-weight:normal'>&lt;<span
-style='mso-bidi-font-weight:bold'>Stereotype&gt; <span class=SpellE>EStructuralFeature</span></span></b>)
-in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Right-click and select the <b>New Child &gt; Owned Attribute &gt; Property</b>
-option from the context menu.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Enter a value (i.e. &quot;<span class=SpellE>isTransient</span>”) for the <b>Name</b>
-property in the <b>Properties</b> view.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>4)
-Select a value (i.e. <span class=SpellE><b>UMLPrimitiveTypes::Boolean</b></span>)
-for the <b>Type</b> property in the <b>Properties</b> view.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>5)
-Enter a value (i.e. 0) for the <b>Lower</b> property in the <b>Properties</b>
-view.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>6)
-Select the property (i.e. <b style='mso-bidi-font-weight:normal'>&lt;<span
-style='mso-bidi-font-weight:bold'>Property&gt; <span class=SpellE>isTransient</span></span></b>)
-in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>7)
-Right-click and select the <b style='mso-bidi-font-weight:normal'>New Child
-&gt; Default Value Literal Boolean</b> option from the context menu.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1072" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>Default values for properties (and parameters)
-are represented as value specifications (first-class objects) in UML™ 2.0. Here
-we have selected a literal Boolean (whose default value is <span
-style='font-family:"Courier New"'>false</span>) as the default value of our
-property since its type is <b style='mso-bidi-font-weight:normal'>Boolean</b>.
-If the type of the property were <b style='mso-bidi-font-weight:normal'>String</b>,
-weÂ’d have used a literal string instead. Once a default value specification has
-been created, its value can alternatively be set with the owning property
-selected via the <b style='mso-bidi-font-weight:normal'>Default</b> property in
-the <b style='mso-bidi-font-weight:normal'>Properties</b> view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1073" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Create the remaining stereotype properties for
-the <span class=SpellE>Ecore</span> profile (i.e. “<span class=SpellE>isUnsettable</span>”,
-“<span class=SpellE>isVolatile</span>”, “visibility”, “<span class=SpellE>xmlName</span>”,
-“<span class=SpellE>xmlNamespace</span>”, and “<span class=SpellE>xmlFeatureKind</span>”
-for <b style='mso-bidi-font-weight:normal'>&lt;Stereotype&gt; <span
-class=SpellE>EStructuralFeature</span></b>; “<span class=SpellE>attributeName</span>”
-and “<span class=SpellE>isID</span>” for <b style='mso-bidi-font-weight:normal'>&lt;Stereotype&gt;
-<span class=SpellE>EAttribute</span></b>; “<span class=SpellE>referenceName</span>”
-and “<span class=SpellE>isResolveProxies</span>” for <b style='mso-bidi-font-weight:
-normal'>&lt;Stereotype&gt; <span class=SpellE>EReference</span></b>) using the
-UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1074" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>Be sure to set the appropriate default value
-for each stereotype property so that it is consistent with the corresponding <span
-class=SpellE>Ecore</span> property for Rose. In particular, the default value
-for the “<span class=SpellE>isResolveProxies</span>” should be a literal
-Boolean with a value of <b style='mso-bidi-font-weight:normal'>true</b> instead
-of the default (!) default value of <b style='mso-bidi-font-weight:normal'>false</b>.
-Note also that the types of the “visibility” and “<span class=SpellE>xmlFeatureKind</span>”
-properties should be the enumerations we created earlier (i.e. <span
-class=SpellE><b style='mso-bidi-font-weight:normal'>ecore::<span
-style='mso-bidi-font-weight:bold'>Visibility</span></b></span> and <span
-class=SpellE><b style='mso-bidi-font-weight:normal'>ecore::<span
-style='mso-bidi-font-weight:bold'>FeatureKind</span></b></span>, respectively).</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1136" type="#_x0000_t75" style='width:696pt;height:607.5pt'>
- <v:imagedata src="article_files/image017.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=928 height=810
-src="article_files/image018.jpg" v:shapes="_x0000_i1136"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-(from the <span style='font-family:"Courier New"'>GettingStartedWithUML2</span>
-class) shows a method that programmatically creates and returns an attribute with
-a specified upper bound, lower bound, type, and name in a specified class.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static Property <span class=SpellE>createAttribute</span>(org.eclipse.uml2.uml.Class class_,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>String name, Type <span
-class=SpellE>type</span>, <span class=SpellE>int</span> <span class=SpellE>lowerBound</span>, <span
-class=SpellE>int</span> <span class=SpellE>upperBound</span>) {</pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=13 id="_x0000_i1075"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span>Property attribute = <span class=SpellE>class_.<span
-class=GramE>createOwnedAttribute</span></span><span class=GramE>(</span>name, type,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>lowerBound</span></span>, <span class=SpellE>upperBound</span>);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE>StringBuffer</span> <span
-class=SpellE>sb</span> = new <span class=SpellE><span class=GramE>StringBuffer</span></span><span
-class=GramE>(</span>);</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;Attribute '&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span><span
-class=SpellE>attribute.getQualifiedName</span>());</pre><pre style='margin-left:
-9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;' : &quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span><span
-class=SpellE>type.getQualifiedName</span>());</pre><pre style='margin-left:
-9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>&quot; [&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span><span
-class=SpellE>lowerBound</span>);</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;..&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>sb.append</span></span><span class=GramE>(</span><span
-class=SpellE>LiteralUnlimitedNatural.UNLIMITED</span> == <span class=SpellE>upperBound</span></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>? &quot;*&quot;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>: <span
-class=SpellE><span class=GramE>String.valueOf</span></span><span class=GramE>(</span><span
-class=SpellE>upperBound</span>));</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>&quot;]&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=SpellE><span
-class=GramE>sb.append</span></span><span class=GramE>(</span>&quot; created.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>out(</span><span
-class=SpellE>sb.toString</span>());</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>return</span> attribute;</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call the <span class=SpellE><code>createOwnedAttribute</code></span><code>(String,
-Type, <span class=SpellE>int</span>, <span class=SpellE>int</span>)</code>
-convenience factory method <img border=0 width=24 height=13 id="_x0000_i1076"
-src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>to ask the class to create a property as one
-of its owned attributes, set the type of the attribute to the specified type,
-and set the lower and upper bounds of the attribute (the factory method creates
-a literal integer and literal unlimited natural, respectively, and sets its
-value to the specified integer value).</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1077" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>The <span class=SpellE><code>LiteralUnlimitedNatural.UNLIMITED</code></span>
-constant represents the unlimited value for upper bounds (-1), as it does in
-EMF.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create an attribute with
-multiplicity 0<span class=GramE>..1</span> of type ‘<span class=SpellE>UMLPrimitiveTypes::Boolean</span>’
-named ‘<span class=SpellE>isTransient</span>’ in stereotype ‘<span
-class=SpellE>EStructuralFeature</span>Â’ as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>Property <span
-class=SpellE>isTransientProperty</span> = <span class=GramE>GettingStartedWithUML2.createAttribute(</span></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=SpellE><span class=GramE>eStructuralFeatureStereotype</span></span>, &quot;<span
-class=SpellE>isTransient</span>&quot;, <span class=SpellE>booleanPrimitiveType</span>,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>0, 1);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1078" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically create the
-remaining stereotype properties (i.e. ‘<span class=SpellE>isUnsettable</span>’,
-‘<span class=SpellE>isVolatile</span>’, ‘visibility’, ‘<span class=SpellE>xmlName</span>’,
-‘<span class=SpellE>xmlNamespace</span>’, and ‘<span class=SpellE>xmlFeatureKind</span>’
-in stereotype ‘<span class=SpellE>EStructuralFeature</span>’; ‘<span
-class=SpellE>attributeName</span>’ and ‘<span class=SpellE>isID</span>’ in
-stereotype ‘<span class=SpellE>EAttribute</span>’; ‘<span class=SpellE>referenceName</span>’
-and ‘<span class=SpellE>isResolveProxies</span>’ in stereotype ‘<span
-class=SpellE>EReference</span>Â’) for the <span class=SpellE>Ecore</span>
-profile.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Referencing
-<span class=SpellE>Metaclasses</span></h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>A
-profile is a restricted form of a <span class=SpellE>metamodel</span> that must
-always be related to a reference <span class=SpellE>metamodel</span> (i.e.
-UML). A profile cannot be used without its reference <span class=SpellE>metamodel</span>;
-it defines a limited capability to extend <span class=SpellE>metaclasses</span>
-of the reference <span class=SpellE>metamodel</span> via stereotypes. Profiles
-can be made to reference <span class=SpellE>metaclasses</span> from <span
-class=SpellE>metamodels</span> by creating an import relationship between the
-profile and the reference <span class=SpellE>metaclass</span>. To reference a <span
-class=SpellE>metaclass</span> using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a profile (i.e. <b style='mso-bidi-font-weight:normal'>&lt;<span
-style='mso-bidi-font-weight:bold'>Profile&gt; <span class=SpellE>ecore</span></span></b>)
-in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Select the <b style='mso-bidi-font-weight:normal'>UML Editor &gt; Profile &gt;
-Reference <span class=SpellE>Metaclass</span>Â…</b> menu item.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Choose a <span class=SpellE>metaclass</span> (i.e. <span class=SpellE><b
-style='mso-bidi-font-weight:normal'>uml::Property</b></span>)<span class=GramE>,</span>
-press the <b style='mso-bidi-font-weight:normal'>Add</b> button, then press the
-<b style='mso-bidi-font-weight:normal'>OK</b> button.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1137" type="#_x0000_t75" style='width:696pt;height:607.5pt'>
- <v:imagedata src="article_files/image019.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=928 height=810
-src="article_files/image020.jpg" v:shapes="_x0000_i1137"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically references the <span class=SpellE>metaclass</span>
-with a specified name in the UML <span class=SpellE>metamodel</span> from a specified
-profile and returns it.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static org.eclipse.uml2.uml.Class <span
-class=SpellE>referenceMetaclass</span>(Profile <span class=SpellE>profile</span>,</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-lang=IT style='mso-ansi-language:IT'>String name) {<o:p></o:p></span></pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=13 id="_x0000_i1079"
-src="../../../../images/tag_1.gif" align=CENTER><span lang=IT style='mso-ansi-language:
-IT'><span style='mso-tab-count:2'>         </span>Model umlMetamodel = (Model) load(URI<o:p></o:p></span></pre><pre
-style='margin-left:9.0pt'><span lang=IT style='mso-ansi-language:IT'><span
-style='mso-tab-count:3'>                    </span>.createURI(UML2Resource.UML2_METAMODEL_URI));<o:p></o:p></span></pre><pre
-style='margin-left:9.0pt'><span lang=IT style='mso-ansi-language:IT'><o:p>&nbsp;</o:p></span></pre><pre
-style='margin-left:9.0pt'><img border=0 width=24 height=13 id="_x0000_i1080"
-src="../../../../images/tag_2.gif" align=CENTER><span lang=IT style='mso-ansi-language:
-IT'><span style='mso-tab-count:2'>         </span>org.eclipse.uml2.Class metaclass = (org.eclipse.uml2.uml.Class) umlMetamodel<o:p></o:p></span></pre><pre
-style='margin-left:9.0pt'><span lang=IT style='mso-ansi-language:IT'><span
-style='mso-tab-count:3'>                    </span></span>.<span class=SpellE><span
-class=GramE>getOwnedType</span></span><span class=GramE>(</span>name);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><img
-border=0 width=24 height=13 id="_x0000_i1081" src="../../../../images/tag_3.gif"
-align=CENTER><span style='mso-tab-count:2'>         </span><span class=SpellE><span
-class=GramE>profile.createMetaclassReference</span></span><span class=GramE>(</span><span
-class=SpellE>metaclass</span>);</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>out(</span>&quot;<span class=SpellE>Metaclass</span> '&quot; + <span
-class=SpellE>metaclass.getQualifiedName</span>() + &quot;' referenced.&quot;);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>return</span> <span
-class=SpellE>metaclass</span>;</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we load the <span class=SpellE>metamodel</span> <img border=0 width=24
-height=14 id="_x0000_i1082" src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>containing the UML <span class=SpellE>metaclasses</span>
-using a utility method (described later) and a URI defined on the <span
-class=SpellE><span style='font-family:"Courier New"'>UMLResource</span></span>
-interface. Next, we retrieve the desired (owned) <span class=SpellE>metaclass</span>
-from the (meta<span class=GramE>)model</span> by name <img border=0 width=24
-height=14 id="_x0000_i1083" src="../../../../images/tag_2.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>using the convenience method. Finally, we
-invoke another convenience method <img border=0 width=24 height=14
-id="_x0000_i1084" src="../../../../images/tag_3.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>to create the element import relationship
-between the profile and the <span class=SpellE>metaclass</span>, notify the
-user, and return the <span class=SpellE>metaclass</span>.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1085" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>The UML resources plug-in (<span
-style='font-family:"Courier New"'>org.eclipse.uml2.uml.resources</span>)
-provides two <span class=SpellE>metamodels</span> (which by convention have a <code>.<span
-class=SpellE>metamodel.uml</span></code> file extension), UML2 and <span
-class=SpellE>Ecore</span>. These <span class=SpellE>metamodels</span> can be
-accessed using <span class=SpellE>URIs</span> defined on the <span
-class=SpellE><span style='font-family:"Courier New"'>UMLResource</span></span>
-interface, as shown above.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could reference the <span
-class=SpellE>metaclass</span> named ‘Property’ from profile ‘<span
-class=SpellE>ecore</span>Â’ as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>org.eclipse.uml2.uml.Class</span> <span class=SpellE>propertyMetaclass</span> = <span
-class=SpellE>referenceMetaclass</span>(</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span><span class=SpellE><span
-class=GramE>ecoreProfile</span></span>, <span class=SpellE>UMLPackage.Literals.PROPERTY.getName</span>());</pre>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Creating
-Extensions</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Extensions
-are used to indicate that the properties of <span class=SpellE>metaclasses</span>
-are extended through stereotypes, and give the ability to flexibly apply (and later
-<span class=SpellE>unapply</span>) stereotypes to elements. An extension is a
-kind of association, one end of which is an ordinary property, and the other is
-an extension end. An extension may be required (depending on the lower bound of
-the extension end), which indicates that an instance of the extending
-stereotype must be created whenever an instance of the extended <span
-class=SpellE>metaclass</span> is created. To create an extension using the UML
-editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a stereotype (i.e. <b style='mso-bidi-font-weight:normal'>&lt;<span
-style='mso-bidi-font-weight:bold'>Stereotype&gt; <span class=SpellE>EAttribute</span></span></b>)
-in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Select the <b style='mso-bidi-font-weight:normal'>UML Editor &gt; Stereotype
-&gt; Create ExtensionÂ…</b> menu item.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Choose a <span class=SpellE>metaclass</span> (i.e. <span class=SpellE><b>uml::</b><b
-style='mso-bidi-font-weight:normal'>Property</b></span>)<span class=GramE>,</span>
-press the <b style='mso-bidi-font-weight:normal'>Add</b> button, then press the
-<b style='mso-bidi-font-weight:normal'>OK</b> button.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1086" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Create the other extension (i.e. between <span
-class=SpellE><b>uml::</b><b style='mso-bidi-font-weight:normal'>Property</b></span>
-and <b style='mso-bidi-font-weight:normal'>&lt;Stereotype&gt; <span
-class=SpellE>EReference</span></b>) for the <span class=SpellE>Ecore</span>
-profile using the UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1138" type="#_x0000_t75" style='width:696pt;height:607.5pt'>
- <v:imagedata src="article_files/image021.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=928 height=810
-src="article_files/image022.jpg" v:shapes="_x0000_i1138"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1087" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>YouÂ’ll notice that a number of new elements
-have appeared in the UML editor. In particular, youÂ’ll see a new stereotype
-property with a name of the form <span style='font-family:"Courier New"'>base_&lt;<span
-class=SpellE>metaclass</span> name&gt;</span>, an extension with a name of the
-form <span style='font-family:"Courier New"'>&lt;<span class=SpellE>metaclass</span>
-name&gt;_&lt;stereotype name&gt;</span>, and an extension end with a name of
-the form <span style='font-family:"Courier New"'>extension_&lt;stereotype
-name&gt;</span>. ItÂ’s important that these elements <b style='mso-bidi-font-weight:
-normal'>not</b> be modified, since the UML2 profile mechanism depends on these
-constructs.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically creates and returns <span class=GramE>a(</span>n)
-(required) extension between a specified <span class=SpellE>metaclass</span>
-and a specified stereotype.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static Extension <span class=SpellE>createExtension</span>(</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=GramE>org.eclipse.uml2.uml.Class</span> <span class=SpellE>metaclass</span>, Stereotype <span
-class=SpellE>stereotype</span>,</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:3'>                    </span><span class=SpellE><span
-class=GramE>boolean</span></span> required) {</pre><pre style='margin-left:
-9.0pt'><img border=0 width=24 height=13 id="_x0000_i1088"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span>Extension <span class=SpellE>extension</span> = <span
-class=SpellE><span class=GramE>stereotype.createExtension</span></span><span
-class=GramE>(</span><span class=SpellE>metaclass</span>, required);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>out(</span>(required</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>? &quot;Required extension '&quot;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>: &quot;Extension '&quot;) + <span
-class=SpellE><span class=GramE>extension.getQualifiedName</span></span><span
-class=GramE>(</span>) + &quot;' created.&quot;);</pre><pre style='margin-left:
-9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>return</span> extension;</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call a convenience method on the stereotype that creates an extension (and
-its ends) between it and a <span class=SpellE>metaclass</span> <img border=0
-width=24 height=13 id="_x0000_i1089" src="../../../../images/tag_1.gif"
-align=CENTER><span style='mso-spacerun:yes'> </span>as one of its siblings
-(i.e. as a child of its profile namespace). Behind the scenes, the stereotype
-also creates the ends of the extension, resulting in a new property on the
-stereotype (with a special name) and an extension end owned by the extension (again,
-with a special name).</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-letÂ’s see this method in action. For example, we could create a non-required
-extension between <span class=SpellE>metaclass</span> ‘Property’ and stereotype
-‘<span class=SpellE>EAttribute</span>’ in profile ‘<span class=SpellE>ecore</span>’
-as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>createExtension</span></span><span class=GramE>(</span><span
-class=SpellE>propertyMetaclass</span>, <span class=SpellE>eAttributeStereotype</span>, false);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1090" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically create the
-other extension (i.e. between <span class=SpellE>metaclass</span> ‘Property’
-and stereotype ‘<span class=SpellE>EReference</span>’) for the <span
-class=SpellE>Ecore</span> profile.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Defining
-Profiles</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>There.
-WeÂ’re done creating (a scaled down version of) the <span class=SpellE>Ecore</span>
-<span class=GramE>profile,</span> and weÂ’re ready to start using it. But before
-we can, there’s one final thing we need to do – <i style='mso-bidi-font-style:
-normal'>define</i> it. Since a profile effectively represents an augmentation
-of a reference <span class=SpellE>metamodel</span> (UML), in order for the
-extensions weÂ’ve defined to appear as though theyÂ’re part of the UML <span
-class=SpellE>metamodel</span>, they need to be “defined” at the meta-<span
-class=SpellE>metamodel</span> (i.e. <span class=SpellE>Ecore</span>) level. The
-implementation of profile support in UML2 does this by converting the contents
-of the profile to an equivalent <span class=SpellE>Ecore</span> representation
-that is stored as an annotation on the profile. Then, when a profile and its
-stereotypes are applied to a model and its elements, dynamic EMF (see the EMF
-book for details) is used to store property values for the stereotypes. For the
-most part, you can ignore this complexity, as long as you remember to define
-your profile before using it. To define a profile using the UML editor, follow these
-steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a profile (i.e. <b style='mso-bidi-font-weight:normal'>&lt;<span
-style='mso-bidi-font-weight:bold'>Profile&gt; <span class=SpellE>ecore</span></span></b>)
-in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Select the <b style='mso-bidi-font-weight:normal'>UML Editor &gt; Profile &gt;
-Define</b> menu item.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1139" type="#_x0000_t75" style='width:696pt;height:709.5pt'>
- <v:imagedata src="article_files/image023.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=928 height=946
-src="article_files/image024.jpg" v:shapes="_x0000_i1139"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1091" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>YouÂ’ll notice that an annotation with source <b
-style='mso-bidi-font-weight:normal'>http://www.eclipse.org/uml2/2.0.0/UML</b>
-has been attached to the profile. It contains the generated <span class=SpellE>Ecore</span>
-representation (an <span class=SpellE>Ecore</span> package with classes,
-attributes, <span class=SpellE>enums</span>, etc.) of the profile. As with
-extensions, itÂ’s important that this annotation (and its contents) <b
-style='mso-bidi-font-weight:normal'>not</b> be modified, since the UML2 profile
-mechanism depends on these constructs.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically defines a specified profile.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static void <span class=SpellE>defineProfile</span>(Profile <span
-class=SpellE>profile</span>) {</pre><pre style='margin-left:9.0pt'><img
-border=0 width=24 height=13 id="_x0000_i1092" src="../../../../images/tag_1.gif"
-align=CENTER><span style='mso-tab-count:2'>         </span><span class=SpellE><span
-class=GramE>profile.define</span></span><span class=GramE>(</span>);</pre><pre
-style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span><span class=GramE>out(</span>&quot;Profile '&quot; + <span
-class=SpellE>profile.getQualifiedName</span>() + &quot;' defined.&quot;);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call a convenience method on the profile <img border=0 width=24 height=13
-id="_x0000_i1093" src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>that generates the <span class=SpellE>Ecore</span>
-representation of the profile and increments its version.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-let’s see this method in action. For example, we could define the ‘<span
-class=SpellE>ecore</span>Â’ profile as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=SpellE><span class=GramE>defineProfile</span></span><span class=GramE>(</span><span
-class=SpellE>ecoreProfile</span>);</pre>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Saving
-Profiles</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Now
-that weÂ’ve spent all this time creating and defining a profile, weÂ’d better
-save our work. When we created our profile using the UML model wizard, a UML
-resource was created for us, so now all that needs to be done is to serialize
-the contents of our profile as XMI to a file on disk (i.e. <span class=SpellE><code>Ecore.profile.uml</code></span>).
-To save a profile using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select the <b>File &gt; Save</b> menu item.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>ItÂ’s
-that simple. Programmatically, we have a bit more work to do because so far,
-weÂ’ve been creating our profile in a vacuum, i.e. without a containing
-resource. The code snippet below shows a method that saves a specified package
-to a resource with a specified URI.</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static void save(org.eclipse.uml2.uml.Package package_, URI <span
-class=SpellE>uri</span>) {</pre><pre style='margin-left:9.0pt'><img border=0
-width=24 height=13 id="_x0000_i1094" src="../../../../images/tag_1.gif"
-align=CENTER><span style='mso-tab-count:2'>         </span>Resource <span
-class=SpellE>resource</span> = <span class=SpellE>RESOURCE_<span class=GramE>SET.createResource</span></span><span
-class=GramE>(</span><span class=SpellE>uri</span>);</pre><pre style='margin-left:
-9.0pt'><img border=0 width=24 height=13 id="_x0000_i1095"
-src="../../../../images/tag_2.gif" align=CENTER><span style='mso-tab-count:
-2'>         </span><span class=SpellE><span class=GramE>resource.getContents</span></span><span
-class=GramE>(</span>).add(package_);</pre><pre style='margin-left:9.0pt'><o:p>&nbsp;</o:p></pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>try</span> {</pre><pre style='margin-left:9.0pt'><img border=0
-width=24 height=13 id="_x0000_i1096" src="../../../../images/tag_3.gif"
-align=CENTER><span style='mso-tab-count:3'>                 </span><span
-class=SpellE><span class=GramE>resource.save</span></span><span class=GramE>(</span>null);</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span><span
-class=GramE>out(</span>&quot;Done.&quot;);</pre><pre style='margin-left:9.0pt'><span
-style='mso-tab-count:2'>            </span>} catch (<span class=SpellE>IOException</span> <span
-class=SpellE>ioe</span>) {</pre><pre style='margin-left:9.0pt'><img border=0
-width=24 height=13 id="_x0000_i1097" src="../../../../images/tag_4.gif"
-align=CENTER><span style='mso-tab-count:3'>                 </span><span
-class=GramE>err(</span><span class=SpellE>ioe.getMessage</span>());</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span>}</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we use a statically initialized resource set <img border=0 width=24 height=13
-id="_x0000_i1098" src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>to create a resource with the specified URI,
-add the package to the resourceÂ’s contents <img border=0 width=24 height=13
-id="_x0000_i1099" src="../../../../images/tag_2.gif" align=CENTER>, and ask the
-resource to save itself <img border=0 width=24 height=13 id="_x0000_i1100"
-src="../../../../images/tag_3.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>using the default options. If an exception
-occurs, we notify the user <img border=0 width=24 height=13 id="_x0000_i1101"
-src="../../../../images/tag_4.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>via our handy utility method.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-let’s see this method in action. For example, we could save the ‘<span
-class=SpellE>ecore</span>’ profile to a resource with URI ‘<span class=SpellE>Ecore.profile.uml</span>’
-(relative to a URI passed in as an argument) as follows:</p>
-
-<pre style='margin-left:9.0pt'><span style='mso-tab-count:2'>            </span><span
-class=GramE>save(</span><span class=SpellE>ecoreProfile</span>, <span
-class=SpellE>URI.createURI</span>(<span class=SpellE>args</span>[0]).<span
-class=SpellE>appendSegment</span>(&quot;<span class=SpellE>Ecore</span>&quot;)</pre><pre
-style='margin-left:9.0pt'><span style='mso-tab-count:3'>                    </span>.<span
-class=SpellE><span class=GramE>appendFileExtension</span></span><span
-class=GramE>(</span><span class=SpellE>UMLResource.PROFILE_FILE_EXTENSION</span>));</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1102" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>The <span class=SpellE><code>UMLResource.PROFILE_FILE_EXTENSION</code></span>
-constant represents the file extension for UML2 profiles (<code>.<span
-class=SpellE>profile.uml</span></code>).</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Loading
-Models</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>In
-order to make use of our profile, weÂ’ll need to open a model and load the
-profile. We’ll use the ExtendedPO2 model that was created in the “Getting
-Started with UML2” article (you’ll need to copy it into your project and
-refresh the workspace first).</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>To
-open a model using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Double-click on the resource (i.e. <b style='mso-bidi-font-weight:normal'>ExtendedPO2.uml</b>)
-in the <b style='mso-bidi-font-weight:normal'>Navigator</b> view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Behind
-the scenes, a resource is obtained from the right kind resource factory (based
-on the extension ‘<b style='mso-bidi-font-weight:normal'>.<span class=SpellE>uml</span></b>’)
-and loaded, and then a new UML editor is opened and populated with the
-resourceÂ’s contents.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>To
-load a profile (or any resource, actually) using the UML editor, follow these
-steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select the <b>UML Editor &gt; Load ResourceÂ…</b> menu item.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Press the <b>Browse WorkspaceÂ…</b> button.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Select a resource (i.e. <b>Introduction to UML2 Profiles/<span class=SpellE>Ecore.profile.uml</span></b>)
-and press the <b>OK</b> button.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>4)
-Press the <b>OK</b> button.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1140" type="#_x0000_t75" style='width:696pt;height:709.5pt'>
- <v:imagedata src="article_files/image025.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=928 height=946
-src="article_files/image026.jpg" v:shapes="_x0000_i1140"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Programmatically,
-we have a bit more work to do. The code snippet below shows a method that loads
-a package from a resource with a specified URI.</p>
-
-<pre style='margin-left:.25in'><span style='mso-tab-count:1'>   </span><span
-class=GramE>protected</span> static org.eclipse.uml2.uml.Package load(URI <span
-class=SpellE>uri</span>) {</pre><pre style='margin-left:.25in'><span
-style='mso-tab-count:2'>           </span>org.eclipse.uml2.uml.Package package_ = null;</pre><pre
-style='margin-left:.25in'><o:p>&nbsp;</o:p></pre><pre style='margin-left:.25in'><span
-style='mso-tab-count:2'>           </span><span class=GramE>try</span> {</pre><pre
-style='margin-left:.25in'><img border=0 width=24 height=13 id="_x0000_i1103"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-3'>                </span>Resource <span class=SpellE>resource</span> = <span
-class=SpellE>RESOURCE_<span class=GramE>SET.getResource</span></span><span
-class=GramE>(</span><span class=SpellE>uri</span>, true);</pre><pre
-style='margin-left:.25in'><o:p>&nbsp;</o:p></pre><pre style='margin-left:.25in'><img
-border=0 width=24 height=13 id="_x0000_i1104" src="../../../../images/tag_2.gif"
-align=CENTER><span style='mso-tab-count:3'>                </span>package_ = (org.eclipse.uml2.uml.Package) <span
-class=SpellE><span class=GramE>EcoreUtil.getObjectByType</span></span><span
-class=GramE>(</span></pre><pre style='margin-left:.25in'><span
-style='mso-tab-count:4'>                          </span><span class=SpellE><span
-class=GramE>resource.getContents</span></span><span class=GramE>(</span>), <span
-class=SpellE>UMLPackage.Literals.PACKAGE</span>);</pre><pre style='margin-left:
-.25in'><span style='mso-tab-count:2'>           </span>} catch (<span
-class=SpellE>WrappedException</span> we) {</pre><pre style='margin-left:.25in'><img
-border=0 width=24 height=13 id="_x0000_i1105" src="../../../../images/tag_3.gif"
-align=CENTER><span style='mso-tab-count:3'>                </span><span
-class=GramE>err(</span><span class=SpellE>we.getMessage</span>());</pre><pre
-style='margin-left:.25in'><span style='mso-tab-count:3'>                   </span><span
-class=SpellE><span class=GramE>System.exit</span></span><span class=GramE>(</span>1);</pre><pre
-style='margin-left:.25in'><span style='mso-tab-count:2'>           </span>}</pre><pre
-style='margin-left:.25in'><o:p>&nbsp;</o:p></pre><pre style='margin-left:.25in'><img
-border=0 width=24 height=13 id="_x0000_i1106" src="../../../../images/tag_4.gif"
-align=CENTER><span style='mso-tab-count:2'>        </span><span class=GramE>return</span> package_;</pre><pre
-style='margin-left:.25in'><span style='mso-tab-count:1'>   </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we obtain a resource with the specified URI from our statically initialized
-resource <span class=GramE>set </span><img border=0 width=24 height=13
-id="_x0000_i1107" src="../../../../images/tag_1.gif" align=CENTER>, asking that
-it be loaded on demand. Next, we use an EMF utility method <img border=0
-width=24 height=13 id="_x0000_i1108" src="../../../../images/tag_2.gif"
-align=CENTER><span style='mso-spacerun:yes'> </span>to obtain the first object
-of type <span style='font-family:"Courier New"'>Package</span> from the
-resourceÂ’s contents. If an exception occurs, we notify the user <img border=0
-width=24 height=13 id="_x0000_i1109" src="../../../../images/tag_3.gif"
-align=CENTER><span style='mso-spacerun:yes'> </span>via our handy utility
-method. Finally, if all is well, we return <img border=0 width=24 height=13
-id="_x0000_i1110" src="../../../../images/tag_4.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>the package.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1111" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>The <span class=SpellE><code>EcoreUtil</code></span>
-class (provided by EMF) defines a number of utilities that you may find quite
-useful when working with EMF-based resources.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-let’s see this method in action. For example, we could load the ‘epo2’ model
-from a resource with URI ‘ExtendedPO2.uml’ (relative to a URI passed in as an
-argument) as follows:</p>
-
-<pre style='margin-left:.25in'><span style='mso-tab-count:2'>           </span><span
-lang=IT style='mso-ansi-language:IT'>Model epo2Model = (Model) load(URI.createURI(args[0]).appendSegment(<o:p></o:p></span></pre><pre
-style='margin-left:.25in'><span lang=IT style='mso-ansi-language:IT'><span
-style='mso-tab-count:3'>                   </span></span>&quot;ExtendedPO2&quot;).<span
-class=SpellE><span class=GramE>appendFileExtension</span></span><span
-class=GramE>(</span><span class=SpellE>UMLResource.FILE_EXTENSION</span>));</pre>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Applying
-Profiles</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-our profile has been created, defined, and saved, and weÂ’re ready to apply it to
-our model. Applying a profile means that it is allowed (but not necessarily
-required) to apply the stereotypes that are defined in the profile to elements
-in the package. A profile application is a special type of package import that
-indicates that a profile has been applied to a package. To apply a profile to a
-package using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select a package (i.e. <b style='mso-bidi-font-weight:normal'>&lt;Model&gt;
-epo2</b>) in the UML editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Select the <b style='mso-bidi-font-weight:normal'>UML Editor &gt; Package &gt;
-Apply ProfileÂ…</b> menu item.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Choose a profile (i.e. <span class=SpellE><b style='mso-bidi-font-weight:normal'>ecore</b></span>)<span
-class=GramE>,</span> press the <b style='mso-bidi-font-weight:normal'>Add</b>
-button, then press the <b style='mso-bidi-font-weight:normal'>OK</b> button.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1112" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>Be sure to pick the profile weÂ’ve created instead
-of the built-in profile provided by the UML resources plug-in (i.e. <span
-class=SpellE><b style='mso-bidi-font-weight:normal'>ecore</b></span>, not <span
-class=SpellE><b style='mso-bidi-font-weight:normal'>Ecore</b></span>).</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1141" type="#_x0000_t75" style='width:696pt;height:709.5pt'>
- <v:imagedata src="article_files/image027.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=928 height=946
-src="article_files/image028.jpg" v:shapes="_x0000_i1141"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1113" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>YouÂ’ll notice another annotation (with source <b
-style='mso-bidi-font-weight:normal'>http://www.eclipse.org/uml2/2.0.0/UML</b>)
-has been attached, in this case to keep track of the <span class=SpellE>Ecore</span>
-representation for the definition of the profile that is currently applied to
-the package. Again, itÂ’s important that this annotation <b style='mso-bidi-font-weight:
-normal'>not</b> be modified, since the UML2 profile mechanism depends on this
-construct. Note that a newer definition of the profile can be applied using the
-same menu item, and a profile (along with all of its stereotypes) can be
-unapplied using the <b style='mso-bidi-font-weight:normal'>UML Editor &gt;
-Package &gt; <span class=SpellE>Unapply</span> ProfileÂ…</b> menu item.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically applies a specified profile to a specified
-package.</p>
-
-<pre style='margin-left:8.5pt'><span style='mso-tab-count:1'>     </span><span
-class=GramE>protected</span> static void <span class=SpellE>applyProfile</span>(org.eclipse.uml2.uml.Package package_,</pre><pre
-style='margin-left:8.5pt'><span style='mso-tab-count:3'>                    </span><span
-lang=IT style='mso-ansi-language:IT'>Profile profile) {<o:p></o:p></span></pre><pre
-style='margin-left:8.5pt'><img border=0 width=24 height=13 id="_x0000_i1114"
-src="../../../../images/tag_1.gif" align=CENTER><span lang=IT style='mso-ansi-language:
-IT'><span style='mso-tab-count:2'>         </span>package_.applyProfile(profile);<o:p></o:p></span></pre><pre
-style='margin-left:8.5pt'><span lang=IT style='mso-ansi-language:IT'><o:p>&nbsp;</o:p></span></pre><pre
-style='margin-left:8.5pt'><span lang=IT style='mso-ansi-language:IT'><span
-style='mso-tab-count:2'>            </span></span><span class=GramE>out(</span>&quot;Profile '&quot; + <span
-class=SpellE>profile.getQualifiedName</span>() + &quot;' applied to package '&quot;</pre><pre
-style='margin-left:8.5pt'><span style='mso-tab-count:3'>                    </span>+ <span
-class=SpellE>package_.<span class=GramE>getQualifiedName</span></span><span
-class=GramE>(</span>) + &quot;'.&quot;);</pre><pre style='margin-left:8.5pt'><span
-style='mso-tab-count:1'>     </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call a convenience method on the package <img border=0 width=24 height=13
-id="_x0000_i1115" src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>that creates a profile application on the
-package and sets the profile as the imported profile.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-let’s see this method in action. For example, we could apply the ‘<span
-class=SpellE>ecore</span>’ profile to the ‘epo2’ model as follows:</p>
-
-<pre><span style='mso-tab-count:2'>              </span><span class=SpellE><span
-class=GramE>applyProfile</span></span><span class=GramE>(</span>epo2Model, <span
-class=SpellE>ecoreProfile</span>);</pre>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Applying
-Stereotypes</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>WeÂ’re
-on the home stretch nowÂ… Once a profile has been applied to a package,
-stereotypes defined in the profile can be applied to instances of the
-appropriate <span class=SpellE>metaclasses</span> (as per the defined
-extensions). When a stereotype is applied to an element, that element is
-effectively extended with the properties that are defined as part of the
-stereotype. To apply a stereotype to an element using the UML editor, follow
-these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select an element (i.e. <b style='mso-bidi-font-weight:normal'>&lt;Property&gt;
-<span class=SpellE><span class=GramE>pendingOrders</span></span><span
-class=GramE> :</span> <span class=SpellE>PurchaseOrder</span> [0..*]</b> in <b
-style='mso-bidi-font-weight:normal'>&lt;Class&gt; Supplier</b>) in the UML
-editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Select the <b style='mso-bidi-font-weight:normal'>UML Editor &gt; Element &gt;
-Apply StereotypeÂ…</b> menu item.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>3)
-Choose a stereotype (i.e. <span class=SpellE><b style='mso-bidi-font-weight:
-normal'>ecore::EReference</b></span>)<span class=GramE>,</span> press the <b
-style='mso-bidi-font-weight:normal'>Add</b> button, then press the <b
-style='mso-bidi-font-weight:normal'>OK</b> button.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1116" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Apply the appropriate stereotypes to other
-properties (<b style='mso-bidi-font-weight:normal'>&lt;Property&gt; <span
-class=SpellE>shippedOrders</span> : <span class=SpellE>PurchaseOrder</span>
-[0..*]</b> in <b style='mso-bidi-font-weight:normal'>&lt;Class&gt; Supplier</b>;
-<b style='mso-bidi-font-weight:normal'>&lt;Property&gt; <span class=SpellE>totalAmount</span>
-: <span class=SpellE>int</span> [0..1]</b>, <b style='mso-bidi-font-weight:
-normal'>&lt;Property&gt; <span class=SpellE>previousOrder</span> : <span
-class=SpellE>PurchaseOrder</span> [0..1]</b>, and <b style='mso-bidi-font-weight:
-normal'>&lt;Property&gt; customer : Customer</b> in <b style='mso-bidi-font-weight:
-normal'>&lt;Class&gt; <span class=SpellE>PurchaseOrder</span></b>; <b
-style='mso-bidi-font-weight:normal'>&lt;Property&gt; orders : <span
-class=SpellE>PurchaseOrder</span> [0..*]</b> in <b style='mso-bidi-font-weight:
-normal'>&lt;Class&gt; Customer</b>) in the ExtendedPO2 model using the UML
-editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1142" type="#_x0000_t75" style='width:696pt;height:709.5pt'>
- <v:imagedata src="article_files/image029.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=928 height=946
-src="article_files/image030.jpg" v:shapes="_x0000_i1142"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=62 height=13 id="_x0000_i1117" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>A stereotype (and its tagged values) can be
-unapplied using the <b style='mso-bidi-font-weight:normal'>UML Editor &gt;
-Element &gt; <span class=SpellE>Unapply</span> StereotypeÂ…</b> menu item.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below shows
-a method that programmatically applies a specified stereotype to a specified
-(named) element.</p>
-
-<pre style='margin-left:.25in'><span style='mso-tab-count:1'>   </span><span
-class=GramE>protected</span> static void <span class=SpellE>applyStereotype</span>(<span
-class=SpellE>NamedElement</span> <span class=SpellE>namedElement</span>,</pre><pre
-style='margin-left:.25in'><span style='mso-tab-count:3'>                   </span>Stereotype <span
-class=SpellE>stereotype</span>) {</pre><pre style='margin-left:.25in'><img
-border=0 width=24 height=13 id="_x0000_i1118" src="../../../../images/tag_1.gif"
-align=CENTER><span style='mso-tab-count:2'>        </span><span class=SpellE><span
-class=GramE>namedElement.applyStereotype</span></span><span class=GramE>(</span>stereotype);</pre><pre
-style='margin-left:.25in'><o:p>&nbsp;</o:p></pre><pre style='margin-left:.25in'><span
-style='mso-tab-count:2'>           </span><span class=GramE>out(</span>&quot;Stereotype '&quot; + <span
-class=SpellE>stereotype.getQualifiedName</span>()</pre><pre style='margin-left:
-.25in'><span style='mso-tab-count:3'>                   </span>+ &quot;' applied to element '&quot; + <span
-class=SpellE><span class=GramE>namedElement.getQualifiedName</span></span><span
-class=GramE>(</span>) + &quot;'.&quot;);</pre><pre style='margin-left:.25in'><span
-style='mso-tab-count:1'>   </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call a convenience method on the element <img border=0 width=24 height=13
-id="_x0000_i1119" src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>that creates an instance of the <span
-class=SpellE>Ecore</span> class representing the specified stereotype (using
-dynamic EMF) and attaches it to the element using an annotation.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-let’s see this method in action. For example, we could apply the ‘<span
-class=SpellE>EReference</span>’ stereotype to the ‘<span class=SpellE>pendingOrders</span>’
-property of the ‘Supplier’ class in the ‘epo2’ model as follows:</p>
-
-<pre style='margin-left:.25in'><span style='mso-tab-count:2'>           </span><span
-class=GramE>org.eclipse.uml2.uml.Class</span> <span class=SpellE>supplierClass</span> = (org.eclipse.uml2.uml.Class) epo2Model</pre><pre
-style='margin-left:.25in'><span style='mso-tab-count:3'>                   </span>.<span
-class=SpellE><span class=GramE>getOwnedType</span></span><span class=GramE>(</span>&quot;Supplier&quot;);</pre><pre
-style='margin-left:.25in'><o:p>&nbsp;</o:p></pre><pre style='margin-left:.25in'><span
-style='mso-tab-count:2'>           </span>Property <span class=SpellE>pendingOrdersProperty</span> = <span
-class=SpellE>supplierClass</span></pre><pre style='margin-left:.25in'><span
-style='mso-tab-count:3'>                   </span>.<span class=SpellE><span
-class=GramE>getOwnedAttribute</span></span><span class=GramE>(</span>&quot;<span
-class=SpellE>pendingOrders</span>&quot;, null);</pre><pre style='margin-left:
-.25in'><span style='mso-tab-count:2'>           </span><span class=SpellE><span
-class=GramE>applyStereotype</span></span><span class=GramE>(</span><span
-class=SpellE>pendingOrdersProperty</span>, <span class=SpellE>eReferenceStereotype</span>);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1120" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically apply the
-appropriate stereotypes to other properties (i.e.
-‘epo2::Supplier::shippedOrders’, ‘epo2::PurchaseOrder::totalAmount’,
-‘epo2::PurchaseOrder::previousOrder’, ‘epo2::PurchaseOrder::customer’, and
-‘epo2::Customer::orders’) in the ExtendedPO2 model.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Accessing
-Stereotype Property Values</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-long last, weÂ’re ready to get and set values for the properties (tagged values)
-defined in our extensions. To get and set the value for a stereotype property
-using the UML editor, follow these steps:</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>1)
-Select the element to which the stereotyped has been applied (i.e. <b
-style='mso-bidi-font-weight:normal'>&lt;&lt;<span class=SpellE>eReference</span>&gt;&gt;
-&lt;Property&gt; <span class=SpellE><span class=GramE>pendingOrders</span></span><span
-class=GramE> :</span> <span class=SpellE>PurchaseOrder</span> [0..*]</b> in <b
-style='mso-bidi-font-weight:normal'>&lt;Class&gt; Supplier</b>) in the UML
-editor.</p>
-
-<p style='margin-left:27.5pt;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>2)
-Enter or select a value (i.e. <b>false</b>) for the property (i.e. <b
-style='mso-bidi-font-weight:normal'>Is Resolve Proxies</b>) under the category
-named for the stereotype (i.e. <span class=SpellE><b style='mso-bidi-font-weight:
-normal'>EReference</b></span>) in the <b>Properties</b> view.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1121" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Get and set values for other stereotype
-properties (i.e. <b style='mso-bidi-font-weight:normal'>Is Transient</b> and <b
-style='mso-bidi-font-weight:normal'>Is Resolve Proxies</b> under <span
-class=SpellE><b style='mso-bidi-font-weight:normal'>EReference</b></span> for <b
-style='mso-bidi-font-weight:normal'>&lt;&lt;<span class=SpellE>eReference</span>&gt;&gt;
-&lt;Property&gt; <span class=SpellE>pendingOrders</span> : <span class=SpellE>PurchaseOrder</span>
-[0..*]</b> in <b style='mso-bidi-font-weight:normal'>&lt;Class&gt; Supplier</b>;
-<b style='mso-bidi-font-weight:normal'>Is Volatile</b>, <b style='mso-bidi-font-weight:
-normal'>Is Transient</b>, and <b style='mso-bidi-font-weight:normal'>Is Resolve
-Proxies</b> under <span class=SpellE><b style='mso-bidi-font-weight:normal'>EReference</b></span>
-for <b style='mso-bidi-font-weight:normal'>&lt;&lt;<span class=SpellE>eReference</span>&gt;&gt;
-&lt;Property&gt; <span class=SpellE>shippedOrders</span> : <span class=SpellE>PurchaseOrder</span>
-[0..*]</b> in <b style='mso-bidi-font-weight:normal'>&lt;Class&gt; Supplier</b>;
-<b style='mso-bidi-font-weight:normal'>Is Volatile</b> and <b style='mso-bidi-font-weight:
-normal'>Is Transient</b> under <span class=SpellE><b style='mso-bidi-font-weight:
-normal'>EAttribute</b></span> for <b style='mso-bidi-font-weight:normal'>&lt;&lt;<span
-class=SpellE>eAttribute</span>&gt;&gt; &lt;Property&gt; <span class=SpellE>totalAmount</span>
-: <span class=SpellE>int</span> [0..1]</b> in <b style='mso-bidi-font-weight:
-normal'>&lt;Class&gt; <span class=SpellE>PurchaseOrder</span></b>; <b
-style='mso-bidi-font-weight:normal'>Is Resolve Proxies</b> under <span
-class=SpellE><b style='mso-bidi-font-weight:normal'>EReference</b></span> for <b
-style='mso-bidi-font-weight:normal'>&lt;&lt;<span class=SpellE>eReference</span>&gt;&gt;
-&lt;Property&gt; <span class=SpellE>previousOrder</span> : <span class=SpellE>PurchaseOrder</span>
-[0..1]</b> in <b style='mso-bidi-font-weight:normal'>&lt;Class&gt; <span
-class=SpellE>PurchaseOrder</span></b>; <b style='mso-bidi-font-weight:normal'>Is
-Resolve Proxies</b> under <span class=SpellE><b style='mso-bidi-font-weight:
-normal'>EReference</b></span> for <b style='mso-bidi-font-weight:normal'>&lt;&lt;<span
-class=SpellE>eReference</span>&gt;&gt; &lt;Property&gt; customer : Customer</b>
-in <b style='mso-bidi-font-weight:normal'>&lt;Class&gt; <span class=SpellE>PurchaseOrder</span></b>;
-<b style='mso-bidi-font-weight:normal'>Is Resolve Proxies</b> under <span
-class=SpellE><b style='mso-bidi-font-weight:normal'>EReference</b></span> for <b
-style='mso-bidi-font-weight:normal'>&lt;&lt;<span class=SpellE>eReference</span>&gt;&gt;
-&lt;Property&gt; orders : <span class=SpellE>PurchaseOrder</span> [0..*]</b> in
-<b style='mso-bidi-font-weight:normal'>&lt;Class&gt; Customer</b>) in the
-ExtendedPO2 model using the UML editor.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>At
-this point your workspace should look something like this:</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1143" type="#_x0000_t75" style='width:696pt;height:709.5pt'>
- <v:imagedata src="article_files/image031.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=928 height=946
-src="article_files/image032.jpg" v:shapes="_x0000_i1143"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>LetÂ’s
-look at how to perform the same task using Java code. The code snippet below
-shows a method that programmatically gets and returns the value of a specified
-property of a specified stereotype for a specified element.</p>
-
-<pre style='margin-left:.25in'><span style='mso-tab-count:1'>   </span><span
-class=GramE>protected</span> static Object <span class=SpellE>getStereotypePropertyValue</span>(</pre><pre
-style='margin-left:.25in'><span style='mso-tab-count:3'>                   </span><span
-class=SpellE>NamedElement</span> <span class=SpellE>namedElement</span>, Stereotype <span
-class=SpellE>stereotype</span>, Property <span class=SpellE>property</span>) {</pre><pre
-style='margin-left:.25in'><img border=0 width=24 height=13 id="_x0000_i1122"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>        </span>Object value = <span class=SpellE><span class=GramE>namedElement.getValue</span></span><span
-class=GramE>(</span>stereotype, <span class=SpellE>property.getName</span>());</pre><pre
-style='margin-left:.25in'><o:p>&nbsp;</o:p></pre><pre style='margin-left:.25in'><span
-style='mso-tab-count:2'>           </span><span class=GramE>out(</span>&quot;Value of stereotype property '&quot; + <span
-class=SpellE>property.getQualifiedName</span>()</pre><pre style='margin-left:
-.25in'><span style='mso-tab-count:3'>                   </span>+ &quot;' on element '&quot; + <span
-class=SpellE><span class=GramE>namedElement.getQualifiedName</span></span><span
-class=GramE>(</span>) + &quot;' is &quot;</pre><pre style='margin-left:.25in'><span
-style='mso-tab-count:3'>                   </span>+ <span class=SpellE><span
-class=GramE>String.valueOf</span></span><span class=GramE>(</span>value) + &quot;.&quot;);</pre><pre
-style='margin-left:.25in'><o:p>&nbsp;</o:p></pre><pre style='margin-left:.25in'><span
-style='mso-tab-count:2'>           </span><span class=GramE>return</span> value;</pre><pre
-style='margin-left:.25in'><span style='mso-tab-count:1'>   </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call a convenience method on the (named) element <img border=0 width=24
-height=13 id="_x0000_i1123" src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>that retrieves the value of a property with a
-specified name from the dynamically created <span class=SpellE>Ecore</span>
-object instance corresponding to the specified applied stereotype, notifies the
-user, and returns it.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-let’s see this method in action. For example, we could get the value of the ‘<span
-class=SpellE>isVolatile</span>’ property of the ‘<span class=SpellE>EReference</span>’
-stereotype for the ‘<span class=SpellE>pendingOrders</span>’ property of the
-‘Supplier’ class in the ‘epo2’ model as follows:</p>
-
-<pre style='margin-left:.25in'><span style='mso-tab-count:2'>           </span><span
-class=SpellE><span class=GramE>getStereotypePropertyValue</span></span><span
-class=GramE>(</span><span class=SpellE>pendingOrdersProperty</span>, <span
-class=SpellE>eReferenceStereotype</span>,</pre><pre style='margin-left:.25in'><span
-style='mso-tab-count:3'>                   </span><span class=SpellE><span
-class=GramE>isVolatileProperty</span></span>);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1124" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically get the values
-of the other stereotype properties for elements in the ExtendedPO2 model.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>The
-code snippet below shows a method that programmatically sets the value of a
-specified property of a specified stereotype for a specified element to a
-specified value.</p>
-
-<pre style='margin-left:.25in'><span style='mso-tab-count:1'>   </span><span
-class=GramE>protected</span> static void <span class=SpellE>setStereotypePropertyValue</span>(<span
-class=SpellE>NamedElement</span> <span class=SpellE>namedElement</span>,</pre><pre
-style='margin-left:.25in'><span style='mso-tab-count:3'>                   </span>Stereotype <span
-class=SpellE>stereotype</span>, Property <span class=SpellE>property</span>, Object value) {</pre><pre
-style='margin-left:.25in'><img border=0 width=24 height=13 id="_x0000_i1125"
-src="../../../../images/tag_1.gif" align=CENTER><span style='mso-tab-count:
-2'>        </span><span class=SpellE><span class=GramE>namedElement.setValue</span></span><span
-class=GramE>(</span>stereotype, <span class=SpellE>property.getName</span>(), value);</pre><pre
-style='margin-left:.25in'><o:p>&nbsp;</o:p></pre><pre style='margin-left:.25in'><span
-style='mso-tab-count:2'>           </span><span class=GramE>out(</span>&quot;Value of stereotype property '&quot; + <span
-class=SpellE>property.getQualifiedName</span>()</pre><pre style='margin-left:
-.25in'><span style='mso-tab-count:3'>                   </span>+ &quot;' on element '&quot; + <span
-class=SpellE><span class=GramE>namedElement.getQualifiedName</span></span><span
-class=GramE>(</span>) + &quot;' set to &quot;</pre><pre style='margin-left:
-.25in'><span style='mso-tab-count:3'>                   </span>+ <span
-class=SpellE><span class=GramE>String.valueOf</span></span><span class=GramE>(</span>value) + &quot;.&quot;);</pre><pre
-style='margin-left:.25in'><span style='mso-tab-count:1'>   </span>}</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Here
-we call a convenience method on the (named) element <img border=0 width=24
-height=13 id="_x0000_i1126" src="../../../../images/tag_1.gif" align=CENTER><span
-style='mso-spacerun:yes'> </span>that sets the value of a property with a
-specified name in the dynamically created <span class=SpellE>Ecore</span>
-object instance corresponding to the specified applied stereotype and notifies
-the user.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>OK,
-let’s see this method in action. For example, we could set the value of the ‘<span
-class=SpellE>isVolatile</span>’ property of the ‘<span class=SpellE>EReference</span>’
-stereotype for the ‘<span class=SpellE>pendingOrders</span>’ property of the
-‘Supplier’ class in the ‘epo2’ model to <span class=SpellE><span
-style='font-family:"Courier New"'>Boolean.TRUE</span></span> as follows:</p>
-
-<pre style='margin-left:.25in'><span style='mso-tab-count:2'>           </span><span
-class=SpellE><span class=GramE>setStereotypePropertyValue</span></span><span
-class=GramE>(</span><span class=SpellE>pendingOrdersProperty</span>, <span
-class=SpellE>eReferenceStereotype</span>,</pre><pre style='margin-left:.25in'><span
-style='mso-tab-count:3'>                   </span><span class=SpellE><span
-class=GramE>isVolatileProperty</span></span>, <span class=SpellE>Boolean.TRUE</span>);</pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=61 height=13 id="_x0000_i1127" src="../../../../images/tryit.gif"><span
-style='mso-spacerun:yes'> </span>Write code to programmatically set the values
-of the other stereotype properties for elements in the ExtendedPO2 model.</p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Conclusion</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Congratulations!
-If youÂ’ve made it this far, youÂ’ve successfully created and applied a simple
-profile programmatically and/or using the UML editor. ThereÂ’s a whole lot more
-that could be said, but the purpose of this article was just to introduce you
-to the concepts. Stay tuned for more articles on how to develop tools with
-UML2.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>For
-more information on UML2, visit the <a
-href="http://www.eclipse.org/modeling/mdt/?project=uml2#uml2">home page</a> or
-join the <a href="news://news.eclipse.org/eclipse.modeling.mdt.uml2">newsgroup</a>.</p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>References</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>[1]
-K. Hussey. <span class=GramE>“Getting Started with UML2”.</span> International
-Business Machines Corp., 2004, 2006.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-class=GramE>[2] F. <span class=SpellE>Budinsky</span>, D. Steinberg, E. <span
-class=SpellE>Merks</span>, R. <span class=SpellE>Ellersick</span>, and T. J. <span
-class=SpellE>Grose</span>.</span> <i style='mso-bidi-font-style:normal'>Eclipse
-Modeling Framework</i>. Pearson Education, Inc., <st1:place><st1:City>Boston</st1:City>,
- <st1:State>MA</st1:State></st1:place>, 2003.</p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Source
-Code</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>To
-run the example or view the source code for this article, unzip <a
-href="http://download.eclipse.org/modeling/mdt/uml2/downloads/articles/uml2.articles_200607181325.zip">uml2.articles_200607181325.zip</a>
-into your Eclipse home directory and import the <code>com.ibm.uml2.articles</code>
-plug-in into your workspace as a binary project with linked content (<b>File
-&gt; ImportÂ… &gt; External Plug-ins and Fragments</b>). You can run the <code>IntroductionToUML2Profiles</code>
-class as a Java application with two file <span class=SpellE>URIs</span> (e.g.
-“file:/C:/Introduction to UML2 Profiles” “<span class=SpellE>jar<span
-class=GramE>:file</span></span>:/C:/Eclipse
-3.2/eclipse/plugins/org.eclipse.uml2.uml.resources_2.0.0.v200606221411.jar!/”)
-as program arguments. The first URI should refer to a folder that contains the
-ExtendedPO2 model described in the “Getting Started with UML2” article. The
-second URI should use the JAR scheme (since the UML resources plug-in is <span
-class=SpellE>JARÂ’d</span> as of UML2 1.1) and refer to the location of the <span
-style='font-family:"Courier New"'>org.eclipse.uml2.uml.resources</span> plug-<span
-class=SpellE>inÂ’s</span> JAR archive.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='font-size:7.5pt'>Java and all Java-based trademarks and logos are
-trademarks or registered trademarks of Sun Microsystems, Inc. in the </span><st1:country-region><st1:place><span
-  style='font-size:7.5pt'>United States</span></st1:place></st1:country-region><span
-style='font-size:7.5pt'>, other countries, or both.<o:p></o:p></span></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/filelist.xml b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/filelist.xml
deleted file mode 100644
index 18e66e3..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/filelist.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:MainFile HRef="../article.html"/>
- <o:File HRef="image037.png"/>
- <o:File HRef="image038.jpg"/>
- <o:File HRef="image039.emz"/>
- <o:File HRef="image002.gif"/>
- <o:File HRef="image003.png"/>
- <o:File HRef="image004.jpg"/>
- <o:File HRef="image005.png"/>
- <o:File HRef="image006.jpg"/>
- <o:File HRef="image001.png"/>
- <o:File HRef="image040.jpg"/>
- <o:File HRef="image041.png"/>
- <o:File HRef="image042.jpg"/>
- <o:File HRef="image007.png"/>
- <o:File HRef="image008.jpg"/>
- <o:File HRef="image009.png"/>
- <o:File HRef="image010.jpg"/>
- <o:File HRef="image011.png"/>
- <o:File HRef="image012.jpg"/>
- <o:File HRef="image013.png"/>
- <o:File HRef="image014.jpg"/>
- <o:File HRef="image015.png"/>
- <o:File HRef="image016.jpg"/>
- <o:File HRef="image017.png"/>
- <o:File HRef="image018.jpg"/>
- <o:File HRef="image019.png"/>
- <o:File HRef="image020.jpg"/>
- <o:File HRef="image021.png"/>
- <o:File HRef="image022.jpg"/>
- <o:File HRef="image023.png"/>
- <o:File HRef="image024.jpg"/>
- <o:File HRef="image025.png"/>
- <o:File HRef="image026.jpg"/>
- <o:File HRef="image027.png"/>
- <o:File HRef="image028.jpg"/>
- <o:File HRef="image029.png"/>
- <o:File HRef="image030.jpg"/>
- <o:File HRef="image031.png"/>
- <o:File HRef="image032.jpg"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image001.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image001.png
deleted file mode 100644
index 2e8a5c7..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image001.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image002.gif b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image002.gif
deleted file mode 100644
index 54a7229..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image002.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image003.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image003.png
deleted file mode 100644
index e6df133..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image003.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image004.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image004.jpg
deleted file mode 100644
index d89312a..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image005.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image005.png
deleted file mode 100644
index 941bc68..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image005.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image006.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image006.jpg
deleted file mode 100644
index fa84373..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image006.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image007.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image007.png
deleted file mode 100644
index 8c58983..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image007.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image008.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image008.jpg
deleted file mode 100644
index 812ffbd..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image008.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image009.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image009.png
deleted file mode 100644
index 543ad41..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image009.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image010.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image010.jpg
deleted file mode 100644
index 84fbeea..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image010.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image011.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image011.png
deleted file mode 100644
index ca2f4bf..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image011.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image012.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image012.jpg
deleted file mode 100644
index fd18025..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image012.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image013.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image013.png
deleted file mode 100644
index fb7e963..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image013.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image014.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image014.jpg
deleted file mode 100644
index 6924ed9..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image014.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image015.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image015.png
deleted file mode 100644
index 2e7b976..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image015.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image016.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image016.jpg
deleted file mode 100644
index 775a4d8..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image016.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image017.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image017.png
deleted file mode 100644
index 4f0df7c..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image017.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image018.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image018.jpg
deleted file mode 100644
index 8d74278..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image018.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image019.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image019.png
deleted file mode 100644
index ad38d36..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image019.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image020.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image020.jpg
deleted file mode 100644
index 4ae88df..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image020.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image021.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image021.png
deleted file mode 100644
index 31ab9ba..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image021.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image022.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image022.jpg
deleted file mode 100644
index 6f2330d..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image022.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image023.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image023.png
deleted file mode 100644
index 7e4cc63..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image023.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image024.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image024.jpg
deleted file mode 100644
index d3786b9..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image024.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image025.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image025.png
deleted file mode 100644
index b32fb90..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image025.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image026.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image026.jpg
deleted file mode 100644
index 22ec1e5..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image026.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image027.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image027.png
deleted file mode 100644
index 1197ecb..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image027.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image028.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image028.jpg
deleted file mode 100644
index 093bcd6..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image028.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image029.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image029.png
deleted file mode 100644
index 56f5502..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image029.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image030.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image030.jpg
deleted file mode 100644
index bd67acc..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image030.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image031.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image031.png
deleted file mode 100644
index 172764f..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image031.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image032.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image032.jpg
deleted file mode 100644
index bb79335..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image032.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image037.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image037.png
deleted file mode 100644
index 0b3545b..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image037.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image038.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image038.jpg
deleted file mode 100644
index 6a6b7c5..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image038.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image039.emz b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image039.emz
deleted file mode 100644
index 4d4ff33..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image039.emz
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image040.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image040.jpg
deleted file mode 100644
index 3517695..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image040.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image041.png b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image041.png
deleted file mode 100644
index 70b1725..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image041.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image042.jpg b/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image042.jpg
deleted file mode 100644
index a903328..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/article_files/image042.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/articles/Introduction_to_UML2_Profiles/default_style.css b/uml2/docs/articles/Introduction_to_UML2_Profiles/default_style.css
deleted file mode 100644
index d725483..0000000
--- a/uml2/docs/articles/Introduction_to_UML2_Profiles/default_style.css
+++ /dev/null
@@ -1,11 +0,0 @@
-p, table, td, th {  font-family: arial, helvetica, geneva; font-size: 10pt}
-pre {  font-family: "Courier New", Courier, mono; font-size: 10pt}
-h2 { font-family: arial, helvetica, geneva; font-size: 18pt; font-weight: bold ; line-height: 14px}
-code {  font-family: "Courier New", Courier, mono; font-size: 10pt}
-sup {  font-family: arial,helvetica,geneva; font-size: 10px}
-h3 {  font-family: arial, helvetica, geneva; font-size: 14pt; font-weight: bold}
-li {  font-family: arial, helvetica, geneva; font-size: 10pt}
-h1 {  font-family: arial, helvetica, geneva; font-size: 28px; font-weight: bold}
-body {  font-family: arial, helvetica, geneva; font-size: 10pt; clip:   rect(   ); margin-top: 5mm; margin-left: 3mm}
-.indextop { font-size: x-large;; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold}
-.indexsub { font-size: xx-small;; font-family: Arial, Helvetica, sans-serif; color: #8080FF}
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide.html b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide.html
deleted file mode 100644
index 6bc5730..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide.html
+++ /dev/null
@@ -1,19760 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="guide_files/filelist.xml">
-<link rel=Edit-Time-Data href="guide_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>UML2 migration</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="place"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:Helvetica;
-	panose-1:2 11 6 4 2 2 2 2 2 4;
-	mso-font-charset:238;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536902279 -2147483648 8 0 511 0;}
-@font-face
-	{font-family:Helv;
-	panose-1:2 11 6 4 2 2 2 3 2 4;
-	mso-font-alt:Arial;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-format:other;
-	mso-font-pitch:variable;
-	mso-font-signature:3 0 0 0 1 0;}
-@font-face
-	{font-family:Wingdings;
-	panose-1:5 0 0 0 0 0 0 0 0 0;
-	mso-font-charset:2;
-	mso-generic-font-family:auto;
-	mso-font-pitch:variable;
-	mso-font-signature:0 268435456 0 0 -2147483648 0;}
-@font-face
-	{font-family:Tahoma;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:238;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:1627421319 -2147483648 8 0 66047 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:238;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";}
-h1
-	{margin-top:12.0pt;
-	margin-right:0in;
-	margin-bottom:3.0pt;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	page-break-after:avoid;
-	mso-outline-level:1;
-	font-size:16.0pt;
-	font-family:Arial;}
-h2
-	{margin-top:12.0pt;
-	margin-right:0in;
-	margin-bottom:3.0pt;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	page-break-after:avoid;
-	mso-outline-level:2;
-	font-size:14.0pt;
-	font-family:Arial;
-	font-style:italic;}
-h3
-	{margin-top:12.0pt;
-	margin-right:0in;
-	margin-bottom:3.0pt;
-	margin-left:.5in;
-	text-indent:-.3in;
-	mso-pagination:widow-orphan;
-	page-break-after:avoid;
-	mso-outline-level:3;
-	font-size:13.0pt;
-	font-family:Arial;}
-h4
-	{margin-top:12.0pt;
-	margin-right:0in;
-	margin-bottom:3.0pt;
-	margin-left:.6in;
-	text-indent:-.1in;
-	mso-pagination:widow-orphan;
-	page-break-after:avoid;
-	mso-outline-level:4;
-	font-size:14.0pt;
-	font-family:"Times New Roman";}
-h5
-	{margin-top:12.0pt;
-	margin-right:0in;
-	margin-bottom:3.0pt;
-	margin-left:.7in;
-	text-indent:-.3in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:5;
-	font-size:13.0pt;
-	font-family:"Times New Roman";
-	font-style:italic;}
-p.MsoToc1, li.MsoToc1, div.MsoToc1
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";}
-p.MsoCommentText, li.MsoCommentText, div.MsoCommentText
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";}
-p.MsoListBullet, li.MsoListBullet, div.MsoListBullet
-	{mso-style-link:"List Bullet Char";
-	margin-top:0in;
-	margin-right:0in;
-	margin-bottom:0in;
-	margin-left:.5in;
-	margin-bottom:.0001pt;
-	text-indent:-.25in;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.MsoList2, li.MsoList2, div.MsoList2
-	{margin-top:0in;
-	margin-right:0in;
-	margin-bottom:0in;
-	margin-left:.5in;
-	margin-bottom:.0001pt;
-	text-indent:-.25in;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";}
-p.MsoListBullet2, li.MsoListBullet2, div.MsoListBullet2
-	{mso-style-link:"List Bullet 2 Char";
-	margin-top:0in;
-	margin-right:0in;
-	margin-bottom:0in;
-	margin-left:.75in;
-	margin-bottom:.0001pt;
-	text-indent:-.25in;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";}
-p.MsoListBullet3, li.MsoListBullet3, div.MsoListBullet3
-	{mso-style-link:"List Bullet 3 Char";
-	margin-top:0in;
-	margin-right:0in;
-	margin-bottom:0in;
-	margin-left:1.0in;
-	margin-bottom:.0001pt;
-	text-indent:-.25in;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";}
-p.MsoListBullet4, li.MsoListBullet4, div.MsoListBullet4
-	{margin-top:0in;
-	margin-right:0in;
-	margin-bottom:0in;
-	margin-left:1.5in;
-	margin-bottom:.0001pt;
-	text-indent:-.25in;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";}
-p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
-	{margin-top:0in;
-	margin-right:0in;
-	margin-bottom:6.0pt;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";}
-p.MsoBodyTextIndent, li.MsoBodyTextIndent, div.MsoBodyTextIndent
-	{margin-top:0in;
-	margin-right:0in;
-	margin-bottom:6.0pt;
-	margin-left:.25in;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";}
-p.MsoDate, li.MsoDate, div.MsoDate
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:purple;
-	text-decoration:underline;
-	text-underline:single;}
-p.MsoDocumentMap, li.MsoDocumentMap, div.MsoDocumentMap
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	background:navy;
-	font-size:12.0pt;
-	font-family:Tahoma;
-	mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";}
-p.MsoCommentSubject, li.MsoCommentSubject, div.MsoCommentSubject
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-span.ListBulletChar
-	{mso-style-name:"List Bullet Char";
-	mso-style-link:"List Bullet";
-	mso-ansi-font-size:12.0pt;
-	mso-bidi-font-size:12.0pt;
-	mso-ansi-language:EN-US;
-	mso-fareast-language:EN-US;
-	mso-bidi-language:AR-SA;
-	font-weight:bold;}
-span.ListBullet2Char
-	{mso-style-name:"List Bullet 2 Char";
-	mso-style-link:"List Bullet 2";
-	mso-ansi-font-size:12.0pt;
-	mso-bidi-font-size:12.0pt;
-	mso-ansi-language:EN-US;
-	mso-fareast-language:EN-US;
-	mso-bidi-language:AR-SA;}
-span.ListBullet3Char
-	{mso-style-name:"List Bullet 3 Char";
-	mso-style-link:"List Bullet 3";
-	mso-ansi-font-size:12.0pt;
-	mso-bidi-font-size:12.0pt;
-	mso-ansi-language:EN-US;
-	mso-fareast-language:EN-US;
-	mso-bidi-language:AR-SA;}
-p.normalarial, li.normalarial, div.normalarial
-	{mso-style-name:normalarial;
-	margin-top:12.0pt;
-	margin-right:0in;
-	margin-bottom:3.0pt;
-	margin-left:.5in;
-	text-indent:-.3in;
-	mso-pagination:widow-orphan;
-	page-break-after:avoid;
-	font-size:13.0pt;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-span.heading3char
-	{mso-style-name:heading3char;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-weight:bold;}
-span.listbulletcharchar
-	{mso-style-name:listbulletcharchar;
-	font-weight:bold;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:.5in .75in 1.0in .75in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	border:none;
-	border-bottom:solid windowtext 1.0pt;
-	padding:0in 0in 24.0pt 0in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:-127;
-	mso-list-type:simple;
-	mso-list-template-ids:1764266394;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-style-link:"List Bullet 4";
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:60.45pt;
-	mso-level-number-position:left;
-	margin-left:60.45pt;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:-126;
-	mso-list-type:simple;
-	mso-list-template-ids:-499484602;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-style-link:"List Bullet 3";
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:46.3pt;
-	mso-level-number-position:left;
-	margin-left:46.3pt;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l2
-	{mso-list-id:-125;
-	mso-list-type:simple;
-	mso-list-template-ids:-905128938;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-style-link:"List Bullet 2";
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:32.15pt;
-	mso-level-number-position:left;
-	margin-left:32.15pt;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:-119;
-	mso-list-type:simple;
-	mso-list-template-ids:-1290344310;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-style-link:"List Bullet";
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.25in;
-	mso-level-number-position:left;
-	margin-left:.25in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:278107;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-228144608 67698689 -1621047670 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:9065941;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1111500494 2134686924 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l5:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l5:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:10186818;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-704999116 67698689 67698691 -726208670 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l6:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:12731250;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1907362096 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:23483844;
-	mso-list-type:hybrid;
-	mso-list-template-ids:382371220 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l8:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l8:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l8:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:30690441;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-822035250 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l9:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10
-	{mso-list-id:34082142;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-116357470 67698691 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l10:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l10:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11
-	{mso-list-id:37630831;
-	mso-list-template-ids:565237946;}
-@list l11:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l11:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12
-	{mso-list-id:40055883;
-	mso-list-template-ids:-547050114;}
-@list l12:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l12:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13
-	{mso-list-id:43799321;
-	mso-list-template-ids:1180717114;}
-@list l13:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l13:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14
-	{mso-list-id:45419791;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1908823720 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l14:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l14:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15
-	{mso-list-id:47657780;
-	mso-list-template-ids:1994544700;}
-@list l15:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l15:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l15:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l15:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16
-	{mso-list-id:64882587;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-547050114 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l16:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l16:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l16:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17
-	{mso-list-id:66654400;
-	mso-list-template-ids:-7826624;}
-@list l17:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l17:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l17:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l17:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l18
-	{mso-list-id:71632497;
-	mso-list-template-ids:2066148766;}
-@list l19
-	{mso-list-id:79568023;
-	mso-list-type:hybrid;
-	mso-list-template-ids:63230960 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l19:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l19:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l19:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l19:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l19:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l19:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l19:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l19:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l19:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l20
-	{mso-list-id:80177410;
-	mso-list-template-ids:1194592708;}
-@list l20:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l20:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l20:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l20:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l20:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l20:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l20:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l20:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l20:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21
-	{mso-list-id:86074909;
-	mso-list-template-ids:-1487769696;}
-@list l21:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l21:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l21:level3
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l21:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l21:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22
-	{mso-list-id:109328319;
-	mso-list-template-ids:-1482363534;}
-@list l22:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l23
-	{mso-list-id:110830503;
-	mso-list-template-ids:-807907876;}
-@list l23:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l23:level2
-	{mso-level-start-at:2;
-	mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l23:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l23:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l23:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l23:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l23:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l23:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l23:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l24
-	{mso-list-id:124466226;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1095686832 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l24:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:91.5pt;
-	mso-level-number-position:left;
-	margin-left:91.5pt;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l24:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l24:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l24:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l24:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l24:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l24:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l24:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l24:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l25
-	{mso-list-id:131095897;
-	mso-list-template-ids:-281106574;}
-@list l25:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l25:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l26
-	{mso-list-id:137260721;
-	mso-list-template-ids:-1206773338;}
-@list l26:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l26:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l26:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l26:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l26:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l26:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l26:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l26:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l26:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l27
-	{mso-list-id:144324359;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1970500168 67698689 67698691 -726208670 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l27:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l27:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l27:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l27:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l27:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l27:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l27:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l27:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l27:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l28
-	{mso-list-id:164832413;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1755644038 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l28:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l28:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l28:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l28:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l28:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l28:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l28:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l28:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l28:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l29
-	{mso-list-id:173305696;
-	mso-list-template-ids:-1206773338;}
-@list l29:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l29:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l29:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l29:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l29:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l29:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l29:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l29:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l29:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l30
-	{mso-list-id:177737825;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1338136412 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l30:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l30:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l30:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l30:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l30:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l30:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l30:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l30:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l30:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31
-	{mso-list-id:185561617;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1994544700 2134686924 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l31:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l31:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l31:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32
-	{mso-list-id:188300650;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1721335640 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l32:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l32:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:0in;
-	mso-level-number-position:left;
-	margin-left:0in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l32:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	margin-left:.5in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l32:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33
-	{mso-list-id:191697181;
-	mso-list-type:hybrid;
-	mso-list-template-ids:2047489606 67698689 -1621047670 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l33:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l33:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l33:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34
-	{mso-list-id:195124921;
-	mso-list-type:hybrid;
-	mso-list-template-ids:769051474 2134686924 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l34:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l34:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l34:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35
-	{mso-list-id:202327890;
-	mso-list-template-ids:-1755644038;}
-@list l35:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l35:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l35:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l35:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36
-	{mso-list-id:223373716;
-	mso-list-template-ids:-323034728;}
-@list l36:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l36:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l36:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l36:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l36:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37
-	{mso-list-id:232742231;
-	mso-list-template-ids:1186108464;}
-@list l37:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l37:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l37:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l37:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38
-	{mso-list-id:244265584;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1254936634 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l38:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l38:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l38:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l38:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39
-	{mso-list-id:245500304;
-	mso-list-type:hybrid;
-	mso-list-template-ids:706138356 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l39:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l39:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l39:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l39:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l39:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l40
-	{mso-list-id:251092073;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-436821088 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l40:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l40:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l40:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l40:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l40:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l40:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l40:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l40:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l40:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l41
-	{mso-list-id:254214792;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1224673124 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l41:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l41:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l41:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:-.25in;
-	mso-level-number-position:left;
-	margin-left:-.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l41:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.25in;
-	mso-level-number-position:left;
-	margin-left:.25in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l41:level5
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l41:level6
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l41:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l41:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l41:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l42
-	{mso-list-id:265357509;
-	mso-list-type:hybrid;
-	mso-list-template-ids:608324132 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l42:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l42:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l42:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l42:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l42:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l42:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l42:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l42:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l42:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l43
-	{mso-list-id:266893142;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-152906590 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l43:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l43:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l43:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l43:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l43:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l43:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l43:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l43:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l43:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l44
-	{mso-list-id:267085524;
-	mso-list-template-ids:-1206773338;}
-@list l44:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l44:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l44:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l44:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l44:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l44:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l44:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l44:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l44:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l45
-	{mso-list-id:279457016;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1636923418 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l45:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l45:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l45:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l45:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l45:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l45:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l45:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l45:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l45:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l46
-	{mso-list-id:300506385;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1194592708 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l46:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l46:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l46:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l46:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l46:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l46:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l46:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l46:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l46:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l47
-	{mso-list-id:306012926;
-	mso-list-template-ids:-746565372;}
-@list l47:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l47:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l47:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l47:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l47:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l47:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l47:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l47:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l47:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l48
-	{mso-list-id:311299403;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1536854458 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l48:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l48:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l48:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l48:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l48:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l48:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l48:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l48:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l48:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l49
-	{mso-list-id:318657431;
-	mso-list-template-ids:161220598;}
-@list l49:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l49:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l49:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l49:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l49:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l49:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l49:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l49:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l49:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l50
-	{mso-list-id:320432353;
-	mso-list-template-ids:1186108464;}
-@list l50:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l50:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l50:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l50:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l50:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l50:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l50:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l50:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l50:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l51
-	{mso-list-id:321323660;
-	mso-list-template-ids:-1513593074;}
-@list l51:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l51:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l51:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l51:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l51:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l51:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l51:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l51:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l51:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l52
-	{mso-list-id:324288022;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1038260208 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l52:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l52:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l52:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l52:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l52:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l52:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l52:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l52:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l52:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l53
-	{mso-list-id:336035448;
-	mso-list-type:hybrid;
-	mso-list-template-ids:672404124 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l53:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l53:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l53:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l53:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l53:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l53:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l53:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l53:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l53:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l54
-	{mso-list-id:337082932;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1251944048 -994703330 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l54:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l54:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l54:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l54:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l54:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l54:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l54:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l54:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l54:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l55
-	{mso-list-id:339427438;
-	mso-list-template-ids:-1206773338;}
-@list l55:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l55:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l55:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l55:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l55:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l55:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l55:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l55:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l55:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l56
-	{mso-list-id:348527454;
-	mso-list-type:hybrid;
-	mso-list-template-ids:920312910 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l56:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l56:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l56:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l56:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l56:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l56:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l56:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l56:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l56:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l57
-	{mso-list-id:363991057;
-	mso-list-type:hybrid;
-	mso-list-template-ids:565237946 2134686924 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l57:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l57:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l57:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l57:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l57:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l57:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l57:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l57:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l57:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l58
-	{mso-list-id:364719029;
-	mso-list-template-ids:240928280;}
-@list l58:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l59
-	{mso-list-id:369764757;
-	mso-list-template-ids:1290407842;}
-@list l59:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l59:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l59:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l59:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l59:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l59:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l59:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l59:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l59:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l60
-	{mso-list-id:375355401;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1567710564 2134686924 67698691 -726208670 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l60:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l60:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l60:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l60:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l60:level5
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l60:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l60:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l60:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l60:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l61
-	{mso-list-id:385882048;
-	mso-list-template-ids:-323034728;}
-@list l61:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l61:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l61:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l61:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l61:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l61:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l61:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l61:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l61:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l62
-	{mso-list-id:389815370;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-630313826 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l62:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l62:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l62:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l62:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l62:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l62:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l62:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l62:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l62:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l63
-	{mso-list-id:390541628;
-	mso-list-type:hybrid;
-	mso-list-template-ids:288030246 2134686924 67698691 -726208670 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l63:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l63:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l63:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l63:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l63:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l63:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l63:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l63:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l63:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l64
-	{mso-list-id:393431958;
-	mso-list-template-ids:-165240996;}
-@list l65
-	{mso-list-id:393696462;
-	mso-list-template-ids:926320134;}
-@list l65:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l66
-	{mso-list-id:409817956;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1264427322 2134686924 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l66:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l66:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l66:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l66:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l66:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l66:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l66:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l66:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l66:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l67
-	{mso-list-id:410932063;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1221726222 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l67:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l67:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l67:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l67:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l67:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l67:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l67:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l67:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l67:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l68
-	{mso-list-id:413668770;
-	mso-list-type:hybrid;
-	mso-list-template-ids:333360372 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l68:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l68:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l68:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l68:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l68:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l68:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l68:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l68:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l68:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l69
-	{mso-list-id:420106652;
-	mso-list-type:hybrid;
-	mso-list-template-ids:761200004 67698689 67698691 -726208670 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l69:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l69:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l69:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l69:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l69:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l69:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l69:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l69:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l69:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l70
-	{mso-list-id:425081700;
-	mso-list-template-ids:639007036;}
-@list l70:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l70:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:-.75in;
-	mso-level-number-position:left;
-	margin-left:-.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l70:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:-.25in;
-	mso-level-number-position:left;
-	margin-left:-.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l70:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.25in;
-	mso-level-number-position:left;
-	margin-left:.25in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l70:level5
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l70:level6
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l70:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l70:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l70:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l71
-	{mso-list-id:436173478;
-	mso-list-template-ids:1194592708;}
-@list l71:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l71:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l71:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l71:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l71:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l71:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l71:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l71:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l71:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l72
-	{mso-list-id:438842986;
-	mso-list-type:hybrid;
-	mso-list-template-ids:2054056078 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l72:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l72:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l72:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l72:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l72:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l72:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l72:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l72:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l72:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l73
-	{mso-list-id:438916101;
-	mso-list-type:hybrid;
-	mso-list-template-ids:277623366 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l73:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l73:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l73:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l73:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l73:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l73:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l73:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l73:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l73:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l74
-	{mso-list-id:448479111;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-323034728 2134686924 67698691 -726208670 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l74:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l74:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l74:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l74:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l74:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l74:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l74:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l74:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l74:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l75
-	{mso-list-id:449667460;
-	mso-list-template-ids:-1137926800;}
-@list l75:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l75:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l75:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l75:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l75:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l75:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l75:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l75:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l75:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l76
-	{mso-list-id:461774164;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1613966672 67698689 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l76:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l76:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l76:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l76:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l76:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l76:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l76:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l76:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l76:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l77
-	{mso-list-id:467867878;
-	mso-list-template-ids:-1206773338;}
-@list l77:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l77:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l77:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l77:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l77:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l77:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l77:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l77:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l77:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l78
-	{mso-list-id:467893985;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1513593074 2134686924 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l78:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l78:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l78:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l78:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l78:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l78:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l78:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l78:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l78:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l79
-	{mso-list-id:468087256;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1504629294 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l79:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l79:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l79:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l79:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l79:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l79:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l79:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l79:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l79:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l80
-	{mso-list-id:468789825;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-2063297324 -726208670 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l80:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l80:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l80:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l80:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l80:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l80:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l80:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l80:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l80:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l81
-	{mso-list-id:478814022;
-	mso-list-template-ids:769051474;}
-@list l81:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l81:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l81:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l81:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l81:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l81:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l81:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l81:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l81:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l82
-	{mso-list-id:486170383;
-	mso-list-type:hybrid;
-	mso-list-template-ids:831657264 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l82:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l82:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l82:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l82:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l82:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l82:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l82:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l82:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l82:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l83
-	{mso-list-id:517425298;
-	mso-list-template-ids:1095686832;}
-@list l83:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:91.5pt;
-	mso-level-number-position:left;
-	margin-left:91.5pt;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l83:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l83:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l83:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l83:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l83:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l83:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l83:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l83:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l84
-	{mso-list-id:522742104;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1754941652 67698689 67698691 2134686924 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l84:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l84:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l84:level3
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l84:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l84:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l84:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l84:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l84:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l84:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l85
-	{mso-list-id:535512324;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1147505934 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l85:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l85:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l85:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l85:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l85:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l85:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l85:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l85:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l85:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l86
-	{mso-list-id:544294766;
-	mso-list-type:hybrid;
-	mso-list-template-ids:555518802 67698689 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l86:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l86:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l86:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l86:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l86:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l86:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l86:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l86:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l86:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l87
-	{mso-list-id:546111786;
-	mso-list-template-ids:-815480924;}
-@list l87:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l87:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l87:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l87:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l87:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l87:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l87:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l87:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l87:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l88
-	{mso-list-id:551233798;
-	mso-list-type:hybrid;
-	mso-list-template-ids:671233060 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l88:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l88:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l88:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l88:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l88:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l88:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l88:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l88:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l88:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l89
-	{mso-list-id:559678669;
-	mso-list-template-ids:-517053204;}
-@list l89:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l89:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l89:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l89:level4
-	{mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;}
-@list l89:level5
-	{mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;}
-@list l89:level6
-	{mso-level-tab-stop:2.75in;
-	mso-level-number-position:left;
-	margin-left:2.75in;
-	text-indent:-.25in;}
-@list l89:level7
-	{mso-level-tab-stop:3.25in;
-	mso-level-number-position:left;
-	margin-left:3.25in;
-	text-indent:-.25in;}
-@list l89:level8
-	{mso-level-tab-stop:3.75in;
-	mso-level-number-position:left;
-	margin-left:3.75in;
-	text-indent:-.25in;}
-@list l89:level9
-	{mso-level-tab-stop:4.25in;
-	mso-level-number-position:left;
-	margin-left:4.25in;
-	text-indent:-.25in;}
-@list l90
-	{mso-list-id:559823997;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1614118444 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l90:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l90:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l90:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l90:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l90:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l90:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l90:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l90:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l90:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l91
-	{mso-list-id:576088103;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-781706566 2134686924 67698691 -726208670 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l91:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l91:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l91:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l91:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l91:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l91:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l91:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l91:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l91:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l92
-	{mso-list-id:576937679;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-7826624 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l92:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l92:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l92:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l92:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l92:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l92:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l92:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l92:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l92:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l93
-	{mso-list-id:579294605;
-	mso-list-template-ids:-666073592;}
-@list l93:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l93:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l93:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l93:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l93:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l93:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l93:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l93:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l93:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l94
-	{mso-list-id:582451031;
-	mso-list-template-ids:-1464561338;}
-@list l94:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l94:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l94:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l94:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l94:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l94:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l94:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l94:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l94:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l95
-	{mso-list-id:586694064;
-	mso-list-type:hybrid;
-	mso-list-template-ids:2101377048 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l95:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l95:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:-.75in;
-	mso-level-number-position:left;
-	margin-left:-.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l95:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:-.25in;
-	mso-level-number-position:left;
-	margin-left:-.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l95:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.25in;
-	mso-level-number-position:left;
-	margin-left:.25in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l95:level5
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l95:level6
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l95:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l95:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l95:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l96
-	{mso-list-id:600719325;
-	mso-list-template-ids:-1081979258;}
-@list l96:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l96:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l96:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l96:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.25in;
-	mso-level-number-position:left;
-	margin-left:.25in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l96:level5
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l96:level6
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l96:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l96:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l96:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l97
-	{mso-list-id:608900240;
-	mso-list-template-ids:-1487769696;}
-@list l97:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l97:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l97:level3
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l97:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l97:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l97:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l97:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l97:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l97:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l98
-	{mso-list-id:616066372;
-	mso-list-template-ids:-1264427322;}
-@list l98:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l98:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l98:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l98:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l98:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l98:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l98:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l98:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l98:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l99
-	{mso-list-id:617569177;
-	mso-list-template-ids:-363961638;}
-@list l99:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l99:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l99:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l99:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l99:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l99:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l99:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l99:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l99:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l100
-	{mso-list-id:621112668;
-	mso-list-type:hybrid;
-	mso-list-template-ids:2027306390 67698689 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l100:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l100:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l100:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l100:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l100:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l100:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l100:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l100:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l100:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l101
-	{mso-list-id:623586953;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-496484536 2134686924 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l101:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l101:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l101:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l101:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l101:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l101:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l101:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l101:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l101:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l102
-	{mso-list-id:631252081;
-	mso-list-template-ids:1790322890;}
-@list l102:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l102:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l102:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l102:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l102:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l102:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l102:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l102:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l102:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l103
-	{mso-list-id:636027512;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1133474774 2134686924 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l103:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l103:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l103:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l103:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l103:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l103:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l103:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l103:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l103:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l104
-	{mso-list-id:650214963;
-	mso-list-template-ids:1194592708;}
-@list l104:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l104:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l104:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l104:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l104:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l104:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l104:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l104:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l104:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l105
-	{mso-list-id:653801861;
-	mso-list-template-ids:-369198734;}
-@list l105:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l105:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l105:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l105:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l105:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l105:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l105:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l105:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l105:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l106
-	{mso-list-id:661011288;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1104257528 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l106:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l106:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l106:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l106:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l106:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l106:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l106:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l106:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l106:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l107
-	{mso-list-id:673267700;
-	mso-list-template-ids:-1487769696;}
-@list l107:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l107:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l107:level3
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l107:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l107:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l107:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l107:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l107:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l107:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l108
-	{mso-list-id:678117465;
-	mso-list-template-ids:-1464561338;}
-@list l108:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l108:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l108:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l108:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l108:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l108:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l108:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l108:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l108:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l109
-	{mso-list-id:681250438;
-	mso-list-template-ids:-547050114;}
-@list l109:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l109:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l109:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l109:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l109:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l109:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l109:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l109:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l109:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l110
-	{mso-list-id:683361645;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1887231902 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l110:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l110:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l110:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l110:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l110:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l110:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l110:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l110:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l110:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l111
-	{mso-list-id:683823656;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-63548302 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l111:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l111:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l111:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l111:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l111:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l111:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l111:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l111:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l111:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l112
-	{mso-list-id:684096612;
-	mso-list-template-ids:-893105768;}
-@list l112:level1
-	{mso-level-start-at:4;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l112:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l112:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l112:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l112:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l112:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l112:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l112:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l112:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l113
-	{mso-list-id:686833483;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1095311824 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l113:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l113:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:-.75in;
-	mso-level-number-position:left;
-	margin-left:-.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l113:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:-.25in;
-	mso-level-number-position:left;
-	margin-left:-.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l113:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.25in;
-	mso-level-number-position:left;
-	margin-left:.25in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l113:level5
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l113:level6
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l113:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l113:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l113:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l114
-	{mso-list-id:691419735;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1210316538 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l114:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l114:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l114:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l114:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l114:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l114:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l114:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l114:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l114:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l115
-	{mso-list-id:707606785;
-	mso-list-template-ids:793795860;}
-@list l115:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l115:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l115:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l115:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l115:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l115:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l115:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l115:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l115:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l116
-	{mso-list-id:716776951;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1290407842 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l116:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l116:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l116:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l116:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l116:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l116:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l116:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l116:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l116:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l117
-	{mso-list-id:729228288;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1679260098 2134686924 67698691 2134686924 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l117:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l117:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l117:level3
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l117:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l117:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l117:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l117:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l117:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l117:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l118
-	{mso-list-id:746920151;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1837263886 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l118:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l118:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l118:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	margin-left:.5in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l118:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l118:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l118:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l118:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l118:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l118:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l119
-	{mso-list-id:763956851;
-	mso-list-template-ids:-1221182508;}
-@list l119:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l119:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l119:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l119:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l119:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l119:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l119:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l119:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l119:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l120
-	{mso-list-id:769199413;
-	mso-list-template-ids:-1262046166;}
-@list l120:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l121
-	{mso-list-id:769205041;
-	mso-list-template-ids:2041712328;}
-@list l121:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l121:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l121:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l121:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l121:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l121:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l121:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l121:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l121:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l122
-	{mso-list-id:776363803;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1309383962 -726208670 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l122:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l122:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l122:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l122:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l122:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l122:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l122:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l122:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l122:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l123
-	{mso-list-id:803349707;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1897260910 67698689 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l123:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l123:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l123:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l123:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l123:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l123:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l123:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l123:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l123:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l124
-	{mso-list-id:805663839;
-	mso-list-template-ids:-1133474774;}
-@list l124:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l124:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l124:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l124:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l124:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l124:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l124:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l124:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l124:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l125
-	{mso-list-id:814882467;
-	mso-list-type:hybrid;
-	mso-list-template-ids:297189182 67698691 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l125:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l125:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l125:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l125:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l125:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l125:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l125:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l125:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l125:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l126
-	{mso-list-id:817304861;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1383995692 67698689 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l126:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l126:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l126:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l126:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l126:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l126:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l126:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l126:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l126:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l127
-	{mso-list-id:821696038;
-	mso-list-template-ids:-473278142;}
-@list l127:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l127:level2
-	{mso-level-start-at:3;
-	mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l127:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l127:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l127:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l127:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l127:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l127:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l127:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l128
-	{mso-list-id:832797067;
-	mso-list-type:hybrid;
-	mso-list-template-ids:380925014 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l128:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l128:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l128:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l128:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l128:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l128:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l128:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l128:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l128:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l129
-	{mso-list-id:833683883;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1712866536 67698689 67698691 2134686924 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l129:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l129:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l129:level3
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l129:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l129:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l129:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l129:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l129:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l129:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l130
-	{mso-list-id:840972474;
-	mso-list-template-ids:-773691124;}
-@list l130:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l130:level2
-	{mso-level-start-at:2;
-	mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l131
-	{mso-list-id:841553593;
-	mso-list-template-ids:-771307894;}
-@list l131:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l132
-	{mso-list-id:858587632;
-	mso-list-type:hybrid;
-	mso-list-template-ids:522994158 67698689 67698691 2134686924 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l132:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l132:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l132:level3
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l132:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l132:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l132:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l132:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l132:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l132:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l133
-	{mso-list-id:865294107;
-	mso-list-template-ids:-1009745256;}
-@list l133:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l134
-	{mso-list-id:871262604;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-517053204 2134686924 2134686924 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l134:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l134:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l134:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l134:level4
-	{mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;}
-@list l134:level5
-	{mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;}
-@list l134:level6
-	{mso-level-tab-stop:2.75in;
-	mso-level-number-position:left;
-	margin-left:2.75in;
-	text-indent:-.25in;}
-@list l134:level7
-	{mso-level-tab-stop:3.25in;
-	mso-level-number-position:left;
-	margin-left:3.25in;
-	text-indent:-.25in;}
-@list l134:level8
-	{mso-level-tab-stop:3.75in;
-	mso-level-number-position:left;
-	margin-left:3.75in;
-	text-indent:-.25in;}
-@list l134:level9
-	{mso-level-tab-stop:4.25in;
-	mso-level-number-position:left;
-	margin-left:4.25in;
-	text-indent:-.25in;}
-@list l135
-	{mso-list-id:885292288;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1919982474 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l135:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l135:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l135:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l135:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l135:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l135:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l135:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l135:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l135:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l136
-	{mso-list-id:886913869;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1221182508 2134686924 67698691 -726208670 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l136:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l136:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l136:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l136:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l136:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l136:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l136:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l136:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l136:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l137
-	{mso-list-id:893347157;
-	mso-list-template-ids:1939349570;}
-@list l137:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l138
-	{mso-list-id:898444859;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1487769696 2134686924 67698691 2134686924 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l138:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l138:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l138:level3
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l138:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l138:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l138:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l138:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l138:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l138:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l139
-	{mso-list-id:901136180;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1105954718 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l139:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l139:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:0in;
-	mso-level-number-position:left;
-	margin-left:0in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l139:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	margin-left:.5in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l139:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l139:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l139:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l139:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l139:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l139:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l140
-	{mso-list-id:904024559;
-	mso-list-type:hybrid;
-	mso-list-template-ids:667461938 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l140:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l140:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l140:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l140:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l140:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l140:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l140:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l140:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l140:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l141
-	{mso-list-id:915015421;
-	mso-list-template-ids:-1820318882;}
-@list l141:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l141:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l141:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l141:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l141:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l141:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l141:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l141:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l141:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l142
-	{mso-list-id:921988655;
-	mso-list-template-ids:1095686832;}
-@list l142:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:91.5pt;
-	mso-level-number-position:left;
-	margin-left:91.5pt;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l142:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l142:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l142:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l142:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l142:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l142:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l142:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l142:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l143
-	{mso-list-id:940532291;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-809701554 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l143:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l143:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l143:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l143:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l143:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l143:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l143:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l143:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l143:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l144
-	{mso-list-id:954602700;
-	mso-list-type:hybrid;
-	mso-list-template-ids:271072444 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l144:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l144:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l144:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l144:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l144:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l144:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l144:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l144:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l144:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l145
-	{mso-list-id:958801334;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-32480500 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l145:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l145:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l145:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l145:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l145:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l145:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l145:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l145:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l145:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l146
-	{mso-list-id:960839552;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1292974014 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l146:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l146:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l146:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l146:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l146:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l146:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l146:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l146:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l146:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l147
-	{mso-list-id:971642508;
-	mso-list-type:hybrid;
-	mso-list-template-ids:2041712328 2134686924 -1621047670 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l147:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l147:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l147:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l147:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l147:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l147:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l147:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l147:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l147:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l148
-	{mso-list-id:997344694;
-	mso-list-type:hybrid;
-	mso-list-template-ids:746239354 67698689 67698691 -726208670 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l148:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l148:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l148:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l148:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.25in;
-	mso-level-number-position:left;
-	margin-left:.25in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l148:level5
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l148:level6
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l148:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l148:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l148:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l149
-	{mso-list-id:1002977498;
-	mso-list-template-ids:2093908572;}
-@list l149:level1
-	{mso-level-start-at:4;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l149:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l149:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l149:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l149:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l149:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l149:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l149:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l149:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l150
-	{mso-list-id:1015116862;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-2026456452 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l150:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l150:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l150:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l150:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l150:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l150:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l150:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l150:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l150:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l151
-	{mso-list-id:1046417669;
-	mso-list-template-ids:-2132538154;}
-@list l151:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l151:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l151:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l151:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l151:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l151:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l151:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l151:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l151:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l152
-	{mso-list-id:1058284527;
-	mso-list-template-ids:-1554224222;}
-@list l152:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l152:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l152:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l152:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l152:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l152:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l152:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l152:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l152:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l153
-	{mso-list-id:1065110260;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-2132538154 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l153:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l153:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l153:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l153:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l153:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l153:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l153:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l153:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l153:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l154
-	{mso-list-id:1068377196;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-374978382 67698689 67698691 2134686924 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l154:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l154:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l154:level3
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l154:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l154:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l154:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l154:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l154:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l154:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l155
-	{mso-list-id:1068919628;
-	mso-list-template-ids:-1105954718;}
-@list l155:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l155:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:0in;
-	mso-level-number-position:left;
-	margin-left:0in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l155:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	margin-left:.5in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l155:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l155:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l155:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l155:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l155:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l155:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l156
-	{mso-list-id:1077437679;
-	mso-list-template-ids:117594864;}
-@list l156:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l156:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l156:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l156:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l156:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l156:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l156:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l156:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l156:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l157
-	{mso-list-id:1077947103;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1284186412 67698689 -1621047670 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l157:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l157:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l157:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l157:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l157:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l157:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l157:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l157:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l157:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l158
-	{mso-list-id:1108811336;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-344453386 67698689 67698691 -726208670 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l158:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l158:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l158:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l158:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l158:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l158:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l158:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l158:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l158:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l159
-	{mso-list-id:1123307386;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1764350448 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l159:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l159:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l159:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l159:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l159:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l159:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l159:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l159:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l159:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l160
-	{mso-list-id:1144473073;
-	mso-list-template-ids:-1068089666;}
-@list l160:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l160:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l161
-	{mso-list-id:1145395067;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1206773338 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l161:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l161:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l161:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l161:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l161:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l161:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l161:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l161:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l161:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l162
-	{mso-list-id:1175998012;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1464561338 2134686924 -1621047670 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l162:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l162:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l162:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l162:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l162:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l162:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l162:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l162:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l162:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l163
-	{mso-list-id:1184054324;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1820318882 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l163:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l163:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l163:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l163:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l163:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l163:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l163:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l163:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l163:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l164
-	{mso-list-id:1193348938;
-	mso-list-template-ids:1111500494;}
-@list l164:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l164:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l164:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l164:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l164:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l164:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l164:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l164:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l164:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l165
-	{mso-list-id:1200583724;
-	mso-list-template-ids:-143343678;}
-@list l165:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l165:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l165:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l165:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l165:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l165:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l165:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l165:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l165:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l166
-	{mso-list-id:1210535940;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-222517490 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l166:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l166:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l166:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l166:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l166:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l166:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l166:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l166:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l166:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l167
-	{mso-list-id:1241066030;
-	mso-list-template-ids:-1626204440;}
-@list l167:level1
-	{mso-level-start-at:4;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l167:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l168
-	{mso-list-id:1241788701;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-945670888 -994703330 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l168:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l168:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l168:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l168:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l168:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l168:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l168:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l168:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l168:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l169
-	{mso-list-id:1244992457;
-	mso-list-template-ids:1338136412;}
-@list l169:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l169:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l169:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l169:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l169:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l169:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l169:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l169:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l169:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l170
-	{mso-list-id:1257589773;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1732994866 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l170:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l170:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l170:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l170:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l170:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l170:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l170:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l170:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l170:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l171
-	{mso-list-id:1258632669;
-	mso-list-type:hybrid;
-	mso-list-template-ids:802347578 67698689 -1621047670 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l171:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l171:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l171:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l171:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l171:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l171:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l171:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l171:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l171:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l172
-	{mso-list-id:1260021866;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-10979304 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l172:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l172:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l172:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l172:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l172:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l172:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l172:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l172:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l172:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l173
-	{mso-list-id:1265384500;
-	mso-list-template-ids:-1231673580;}
-@list l173:level1
-	{mso-level-start-at:4;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l174
-	{mso-list-id:1275092867;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-363961638 2134686924 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l174:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l174:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l174:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l174:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l174:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l174:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l174:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l174:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l174:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l175
-	{mso-list-id:1294746658;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-134476648 67698689 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l175:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l175:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l175:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l175:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l175:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l175:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l175:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l175:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l175:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l176
-	{mso-list-id:1302231423;
-	mso-list-template-ids:1536854458;}
-@list l176:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l176:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l176:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l176:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l176:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l176:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l176:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l176:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l176:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l177
-	{mso-list-id:1304849147;
-	mso-list-template-ids:-262511414;}
-@list l177:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l177:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l177:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l177:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l177:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l177:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l177:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l177:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l177:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l178
-	{mso-list-id:1305547580;
-	mso-list-template-ids:-496484536;}
-@list l178:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l178:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l178:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l178:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l178:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l178:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l178:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l178:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l178:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l179
-	{mso-list-id:1308362720;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1283171648 -994703330 67698691 67698691 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l179:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l179:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l179:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l179:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l179:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l179:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l179:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l179:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l179:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l180
-	{mso-list-id:1314330255;
-	mso-list-template-ids:-1636923418;}
-@list l180:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l180:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l180:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l180:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l180:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l180:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l180:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l180:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l180:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l181
-	{mso-list-id:1325205786;
-	mso-list-template-ids:-1640869422;}
-@list l181:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l181:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l181:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l181:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l181:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l181:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l181:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l181:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l181:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l182
-	{mso-list-id:1344360775;
-	mso-list-template-ids:-1206773338;}
-@list l182:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l182:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l182:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l182:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l182:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l182:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l182:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l182:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l182:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l183
-	{mso-list-id:1350571130;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1799652766 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l183:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l183:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l183:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l183:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l183:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l183:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l183:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l183:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l183:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l184
-	{mso-list-id:1358895512;
-	mso-list-template-ids:721191082;}
-@list l184:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l184:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l184:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l184:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l184:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l184:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l184:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l184:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l184:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l185
-	{mso-list-id:1367213950;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1081979258 2134686924 67698691 -726208670 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l185:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l185:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l185:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l185:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.25in;
-	mso-level-number-position:left;
-	margin-left:.25in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l185:level5
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l185:level6
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l185:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l185:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l185:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l186
-	{mso-list-id:1379279986;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1180805032 67698689 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l186:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l186:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l186:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l186:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l186:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l186:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l186:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l186:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l186:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l187
-	{mso-list-id:1390691644;
-	mso-list-template-ids:-1920154278;}
-@list l187:level1
-	{mso-level-start-at:4;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l188
-	{mso-list-id:1407418049;
-	mso-list-template-ids:485139576;}
-@list l188:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l188:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l188:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l188:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l188:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l188:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l188:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l188:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l188:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l189
-	{mso-list-id:1408916972;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-666073592 2134686924 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l189:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l189:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l189:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l189:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l189:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l189:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l189:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l189:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l189:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l190
-	{mso-list-id:1417093946;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1617962866 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l190:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l190:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l190:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l190:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l190:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l190:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l190:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l190:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l190:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l191
-	{mso-list-id:1421297981;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-608948976 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l191:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l191:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l191:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l191:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l191:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l191:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l191:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l191:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l191:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l192
-	{mso-list-id:1424306011;
-	mso-list-template-ids:-947376482;}
-@list l192:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l192:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l192:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l192:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l192:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l192:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l192:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l192:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l192:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l193
-	{mso-list-id:1426851356;
-	mso-list-template-ids:517518028;}
-@list l193:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l194
-	{mso-list-id:1441997975;
-	mso-list-template-ids:-389105284;}
-@list l194:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l194:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l194:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l194:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l194:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l194:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l194:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l194:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l194:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l195
-	{mso-list-id:1443762634;
-	mso-list-template-ids:1508262482;}
-@list l195:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l195:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l196
-	{mso-list-id:1462259625;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1705469456 -994703330 67698691 -726208670 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l196:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l196:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l196:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l196:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l196:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l196:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l196:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l196:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l196:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l197
-	{mso-list-id:1462263881;
-	mso-list-template-ids:-1820318882;}
-@list l197:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l197:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l197:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l197:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l197:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l197:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l197:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l197:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l197:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l198
-	{mso-list-id:1464926798;
-	mso-list-type:hybrid;
-	mso-list-template-ids:342676216 67698689 -1621047670 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l198:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l198:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l198:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l198:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l198:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l198:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l198:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l198:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l198:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l199
-	{mso-list-id:1490057628;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1715004758 67698689 -1621047670 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l199:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l199:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l199:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l199:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l199:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l199:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l199:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l199:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l199:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l200
-	{mso-list-id:1492520990;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1633064638 -1753948466 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l200:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l200:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l200:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l200:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l200:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l200:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l200:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l200:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l200:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l201
-	{mso-list-id:1501119539;
-	mso-list-type:hybrid;
-	mso-list-template-ids:745071608 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l201:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l201:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l201:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l201:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l201:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l201:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l201:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l201:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l201:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l202
-	{mso-list-id:1503660025;
-	mso-list-template-ids:831657264;}
-@list l202:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l202:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l202:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l202:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l202:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l202:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l202:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l202:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l202:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l203
-	{mso-list-id:1509247621;
-	mso-list-type:hybrid;
-	mso-list-template-ids:577024210 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l203:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l203:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l203:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l203:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l203:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l203:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l203:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l203:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l203:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l204
-	{mso-list-id:1535540014;
-	mso-list-template-ids:1186108464;}
-@list l204:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l204:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l204:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l204:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l204:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l204:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l204:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l204:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l204:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l205
-	{mso-list-id:1539971212;
-	mso-list-template-ids:-1170932670;}
-@list l205:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l205:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l205:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l205:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l205:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l205:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l205:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l205:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l205:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l206
-	{mso-list-id:1541088191;
-	mso-list-type:hybrid;
-	mso-list-template-ids:639392900 67698689 2134686924 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l206:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l206:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l206:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l206:level4
-	{mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;}
-@list l206:level5
-	{mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;}
-@list l206:level6
-	{mso-level-tab-stop:2.75in;
-	mso-level-number-position:left;
-	margin-left:2.75in;
-	text-indent:-.25in;}
-@list l206:level7
-	{mso-level-tab-stop:3.25in;
-	mso-level-number-position:left;
-	margin-left:3.25in;
-	text-indent:-.25in;}
-@list l206:level8
-	{mso-level-tab-stop:3.75in;
-	mso-level-number-position:left;
-	margin-left:3.75in;
-	text-indent:-.25in;}
-@list l206:level9
-	{mso-level-tab-stop:4.25in;
-	mso-level-number-position:left;
-	margin-left:4.25in;
-	text-indent:-.25in;}
-@list l207
-	{mso-list-id:1542399923;
-	mso-list-template-ids:288030246;}
-@list l207:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l207:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l207:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l207:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l207:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l207:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l207:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l207:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l207:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l208
-	{mso-list-id:1543327831;
-	mso-list-template-ids:1254936634;}
-@list l208:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l208:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l208:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l208:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l208:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l208:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l208:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l208:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l208:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l209
-	{mso-list-id:1545484964;
-	mso-list-template-ids:-811070720;}
-@list l209:level1
-	{mso-level-start-at:4;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l209:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l209:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l209:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l209:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l209:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l209:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l209:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l209:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l210
-	{mso-list-id:1553886058;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1046885844 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l210:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l210:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l210:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l210:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l210:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l210:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l210:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l210:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l210:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l211
-	{mso-list-id:1555042487;
-	mso-list-template-ids:1194592708;}
-@list l211:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l211:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l211:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l211:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l211:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l211:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l211:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l211:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l211:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l212
-	{mso-list-id:1555584477;
-	mso-list-template-ids:-1726048622;}
-@list l212:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l213
-	{mso-list-id:1562867714;
-	mso-list-template-ids:1563457352;}
-@list l213:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l213:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l213:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l213:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l213:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l213:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l213:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l213:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l213:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l214
-	{mso-list-id:1565332034;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1346829694 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l214:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l214:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l214:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l214:level4
-	{mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;}
-@list l214:level5
-	{mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;}
-@list l214:level6
-	{mso-level-tab-stop:2.75in;
-	mso-level-number-position:left;
-	margin-left:2.75in;
-	text-indent:-.25in;}
-@list l214:level7
-	{mso-level-tab-stop:3.25in;
-	mso-level-number-position:left;
-	margin-left:3.25in;
-	text-indent:-.25in;}
-@list l214:level8
-	{mso-level-tab-stop:3.75in;
-	mso-level-number-position:left;
-	margin-left:3.75in;
-	text-indent:-.25in;}
-@list l214:level9
-	{mso-level-tab-stop:4.25in;
-	mso-level-number-position:left;
-	margin-left:4.25in;
-	text-indent:-.25in;}
-@list l215
-	{mso-list-id:1565338330;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1227649256 67698691 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l215:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l215:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l215:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l215:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l215:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l215:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l215:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l215:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l215:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l216
-	{mso-list-id:1590432885;
-	mso-list-type:hybrid;
-	mso-list-template-ids:657504852 -994703330 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l216:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l216:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l216:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l216:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l216:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l216:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l216:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l216:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l216:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l217
-	{mso-list-id:1592350276;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1267598836 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l217:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l217:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l217:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l217:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l217:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l217:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l217:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l217:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l217:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l218
-	{mso-list-id:1604219207;
-	mso-list-type:hybrid;
-	mso-list-template-ids:362727156 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l218:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l218:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l218:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l218:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l218:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l218:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l218:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l218:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l218:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l219
-	{mso-list-id:1608542792;
-	mso-list-template-ids:362727156;}
-@list l219:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l219:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l219:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l219:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l219:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l219:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l219:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l219:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l219:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l220
-	{mso-list-id:1618876345;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-2085968786 2134686924 -1621047670 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l220:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l220:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l220:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l220:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l220:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l220:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l220:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l220:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l220:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l221
-	{mso-list-id:1620720892;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1327047330 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l221:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l221:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l221:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	margin-left:.5in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l221:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l221:level5
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l221:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l221:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l221:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l221:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l222
-	{mso-list-id:1628702931;
-	mso-list-template-ids:-1679260098;}
-@list l222:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l222:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l222:level3
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l222:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l222:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l222:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l222:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l222:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l222:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l223
-	{mso-list-id:1637372724;
-	mso-list-template-ids:-1147505934;}
-@list l223:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l223:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l223:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l223:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l223:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l223:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l223:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l223:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l223:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l224
-	{mso-list-id:1646004349;
-	mso-list-template-ids:-1147505934;}
-@list l224:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l224:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l224:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l224:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l224:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l224:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l224:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l224:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l224:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l225
-	{mso-list-id:1657144451;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1717267524 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l225:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l225:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l225:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l225:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l225:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l225:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l225:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l225:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l225:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l226
-	{mso-list-id:1658650966;
-	mso-list-template-ids:1186108464;}
-@list l226:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l226:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l226:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l226:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l226:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l226:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l226:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l226:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l226:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l227
-	{mso-list-id:1662076852;
-	mso-list-template-ids:-547050114;}
-@list l227:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l227:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l227:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l227:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l227:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l227:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l227:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l227:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l227:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l228
-	{mso-list-id:1666742142;
-	mso-list-template-ids:-52683596;}
-@list l228:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l228:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l229
-	{mso-list-id:1687369378;
-	mso-list-template-ids:624744478;}
-@list l229:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l229:level2
-	{mso-level-start-at:2;
-	mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l229:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l229:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l229:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l229:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l229:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l229:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l229:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l230
-	{mso-list-id:1699965015;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1316545594 -726208670 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l230:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l230:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l230:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l230:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l230:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l230:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l230:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l230:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l230:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l231
-	{mso-list-id:1702167086;
-	mso-list-type:hybrid;
-	mso-list-template-ids:2090125506 67698689 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l231:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l231:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l231:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l231:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l231:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l231:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l231:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l231:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l231:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l232
-	{mso-list-id:1708525860;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1630082646 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l232:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l232:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l232:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l232:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l232:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l232:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l232:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l232:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l232:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l233
-	{mso-list-id:1723865304;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1193760370 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l233:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l233:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l233:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l233:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l233:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l233:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l233:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l233:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l233:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l234
-	{mso-list-id:1726634390;
-	mso-list-template-ids:669926504;}
-@list l234:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l234:level2
-	{mso-level-start-at:3;
-	mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l235
-	{mso-list-id:1733849178;
-	mso-list-type:hybrid;
-	mso-list-template-ids:485139576 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l235:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l235:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l235:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l235:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l235:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l235:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l235:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l235:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l235:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l236
-	{mso-list-id:1736735016;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1416076406 67698689 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l236:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l236:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l236:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l236:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l236:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l236:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l236:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l236:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l236:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l237
-	{mso-list-id:1743260199;
-	mso-list-template-ids:-1820318882;}
-@list l237:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l237:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l237:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l237:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l237:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l237:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l237:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l237:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l237:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l238
-	{mso-list-id:1757552992;
-	mso-list-type:hybrid;
-	mso-list-template-ids:999470556 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l238:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l238:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l238:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	margin-left:.5in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l238:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l238:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l238:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l238:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l238:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l238:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l239
-	{mso-list-id:1757629292;
-	mso-list-template-ids:639007036;}
-@list l239:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l239:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:-.75in;
-	mso-level-number-position:left;
-	margin-left:-.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l239:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:-.25in;
-	mso-level-number-position:left;
-	margin-left:-.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l239:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.25in;
-	mso-level-number-position:left;
-	margin-left:.25in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l239:level5
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l239:level6
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l239:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l239:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l239:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l240
-	{mso-list-id:1757939814;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-913294832 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l240:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l240:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l240:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l240:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l240:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l240:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l240:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l240:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l240:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l241
-	{mso-list-id:1765687432;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-584530606 67698689 67698691 -726208670 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l241:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l241:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l241:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l241:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l241:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l241:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l241:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l241:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l241:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l242
-	{mso-list-id:1783303340;
-	mso-list-template-ids:1536854458;}
-@list l242:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l242:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l242:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l242:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l242:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l242:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l242:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l242:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l242:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l243
-	{mso-list-id:1787960997;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-752336630 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l243:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l243:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l243:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l243:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l243:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l243:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l243:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l243:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l243:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l244
-	{mso-list-id:1795322339;
-	mso-list-template-ids:-820578286;}
-@list l244:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l244:level2
-	{mso-level-start-at:2;
-	mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l244:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l244:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l244:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l244:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l244:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l244:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l244:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l245
-	{mso-list-id:1800567826;
-	mso-list-template-ids:569172216;}
-@list l245:level1
-	{mso-level-start-at:2;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l245:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l245:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l245:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l245:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l245:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l245:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l245:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l245:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l246
-	{mso-list-id:1806242831;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1931413064 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l246:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l246:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l246:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l246:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l246:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l246:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l246:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l246:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l246:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l247
-	{mso-list-id:1827935513;
-	mso-list-template-ids:624837888;}
-@list l247:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l248
-	{mso-list-id:1845509465;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-2117966248 67698689 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l248:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l248:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l248:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l248:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l248:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l248:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l248:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l248:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l248:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l249
-	{mso-list-id:1846894170;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-491083506 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l249:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l249:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l249:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l249:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l249:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l249:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l249:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l249:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l249:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l250
-	{mso-list-id:1849979917;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1342926430 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l250:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l250:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.75in;
-	mso-level-number-position:left;
-	margin-left:1.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l250:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l250:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l250:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l250:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l250:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l250:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l250:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l251
-	{mso-list-id:1855024686;
-	mso-list-template-ids:382371220;}
-@list l251:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l251:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l251:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l251:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l251:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l251:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l251:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l251:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l251:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l252
-	{mso-list-id:1933586812;
-	mso-list-type:hybrid;
-	mso-list-template-ids:721191082 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l252:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l252:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l252:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l252:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l252:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l252:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l252:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l252:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l252:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l253
-	{mso-list-id:1954940671;
-	mso-list-template-ids:-1464561338;}
-@list l253:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l253:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l253:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l253:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l253:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l253:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l253:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l253:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l253:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l254
-	{mso-list-id:1961761414;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1881588142 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l254:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l254:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l254:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l254:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l254:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l254:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l254:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l254:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l254:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l255
-	{mso-list-id:1980066461;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1170932670 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l255:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l255:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l255:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l255:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l255:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l255:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l255:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l255:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l255:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l256
-	{mso-list-id:1992634267;
-	mso-list-type:hybrid;
-	mso-list-template-ids:432185780 67698691 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l256:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l256:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l256:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l256:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l256:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l256:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l256:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l256:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l256:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l257
-	{mso-list-id:1994751898;
-	mso-list-type:hybrid;
-	mso-list-template-ids:980975050 67698689 -1621047670 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l257:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l257:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l257:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l257:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l257:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l257:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l257:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l257:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l257:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l258
-	{mso-list-id:1994793592;
-	mso-list-type:hybrid;
-	mso-list-template-ids:302816816 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l258:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l258:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l258:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l258:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l258:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l258:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l258:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l258:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l258:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l259
-	{mso-list-id:1995179714;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1186108464 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l259:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l259:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l259:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l259:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l259:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l259:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l259:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l259:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l259:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l260
-	{mso-list-id:1997301944;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1953381784 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l260:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l260:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l260:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l260:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l260:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l260:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l260:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l260:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l260:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l261
-	{mso-list-id:2003577962;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1449444262 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l261:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l261:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l261:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l261:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l261:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l261:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l261:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l261:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l261:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l262
-	{mso-list-id:2019773860;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-821646080 2134686924 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l262:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l262:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l262:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l262:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l262:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l262:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l262:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l262:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l262:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l263
-	{mso-list-id:2022974301;
-	mso-list-template-ids:-1296271944;}
-@list l263:level2
-	{mso-level-start-at:2;
-	mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l264
-	{mso-list-id:2028210883;
-	mso-list-template-ids:-781706566;}
-@list l264:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l264:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l264:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.25in;
-	mso-level-number-position:left;
-	margin-left:2.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l264:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l264:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l264:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l264:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l264:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l264:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l265
-	{mso-list-id:2031757097;
-	mso-list-type:hybrid;
-	mso-list-template-ids:117491490 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l265:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l265:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l265:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l265:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l265:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l265:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l265:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l265:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l265:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l266
-	{mso-list-id:2041200942;
-	mso-list-type:hybrid;
-	mso-list-template-ids:639007036 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l266:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l266:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:-.75in;
-	mso-level-number-position:left;
-	margin-left:-.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l266:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:-.25in;
-	mso-level-number-position:left;
-	margin-left:-.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l266:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.25in;
-	mso-level-number-position:left;
-	margin-left:.25in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l266:level5
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l266:level6
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l266:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l266:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l266:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l267
-	{mso-list-id:2055614715;
-	mso-list-template-ids:-2085968786;}
-@list l267:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l267:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l267:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l267:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l267:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l267:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l267:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l267:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l267:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l268
-	{mso-list-id:2058311635;
-	mso-list-template-ids:-547050114;}
-@list l268:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l268:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l268:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l268:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l268:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l268:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l268:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l268:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l268:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l269
-	{mso-list-id:2072996250;
-	mso-list-template-ids:438728002;}
-@list l270
-	{mso-list-id:2073431378;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-2138780088 -726208670 -726208670 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l270:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l270:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:\25AA;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	margin-left:2.0in;
-	text-indent:-.25in;
-	font-family:"Courier New";
-	mso-bidi-font-family:"Times New Roman";}
-@list l270:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l270:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l270:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l270:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l270:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l270:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l270:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l271
-	{mso-list-id:2074303821;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1180717114 2134686924 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l271:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l271:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l271:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l271:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l271:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l271:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l271:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l271:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l271:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l272
-	{mso-list-id:2074892594;
-	mso-list-template-ids:-1147505934;}
-@list l272:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l272:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l272:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l272:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l272:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l272:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l272:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l272:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l272:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l273
-	{mso-list-id:2097170805;
-	mso-list-template-ids:-957163172;}
-@list l273:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l273:level2
-	{mso-level-start-at:2;
-	mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l274
-	{mso-list-id:2099907918;
-	mso-list-template-ids:-821646080;}
-@list l274:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l274:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l274:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l274:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l274:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l274:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l274:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l274:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l274:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l275
-	{mso-list-id:2101632142;
-	mso-list-template-ids:-3801034;}
-@list l275:level1
-	{mso-level-start-at:3;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l276
-	{mso-list-id:2116054651;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1870416970 67698691 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l276:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l276:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.25in;
-	mso-level-number-position:left;
-	margin-left:1.25in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l276:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l276:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l276:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l276:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l276:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l276:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l276:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l277
-	{mso-list-id:2136095564;
-	mso-list-type:hybrid;
-	mso-list-template-ids:613334076 67698689 808464390 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l277:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.75in;
-	mso-level-number-position:left;
-	margin-left:.75in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l277:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0D8;
-	mso-level-tab-stop:73.5pt;
-	mso-level-number-position:left;
-	margin-left:73.5pt;
-	text-indent:-19.5pt;
-	font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";
-	mso-ansi-font-weight:normal;}
-@list l277:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l277:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l277:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l277:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l277:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l277:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l277:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l278
-	{mso-list-id:2144809783;
-	mso-list-template-ids:-1464561338;}
-@list l278:level1
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\25CF;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Arial;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Times New Roman";}
-@list l278:level2
-	{mso-level-start-at:0;
-	mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:Symbol;
-	mso-fareast-font-family:"Times New Roman";
-	mso-bidi-font-family:"Courier New";}
-@list l278:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l278:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l278:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l278:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l278:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l278:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l278:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="7170"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=purple style='tab-interval:.5in'>
-
-<div class=Section1>
-
-<p class=MsoNormal align=right style='text-align:right'><span style='font-size:
-10.0pt'>Copyright © 2006 International Business Machines Corp.</span></p>
-
-<table class=MsoNormalTable border=0 cellspacing=5 cellpadding=0 width="100%"
- style='width:100.0%;mso-cellspacing:3.7pt;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td width="70%" style='width:70.36%;padding:1.5pt 1.5pt 1.5pt 1.5pt'>
-  <p class=MsoNormal><b><span style='font-size:24.0pt;font-family:Verdana'>UML2
-  </span></b><span style='font-size:10.0pt;font-family:Arial'><br>
-  </span><span style='font-size:7.5pt;font-family:Arial;color:#8080FF'>UML2 2.0
-  Migration Guide</span></p>
-  </td>
-  <td valign=top style='padding:1.5pt 1.5pt 1.5pt 1.5pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'>&nbsp;</span></p>
-  </td>
-  <td width="27%" style='width:27.36%;padding:1.5pt 1.5pt 1.5pt 1.5pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><img
-  width=121 height=86 id="_x0000_i1025" src="../../../../images/Idea.jpg"></span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h1>UML2 1.x Migration to UML2 2.0</h1>
-
-<p class=MsoNormal>Last revised <st1:time Minute="56" Hour="16">16:56 EDT</st1:time>
-<st1:date Year="2006" Day="3" Month="8">August 3, 2006</st1:date> (<!--[if gte vml 1]><v:shapetype
- id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t"
- path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
- <v:stroke joinstyle="miter"/>
- <v:formulas>
-  <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-  <v:f eqn="sum @0 1 0"/>
-  <v:f eqn="sum 0 0 @1"/>
-  <v:f eqn="prod @2 1 2"/>
-  <v:f eqn="prod @3 21600 pixelWidth"/>
-  <v:f eqn="prod @3 21600 pixelHeight"/>
-  <v:f eqn="sum @0 0 1"/>
-  <v:f eqn="prod @6 1 2"/>
-  <v:f eqn="prod @7 21600 pixelWidth"/>
-  <v:f eqn="sum @8 21600 0"/>
-  <v:f eqn="prod @7 21600 pixelHeight"/>
-  <v:f eqn="sum @10 21600 0"/>
- </v:formulas>
- <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" aspectratio="t"/>
-</v:shapetype><v:shape id="_x0000_i1026" type="#_x0000_t75" alt="" style='width:9.75pt;
- height:9.75pt'>
- <v:imagedata src="" o:href="http://www.eclipse.org/modeling/mdt/images/new.gif"/>
-</v:shape><![endif]--><span style='mso-spacerun:yes'>  </span>marks interesting
-changes over the previous revision)</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h2>Summary</h2>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>The implementation of the latest version of UML (UML2 2.0)
-provides several enhancements over its predecessor (UML2 1.x) including
-clarification of key concepts, introduction of important optimizations and
-newly introduced custom operations.&nbsp;&nbsp; This guide will summarize those
-enhancements so that users will be able to quickly and effectively succeed in
-the migration process.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>One caveat that should be mentioned up front is that this
-document is designed to help the reader get a sense of what has changed but by
-no means is intended to provide the kind of comprehensive coverage that a
-thorough reading of the updated Superstructure Specification will provide.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoDate><st1:date Year="2006" Day="3" Month="8">August 3, 2006</st1:date></p>
-
-<p class=MsoBodyText>James Bruck and Kenn Hussey, IBM </p>
-
-<div class=MsoNormal align=center style='text-align:center'><span
-style='font-size:10.0pt;font-family:Arial'>
-
-<hr size=2 width="100%" align=center>
-
-</span></div>
-
-<span style='font-size:14.0pt;font-family:Arial;mso-fareast-font-family:"Times New Roman";
-mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA'><br
-clear=all style='page-break-before:always'>
-</span>
-
-<h2>Goals</h2>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>There are two main goals of this document:</p>
-
-<p class=MsoList2>1.<span style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span>To provide guidance in the migration process from UML2 1.x API (based on
-an interim draft of the UML 2.0 specification) to the UML2 2.0 API (based on
-the UML 2.1 specification). </p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet3 style='mso-list:l67 level1 lfo6;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Summary of newly refined concepts
-will be covered in the section “<a
-href="#_Superstructure_Specification_change_1">Superstructure Specification
-Changes</a>”</span></p>
-
-<p class=MsoListBullet3 style='mso-list:l143 level1 lfo8;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Migration tips will be covered in
-the section entitled “<a href="#_API_Migration">API Migration</a>”.</span></p>
-
-<p class=MsoListBullet3 style='mso-list:l111 level1 lfo10;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Data migration of existing models
-and profiles will be covered in the section entitled “<a href="#_Migration">Model
-Artifact Migration</a>”</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoList2>2.<span style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span>It is also the goal of this document to summarize the features of the
-UML2 implementation so that developers may take advantage of the newly
-introduced optimizations and features.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet3 style='mso-list:l62 level1 lfo12;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>A summary of these features will
-be covered in section entitled “<a href="#_Features_of_UML2">Features of UML2
-2.0</a>”.</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h2>Glossary</h2>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>A few terms and abbreviations will be used throughout this
-document.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=127 valign=top style='width:95.4pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><i><span style='color:black'>Term</span></i></b></p>
-  </td>
-  <td width=559 valign=top style='width:419.4pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><i><span style='color:black'>Definition</span></i></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=127 valign=top style='width:95.4pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>UML2 1.x</p>
-  </td>
-  <td width=559 valign=top style='width:419.4pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>This refers to the versions of the UML API which were
-  based on an interim draft of the UML 2.0 specification defined by OMG.</p>
-  <p class=MsoNormal>&nbsp;</p>
-  <p class=MsoNormal>The UML 2.0 Superstructure Specification can be found at:</p>
-  <p class=MsoNormal><a
-  href="http://www.omg.org/technology/documents/formal/uml.htm">http://www.omg.org/technology/documents/formal/uml.htm</a></p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=127 valign=top style='width:95.4pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>UML2 2.0</p>
-  </td>
-  <td width=559 valign=top style='width:419.4pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>This refers to the latest version of the UML API which is
-  based on the UML2.1 specification defined by OMG.</p>
-  <p class=MsoNormal>&nbsp;</p>
-  <p class=MsoNormal>The latest draft of the UML 2.1 Superstructure
-  Specification can be found at:</p>
-  <p class=MsoNormal><a href="http://www.omg.org/docs/ptc/06-04-02.pdf">http://www.omg.org/docs/ptc/06-04-02.pdf</a></p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=127 valign=top style='width:95.4pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>Eclipse 3.2</p>
-  </td>
-  <td width=559 valign=top style='width:419.4pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>UML2 2.0 depends on Eclipse 3.2.</p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4'>
-  <td width=127 valign=top style='width:95.4pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>EMF 2.2</p>
-  </td>
-  <td width=559 valign=top style='width:419.4pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>UML2 2.0 depends on EMF 2.2.</p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:5'>
-  <td width=127 valign=top style='width:95.4pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>OMG</p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
-  <td width=559 valign=top style='width:419.4pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>Object Management Group.&nbsp; A consortium that promotes
-  the adoption of standards.</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:6'>
-  <td width=127 valign=top style='width:95.4pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>RTF</p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
-  <td width=559 valign=top style='width:419.4pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>Revision Task Force.&nbsp; A process which the OMG uses to
-  revise a specification.</p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:7;mso-yfti-lastrow:yes'>
-  <td width=127 valign=top style='width:95.4pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>FTF</p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
-  <td width=559 valign=top style='width:419.4pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>Finalization Task Force.&nbsp; A process which the OMG
-  uses to finalize a specification.</p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h2>Getting Started</h2>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>Depending on your requirements, you will presumably be
-interested in one or more of the following aspects of migration:&nbsp; API migration,
-artifact migration, or discovering what has changed in UML.&nbsp; </p>
-
-<p class=MsoBodyText>This document is structured to help you accomplish your
-task as quickly as possible.&nbsp; To that end, you may use the table below to
-quickly navigate to the section you are interested in. </p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width=648
- style='width:6.75in;margin-left:5.4pt;border-collapse:collapse;mso-padding-alt:
- 0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=432 valign=top style='width:4.5in;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><i><span style='color:black'>Task</span></i></b></p>
-  </td>
-  <td width=216 valign=top style='width:2.25in;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><i><span style='color:black'>Section</span></i></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=432 valign=top style='width:4.5in;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>Understanding changes to the Superstructure<b>
-  specification</b>.</p>
-  </td>
-  <td width=216 valign=top style='width:2.25in;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><a href="#_Changes_to_the_superstructure_speci">Superstructure
-  Specification Changes</a></p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=432 valign=top style='width:4.5in;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>Understanding new <b>features</b> of UML2 2.0.</p>
-  </td>
-  <td width=216 valign=top style='width:2.25in;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><a href="#_Features_of_UML2_2.0">Features of UML2 2.0</a></p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=432 valign=top style='width:4.5in;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>Migration of existing <b>models</b> to the new format.</p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
-  <td width=216 valign=top style='width:2.25in;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><a href="#_Model_Artifact_Migration">Model Artifact
-  Migration</a></p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4'>
-  <td width=432 valign=top style='width:4.5in;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>Migration of existing <b>profiles</b> to the new format.</p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
-  <td width=216 valign=top style='width:2.25in;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><a href="#_Profile_Artifact_Migration">Profile Artifact
-  Migration</a></p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:5;mso-yfti-lastrow:yes'>
-  <td width=432 valign=top style='width:4.5in;border-top:none;border-left:solid black 1.0pt;
-  border-bottom:solid black 1.5pt;border-right:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>Migration of <b>code</b> that uses the UML2 1.x <span
-  class=GramE>API .</span></p>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
-  <td width=216 valign=top style='width:2.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><a href="#_API_Migration">API Migration</a></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>Although it has been mentioned in other documents such as
-the <a
-href="http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html">UML2
-2.0 Project Plan</a>, several key points should be re-iterated before
-continuing:</p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l249 level1 lfo14;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>The older UML2 1.x version will <b>not</b>
-be shipped together with the newer UML2 2.0 version.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l7 level1 lfo16;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>UML2 2.0 will <b>not</b> be
-upwards contract-compatible with UML2 1.x.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l56 level1 lfo18;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>UML2 2.0 will <b>not</b> be
-upwards binary-compatible with UML2 1.x.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l198 level1 lfo20;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>The newer UML2 2.0 defines a
-namespace called <b>org.eclipse.uml2.uml</b> that is different from the older <b>org.eclipse.uml2</b>
-namespace.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l79 level1 lfo22;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Models created with the newer UML2
-2.0 will have <span class=GramE>a</span> <b>.uml</b> extension versus the older
-<b>.uml2</b> extension.</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>If there are concepts that are not fully described by this
-document, you may find the following useful:</p>
-
-<p class=MsoList2>1.<span style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span>Refer to the official <a href="http://www.omg.org/docs/ptc/06-04-02.pdf">UML
-2.1 Superstructure Specification</a> for complete descriptions.</p>
-
-<p class=MsoList2>2.<span style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span>Refer to the change ballots on omg.org for specific issues (described
-below).</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h2><a name="_Superstructure_Specification_change_1"></a><a
-name="_Changes_to_the_superstructure_speci"></a><a
-name="_Superstructure_Specification_change"></a>Superstructure Specification
-Changes</h2>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>Before grappling with the task of understanding the myriad
-of changes to UML, letÂ’s first review the process by which the Superstructure
-specification has evolved to its current form.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<img border=0 width=671 height=337 id="_x0000_i1028"
-src="guide_files/image002.jpg"></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>The above image illustrates several key points: </p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l33 level1 lfo240;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Notice that the UML2 1.x is based
-on an interim draft of the UML 2.0 version of the specification.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l157 level1 lfo242;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Also, notice that the UML2 2.0 API
-has been formulated based on change ballots coming out of the FTF and RTF
-processes that OMG has defined. </span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l4 level1 lfo244;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Also, UML2 2.0 API has been
-written according to the 060402 convenience document which will be identical to
-the formal UML 2.1 specification which at the time of this writing has not yet
-been produced.</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>The primary means by which the summary of changes
-discussed in this document has been obtained is from summarizing these FTF and
-RTF ballots.</p>
-
-<span style='font-size:13.0pt;font-family:Arial;mso-fareast-font-family:"Times New Roman";
-mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA'><br
-clear=all style='page-break-before:always'>
-</span>
-
-<h3 style='margin-left:0in;text-indent:0in'>Key Changes</h3>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>Several key changes can be distilled out of the updated
-Superstructure specification.</p>
-
-<h4 style='margin-left:0in;text-indent:0in'><a name="_Events"></a>Events</h4>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>LetÂ’s first review the differences between Trigger, Event
-and Message:</p>
-
-<p class=MsoListBullet style='margin-left:1.0in;mso-list:l199 level1 lfo246;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>A</span>
-trigger </span><span style='font-weight:normal'>is the association between an
-event and specification of an effect or behavior.&nbsp; The trigger can include
-conditions on the recognition of the event, such as the port that a message was
-received on.</span></p>
-
-<p class=MsoListBullet style='margin-left:1.0in;mso-list:l257 level1 lfo248;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>An</span>
-event </span><span style='font-weight:normal'>is the recognition of something
-that happens at a point in time.&nbsp;&nbsp; In particular, the receipt of a
-message by an object or the handling of a previously received message by an
-object is one kind of event.&nbsp; Recognition of state changes does not
-involve messages.&nbsp; There are other kinds of events such as time events and
-the receipt of calls.</span></p>
-
-<p class=MsoListBullet style='margin-left:1.0in;mso-list:l171 level1 lfo250;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>A</span>
-message </span><span style='font-weight:normal'>itself is not an event, as it
-spans an interval of time; its receipt or its sending can be an event. </span></p>
-
-<p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-style='font-size:10.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-style='font-size:10.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<p class=MsoBodyText><span style='color:black'>So what has changed?&nbsp; </span></p>
-
-<p class=MsoBodyText>In the latest version of the specification, the concept of
-Event has been separated from the concept of Trigger.&nbsp; The Trigger
-metatype is now a concrete class whereas in the past, this was an abstract
-class.&nbsp;&nbsp; The various concrete triggers such as CallTrigger, have been
-removed and replaced by a corresponding Event type (i.e. CallEvent).</p>
-
-<p class=MsoBodyText>For a given model to be considered valid, all triggers
-must refer to some event. A trigger must refer to an event since triggers
-relate events to behaviors.&nbsp; </p>
-
-<p class=MsoBodyText>Triggers can be owned either by transitions or by
-behaviored classifiers (as an example). &nbsp;</p>
-
-<p class=MsoBodyText>Existing code presumably has transitions owning one of the
-various trigger types such as CallTrigger.&nbsp; Such code should be changed
-such that the transition will refer to the concrete trigger type and the
-trigger will refer to an event created somewhere at the package level (events
-are packageable elements and are owned by some package).</p>
-
-<p class=MsoBodyText>In order to create an event for a particular transition,
-one could:</p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l128 level1 lfo252;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Find the nearest package using the
-</span><span style='font-family:"Courier New"'>Element#<span class=GramE>getNearestPackage(</span>)</span>
-function.</p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l9 level1 lfo254;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Call </span><span
-style='font-family:"Courier New"'>Package#<span class=GramE>createPackagedElement(</span>EClass)</span>.&nbsp;
-You would pass the event type as a parameter.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-left:0in;text-indent:0in'>Interactions</h4>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>LetÂ’s review some basic interaction concepts as defined by
-the current specification:</p>
-
-<p class=MsoBodyText>In general, in UML: an event occurrence refers to an
-instantaneous change of state in the system being modeled.&nbsp; An occurrence<b>
-</b>specification is a model element that represents a particular event
-occurrence.&nbsp; An event is a model element that specifies a set of possible
-event<b> </b>occurrences all of the same kind.</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l214 level1 lfo256;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Event</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l125 level1 lfo36;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>State changes of a system are the result of the occurrence of some<b> event.</b>
-</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l215 level1 lfo38;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR><b>Creation events</b> occur when the system creates some object.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l276 level1 lfo40;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR><b>Destruction events</b> occur when the system destroys an object.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l10 level1 lfo42;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR><b>Execution events</b> occur at the start of an Action or Behavior
-which is referenced by the object of the lifeline.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l256 level1 lfo44;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR><b>Message events</b> occur as a result of the sending or the receiving
-of <b>messages</b> from one object to another.&nbsp; </span></p>
-
-<p class=MsoListBullet3 style='margin-left:1.25in;mso-list:l122 level1 lfo46;
-tab-stops:list 1.25in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>&#9642;<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>The message event instance can reference either an operation that was
-called or a signal that is sent.</span></p>
-
-<p class=MsoListBullet4 style='margin-left:1.25in;mso-list:l270 level1 lfo48;
-tab-stops:list 1.25in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>&#9642;<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>It is the intent of the specification that <b>message events</b> are
-only referenced by <b>message occurrence <span class=GramE>specifications<span
-style='font-weight:normal'>,</span></span></b> however, as of this writing
-there is no explicit restriction in the API or in the specification stating
-this.</span></p>
-
-<p class=MsoNormal style='margin-left:21.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l106 level1 lfo258;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>OccurrenceSpecification</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l200 level2 lfo52;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Occurrence specifications model the occurrence of an event.</span></p>
-
-<p class=MsoListBullet4 style='margin-left:1.25in;mso-list:l230 level1 lfo54;
-tab-stops:list 1.25in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>&#9642;<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Occurrence specifications represents points on a lifeline that deliver
-the anchors for Messages and execution specifications</span></p>
-
-<p class=MsoListBullet4 style='margin-left:1.25in;mso-list:l80 level1 lfo56;
-tab-stops:list 1.25in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>&#9642;<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Occurrence specifications must refer to an <b>event</b> that identifies
-the kind of event that occurred.</span></p>
-
-<p class=MsoNormal style='margin-left:3.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l90 level1 lfo260;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>ExecutionOccurrenceSpecification</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l200 level2 lfo52;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Reference <b>execution events</b>.&nbsp;&nbsp; </span></p>
-
-<p class=MsoNormal style='margin-left:3.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l53 level1 lfo262;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>ExecutionSpecification (abstract)</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l200 level2 lfo52;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>The concrete types are BehaviorExecutionSpecification and
-ActionExecutionSpecification.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l200 level2 lfo52;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>An execution specification does not model an event.&nbsp; Instead, it
-models the act of some object executing some portion of its behavior
-specification (e.g., executing an action or behavior).</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l200 level2 lfo52;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>An execution specification defines <b>start</b> and <b>finish</b>
-points on the lifeline, which define its active period, and reference the
-corresponding action or behavior that is executing. A <b>start</b> and <b>finish</b>
-must be specified.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l200 level2 lfo52;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Messages do not necessarily have to “hook up” execution specifications
-- the execution specification may show “spontaneous” execution (e.g.
-representing queuing delays).</span></p>
-
-<p class=MsoNormal style='margin-left:3.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l42 level1 lfo264;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Message</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l200 level2 lfo52;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>A message is the result of the execution of a communication action (a
-call or asynchronous signal send).&nbsp; The message carries the information
-about the call and is sent from the invoking object and received by the invoked
-object.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l200 level2 lfo52;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Objects can communicate via messages.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l200 level2 lfo52;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Messages have <b>arguments</b> if the called <b>operation</b> has
-parameters, or <b>attributes</b> if the message sends a <b>signal</b>.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l200 level2 lfo52;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Messages lead from the sending message end to the receiving one.&nbsp;
-The message end could be an <b>occurrence specification</b> or a <b>gate</b>.</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>So what has changed?&nbsp; Interactions have changed in
-several important ways.</p>
-
-<p class=MsoBodyText><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l250 level1 lfo266;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>OccurrenceSpecification </span><span
-style='font-weight:normal'>is a newly introduced type that replaces</span>
-EventOccurrence.</p>
-
-<p class=MsoListBullet2>The new specification introduces two new types of
-OccurrenceSpecification: <b>event occurrence specifications</b> and <b>message
-occurrence specifications</b>.&nbsp; </p>
-
-<p class=MsoListBullet3 style='mso-list:l216 level2 lfo66;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>In order to migrate older event
-occurrences you can follow this rule of thumb:</span></p>
-
-<p class=MsoListBullet3 style='margin-left:1.5in;mso-list:l196 level3 lfo68;
-tab-stops:list 1.5in 2.25in'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>If there is a message that is
-coming into or going out of the event occurrence, then it can be replaced with
-message occurrence specification.</span></p>
-
-<p class=MsoListBullet4 style='mso-list:l196 level3 lfo68;tab-stops:list 1.5in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>If there is a spontaneous stop,
-then you can replace with an occurrence specification and refer to a
-destruction event.</span></p>
-
-<p class=MsoListBullet4 style='margin-left:1.0in;mso-list:l216 level2 lfo66;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>If the event occurrence starts or finishes an independent execution
-occurrence then it maps to and execution occurrence specification.</span></p>
-
-<p class=MsoListBullet3 style='mso-list:l216 level2 lfo66;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Occurrence specifications <b>must</b>
-reference an event.</span></p>
-
-<p class=MsoListBullet3 style='mso-list:l216 level2 lfo66;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><b>Events</b> could be referenced
-by <b>multiple</b> occurrence specifications or triggers.&nbsp; Since an event
-is owned by a package, this is a convenient way to tie together both statechart
-concepts and sequence concepts.</span></p>
-
-<p class=MsoListBullet3 style='mso-list:l216 level2 lfo66;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><b>Differing messages </b>that
-refer to the same operation <b>should</b> have ends that refer to the same <b>send</b>
-and <b>receive</b> event.&nbsp;&nbsp;&nbsp; It is the occurrence of the event
-that causes the operation to be executed.&nbsp; This is an <b>important</b>
-point when creating consistent models that could either be represented by state
-machine diagrams and sequence diagrams.&nbsp; </span></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l206 level1 lfo268;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>The Stop </span><span
-style='font-weight:normal'>metaclass has been removed from the latest version</span>.</p>
-
-<p class=MsoListBullet3 style='mso-list:l216 level2 lfo66;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Stop used to be a specialization
-of EventOccurrence.&nbsp;&nbsp; Now, stops should be replaced by creating
-either an occurrence specification or a message occurrence specification that
-references a <b>destruction event</b>.</span></p>
-
-<p class=MsoNormal style='margin-left:-87.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l52 level1 lfo270;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>ExecutionOccurrence (older)</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l39 level2 lfo74;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Mapped to either an <b>action exection specification</b> that
-references an action, or a <b>behavior exection specification</b> that refers
-to a behavior (more general).</span></p>
-
-<p class=MsoNormal style='margin-left:-105.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l258 level1 lfo272;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>EventOccurrence (older)</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l40 level2 lfo76;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>In the past, messages could go between a send event <span class=GramE>occurrence</span>
-and receive event occurrence. Now, instead of the event occurrence we must use
-a message occurrence specification.</span></p>
-
-<p class=MsoNormal style='margin-left:-105.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l150 level1 lfo274;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Message</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l265 level2 lfo78;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>A message signature is now derived from the operation or signal that is
-referenced from the event associated with the message occurrence specification,
-at the end of the message. (a message occurrence specification is a message
-end)&nbsp; One could have call events, receive operation events, receive signal
-events and corresponding “send” versions being created at the package level and
-referenced by the message occurrence specification.&nbsp; Those events can
-refer to operations or signals from which the signature is derived.</span></p>
-
-<p class=MsoListBullet3 style='mso-list:l265 level2 lfo78;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>If an operation is not present, it
-is derived from the receiving end (this is to take into account gates since
-they do not have events associated with them).</span></p>
-
-<p class=MsoNormal style='margin-left:-105.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l260 level1 lfo276;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>MessageSort</span></p>
-
-<p class=MsoListBullet3 style='mso-list:l73 level2 lfo80;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>The synchSignal literal has been
-removed.</span></p>
-
-<p class=MsoListBullet3 style='mso-list:l73 level2 lfo80;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>The createMessage, deleteMessage
-and reply literals are new.</span></p>
-
-<p class=MsoNormal style='margin-left:3.0pt'><o:p>&nbsp;</o:p></p>
-
-<h4 style='margin-left:0in;text-indent:0in'>Associations</h4>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>UML 2.0 separated the concepts of navigability from
-association end ownership.&nbsp; In UML 2.1, a new “black dot” notation has
-been introduced where it is desired to make ownership explicit.</p>
-
-<p class=MsoBodyText>Diagrams showing associations now can display three
-distinct concepts:&nbsp; aggregation type, ownership and navigability.&nbsp;
-These three notions could all potentially be combined at once in the display of
-an association.</p>
-
-<p class=MsoBodyText>The Superstructure specification refers to some
-presentation options that might be implemented including suppression of some
-display options. The specification does not mandate the use of explicit
-end-ownership notation, but defines a notation which shall apply in models
-where such use is elected.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>In the diagram below:</p>
-
-<p class=MsoListBullet2 style='mso-list:l140 level1 lfo278;tab-stops:list .75in'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=GramE>endA</span> is
-owned by classifier B and endB is owned by BinaryAssociationAB.</span></p>
-
-<p class=MsoListBullet2 style='mso-list:l135 level1 lfo280;tab-stops:list .75in'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>The absence of a dot signifies
-ownership by the association.</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal><img border=0 width=588 height=118 id="_x0000_i1029"
-src="guide_files/image003.gif"></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>Refer to <a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue8956">Issue
-8956</a> for a more detailed explanation of this notation.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-left:0in;text-indent:0in'>Time Concepts</h4>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>Shortcomings in the older version of the specification made
-working with time concepts almost impossible.&nbsp; All time expressions were
-relative to “now” and there was no way to specify some arbitrary point time “t”
-to which all other time expressions were relative.&nbsp; In the current
-specification, the concepts of TimeObservation and DurationObservation have
-been introduced to fix this shortcoming.&nbsp; Time expressions and durations
-now can refer to these observations to create more complex expressions that can
-be evaluated given some specific time.&nbsp; Observations are really a way to
-introduce variables in time expressions and durations.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>In addition, older TimeObservationAction and
-DurationObservationAction have been replaced by opaque actions.&nbsp;&nbsp; The
-“now” and “duration” fields in these old metaclasses have been replaced by
-value pins as input values that refer to time expressions and durations (both
-of which are value specifications).</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>Time events are also newly added to the specification. Time
-events can also refer to time expressions thereby making it possible for
-execution specifications (that reference occurrence specifications) to refer to
-sophisticated time expressions.</p>
-
-<p class=MsoBodyText>&nbsp;</p>
-
-<p class=MsoBodyText>For a thorough explanation of time concepts, please refer
-to <a href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue8894">issue
-8894</a> and refer to the Superstructure specification.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal><img border=0 width=696 height=366 id="_x0000_i1030"
-src="guide_files/image004.jpg"></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-left:0in;text-indent:0in'>Profiles</h4>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>Profiles have undergone some significant changes in the
-latest UML version.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l72 level1 lfo282;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>The
-most notable changes include:</span></span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l168 level2 lfo88;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>The <b>ProfileApplication</b> meta-type no longer extends
-PackageImport.&nbsp; It now directly extends <b>DirectedRelationship</b>.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l168 level2 lfo88;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>The structural feature ProfileApplication::importedProfile has been
-renamed to ProfileApplication::appliedProfile.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l168 level2 lfo88;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>In the past, applying a profile implied importing the Package.&nbsp;
-This is not necessarily the case now.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l168 level2 lfo88;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>We now have <b>Image</b> support in stereotypes.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l168 level2 lfo88;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>The standard profiles have been organized by compliance level.</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h3 style='margin-left:0in;text-indent:0in'>Detailed Changes</h3>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>The following is a more detailed description of key
-changes based on change ballots.&nbsp; You may follow the links to the original
-issues to discover more about the history of the change.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.75in;
-margin-bottom:.0001pt;text-indent:-.25in;mso-list:l86 level1 lfo284;tab-stops:
-list .75in;text-autospace:none'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:
-normal;mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue6243">Issue
-6243</a><a name="_Toc125129065"></a> <a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue8956">Issue
-8956</a> Navigability of Associations</span></h4>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Navigability
-of association ends has been separated from ownership </p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>New
-notation for owning end/navigability changes in association </p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Navigability
-in relational modeling is a requirement for some query service, rather than
-property ownership.&nbsp;&nbsp; The model should indicate it is possible at
-runtime to get from one class to another efficiently rather than indicate the
-initial class has a property typed by the second class.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.75in;
-margin-bottom:.0001pt;text-indent:-.25in;mso-list:l123 level1 lfo286;
-tab-stops:list .75in;text-autospace:none'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol;font-weight:normal;mso-bidi-font-weight:bold'><span style='mso-list:
-Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue7328">Issue
-7328</a><a name="_Toc125129066"></a> Message Sort</span></h4>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>MessageSort::synchSignal
-mapped to MessageSort::asynchSignal</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>A
-concept assumed in the Interactions chapter has no equivalent in the actions
-chapter. </p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.75in;
-margin-bottom:.0001pt;text-indent:-.25in;mso-list:l186 level1 lfo288;
-tab-stops:list .75in;text-autospace:none'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol;font-weight:normal;mso-bidi-font-weight:bold'><span style='mso-list:
-Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue7637">Issue
-7637</a><a name="_Toc125129067"></a> Event Occurrence</span></h4>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>EventOccurrence::getFinishExecs
-and getStartExecs list changed to scalar</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Additional
-events for interactions</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>The
-corresponding property is ExecutionOccurrenceSpecification::execution which is
-a kind of ExecutionSpecification.&nbsp; </p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>The
-multiplicity changed from * to 1 because the semantics changed somewhat.&nbsp;
-That is in UML2 2.0 even if two execution specifications start at the same
-time, they have individual start events.&nbsp; Therefore, when converting older
-models in which one EventOccurrence had more than one ExecutionOccrrence (if
-there are such), it is necessary to create multiple copies of the
-ExecutionOccurrenceSpecification <span class=GramE>( corresponding</span> to
-the UML2 1.x) EventOccurrence, so that each ExecutionSpecification can have its
-own start event.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.75in;
-margin-bottom:.0001pt;text-indent:-.25in;mso-list:l248 level1 lfo290;
-tab-stops:list .75in;text-autospace:none'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol;font-weight:normal;mso-bidi-font-weight:bold'><span style='mso-list:
-Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue7319">Issue
-7319</a><a name="_Toc125129068"></a> ExecutionOccurrence</span></h4>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>ExecutionOccurrence::getBehaviors
-list changed to scalar</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>In
-UML2 1.x this was the specification of the Behavior that, when executed, caused
-the ExecutionOccurrence.&nbsp; In UML2 2.0 ExecutionOccurrence was replaced by
-ExecutionSpecification.&nbsp; Furthermore, action executions
-(ActionExecutionSpecification) were differentiated from other types of
-executions (BehaviorExecutionSpecification).&nbsp; Since the UML2 1.x model did
-not support the former case, this will never occur when converting a UML2 1.x
-model.&nbsp; So the corresponding feature is
-BehaviorExecutionSpecification::behavior.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.75in;
-margin-bottom:.0001pt;text-indent:-.25in;mso-list:l175 level1 lfo292;
-tab-stops:list .75in;text-autospace:none'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol;font-weight:normal;mso-bidi-font-weight:bold'><span style='mso-list:
-Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue6207">Issue
-6207</a><a name="_Toc125129069"></a> Interval</span></h4>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Issue
-8318, 8894</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Interval::getMaxes
-and getMins list changed to scalar</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>This
-is a correction of a mistake from the previous UML version.&nbsp; This
-parameter should never have been used as a list.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.75in;
-margin-bottom:.0001pt;text-indent:-.25in;mso-list:l76 level1 lfo294;tab-stops:
-list .75in;text-autospace:none'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:
-normal;mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue7560">Issue
-7560</a><a name="_Toc125129070"></a> Primitive Function</span></h4>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>PrimitiveFunction::getBody
-and getLanguage scalar changed to list</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Activity::getBody
-and getLanguage scalar changed to list</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>OpaqueExpression::getLanguage
-and getBody scalar changed to list</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Latest
-version allows one to express the same thing in different languages.</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>This
-modification should be represented in the properties view.</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>The
-language does not have to be specified and default to OCL ( may cause issues )</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Affects
-evaluating of constraints.</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>To
-resolve this migration issue, simply add existing scalar to list.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.75in;
-margin-bottom:.0001pt;text-indent:-.25in;mso-list:l126 level1 lfo296;
-tab-stops:list .75in;text-autospace:none'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol;font-weight:normal;mso-bidi-font-weight:bold'><span style='mso-list:
-Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue6682">Issue
-6682</a><a name="_Toc125129072"></a> Trigger vs. Event</span></h4>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>AnyTrigger,
-CallTrigger, TimeTrigger, ChangeTrigger, MessageTrigger, SignalTrigger mapped
-to concrete Trigger.&nbsp; That new trigger refers to the corresponding Event.</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Trigger
-types have been replaced by Events.</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Triggers
-are owned by behaviors. </p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Concept
-change: Not every event has to have a trigger.&nbsp; An event might not trigger
-anything.</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>An
-event is an instantaneous thing.&nbsp; An EventOccurrenceSpecification is an
-instance of an event.</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>An
-event is a receipt of a signal (for example).</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Trigger
-is a reaction to an event.&nbsp; <span class=GramE>e.g</span>. only triggered
-if signal X arrives on port P.</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Old
-trigger types can be replaced by their corresponding Event type.</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>For
-those old triggers that make use of the port property, a new Trigger (now a
-concrete class) should be created.</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>The
-new trigger can now be owned either by the state, transition or classifier.</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>The
-new event can be owned by the model or namespace.</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>The
-same event might trigger 2 different actions.&nbsp; That is why the state
-machine does not necessarily own the event.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.75in;
-margin-bottom:.0001pt;text-indent:-.25in;mso-list:l231 level1 lfo298;
-tab-stops:list .75in;text-autospace:none'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol;font-weight:normal;mso-bidi-font-weight:bold'><span style='mso-list:
-Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue8894">Issue
-8894</a><a name="_Toc125129073"></a> ObservationAction</span></h4>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>DurationObservationAction,
-TimeObservationAction are mapped to OpaqueAction.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.75in;
-margin-bottom:.0001pt;text-indent:-.25in;mso-list:l236 level1 lfo300;
-tab-stops:list .75in;text-autospace:none'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol;font-weight:normal;mso-bidi-font-weight:bold'><span style='mso-list:
-Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue8706">Issue 8706</a><a
-name="_Toc125129074"></a> <a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue9183">Issue
-9183</a> ProfileApplication</span></h4>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Issue
-6242</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Now
-a ProfileApplication is a subclass of DirectedRelationship rather than
-PackageImport.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.75in;
-margin-bottom:.0001pt;text-indent:-.25in;mso-list:l277 level1 lfo302;
-tab-stops:list .75in;text-autospace:none'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol;font-weight:normal;mso-bidi-font-weight:bold'><span style='mso-list:
-Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue7405">Issue
-7405</a><a name="_Toc125129077"></a> ApplyFuncitonActoin</span></h4>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Issue
-7319, 7365 </p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>ApplyFunctionAction::getArguments,
-getFunction, getResults unmapped.</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>ApplyFunctionAction
-mapped to CallBehaviorAction.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h4 style='margin-top:0in;margin-right:0in;margin-bottom:0in;margin-left:.75in;
-margin-bottom:.0001pt;text-indent:-.25in;mso-list:l100 level1 lfo304;
-tab-stops:list .75in;text-autospace:none'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol;font-weight:normal;mso-bidi-font-weight:bold'><span style='mso-list:
-Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><a
-href="http://www.omg.org/issues/uml2-superstructure-ftf.html#Issue7421">Issue
-7421</a><a name="_Toc125129079"></a> TemplateSignature</span></h4>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>TemplateSignature::getNestedSignatures
-and getNestingSignature unmapped</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>This
-was a mistake in the previous UML version.&nbsp; It was undocumented in the
-official specification and should never have been used.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h2><a name="_Toc125129049"></a><a name="_Features_of_UML2"></a><a
-name="_Features_of_UML2_2.0"></a>Features of UML2 2.0</h2>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>As described in the <a
-href="http://dev.eclipse.org/viewcvs/indextools.cgi/~checkout~/uml2-home/docs/plans/uml2_project_plan_2_0.html">UML2
-2.0 Plan</a>, the following features are part of this version:</p>
-
-<h3 style='margin-left:0in;text-indent:0in'><a name="_Toc125129050">Eclipse 3.2
-/ EMF 2.2 Compatibility</a></h3>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l43 level1 lfo306;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>UML2
-2.0 has been aligned with</span> <i>Eclipse3.2</i> </span><span
-style='font-weight:normal'>and</span> <i>EMF2.2</i> <span style='font-weight:
-normal'>to take advantage of the updated functionality of these components.</span></p>
-
-<p class=MsoListBullet style='margin-left:-15.0pt;text-indent:0in'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l240 level1 lfo308;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Support</span>
-</span><span style='font-weight:normal'>for</span> sorted cell editors.</p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l179 level2 lfo116;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>The latest version of EMF supports sorted cell editors and UML takes
-advantage of that.</span></p>
-
-<p class=MsoListBullet style='margin-left:-15.0pt;text-indent:0in'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l68 level1 lfo310;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Package Literals</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l54 level2 lfo120;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>New package literals have been introduced for accessing metadata.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l54 level2 lfo120;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>More efficient to use package literals instead of metadata accessor
-methods, e.g. use </span><span style='font-family:"Courier New"'>UMLPackage.Literals.PACKAGE__PACKAGED_ELEMENT</span>
-instead of <span style='font-family:"Courier New"'>UMLPackage.eINSTANCE.getPackage_<span
-class=GramE>PackagedElement(</span>)</span>.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h3 style='margin-left:0in;text-indent:0in'><a name="_Toc125169028">UML 2.1
-Conformance</a></h3>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l159 level1 lfo312;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>UML2 </span><span
-style='font-weight:normal'>implementation has been regenerated based on the UML
-2.1 Superstructure specification</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l163 level2 lfo122;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>UML2 resources (libraries, metamodels, <span class=GramE>profiles</span>)
-have been updated.</span></p>
-
-<p class=MsoListBullet3 style='margin-left:39.0pt;text-indent:0in'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l145 level1 lfo314;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>The
-revised</span> package merge </span><span style='font-weight:normal'>algorithm
-has been implemented</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l163 level2 lfo122;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Helper utilities have been created for package merge.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l163 level2 lfo122;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR><span style='font-family:"Courier New"'>UMLUtil</span> currently supports
-two functions </span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-.75in;
-mso-list:l136 level3 lfo124;tab-stops:list 1.75in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>void
-merge(org.eclipse.uml2.uml.Package package_, Map options) ;</span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-.75in;
-mso-list:l136 level3 lfo124;tab-stops:list 1.75in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>void
-merge(org.eclipse.uml2.uml.Package package_,Map options, DiagnosticChain
-diagnostics, Map context)</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l163 level2 lfo122;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR><span style='font-family:"Courier New"'>UMLUtil</span> implements a
-nested inner class that can be overridden for application-specific merge.</span></p>
-
-<p class=MsoListBullet3 style='margin-left:39.0pt;text-indent:0in'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l114 level1 lfo316;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Profile Support</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l163 level2 lfo122;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Stereotype attributes type can now reference a metaclass.</span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-.75in;
-mso-list:l136 level3 lfo124;tab-stops:list 1.75in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Association between stereotype and
-metaclass (which introduces property on stereotype).</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l163 level2 lfo122;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Image support in profiles</span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-.75in;
-mso-list:l136 level3 lfo124;tab-stops:list 1.75in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Image is a new metaclass.</span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-.75in;
-mso-list:l136 level3 lfo124;tab-stops:list 1.75in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Image part of stereotype
-definition.</span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-.75in;
-mso-list:l136 level3 lfo124;tab-stops:list 1.75in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Introduces notational changes.</span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-.75in;
-mso-list:l136 level3 lfo124;tab-stops:list 1.75in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Can now have multiple images per
-stereotype</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l163 level2 lfo122;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Location of stereotype applications.</span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-.75in;
-mso-list:l136 level3 lfo124;tab-stops:list 1.75in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Will no longer be in an annotation
-on an element.&nbsp; </span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-.75in;
-mso-list:l136 level3 lfo124;tab-stops:list 1.75in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Will be added to the resource and
-will reference the elements to which they are applied</span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-.75in;
-mso-list:l136 level3 lfo124;tab-stops:list 1.75in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Listeners will be affected.</span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-.75in;
-mso-list:l136 level3 lfo124;tab-stops:list 1.75in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>When stereotypes are applied with <span
-class=GramE>‘<span style='font-family:"Courier New"'>applyStereotype(</span></span></span><span
-style='font-family:"Courier New"'>Â…)</span>Â’&nbsp; the object representing that
-particular stereotype application will be returned.</p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l163 level2 lfo122;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Required stereotypes will automatically be applied and unapplied as
-profiles are applied and unapplied (and as elements are added/removed from
-packages).</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l163 level2 lfo122;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Previously we had three standard profiles.</span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-.75in;
-mso-list:l136 level3 lfo124;tab-stops:list 1.75in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Will now use only one standard
-profile (called “</span><span style='font-family:"Courier New"'>Standard.profile.uml</span>”)
-which is L3 compliant</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h3 style='margin-left:0in;text-indent:0in'>UML 2.1 Interchange</h3>
-
-<p class=MsoListBullet style='margin-left:.25in;text-indent:0in'><span
-style='font-weight:normal'>&nbsp;</span></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l154 level1 lfo318;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Support
-for loading and saving in “official” OMG format.&nbsp; The UML editor now
-supports saving with .xmi extension.&nbsp;&nbsp; Simply select the</span> “File
-&gt; Save As...” </span><span style='font-weight:normal'>and specify <span
-class=GramE>a</span> .xmi extension.</span></p>
-
-<p class=MsoListBullet style='margin-left:-195.0pt;text-indent:0in'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l27 level1 lfo320;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>The
-difference between the .xmi format and the .uml is that annotations are not a
-legal part of the UML schema.&nbsp; When saving your existing .uml model to the</span>
-.xmi </span><span style='font-weight:normal'>format, annotations will be
-converted to XMI extensions.</span></p>
-
-<p class=MsoListBullet style='margin-left:-195.0pt;text-indent:0in'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l158 level1 lfo322;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Opening
-a model with .xmi format with the</span> UML editor </span><span
-style='font-weight:normal'>will work and properly render using the </span>UML
-API.</p>
-
-<p class=MsoListBullet4 style='margin-left:1.25in;text-indent:0in'>&nbsp;</p>
-
-<h3 style='margin-left:0in;text-indent:0in'><a name="_Toc125129052"></a><a
-name="_UML2_2.0_Migration"></a>UML2 2.0 Migration</h3>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l6 level1 lfo324;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>For data migration, </span><span
-style='font-weight:normal'>a resource migration mechanism has been provided,
-which provides resource migration from the UML2 1.x schema to the 2.0
-schema.&nbsp; See the section entitled <a href="#_Migration">Model Artifact Migration</a>
-for more details.</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h3 style='margin-left:0in;text-indent:0in'>Reduced Memory Footprint / Improved
-Performance</h3>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l32 level1 lfo326;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Retrieval
-of</span> derived collections</span><span style='font-weight:normal'> made more
-efficient</span>.</p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l221 level2 lfo134;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Derived collections now use a “smart” iterator. </span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-1.0in;
-mso-list:l60 level3 lfo136;tab-stops:list 1.5in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>The result is that sequentially
-moving through collections using an indexed approach is very inefficient.</span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-1.0in;
-mso-list:l60 level3 lfo136;tab-stops:list 1.5in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>For a derived collection, </span><span
-style='font-family:"Courier New"'>getSize()</span> is O(n)</p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-1.0in;
-mso-list:l60 level3 lfo136;tab-stops:list 1.5in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>The list does not hold onto all
-the elements at once.&nbsp; Memory price is paid only when the list is
-traversed.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l118 level2 lfo138;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Always use an iterator when moving through derived collections obtained
-from UML2 API.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l238 level2 lfo140;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Index-based iteration need only be avoided for lists returned for
-features that are derived unions.&nbsp; In general, a way to tell which kind of
-iteration will be optimal at runtime is to test </span><i><span
-style='font-family:"Courier New"'>instanceof RandomAccess</span></i> (see
-Javadoc for that interface for details).</p>
-
-<p class=MsoNormal style='margin-left:3.0pt'><o:p>&nbsp;</o:p></p>
-
-<h3 style='margin-left:0in;text-indent:0in'><a name="_Toc125169037">Resource
-Fragments</a></h3>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l113 level1 lfo328;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Support
-for</span> segregation </span><span style='font-weight:normal'>of UML2
-resources into ‘fragments’ (e.g. </span><span style='font-family:"Courier New";
-font-weight:normal'>*.fragment.uml</span><span style='font-weight:normal'>)
-with packages as root elements has been provided.</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l95 level1 lfo330;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-size:7.0pt;
-font-weight:normal'><span style='mso-spacerun:yes'> </span></span></span><span
-style='font-weight:normal'>Support for </span>containment proxies<span
-style='font-weight:normal'> has been introduced</span>.</p>
-
-<p class=MsoListBullet3 style='mso-list:l41 level2 lfo144;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Enabled on a per-feature basis.</span></p>
-
-<p class=MsoListBullet4 style='margin-left:2.0in;text-indent:-.75in;mso-list:
-l185 level3 lfo146;tab-stops:list 1.5in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Defines moveable “subunits”. </span></p>
-
-<p class=MsoListBullet4 style='margin-left:2.25in;text-indent:-1.0in;
-mso-list:l185 level3 lfo146;tab-stops:list 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Is enabled for all containment
-features in UML2.</span></p>
-
-<p class=MsoListBullet4 style='margin-left:2.25in;text-indent:-1.0in;
-mso-list:l185 level3 lfo146;tab-stops:list 1.5in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>EMF support for logical resources
-is to check definition of each feature and invoke </span><span class=GramE><span
-style='font-family:"Courier New"'>isResolveProxies(</span></span><span
-style='font-family:"Courier New"'>)</span>.&nbsp;&nbsp; </p>
-
-<p class=MsoListBullet4 style='margin-left:2.25in;text-indent:-1.0in;
-mso-list:l185 level3 lfo146;tab-stops:list 1.5in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-family:"Courier New"'>isResolveProxies</span>&nbsp;
-is an attribute on every Ecore reference and must be set to TRUE on containment
-references for which proxy support is desired (must be set to TRUE for
-containment proxies to work)</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l148 level1 lfo332;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>New
-menu items in UML editor to</span> control </span><span style='font-weight:
-normal'>or</span> un-control <span style='font-weight:normal'>in a unit</span>.</p>
-
-<p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<img border=0 width=200 height=232 id="_x0000_i1031"
-src="guide_files/image005.jpg"></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h3 style='margin-left:0in;text-indent:0in'><a name="_Toc125169038">Derived
-Features</a></h3>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l233 level1 lfo334;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>For</span>
-derived unions </span><span style='font-weight:normal'>that are redefined by
-subclasses</span>.</p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l190 level2 lfo150;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Cases where derived unions were redefined by non-derived properties
-have been removed; as a result, the properties like Package::ownedMember and
-Component::ownedMember are now derived and new modifiable properties named
-‘packagedElement’ are available.</span></p>
-
-<p class=MsoNormal style='margin-left:-15.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l19 level1 lfo336;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Creation
-of smart lists for derived properties.</span></span></p>
-
-<p class=MsoNormal style='margin-left:-15.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l144 level1 lfo338;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Should
-not use indexed-based iteration (performance impact)</span></span></p>
-
-<p class=MsoNormal style='margin-left:-15.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l183 level1 lfo340;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>As
-a result, certain previous read only lists now are modifiable and vice versa.</span></span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h3 style='margin-left:0in;text-indent:0in'><a name="_Toc125169039">Improved
-Convenience Methods</a></h3>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l210 level1 lfo342;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Convenience</span>
-methods for getting relationships.</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:23.4pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Function</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border:solid black 1.0pt;
-  border-left:none;background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Note</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>EList
-  Element#getRelationships() </span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>Gets all relationships of
-  which this element is a participant.</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>EList
-  Element#getRelationships(EClass)</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>Gets all relationships of a
-  particular type of which this element is a participant.</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>EList
-  Element#getSourceDirectedRelationships()</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>Get directed relationships
-  of which this element is a source.</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>EList
-  Element#getSourceDirectedRelationships(EClass)</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>Get directed relationships
-  of a particular type of which this element is a source.</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:5'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>EList
-  Element#getTargetDirectedRelationships()</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>Get directed relationships
-  of which this element is a target.</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:6;mso-yfti-lastrow:yes'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>EList
-  Element#getTargetDirectedRelationships(EClass)</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>Get directed relationships
-  of a particular type of which this element is a target.</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l243 level1 lfo344;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Enhanced</span>
-factory </span><span style='font-weight:normal'>and</span> look-up <span
-style='font-weight:normal'>methods</span>.&nbsp;&nbsp; </p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>The
-factory and look-up methods now have an optional parameter to create the item if
-it does not currently exist.</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>The
-factory methods have additional parameters to allow for one-step creation.</p>
-
-<p class=MsoListBullet3><span style='font-family:"Courier New"'>o</span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Also
-an additional parameter for factory and look-up methods indicating whether case
-should be ignored.</p>
-
-<p class=MsoListBullet3><span class=GramE><span style='font-family:"Courier New"'>o</span></span><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>The
-table below shows examples of these enhancements.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:23.4pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Function</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border:solid black 1.0pt;
-  border-left:none;background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Note</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt;font-family:"Courier New"'>Operation
-  Class#<b>createOwnedOperation</b>(String name, EList ownedParameterNames,
-  EList ownedParameterTypes);</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>[sample] One-shot creation
-  of operation with parameters.</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Operation
-  </span><span style='font-size:9.0pt;font-family:"Courier New"'>Class#</span><b><span
-  style='font-size:10.0pt;font-family:"Courier New"'>getOwnedOperation</span></b><span
-  style='font-size:10.0pt;font-family:"Courier New"'>(String name, EList
-  ownedParameterNames, EList ownedParameterTypes);</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>[sample] Get specific
-  operation based on param types.&nbsp; Passing NULL is OK.</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Operation
-  </span><span style='font-size:9.0pt;font-family:"Courier New"'>Class#</span><b><span
-  style='font-size:10.0pt;font-family:"Courier New"'>createOwnedOperation</span></b><span
-  style='font-size:10.0pt;font-family:"Courier New"'>(String name, EList parameterNames,
-  EList parameterTypes, Type returnType);</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>[sample]</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Operation
-  </span><span style='font-size:9.0pt;font-family:"Courier New"'>Class#</span><b><span
-  style='font-size:10.0pt;font-family:"Courier New"'>getOwnedOperation</span></b><span
-  style='font-size:10.0pt;font-family:"Courier New"'>(String name, EList
-  ownedParameterNames,EList ownedParameterTypes, boolean ignoreCase, boolean
-  createOnDemand);</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>[sample] Possibly create on
-  demand.</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:5'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></b></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:6'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Classifier</span><span
-  style='font-size:9.0pt;font-family:"Courier New"'> Class#</span><b><span
-  style='font-size:10.0pt;font-family:"Courier New"'>getNestedClassifier</span></b><span
-  style='font-size:10.0pt;font-family:"Courier New"'>(String name);</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>[sample] Simple form of
-  getter</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:7'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Classifier</span><span
-  style='font-size:9.0pt;font-family:"Courier New"'> Class#</span><b><span
-  style='font-size:10.0pt;font-family:"Courier New"'>getNestedClassifier</span></b><span
-  style='font-size:10.0pt;font-family:"Courier New"'>(String name, boolean
-  ignoreCase, EClass eClass, boolean createOnDemand);</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>[sample] Getter with potential
-  to create if not found.</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:8'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Classifier</span><span
-  style='font-size:9.0pt;font-family:"Courier New"'> Class#</span><b><span
-  style='font-size:10.0pt;font-family:"Courier New"'>createNestedClassifier</span></b><span
-  style='font-size:10.0pt;font-family:"Courier New"'>(String name, EClass
-  eClass);</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>[sample] Creation by
-  specifying name.</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:9'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>PackageableElement
-  Package#<b>getPackagedElement</b>(String name, boolean ignoreCase, EClass eClass,
-  boolean createOnDemand);</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>[sample] Getter with
-  ability to create.</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:10'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>PackageableElement
-  Package#<b>getPackagedElement</b>(String name);</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>[sample] Simple form of
-  getter.</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:11'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>PackageableElement
-  Package#<b>createPackagedElement</b>(String name, EClass eClass);</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>[sample] Creation with
-  EClass specified.</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:12'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal>&nbsp;</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:13'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Port
-  EncapsulatedClassifier#<b>createOwnedPort</b>(String name, Type type);</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>[sample]</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:14'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Port
-  EncapsulatedClassifier#<b>getOwnedPort</b>(String name, Type type, boolean
-  ignoreCase, boolean createOnDemand);</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>[sample] Getter with
-  ability to create and set type.</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:15;mso-yfti-lastrow:yes'>
-  <td width=396 valign=top style='width:297.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Port
-  EncapsulatedClassifier#<b>getOwnedPort</b>(String name, Type type);</span></p>
-  </td>
-  <td width=240 valign=top style='width:2.5in;border-top:none;border-left:none;
-  border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>[sample] Simple form of
-  getter.</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l261 level1 lfo346;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Enhanced</span>
-UMLUtil </span><span style='font-weight:normal'>methods</span>.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet2 style='margin-left:1.25in;mso-list:l246 level2 lfo154;
-tab-stops:list 1.25in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Named elements can now be found by qualified name and type</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:23.4pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Function</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border:solid black 1.0pt;
-  border-left:none;background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Note</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Collection
-  UMLUtil#findNamedElements(Resource resource, String qualifiedName, boolean
-  ignoreCase, EClass eClass)</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2;mso-yfti-lastrow:yes'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Collection
-  UMLUtil#findNamedElements(Resource resource, String qualifiedName)</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>Simple form.</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet2 style='margin-left:1.25in'><span class=GramE><span
-style='font-family:"Courier New"'>o</span></span><span style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span>Safe application of stereotypes.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:23.4pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Function</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border:solid black 1.0pt;
-  border-left:none;background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Note</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>EObject
-  UMLUtil#safeApplyStereotype(Element element,&nbsp;&nbsp;&nbsp; Stereotype
-  stereotype)</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>Will apply profile to outermost
-  package if not already applied.&nbsp;&nbsp; All efforts are made to safely
-  apply stereotype.</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet2 style='margin-left:1.25in'><span style='font-family:
-"Courier New"'>o</span><span style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span><span style='font-family:"Courier New"'>UMLUtil</span> now defines a <span
-style='font-family:"Courier New"'>merge(Â…)</span> function that performs a
-package merge as defined by the Superstructure specification</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:23.4pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Function</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border:solid black 1.0pt;
-  border-left:none;background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Note</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>void
-  UMLUtil#merge(org.eclipse.uml2.uml.Package package_, Map options)</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l191 level1 lfo348;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Utilities
-to get all attributes and operations even inherited ones.</span></span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:23.4pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Function</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border:solid black 1.0pt;
-  border-left:none;background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Note</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>EList
-  Classifier#getAllAttributes()</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>Retrieves inherited
-  attributes.</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>EList
-  Classifier#getAttributes()</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>Retrieves those attributes
-  on this classifier only.</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>EList
-  Classifier#getAllOperations()</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>Retrieves inherited
-  operations.</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4;mso-yfti-lastrow:yes'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>EList
-  Classifier#getOperations()</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>Retrieves those operations
-  on this classifier only.</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l166 level1 lfo350;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Profile
-utilities.</span></span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:23.4pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=384 valign=top style='width:4.0in;border:solid black 1.0pt;
-  background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Function</span></p>
-  </td>
-  <td width=252 valign=top style='width:189.0pt;border:solid black 1.0pt;
-  border-left:none;background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Note</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=384 valign=top style='width:4.0in;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>PackageImport
-  Profile#createMetamodelReference(org.eclipse.uml2.uml.Package
-  importedPackage)</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=252 valign=top style='width:189.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=384 valign=top style='width:4.0in;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>ElementImport
-  createMetaclassReference(PackageableElement importedElement)</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=252 valign=top style='width:189.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=384 valign=top style='width:4.0in;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Stereotype
-  createOwnedStereotype(String name, boolean isAbstract);</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=252 valign=top style='width:189.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4;mso-yfti-lastrow:yes'>
-  <td width=384 valign=top style='width:4.0in;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>boolean
-  isDefined();</span></p>
-  </td>
-  <td width=252 valign=top style='width:189.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l88 level1 lfo352;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Custom
-operations specified in metadata</span></span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l46 level2 lfo148;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Result is that OCL engine can now use custom operations</span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-1.0in;
-mso-list:l74 level3 lfo156;tab-stops:list 1.5in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=GramE>e.g</span>.
-Check for applied stereotypes.</span></p>
-
-<p class=MsoListBullet2 style='margin-left:1.0in;mso-list:l46 level2 lfo148;
-tab-stops:list 1.0in'><![if !supportLists]><span style='font-family:"Courier New";
-mso-fareast-font-family:"Courier New"'><span style='mso-list:Ignore'>o<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span></span></span><![endif]><span
-dir=LTR>Lists vs. Sets</span></p>
-
-<p class=MsoListBullet3 style='margin-left:2.25in;text-indent:-1.0in;
-mso-list:l74 level3 lfo156;tab-stops:list 1.5in 2.25in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>&#9642;<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Custom operations in source models
-used to return sets, now they return </span><span style='font-family:"Courier New"'>EList</span>
-</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h3 style='margin-left:0in;text-indent:0in'>Javadoc</h3>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l69 level1 lfo354;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Javadoc
-based on the</span> </span><span style='font-weight:normal'>Superstructure</span>
-<span style='font-weight:normal'>specification</span> <span style='font-weight:
-normal'>has</span> <span style='font-weight:normal'>been</span> <span
-style='font-weight:normal'>included</span>.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal><span class=heading3char><span style='font-size:13.0pt'>Enhanced
-Icons</span></span></p>
-
-<p class=MsoNormal><span class=heading3char><span style='font-family:"Times New Roman"'>&nbsp;</span></span></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l241 level1 lfo356;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=heading3char><span
-style='font-family:"Times New Roman"'>Icons </span></span></span><span
-class=heading3char><span style='font-family:"Times New Roman";font-weight:normal'>added
-for each of the types defined by UML (instead of the default generated</span></span>
-<span style='font-weight:normal'>by</span> <span style='font-weight:normal'>EMF).</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h3 style='margin-left:0in;text-indent:0in'>UML Ecore Importer / Exporter</h3>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>Newly introduced in this version of the UML API <span
-class=GramE>is</span> an Ecore importer and exporter.&nbsp;&nbsp; This functionality
-takes advantage of the new exporter framework in EMF to convert Ecore models to
-UML (*.uml) models, and converts UML models to Ecore.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>There are three means by which this functionality can be
-accessed.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<ol style='margin-top:0in' start=1 type=1>
- <li class=MsoNormal style='mso-list:l156 level1 lfo159;tab-stops:list .5in'>Through
-     the import/export wizards.</li>
-</ol>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<ol style='margin-top:0in' start=1 type=1>
- <ol style='margin-top:0in' start=1 type=a>
-  <li class=MsoNormal style='mso-list:l22 level2 lfo162;tab-stops:list 1.0in'>When
-      creating a new EMF project, via the EMF Project wizard, it is possible to
-      select a UML model as the source type.&nbsp; The following page will
-      appearÂ…</li>
- </ol>
-</ol>
-
-<p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<img border=0 width=269 height=376 id="_x0000_i1032"
-src="guide_files/image006.jpg"></p>
-
-<p class=MsoNormal style='margin-left:.75in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=1 type=1>
- <ol style='margin-top:0in' start=2 type=a>
-  <li class=MsoNormal style='mso-list:l244 level2 lfo165;tab-stops:list 1.0in'>When
-      exporting a generator model, it is possible to select a UML as the
-      destination type. The following page will appear:</li>
- </ol>
-</ol>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal style='margin-left:1.5in'><span lang=DE style='mso-ansi-language:
-DE'><img border=0 width=280 height=300 id="_x0000_i1033"
-src="guide_files/image007.jpg"></span></p>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=2 type=1>
- <li class=MsoNormal style='mso-list:l115 level1 lfo168;tab-stops:list .5in'>Through
-     the Ecore editor and UML editor.</li>
-</ol>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=2 type=1>
- <ol style='margin-top:0in' start=1 type=a>
-  <li class=MsoNormal style='mso-list:l102 level2 lfo171;tab-stops:list 1.0in'>With
-      the examples plug-ins installedÂ…</li>
- </ol>
-</ol>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-1.5in'><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span>i.<span style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>From
-the Ecore editor, on an Ecore package, select the “Convert to UML model…”
-option.</p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-1.5in'><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span>ii.<span style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>From
-the UML editor, select the “Convert to &gt; Ecore Model…” option. </p>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=3 type=1>
- <li class=MsoNormal style='mso-list:l47 level1 lfo174;tab-stops:list .5in'>Programatically.</li>
-</ol>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=3 type=1>
- <ol style='margin-top:0in' start=1 type=a>
-  <li class=MsoNormal style='mso-list:l181 level2 lfo177;tab-stops:list 1.0in'>The
-      behavior for import/export is defined in <span style='font-family:"Courier New"'>UMLUtil</span>:</li>
- </ol>
-</ol>
-
-<p class=MsoNormal style='margin-left:.75in'>&nbsp;</p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:23.4pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Function</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border:solid black 1.0pt;
-  border-left:none;background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Note</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>Collection
-  UMLUtil#convertFromEcore(EPackage ePackage, Map options)</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2;mso-yfti-lastrow:yes'>
-  <td width=324 valign=top style='width:243.0pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>UMLUtil#convertToEcore(org.eclipse.uml2.Package
-  package_,Map options)</span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;</span></p>
-  </td>
-  <td width=312 valign=top style='width:3.25in;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h2><a name="_Migration"></a><a name="_Migration_Strategy"></a><a
-name="_Semantic_modifications"></a><a name="_Model_Artifact_Migration"></a>Model
-Artifact Migration</h2>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>The latest UML2 API provides a means to automatically
-migrate existing models saved with the UML2 1.x schema.&nbsp;&nbsp;&nbsp; Simply
-right click (or double click) on your existing model (with .uml2 extension) and
-select… <b>“Open With &gt; UML Model Editor”</b></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<img border=0 width=172 height=209 id="_x0000_i1034"
-src="guide_files/image008.jpg"></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l129 level1 lfo358;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>An
-in-memory model will be created with the correct UML2 2.0 schema.&nbsp; </span></span></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l132 level1 lfo360;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>In
-addition, all applied profiles will automatically be migrated.&nbsp; </span></span></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l84 level1 lfo362;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>For
-those features where no mappings are appropriate, a UML2 profile will be
-applied to the model and the appropriate stereotype will be applied that
-preserves the data that might otherwise be lost.&nbsp;&nbsp; In this way, all
-features are mapped and no information is lost.</span></span></p>
-
-<p class=MsoNormal style='margin-left:-1.5in;text-indent:3.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoBodyText>If you look at the file name in the editor tab you will
-also notice that the extension has already been changed to <b>.uml</b>.&nbsp;
-In order to <span class=GramE>persist</span> the model with the new schema, you
-will have to save it.&nbsp;&nbsp; </p>
-
-<p class=MsoBodyText>Select the “<b>File &gt; Save As …” </b>menu option.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<img border=0 width=176 height=225 id="_x0000_i1035"
-src="guide_files/image009.jpg"></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>Congratulations! Your model has now been migrated and
-serialized with the latest XMI version.&nbsp; (Yes, itÂ’s that simple.)</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h2><a name="_Profile_Artifact_Migration"></a>Profile Artifact Migration</h2>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>The structure of the profile definition has changed.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l254 level1 lfo364;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>The
-version of the profile used to be explicitly serialized.</span></span></p>
-
-<p class=MsoNormal style='text-indent:3.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l170 level1 lfo366;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Now,
-the namespace URI of the profile is used as the identifier.</span></span></p>
-
-<p class=MsoListBullet style='margin-left:.25in;text-indent:3.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l232 level1 lfo368;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>The
-namespace URI is computed on creation.</span></span></p>
-
-<p class=MsoListBullet style='margin-left:.25in;text-indent:3.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l14 level1 lfo370;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>By
-convention, version identifier is now part of the namespace URI (schema version
-is kept in namespace URI).&nbsp; The benefit is that if the version changes,
-the namespace URI changes.</span></span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>It is possible to stereotype a profile as an <span
-style='font-family:"Courier New"'>EPackage</span>.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l146 level1 lfo372;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>User
-can then explicitly set the NS_URI which overrides the auto-generation
-mechanism.</span></span></p>
-
-<p class=MsoListBullet3 style='margin-left:.25in;text-indent:0in'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</p>
-
-<p class=MsoNormal>In terms of how profiles are serialized to XML:</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l203 level1 lfo374;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Stereotype
-applications are now stored at the resource level instead of as annotations on
-the elements themselves.</span></span></p>
-
-<p class=MsoNormal style='text-indent:3.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l110 level1 lfo376;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>Any
-code that copies models must now explicitly copy the stereotypes separately since
-they are no longer held as an annotation under the element.</span></span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>Profile versioning:</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l225 level1 lfo378;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>The
-current UML API implements a versioning format that conforms to the latest UML
-specification and uses existing nsURI naming conventions.</span></span></p>
-
-<p class=MsoNormal style='margin-left:.25in;text-indent:3.0pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l172 level1 lfo380;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>In
-the old schema, version information was stored as a prefix and in the
-nsURI.&nbsp; This was somewhat redundant.</span></span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-&nbsp;&lt;contents xmi<span class=GramE>:type</span>=&quot;ecore:EPackage&quot;
-xmi:id=&quot;_6hd4tLRJEdqcc7lEDGpkMw&quot; name=&quot;ProfileOne<span
-style='background:yellow'>_0</span>&quot; nsURI=&quot;http:///ProfileOne<span
-style='background:yellow'>_0_</span>6hd4s7RJEdqcc7lEDGpkMw.profile.uml2&quot;
-nsPrefix=&quot;ProfileOne<span style='background:yellow'>_0</span>&quot;&gt;</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoListBullet style='margin-left:.75in;mso-list:l201 level1 lfo382;
-tab-stops:list .75in'><![if !supportLists]><span style='font-family:Symbol;
-mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;font-weight:normal;
-mso-bidi-font-weight:bold'><span style='mso-list:Ignore'>·<span
-style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span style='font-weight:normal'>In
-the new schema, version information is stored explicitly in the nsURI</span></span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;contents
-xmi<span class=GramE>:type</span>=&quot;ecore:EPackage&quot;
-xmi:id=&quot;_wRtnIOwjEdqsq-xx51kbkg&quot; name=&quot;ProfileOne&quot;
-nsURI=&quot;http:///schemas/ProfileOne/<span style='background:yellow'>1</span>&quot;
-nsPrefix=&quot;ProfileOne&quot;&gt;</span></p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New"'>&nbsp;&nbsp;
-</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>There are 3 predominant workflows when working with
-profiles.&nbsp;&nbsp; </p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>Users can simply <span class=GramE>migrate</span> the
-profiles on their own, but profiles donÂ’t exist in a vacuum.&nbsp; Profiles are
-applied to models.&nbsp; It is therefore expected that you will want to migrate
-the models on which the profile is applied at the same time as the profile is
-migrated.&nbsp; The various usecases are outlined below.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h3 style='margin-left:0in;text-indent:0in'>Migration of Profiles</h3>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>Migration of the profile itself is the simplest scenario.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<ol style='margin-top:0in' start=1 type=1>
- <li class=MsoNormal style='mso-list:l87 level1 lfo190;tab-stops:list .5in'>Open
-     your existing profile either by double clicking in the package explorer or
-     by right clicking and selecting the “Open With &gt; UML Model Editor”</li>
- <ol style='margin-top:0in' start=1 type=a>
-  <li class=MsoNormal style='mso-list:l87 level2 lfo190;tab-stops:list 1.0in'>An
-      in-memory version converted to the new schema will now exist.</li>
- </ol>
-</ol>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=2 type=1>
- <li class=MsoNormal style='mso-list:l152 level1 lfo193;tab-stops:list .5in'>Select
-     the profile in the UML editor.</li>
-</ol>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=3 type=1>
- <li class=MsoNormal style='mso-list:l194 level1 lfo196;tab-stops:list .5in'>Select
-     “UML Editor &gt; Profile &gt; Define”</li>
-</ol>
-
-<p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<img border=0 width=492 height=272 id="_x0000_i1036"
-src="guide_files/image010.jpg"></p>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=4 type=1>
- <li class=MsoNormal style='mso-list:l149 level1 lfo199;tab-stops:list .5in'>Save
-     your profile.</li>
-</ol>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>(Congratulations! You have just <span class=GramE>migrated</span>
-your profile.)</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h3 style='margin-left:0in;text-indent:0in'>Migration of Models with Predefined
-Profiles</h3>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>Models might have had one or more of the predefined profiles
-applied to them (<span style='font-family:"Courier New"'>Basic.profile.uml2</span>,
-<span style='font-family:"Courier New"'>Intermediate.profile.uml2</span> or <span
-style='font-family:"Courier New"'>Complete.profile.uml2</span>). Now, we have one
-standard profile called <span style='font-family:"Courier New"'>Standard.profile.uml</span>.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>The older .uml2 version of a model with these profiles
-applied look like the following: </p>
-
-<p class=MsoBodyText>&nbsp;</p>
-
-<p class=MsoNormal style='text-autospace:none'><span class=GramE><span
-style='font-size:8.0pt;font-family:"Courier New"'>&lt;?xml</span></span><span
-style='font-size:8.0pt;font-family:"Courier New"'> version=&quot;1.0&quot;
-encoding=&quot;UTF-8&quot;?&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&lt;uml<span class=GramE>:Model</span>
-xmi:version=&quot;2.0&quot; xmlns:xmi=&quot;http://www.omg.org/XMI&quot;
-xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
-xmlns:Basic_0=&quot;http:///Basic_0.profile.uml2&quot;
-xmlns:uml=&quot;http://www.eclipse.org/uml2/1.0.0/UML&quot;
-xsi:schemaLocation=&quot;http:///Basic_0.profile.uml2
-pathmap://UML2_PROFILES/Basic.profile.uml2#__LeIQK86Edih9-GG5afQ0g&quot; xmi:id=&quot;_y8utoOv8Edqsq-xx51kbkg&quot;
-appliedProfile=&quot;_DKmYgOv_Edqsq-xx51kbkg _dmLfcOv_Edqsq-xx51kbkg&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;packageImport xmi<span class=GramE>:type</span>=&quot;uml:ProfileApplication&quot;
-xmi:id=&quot;_DKmYgOv_Edqsq-xx51kbkg&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;eAnnotations xmi<span
-class=GramE>:id</span>=&quot;_DKmYgev_Edqsq-xx51kbkg&quot;
-source=&quot;attributes&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;details xmi<span
-class=GramE>:id</span>=&quot;_DKmYguv_Edqsq-xx51kbkg&quot;
-key=&quot;version&quot; value=&quot;0&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;/eAnnotations&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; <span style='background:yellow'>&lt;<span
-class=GramE>importedPackage</span>
-href=&quot;pathmap://UML2_PROFILES/Complete.profile.uml2#_M7pTkK87Edih9-GG5afQ0g&quot;/&gt;</span></span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp;&nbsp;&nbsp; &lt;<span
-class=GramE>importedProfile</span>
-href=&quot;pathmap://UML2_PROFILES/Complete.profile.uml2#_M7pTkK87Edih9-GG5afQ0g&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;/packageImport&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;packageImport xmi<span class=GramE>:type</span>=&quot;uml:ProfileApplication&quot;
-xmi:id=&quot;_dmLfcOv_Edqsq-xx51kbkg&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;eAnnotations xmi<span
-class=GramE>:id</span>=&quot;_dmLfcev_Edqsq-xx51kbkg&quot;
-source=&quot;attributes&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;details xmi<span
-class=GramE>:id</span>=&quot;_dmLfcuv_Edqsq-xx51kbkg&quot;
-key=&quot;version&quot; value=&quot;0&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;/eAnnotations&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; <span style='background:yellow'>&lt;<span
-class=GramE>importedPackage</span>
-href=&quot;pathmap://UML2_PROFILES/Basic.profile.uml2#_6mFRgK86Edih9-GG5afQ0g&quot;/&gt;</span></span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp;&nbsp;&nbsp; &lt;<span
-class=GramE>importedProfile</span>
-href=&quot;pathmap://UML2_PROFILES/Basic.profile.uml2#_6mFRgK86Edih9-GG5afQ0g&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp; &lt;/packageImport&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;ownedMember xmi<span class=GramE>:type</span>=&quot;uml:Artifact&quot;
-xmi:id=&quot;_md9YcOv_Edqsq-xx51kbkg&quot; name=&quot;artifact&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;eAnnotations xmi<span
-class=GramE>:id</span>=&quot;_o4MmQOv_Edqsq-xx51kbkg&quot;
-source=&quot;appliedStereotypes&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;contents xmi<span
-class=GramE>:type</span>=&quot;Basic_0:Basic__Script&quot;
-xmi:id=&quot;_o4MmQev_Edqsq-xx51kbkg&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;/eAnnotations&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;/ownedMember&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&lt;/uml<span class=GramE>:Model</span>&gt;</span></p>
-
-<p class=MsoBodyText>&nbsp;</p>
-
-<p class=MsoBodyText>If such a model is opened with the UML editor, the profile
-applications within will automatically get migrated and applied. Saving out the
-above mentioned model will result in the following.</p>
-
-<p class=MsoBodyText>&nbsp;</p>
-
-<p class=MsoNormal style='text-autospace:none'><span class=GramE><span
-style='font-size:8.0pt;font-family:"Courier New"'>&lt;?xml</span></span><span
-style='font-size:8.0pt;font-family:"Courier New"'> version=&quot;1.0&quot;
-encoding=&quot;UTF-8&quot;?&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&lt;xmi<span class=GramE>:XMI</span>
-xmi:version=&quot;2.1&quot;
-xmlns:xmi=&quot;http://schema.omg.org/spec/XMI/2.1&quot;
-xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
-xmlns:Standard=&quot;http://www.eclipse.org/uml2/schemas/Standard/1&quot;
-xmlns:ecore=&quot;http://www.eclipse.org/emf/2002/Ecore&quot;
-xmlns:uml=&quot;http://www.eclipse.org/uml2/2.0.0/UML&quot;
-xsi:schemaLocation=&quot;http://www.eclipse.org/uml2/schemas/Standard/1
-pathmap://UML_PROFILES/Standard.profile.uml#_yzU58YinEdqtvbnfB2L_5w&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;uml<span class=GramE>:Model</span>
-xmi:id=&quot;_y8utoOv8Edqsq-xx51kbkg&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;packagedElement xmi<span
-class=GramE>:type</span>=&quot;uml:Artifact&quot;
-xmi:id=&quot;_md9YcOv_Edqsq-xx51kbkg&quot; name=&quot;artifact&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;profileApplication xmi<span
-class=GramE>:type</span>=&quot;uml:ProfileApplication&quot;
-xmi:id=&quot;_3vnrsOw6Edqsq-xx51kbkg&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;eAnnotations xmi<span
-class=GramE>:type</span>=&quot;ecore:EAnnotation&quot; xmi:id=&quot;_3vnrsew6Edqsq-xx51kbkg&quot;
-source=&quot;http://www.eclipse.org/uml2/2.0.0/UML&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-&lt;references xmi<span class=GramE>:type</span>=&quot;ecore:EPackage&quot;
-href=&quot;pathmap://UML_PROFILES/Standard.profile.uml#_yzU58YinEdqtvbnfB2L_5w&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;/eAnnotations&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <span
-style='background:yellow'>&lt;appliedProfile xmi<span class=GramE>:type</span>=&quot;uml:Profile&quot;
-href=&quot;pathmap://UML_PROFILES/Standard.profile.uml#_0&quot;/&gt;</span></span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp;&nbsp;&nbsp;
-&lt;/profileApplication&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;/uml<span class=GramE>:Model</span>&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;Standard<span class=GramE>:Script</span>
-xmi:id=&quot;_3vnrsuw6Edqsq-xx51kbkg&quot;
-base_Artifact=&quot;_md9YcOv_Edqsq-xx51kbkg&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&lt;/xmi<span class=GramE>:XMI</span>&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;</span></p>
-
-<p class=MsoBodyText>&nbsp;</p>
-
-<p class=MsoBodyText>There are only two steps remainingÂ…</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<ol style='margin-top:0in' start=1 type=1>
- <li class=MsoNormal style='mso-list:l177 level1 lfo202;tab-stops:list .5in'>Re-apply
-     to standard profile and any other pre-defined profile that has been
-     applied.</li>
-</ol>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in'>a.<span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>Select your
-model from the UML editor, then select&nbsp;&nbsp; “UML Editor &gt; Package
-&gt; Apply Profile”.</p>
-
-<p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<img border=0 width=348 height=225 id="_x0000_i1037"
-src="guide_files/image011.jpg"></p>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=2 type=1>
- <li class=MsoNormal style='mso-list:l75 level1 lfo205;tab-stops:list .5in'>Delete
-     the extra profile applications that are no longer required from your
-     existing model that might have been left as a result of multiple
-     predefined models (i.e. the <span style='font-family:"Courier New"'>Basic.profile.uml2</span>,
-     <span style='font-family:"Courier New"'>Intermediate.profile.uml2</span>
-     and <span style='font-family:"Courier New"'>Complete.profile.uml2</span>)
-     being converted to <span style='font-family:"Courier New"'>Standard.profile.uml</span>.</li>
-</ol>
-
-<p class=MsoBodyText>&nbsp;</p>
-
-<h3 style='margin-left:0in;text-indent:0in'>Migration of Models with
-User-defined Profiles</h3>
-
-<p class=MsoListBullet2>&nbsp;</p>
-
-<p class=MsoNormal>To migrate a model with user-defined profile properly, it is
-necessary to re-define and re-apply profiles. An example model with migration
-steps is outlined below.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal><b>Before migration (older .uml2 version)</b></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal style='text-autospace:none'><span class=GramE><span
-style='font-size:8.0pt;font-family:"Courier New"'>&lt;?xml</span></span><span
-style='font-size:8.0pt;font-family:"Courier New"'> version=&quot;1.0&quot;
-encoding=&quot;UTF-8&quot;?&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&lt;uml<span class=GramE>:Model</span>
-xmi:version=&quot;2.0&quot; xmlns:xmi=&quot;http://www.omg.org/XMI&quot;
-xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
-xmlns:ProfileOne_0=&quot;http:///ProfileOne_0_6hd4s7RJEdqcc7lEDGpkMw.profile.uml2&quot;
-xmlns:uml=&quot;http://www.eclipse.org/uml2/1.0.0/UML&quot;
-xsi:schemaLocation=&quot;http:///ProfileOne_0_6hd4s7RJEdqcc7lEDGpkMw.profile.uml2
-MyProfile.uml2#_6hd4tLRJEdqcc7lEDGpkMw&quot;
-xmi:id=&quot;_HF4i4LRHEdqcc7lEDGpkMw&quot;
-appliedProfile=&quot;_EMDHoLRKEdqcc7lEDGpkMw&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;packageImport xmi<span class=GramE>:type</span>=&quot;uml:ProfileApplication&quot;
-xmi:id=&quot;_EMDHoLRKEdqcc7lEDGpkMw&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;eAnnotations xmi<span
-class=GramE>:id</span>=&quot;_EMDHobRKEdqcc7lEDGpkMw&quot;
-source=&quot;attributes&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &lt;details xmi<span
-class=GramE>:id</span>=&quot;_EMDHorRKEdqcc7lEDGpkMw&quot;
-key=&quot;version&quot; value=&quot;0&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;/eAnnotations&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;importedPackage xmi<span
-class=GramE>:type</span>=&quot;uml:Profile&quot;
-href=&quot;MyProfile.uml2#_NLpAMLRHEdqcc7lEDGpkMw&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;importedProfile
-href=&quot;MyProfile.uml2#_NLpAMLRHEdqcc7lEDGpkMw&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;/packageImport&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; <span style='background:yellow'>&lt;ownedMember
-xmi<span class=GramE>:type</span>=&quot;uml:Class&quot;
-xmi:id=&quot;_H44GELRHEdqcc7lEDGpkMw&quot; name=&quot;MyClass&quot;&gt;</span></span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp;&nbsp;&nbsp;
-&lt;eAnnotations xmi<span class=GramE>:id</span>=&quot;_HyseMLRKEdqcc7lEDGpkMw&quot;
-source=&quot;appliedStereotypes&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-&lt;contents xmi<span class=GramE>:type</span>=&quot;ProfileOne_0:ProfileOne__StereotypeOne&quot;
-xmi:id=&quot;_HyseMbRKEdqcc7lEDGpkMw&quot; MyProperty=&quot;4&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp;&nbsp;&nbsp;
-&lt;/eAnnotations&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;ownedAttribute xmi<span
-class=GramE>:id</span>=&quot;_b9cgQLRKEdqcc7lEDGpkMw&quot;
-name=&quot;PropertyOne&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;/ownedMember&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;ownedMember xmi<span class=GramE>:type</span>=&quot;uml:Actor&quot;
-xmi:id=&quot;_ERmhcLqqEdqSyLEgG4orvQ&quot; name=&quot;Actor&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;eAnnotations xmi<span
-class=GramE>:id</span>=&quot;_ICL3ILqqEdqSyLEgG4orvQ&quot;
-source=&quot;keywords&quot; value=&quot;blah&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;/ownedMember&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&lt;/uml<span class=GramE>:Model</span>&gt;</span></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal><b>After migration (newer .uml version)</b></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal style='text-autospace:none'><a name="_API_Migration"></a><span
-class=GramE><span style='font-size:8.0pt;font-family:"Courier New"'>&lt;?xml</span></span><span
-style='font-size:8.0pt;font-family:"Courier New"'> version=&quot;1.0&quot;
-encoding=&quot;UTF-8&quot;?&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&lt;xmi<span class=GramE>:XMI</span>
-xmi:version=&quot;2.1&quot;
-xmlns:xmi=&quot;http://schema.omg.org/spec/XMI/2.1&quot;
-xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
-xmlns:ProfileOne=&quot;http:///schemas/ProfileOne/1&quot;
-xmlns:ecore=&quot;http://www.eclipse.org/emf/2002/Ecore&quot;
-xmlns:uml=&quot;http://www.eclipse.org/uml2/2.0.0/UML&quot;
-xsi:schemaLocation=&quot;http:///schemas/ProfileOne/1
-MyProfile.uml#_wRtnIOwjEdqsq-xx51kbkg&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;uml<span class=GramE>:Model</span>
-xmi:id=&quot;_HF4i4LRHEdqcc7lEDGpkMw&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; <span style='background:yellow'>&lt;packagedElement
-xmi<span class=GramE>:type</span>=&quot;uml:Class&quot;
-xmi:id=&quot;_H44GELRHEdqcc7lEDGpkMw&quot; name=&quot;MyClass&quot;&gt;</span></span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-&lt;ownedAttribute xmi<span class=GramE>:type</span>=&quot;uml:Property&quot;
-xmi:id=&quot;_b9cgQLRKEdqcc7lEDGpkMw&quot; name=&quot;PropertyOne&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp;&nbsp;&nbsp;
-&lt;/packagedElement&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;packagedElement xmi<span
-class=GramE>:type</span>=&quot;uml:Actor&quot;
-xmi:id=&quot;_ERmhcLqqEdqSyLEgG4orvQ&quot; name=&quot;Actor&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&lt;eAnnotations xmi<span
-class=GramE>:type</span>=&quot;ecore:EAnnotation&quot; xmi:id=&quot;_ICL3ILqqEdqSyLEgG4orvQ&quot;
-source=&quot;http://www.eclipse.org/uml2/2.0.0/UML&quot;
-value=&quot;blah&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; &lt;/packagedElement&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp;&nbsp;&nbsp; <span style='background:yellow'>&lt;profileApplication
-xmi<span class=GramE>:type</span>=&quot;uml:ProfileApplication&quot;
-xmi:id=&quot;_EMDHoLRKEdqcc7lEDGpkMw&quot;&gt;</span></span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-&lt;eAnnotations xmi<span class=GramE>:type</span>=&quot;ecore:EAnnotation&quot;
-xmi:id=&quot;_EMDHobRKEdqcc7lEDGpkMw&quot;
-source=&quot;http://www.eclipse.org/uml2/2.0.0/UML&quot;&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-&lt;references xmi<span class=GramE>:type</span>=&quot;ecore:EPackage&quot;
-href=&quot;MyProfile.uml#_wRtnIOwjEdqsq-xx51kbkg&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-&lt;/eAnnotations&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-&lt;appliedProfile xmi<span class=GramE>:type</span>=&quot;uml:Profile&quot;
-href=&quot;MyProfile.uml#_NLpAMLRHEdqcc7lEDGpkMw&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New";background:yellow'>&nbsp;&nbsp;&nbsp;
-&lt;/profileApplication&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;/uml<span class=GramE>:Model</span>&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&nbsp; &lt;ProfileOne<span class=GramE>:StereotypeOne</span>
-xmi:id=&quot;_AjMRkOwkEdqsq-xx51kbkg&quot; MyProperty=&quot;4&quot;
-base_Class=&quot;_H44GELRHEdqcc7lEDGpkMw&quot;/&gt;</span></p>
-
-<p class=MsoNormal style='text-autospace:none'><span style='font-size:8.0pt;
-font-family:"Courier New"'>&lt;/xmi<span class=GramE>:XMI</span>&gt;</span></p>
-
-<p class=MsoList2>&nbsp;</p>
-
-<p class=MsoList2>&nbsp;</p>
-
-<p class=MsoNormal>To <span class=GramE><b>migrate</b></span> older models with
-older profiles defined.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<ol style='margin-top:0in' start=1 type=1>
- <li class=MsoNormal style='mso-list:l105 level1 lfo208;tab-stops:list .5in'>Open
-     up your older model with the UMLEditor.</li>
-</ol>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=1 type=1>
- <ol style='margin-top:0in' start=1 type=a>
-  <li class=MsoNormal style='mso-list:l192 level2 lfo211;tab-stops:list 1.0in'>Follow
-      rules for “<a href="#_Migration">Model Artifact Migration</a>”.</li>
- </ol>
-</ol>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-1.5in'><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span>i.<span style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>An
-in memory version of your model will be created </p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-1.5in'><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span>ii.<span style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>An
-in-memory version of your profile will be created.</p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-1.5in'><span
-style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span>iii.<span style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span>If
-at this stage you decide to save your model to the new schema by saving out
-with a .uml extension, the model will still refer to the older profile (most
-likely not what you want)</p>
-
-<p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<img border=0 width=480 height=323 id="_x0000_i1038"
-src="guide_files/image012.jpg"></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<ol style='margin-top:0in' start=2 type=1>
- <li class=MsoNormal style='mso-list:l245 level1 lfo214;tab-stops:list .5in'>Redefine
-     the existing profile.</li>
-</ol>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=2 type=1>
- <ol style='margin-top:0in' start=1 type=a>
-  <li class=MsoNormal style='mso-list:l49 level2 lfo217;tab-stops:list 1.0in'>Select
-      the applied user defined profile in the editor</li>
- </ol>
-</ol>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<img border=0 width=432 height=290 id="_x0000_i1039"
-src="guide_files/image013.jpg"></p>
-
-<p class=MsoNormal style='margin-left:.75in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=2 type=1>
- <ol style='margin-top:0in' start=2 type=a>
-  <li class=MsoNormal style='mso-list:l229 level2 lfo220;tab-stops:list 1.0in'>Select
-      “<b>UMLEditor &gt; Profile &gt; Define</b>”</li>
- </ol>
-</ol>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<img border=0 width=479 height=324 id="_x0000_i1040"
-src="guide_files/image014.jpg"></p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<ol style='margin-top:0in' start=3 type=1>
- <li class=MsoNormal style='mso-list:l213 level1 lfo223;tab-stops:list .5in'>Re-apply
-     the newly migrated profile.</li>
-</ol>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=3 type=1>
- <ol style='margin-top:0in' start=1 type=a>
-  <li class=MsoNormal style='mso-list:l165 level2 lfo226;tab-stops:list 1.0in'>Select
-      the model in the editor</li>
- </ol>
-</ol>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<img border=0 width=468 height=315 id="_x0000_i1041"
-src="guide_files/image015.jpg"></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<ol style='margin-top:0in' start=3 type=1>
- <ol style='margin-top:0in' start=2 type=a>
-  <li class=MsoNormal style='mso-list:l23 level2 lfo229;tab-stops:list 1.0in'>Select
-      “<b>UMLEditor &gt; Package &gt; Apply Profile …”</b></li>
- </ol>
-</ol>
-
-<p class=MsoNormal><b><o:p>&nbsp;</o:p></b></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<img border=0 width=491 height=331 id="_x0000_i1042"
-src="guide_files/image016.jpg"></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<ol style='margin-top:0in' start=3 type=1>
- <ol style='margin-top:0in' start=3 type=a>
-  <li class=MsoNormal style='mso-list:l127 level2 lfo232;tab-stops:list 1.0in'>Select
-      the profile in question and click “Add” then “OK”</li>
- </ol>
-</ol>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-<img border=0 width=396 height=216 id="_x0000_i1043"
-src="guide_files/image017.jpg"></p>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=4 type=1>
- <li class=MsoNormal style='mso-list:l209 level1 lfo235;tab-stops:list .5in'>Save
-     your resource</li>
-</ol>
-
-<p class=MsoNormal style='margin-left:.25in'>&nbsp;</p>
-
-<ol style='margin-top:0in' start=4 type=1>
- <ol style='margin-top:0in' start=1 type=a>
-  <li class=MsoNormal style='mso-list:l112 level2 lfo238;tab-stops:list 1.0in'>Simply
-      click “Save”.</li>
- </ol>
-</ol>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>At this stage, you will notice a new version of your model
-and <span class=GramE>profile have</span> been created.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal><img border=0 width=516 height=347 id="_x0000_i1044"
-src="guide_files/image018.jpg"></p>
-
-<p class=MsoNormal><br>
-(Congratulations! You have just <span class=GramE>migrated</span> a model with
-a user-defined profile applied.)</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h2><!--[if gte vml 1]><v:shape id="_x0000_i1045" type="#_x0000_t75" alt=""
- style='width:9.75pt;height:9.75pt'>
- <v:imagedata src="" o:href="http://www.eclipse.org/modeling/mdt/images/new.gif"/>
-</v:shape><![endif]--><span style='mso-spacerun:yes'> </span>Programmatic
-Migration</h2>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal>In order to migrate models programmatically, some setup is
-required in order to register mappings (already defined by UML).<span
-style='mso-spacerun:yes'>  </span>These mappings will be used by the resource
-set during the loading stage and will perform the necessary in-memory
-migration.</p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal>The example below demonstrates how one can <span
-class=GramE>migrate</span> models with a stand-alone application.</p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal>LetÂ’s first start with our main method.</p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h3 style='margin-left:0in;text-indent:0in'><st1:place>Main</st1:place></h3>
-
-<pre style='margin-left:9.0pt'><b><span style='color:#7F0055'><span
-style='mso-tab-count:1'>      </span></span></b><span style='color:black'><o:p></o:p></span></pre>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:1'>      </span></span><span class=GramE><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>public</span></b></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> </span><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>static</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> </span><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>void</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> main(String[]
-args) {</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span></span><span class=GramE><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>if</span></b></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> (args.length !=
-3) {</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>System.out</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:4'>                        </span>.<span class=GramE>println(</span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;Wrong
-number of arguments.\nFirst argument is path &quot;</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:5'>                              </span>+ </span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;of file
-to migrate ie. C:/myModel.uml2 \<span class=GramE>nSecond &quot;</span></span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:5'>                              </span>+ </span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;argument
-is path to uml <span class=GramE>plugin &quot;</span></span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:5'>                              </span><span class=GramE>+
-<span style='color:#2A00FF'>&quot;ie.</span></span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>
-C:/cleanUML/uml2-M200607270400/eclipse/plugins/org.eclipse.uml2.uml_2.0.1.v200607270400.jar&quot;</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:5'>                              </span>+ </span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;\nThird
-argument is path to uml resource <span class=GramE>jar &quot;</span></span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:5'>                              </span><span class=GramE>+
-<span style='color:#2A00FF'>&quot;ie.</span></span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>
-C:/cleanUML/uml2-M200607270400/eclipse/plugins/org.eclipse.uml2.uml.resources_2.0.0.v200607270400.jar&quot;</span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span></span><span class=GramE><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>return</span></b></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>;</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>}</span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>String fileToMigrate = <span
-class=GramE>args[</span>0];</span><span style='font-size:10.0pt;font-family:
-"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>String umlPluginPath = <span
-class=GramE>args[</span>1];</span><span style='font-size:10.0pt;font-family:
-"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>String umlResourcePath = <span
-class=GramE>args[</span>2];</span><span style='font-size:10.0pt;font-family:
-"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>URI umlPluginURI = <span
-class=GramE>URI.createURI(</span></span><span style='font-size:10.0pt;
-font-family:"Courier New";color:#2A00FF'>&quot;jar:file:/&quot;</span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> + umlPluginPath
-+ </span><span style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;!/&quot;</span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>URI umlResourcePluginURI = <span
-class=GramE>URI.createURI(</span></span><span style='font-size:10.0pt;
-font-family:"Courier New";color:#2A00FF'>&quot;jar:file:/&quot;</span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> +
-umlResourcePath</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span></span><span lang=IT
-style='font-size:10.0pt;font-family:"Courier New";color:black;mso-ansi-language:
-IT'>+ </span><span lang=IT style='font-size:10.0pt;font-family:"Courier New";
-color:#2A00FF;mso-ansi-language:IT'>&quot;!/&quot;</span><span lang=IT
-style='font-size:10.0pt;font-family:"Courier New";color:black;mso-ansi-language:
-IT'>);</span><span lang=IT style='font-size:10.0pt;font-family:"Courier New";
-mso-ansi-language:IT'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-lang=IT style='font-size:10.0pt;font-family:"Courier New";color:black;
-mso-ansi-language:IT'><span style='mso-tab-count:2'>            </span>migrateModel(URI.createFileURI(fileToMigrate),
-umlPluginURI,</span><span lang=IT style='font-size:10.0pt;font-family:"Courier New";
-mso-ansi-language:IT'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-lang=IT style='font-size:10.0pt;font-family:"Courier New";color:black;
-mso-ansi-language:IT'><span style='mso-tab-count:3'>                  </span></span><span
-class=GramE><span style='font-size:10.0pt;font-family:"Courier New";color:black'>umlResourcePluginURI</span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<pre style='margin-left:9.0pt'><span style='color:black'><span
-style='mso-tab-count:1'>      </span>}<o:p></o:p></span></pre><pre
-style='margin-left:9.0pt'><span style='color:black'><o:p>&nbsp;</o:p></span></pre><pre
-style='margin-left:9.0pt'><span style='color:black'><o:p>&nbsp;</o:p></span></pre>
-
-<p class=MsoNormal><span class=GramE>Nothing very exciting here.</span><span
-style='mso-spacerun:yes'>  </span>We simply pass the file to migrate as the
-first parameter, the path of the uml jar as the second and the path of the
-resource jar as the third. WeÂ’ll see how these are used later on.</p>
-
-<p class=MsoNormal>For stand-alone applications, it is required to register
-pathmaps, extensions and packages.<span style='mso-spacerun:yes'>  </span></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h3 style='margin-left:0in;text-indent:0in'>Setup</h3>
-
-<pre style='margin-left:9.0pt'><b><span style='color:black'><span
-style='mso-tab-count:1'>      </span></span></b><span style='color:black'><o:p></o:p></span></pre>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'><span
-style='mso-tab-count:1'>      </span><span class=GramE>protected</span></span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> </span><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>static</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> </span><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>void</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>
-registerPathmaps(URI umlResourcePluginURI) {</span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>URIConverter.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>URI_<span
-class=GramE>MAP<span style='color:black;font-style:normal'>.put(</span></span></span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>URI.<i>createURI</i>(UMLResource.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>LIBRARIES_PATHMAP</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>),</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:.25in;mso-layout-grid-align:none;
-text-autospace:none'><span style='mso-tab-count:1'>      </span><!--[if gte vml 1]><v:shape
- id="_x0000_i1046" type="#_x0000_t75" style='width:18pt;height:9.75pt'
- o:bullet="t">
- <v:imagedata src="" o:title="tag_1"/>
-</v:shape><![endif]--><span style='font-size:10.0pt;font-family:"Courier New";
-color:black'><span style='mso-tab-count:1'>   </span><span class=GramE>umlResourcePluginURI.appendSegment(</span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;libraries&quot;</span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>).appendSegment(</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:4'>                        </span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;&quot;</span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>));</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>URIConverter.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>URI_<span
-class=GramE>MAP<span style='color:black;font-style:normal'>.put(</span></span></span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>URI.<i>createURI</i>(UMLResource.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>METAMODELS_PATHMAP</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>),</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span><span class=GramE>umlResourcePluginURI.appendSegment(</span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;metamodels&quot;</span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>).appendSegment(</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:4'>                        </span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;&quot;</span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>));</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>URIConverter.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>URI_<span
-class=GramE>MAP<span style='color:black;font-style:normal'>.put(</span></span></span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>URI.<i>createURI</i>(UMLResource.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>PROFILES_PATHMAP</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>),</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span><span class=GramE>umlResourcePluginURI.appendSegment(</span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;profiles&quot;</span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>)</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:4'>                        </span>.<span class=GramE>appendSegment(</span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;&quot;</span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>));</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<pre style='margin-left:9.0pt'><span style='color:black'><span
-style='mso-tab-count:1'>      </span>}<o:p></o:p></span></pre><pre
-style='margin-left:9.0pt'><span style='color:black'><o:p>&nbsp;</o:p></span></pre>
-
-<p class=MsoNormal>In the function above, we register the locations to the
-various pathmaps.<span style='mso-spacerun:yes'>  </span>Here, we make use of
-the resource URI <!--[if gte vml 1]><v:shape id="_x0000_i1047" type="#_x0000_t75"
- style='width:18pt;height:9.75pt'>
- <v:imagedata src="" o:title="tag_1"/>
-</v:shape><![endif]--><span style='mso-spacerun:yes'> </span>passed in as a
-parameter to the <span class=GramE>main(</span>) function.</p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:"Courier New";
-color:black'><o:p>&nbsp;</o:p></span></p>
-
-<pre style='margin-left:9.0pt'><span style='color:black'><o:p>&nbsp;</o:p></span></pre>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'><span
-style='mso-tab-count:1'>      </span><span class=GramE>protected</span></span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> </span><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>static</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> </span><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>void</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>
-registerExtensions() {</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>Map extensionFactoryMap =
-Resource.Factory.Registry.</span><i><span style='font-size:10.0pt;font-family:
-"Courier New";color:#0000C0'>INSTANCE</span></i><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>.<span class=GramE>getExtensionToFactoryMap(</span>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span><span class=GramE>extensionFactoryMap.put(</span>UMLResource.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>FILE_EXTENSION</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>,</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>UMLResource.Factory.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>INSTANCE</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:.25in;mso-layout-grid-align:none;
-text-autospace:none'><span style='mso-tab-count:1'>      </span><!--[if gte vml 1]><v:shape
- id="_x0000_i1048" type="#_x0000_t75" style='width:18pt;height:9.75pt'
- o:bullet="t">
- <v:imagedata src="" o:title="tag_1"/>
-</v:shape><![endif]--><span style='font-size:10.0pt;font-family:"Courier New";
-color:black'><span style='mso-tab-count:1'>   </span><span class=GramE>extensionFactoryMap.put(</span>Ecore2XMLResource.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>FILE_EXTENSION</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>,</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>Ecore2XMLResource.Factory.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>INSTANCE</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:.25in;mso-layout-grid-align:none;
-text-autospace:none'><span style='mso-tab-count:1'>      </span><!--[if gte vml 1]><v:shape
- id="_x0000_i1049" type="#_x0000_t75" style='width:18pt;height:9.75pt'
- o:bullet="t">
- <v:imagedata src="guide_files/image003.gif" o:title="tag_2"/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=24 height=13
-src="guide_files/image003.gif" alt="*" v:shapes="_x0000_i1049"><![endif]><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:1'>   </span><span class=GramE>extensionFactoryMap.put(</span>UML22UMLResource.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>FILE_EXTENSION</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>,</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>UML22UMLResource.Factory.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>INSTANCE</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>
-
-<pre style='margin-left:9.0pt'><span style='color:black'><span
-style='mso-tab-count:1'>      </span>}<o:p></o:p></span></pre><pre
-style='margin-left:9.0pt'><span style='color:black'><o:p>&nbsp;</o:p></span></pre>
-
-<p class=MsoNormal>In the function above, we register the <!--[if gte vml 1]><v:shape
- id="_x0000_i1050" type="#_x0000_t75" style='width:18pt;height:9.75pt'>
- <v:imagedata src="" o:title="tag_1"/>
-</v:shape><![endif]--><span style='mso-spacerun:yes'> </span>.ecore2xml and <!--[if gte vml 1]><v:shape
- id="_x0000_i1051" type="#_x0000_t75" style='width:18pt;height:9.75pt'>
- <v:imagedata src="guide_files/image003.gif" o:title="tag_2"/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=24 height=13
-src="guide_files/image003.gif" v:shapes="_x0000_i1051"><![endif]><span
-style='mso-spacerun:yes'> </span>.uml2 extensions used by the resource set for
-conversion purposes.</p>
-
-<pre style='margin-left:9.0pt'><span style='color:black'><o:p>&nbsp;</o:p></span></pre><pre
-style='margin-left:9.0pt'><span style='color:black'><o:p>&nbsp;</o:p></span></pre>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><b><span
-style='color:black'><span style='mso-tab-count:1'>            </span></span></b><span
-class=GramE><b><span style='font-size:10.0pt;font-family:"Courier New";
-color:#7F0055'>protected</span></b></span><span style='font-size:10.0pt;
-font-family:"Courier New";color:black'> </span><b><span style='font-size:10.0pt;
-font-family:"Courier New";color:#7F0055'>static</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> </span><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>void</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>
-registerPackages(ResourceSet resourceSet) {</span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>Map packageRegistry = <span
-class=GramE>resourceSet.getPackageRegistry(</span>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span><span class=GramE>packageRegistry.put(</span>EcorePackage.</span><i><u><span
-style='font-size:10.0pt;font-family:"Courier New";color:blue'>eNS_URI</span></u></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>, EcorePackage.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>eINSTANCE</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span><span class=GramE>packageRegistry.put(</span>Ecore2XMLPackage.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>eNS_URI</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>,</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>Ecore2XMLPackage.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>eINSTANCE</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span><span class=GramE>packageRegistry.put(</span>UMLPackage.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>eNS_URI</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>, UMLPackage.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>eINSTANCE</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<pre style='margin-left:9.0pt'><span style='color:black'><span
-style='mso-tab-count:1'>      </span>}<o:p></o:p></span></pre><pre
-style='margin-left:9.0pt'><span style='color:black'><o:p>&nbsp;</o:p></span></pre>
-
-<p class=MsoNormal>Stand alone applications require registration of
-Packages.<span style='mso-spacerun:yes'>  </span>Eclipse based plugins are not
-required to register packages since packages are registered via an extension.</p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h3 style='margin-left:0in;text-indent:0in'>Migration</h3>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal>Now we get to the interesting part.<span
-style='mso-spacerun:yes'>  </span></p>
-
-<pre style='margin-left:9.0pt'><span style='color:black'><o:p>&nbsp;</o:p></span></pre>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'><span
-style='mso-tab-count:1'>      </span></span></b><b><span lang=IT
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055;mso-ansi-language:
-IT'>public</span></b><span lang=IT style='font-size:10.0pt;font-family:"Courier New";
-color:black;mso-ansi-language:IT'> </span><b><span lang=IT style='font-size:
-10.0pt;font-family:"Courier New";color:#7F0055;mso-ansi-language:IT'>static</span></b><span
-lang=IT style='font-size:10.0pt;font-family:"Courier New";color:black;
-mso-ansi-language:IT'> </span><b><span lang=IT style='font-size:10.0pt;
-font-family:"Courier New";color:#7F0055;mso-ansi-language:IT'>void</span></b><span
-lang=IT style='font-size:10.0pt;font-family:"Courier New";color:black;
-mso-ansi-language:IT'> migrateModel(URI resourceURI, URI umlPluginURI,</span><span
-lang=IT style='font-size:10.0pt;font-family:"Courier New";mso-ansi-language:
-IT'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-lang=IT style='font-size:10.0pt;font-family:"Courier New";color:black;
-mso-ansi-language:IT'><span style='mso-tab-count:3'>                  </span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>URI
-umlResourcePluginURI) {</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span><span class=GramE>System.<i><span
-style='color:#0000C0'>out</span></i>.println(</span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;Migrating
-file &quot;</span><span style='font-size:10.0pt;font-family:"Courier New";
-color:black'> + resourceURI.toFileString());</span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>ResourceSet resourceSet = </span><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>new</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> <span
-class=GramE>ResourceSetImpl(</span>);</span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:1'>      </span></span><!--[if gte vml 1]><v:shape id="_x0000_i1052"
- type="#_x0000_t75" style='width:18pt;height:9.75pt' o:bullet="t">
- <v:imagedata src="" o:title="tag_1"/>
-</v:shape><![endif]--><span style='font-size:10.0pt;font-family:"Courier New";
-color:black'><span style='mso-tab-count:1'>   </span><span class=GramE><i>registerPathmaps</i>(</span>umlResourcePluginURI);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span><span class=GramE><i>registerPackages</i>(</span>resourceSet);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span><span class=GramE><i>registerExtensions</i>(</span>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span></span><span style='font-size:10.0pt;
-font-family:"Courier New";color:#3F7F5F'>// Map references to legacy (1.x) model
-elements to their new locations.</span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>Map uriMap = <span class=GramE>UML22UMLExtendedMetaData.<i>getURIMap</i>(</span>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span><span class=GramE>resourceSet.getURIConverter(</span>).getURIMap().putAll(uriMap);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span></span><span style='font-size:10.0pt;
-font-family:"Courier New";color:#3F7F5F'>// <span class=GramE>For</span> a
-stand alone application, it is necessary to map the platform</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span></span><span style='font-size:10.0pt;
-font-family:"Courier New";color:#3F7F5F'>// plugin URI scheme to the workspace
-location.</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>URIConverter.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>URI_<span
-class=GramE>MAP<span style='color:black;font-style:normal'>.put(</span></span></span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>URI</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>.<span class=GramE><i>createURI</i>(</span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;platform:/plugin/org.eclipse.uml2.uml/&quot;</span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>),
-umlPluginURI);</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span></span><span style='font-size:10.0pt;
-font-family:"Courier New";color:#3F7F5F'>// Load a resource in the resource
-set.</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span></span><span class=GramE><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>try</span></b></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> {</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:.25in;mso-layout-grid-align:none;
-text-autospace:none'><span style='mso-tab-count:1'>      </span><!--[if gte vml 1]><v:shape
- id="_x0000_i1053" type="#_x0000_t75" style='width:18pt;height:9.75pt'
- o:bullet="t">
- <v:imagedata src="guide_files/image003.gif" o:title="tag_2"/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=24 height=13
-src="guide_files/image003.gif" alt="*" v:shapes="_x0000_i1053"><![endif]><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>         </span><span class=GramE>resourceSet.getResource(</span>resourceURI,
-</span><b><span style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>true</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>} </span><b><span style='font-size:
-10.0pt;font-family:"Courier New";color:#7F0055'>catch</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> (Exception e) {</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span><span class=GramE>System.<i><span
-style='color:#0000C0'>out</span></i>.println(</span>e.getMessage());</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span></span><span class=GramE><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>return</span></b></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>;</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>}</span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span></span><span style='font-size:10.0pt;
-font-family:"Courier New";color:#3F7F5F'>// Replace the .uml2 extension with
-.uml if necessary.</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>Map resourceToURIMap = </span><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>new</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> <span
-class=GramE>HashMap(</span>);</span><span style='font-size:10.0pt;font-family:
-"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>EList resources = <span class=GramE>resourceSet.getResources(</span>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:1'>      </span></span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:.25in;mso-layout-grid-align:none;
-text-autospace:none'><span style='mso-tab-count:1'>      </span><!--[if gte vml 1]><v:shape
- id="_x0000_i1054" type="#_x0000_t75" style='width:18pt;height:9.75pt'
- o:bullet="t">
- <v:imagedata src="" o:title="tag_3"/>
-</v:shape><![endif]--><span style='font-size:10.0pt;font-family:"Courier New";
-color:black'><span style='mso-tab-count:1'>   </span></span><span class=GramE><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>for</span></b></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> (</span><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>int</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> i = 0; i &lt;
-resources.size(); i++) {</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>Resource resource = (Resource)
-<span class=GramE>resources.get(</span>i);</span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>URI uri = <span class=GramE>resource.getURI(</span>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span></span><span class=GramE><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>if</span></b></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>
-(UML22UMLResource.</span><i><span style='font-size:10.0pt;font-family:"Courier New";
-color:#0000C0'>FILE_EXTENSION</span></i><span style='font-size:10.0pt;
-font-family:"Courier New";color:black'>.equals(uri.fileExtension())) {</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:4'>                        </span><span class=GramE>uri</span>
-= uri.trimFileExtension().appendFileExtension(</span><span style='font-size:
-10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:5'>                              </span>UMLResource.</span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:#0000C0'>FILE_EXTENSION</span></i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:4'>                        </span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#3F7F5F'>// <span
-class=GramE>resolveAll(</span>) will cause any referenced models to be loaded</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:4'>                        </span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#3F7F5F'>// and
-migrated.</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:4'>                        </span><span class=GramE>EcoreUtil.<i>resolveAll</i>(</span>resource);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>}</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span><span class=GramE>resourceToURIMap.put(</span>resource,
-uri);</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>}</span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span></span><span style='font-size:10.0pt;
-font-family:"Courier New";color:#3F7F5F'>// Update all the resources with
-updated extension at this point, </span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span></span><span style='font-size:10.0pt;
-font-family:"Courier New";color:#3F7F5F'>// references to these newly named resource
-items will get updated</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span></span><span class=GramE><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>for</span></b></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> (Iterator
-entries = resourceToURIMap.entrySet().iterator(); entries</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>.<span class=GramE>hasNext(</span>);)
-{</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>Map.Entry entry = (Map.Entry) <span
-class=GramE>entries.next(</span>);</span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>Resource saveResource =
-(Resource) <span class=GramE>entry.getKey(</span>);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span><span class=GramE>saveResource.setURI(</span>(URI)
-entry.getValue());</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>}</span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span></span><span style='font-size:10.0pt;
-font-family:"Courier New";color:#3F7F5F'>// Save all resources.<span
-style='mso-spacerun:yes'>  </span>We must save all resource after renaming </span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span></span><span style='font-size:10.0pt;
-font-family:"Courier New";color:#3F7F5F'>// them so that references to newly
-named resource are correctly saved.</span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span></span><span class=GramE><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>for</span></b></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> (</span><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>int</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> j = 0; j &lt;
-resources.size(); j++) {</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>Resource saveResource =
-(Resource) <span class=GramE>resources.get(</span>j);</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>String saveScheme = <span
-class=GramE>saveResource.getURI(</span>).scheme();</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span></span><span class=GramE><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>if</span></b></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> (!URI.<i>isArchiveScheme</i>(saveScheme)</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:4'>                        </span>&amp;<span class=GramE>&amp;
-!</span>saveScheme.equals(</span><span style='font-size:10.0pt;font-family:
-"Courier New";color:#2A00FF'>&quot;pathmap&quot;</span><span style='font-size:
-10.0pt;font-family:"Courier New";color:black'>)) {</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:4'>                        </span></span><span
-class=GramE><b><span style='font-size:10.0pt;font-family:"Courier New";
-color:#7F0055'>try</span></b></span><span style='font-size:10.0pt;font-family:
-"Courier New";color:black'> {</span><span style='font-size:10.0pt;font-family:
-"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:.25in;mso-layout-grid-align:none;
-text-autospace:none'><span style='mso-tab-count:1'>      </span><!--[if gte vml 1]><v:shape
- id="_x0000_i1055" type="#_x0000_t75" style='width:18pt;height:9.75pt'
- o:bullet="t">
- <v:imagedata src="" o:title="tag_4"/>
-</v:shape><![endif]--><span style='font-size:10.0pt;font-family:"Courier New";
-color:black'><span style='mso-tab-count:4'>                     </span><span
-class=GramE>saveResource.save(</span></span><b><span style='font-size:10.0pt;
-font-family:"Courier New";color:#7F0055'>null</span></b><span style='font-size:
-10.0pt;font-family:"Courier New";color:black'>);</span><span style='font-size:
-10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:5'>                              </span><span class=GramE>System.<i><span
-style='color:#0000C0'>out</span></i>.println(</span></span><span
-style='font-size:10.0pt;font-family:"Courier New";color:#2A00FF'>&quot;Saving
-migrated resource: &quot;</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:6'>                                    </span>+ <span
-class=GramE>saveResource.getURI(</span>).toString());</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:4'>                        </span>} </span><b><span
-style='font-size:10.0pt;font-family:"Courier New";color:#7F0055'>catch</span></b><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'> (IOException
-ioe) {</span><span style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:5'>                              </span><span class=GramE>System.<i><span
-style='color:#0000C0'>out</span></i>.println(</span>ioe.getMessage());</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:4'>                        </span>}</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:3'>                  </span>}</span><span
-style='font-size:10.0pt;font-family:"Courier New"'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='mso-layout-grid-align:none;text-autospace:none'><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><span
-style='mso-tab-count:2'>            </span>}</span><span style='font-size:10.0pt;
-font-family:"Courier New"'><o:p></o:p></span></p>
-
-<pre style='margin-left:9.0pt'><span style='color:black'><span
-style='mso-tab-count:1'>      </span>}<o:p></o:p></span></pre><pre
-style='margin-left:9.0pt'><span style='color:black'><o:p>&nbsp;</o:p></span></pre>
-
-<p class=MsoNormal>First, we register all required pathmaps, packages and
-extensions <!--[if gte vml 1]><v:shape id="_x0000_i1056" type="#_x0000_t75"
- style='width:18pt;height:9.75pt'>
- <v:imagedata src="" o:title="tag_1"/>
-</v:shape><![endif]--><span style='mso-spacerun:yes'> </span>required <span
-class=GramE>for a stand-alone applications</span>.<span
-style='mso-spacerun:yes'>  </span>Next, we simply call upon the resource set <!--[if gte vml 1]><v:shape
- id="_x0000_i1057" type="#_x0000_t75" style='width:18pt;height:9.75pt'>
- <v:imagedata src="guide_files/image003.gif" o:title="tag_2"/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=24 height=13
-src="guide_files/image003.gif" v:shapes="_x0000_i1057"><![endif]><span
-style='mso-spacerun:yes'> </span>to open the file.<span
-style='mso-spacerun:yes'>  </span>The previously registered mappings will be
-used when opening the resource.<span style='mso-spacerun:yes'>   </span>After
-the call to <span class=GramE>getResource(</span>) the code is migrated in
-memory.<span style='mso-spacerun:yes'>  </span>The only thing left to do before
-saving back out to disk is to <!--[if gte vml 1]><v:shape id="_x0000_i1058"
- type="#_x0000_t75" style='width:18pt;height:9.75pt'>
- <v:imagedata src="" o:title="tag_3"/>
-</v:shape><![endif]--><span style='mso-spacerun:yes'> </span>change the
-extension from .uml2 to .uml.<span style='mso-spacerun:yes'>  </span>And
-finally <!--[if gte vml 1]><v:shape id="_x0000_i1059" type="#_x0000_t75"
- style='width:18pt;height:9.75pt'>
- <v:imagedata src="" o:title="tag_4"/>
-</v:shape><![endif]--><span style='mso-spacerun:yes'> </span>save to disk.</p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h2>API Migration</h2>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>Arguably, the most difficult part of the migration process
-will be migration of the code base.&nbsp; To scope out the amount of work
-required for such a migration, a table of some common tasks has been
-provided.&nbsp; </p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>Keep the following points in mind as you try to gauge the
-scope of API migration:</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Description</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border:solid black 1.0pt;
-  border-left:none;background:black;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Note</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Namespace changed from <b><i>org.eclipse.uml2</i></b>
-  to <b><i>org.eclipse.uml2.uml</i></b></span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><i><span style='font-size:9.0pt'>&nbsp;</span></i></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Custom operations specified in
-  Metadata – the practical result is that Sets in the API have been replaced
-  with Lists</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Different handling of
-  derived properties and sub-collections</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>The compiler wonÂ’t break on
-  index based iteration but failure to fix them would result in poor performance.</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Three default profiles have
-  been replaced with one standard profile</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>There have been some minor
-  changes in the content of the profiles as well</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:5'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Stereotype applications are now
-  stored at the resource level instead of as annotations on the elements
-  themselves</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:6'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Required stereotypes are now
-  actually automatically applied</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Significant performance
-  improvement</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:7'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Specification defined
-  support for stereotype owned images/icons</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:8;height:31.0pt'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt;height:31.0pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Navigability of association
-  ends has been separated from ownership</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:31.0pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:9'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Opaque Expression now
-  supports multiple languages and bodies</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:10'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>OCL is considered now
-  default language for Opaque Expressions </span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>language does not have to be
-  specified</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:11'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Many OCL constraints have
-  been changed</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:12'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Number of metaclasses&nbsp;
-  and properties&nbsp; have been renamed or removed</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><i><span style='font-size:9.0pt'>&nbsp;</span></i></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:13'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>New metaclasses (18),
-  properties (25) and operations (4).</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Mostly in following areas:</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol'>·</span><span style='font-size:
-  7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span
-  style='font-size:9.0pt'>Actions</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol'>·</span><span style='font-size:
-  7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span
-  style='font-size:9.0pt'>Behaviors</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol'>·</span><span style='font-size:
-  7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span
-  style='font-size:9.0pt'>Events</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:14'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Multiplicity of some
-  properties changed.</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:15'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>Stereotype attributes can
-  now reference metaclasses</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:16'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>UMLUtil class has utility
-  methods to perform Package Merge</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:17'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>EMF support for logical
-  resources</span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:18;mso-yfti-lastrow:yes'>
-  <td width=367 valign=top style='width:275.4pt;border:solid black 1.0pt;
-  border-top:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>UMLUtil class has improved
-  utility methods for export/import to Ecore format</span></p>
-  </td>
-  <td width=300 valign=top style='width:225.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoBodyText>You will likely notice two classes of problems during the
-migration process:&nbsp; those cases where there is a simple 1-1 mapping between
-an old concept and a new concept, and, those cases that require a rework of the
-logic in your code.</p>
-
-<p class=MsoBodyText>These more difficult mappings will require a deeper
-understanding of subject matter than this document can fully describe.&nbsp;
-&nbsp;For partial explanations refer to the section entitled <a
-href="#_Superstructure_Specification_change">Superstructure Specification
-Changes</a> or refer to the actual Superstructure specification for a more
-complete explanation.</p>
-
-<p class=MsoBodyText>Convenience methods regarding manipulation of profiles:</p>
-
-<p class=MsoListBullet2 style='mso-list:l217 level1 lfo384;tab-stops:list .75in'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>To ensure the latest version of
-the profile is applied, there are newly introduced convenience
-methods.&nbsp;&nbsp; Simply call </span><span style='font-family:"Courier New"'>ProfileApplication#<span
-class=GramE>getAppliedDefinition(</span>)</span> and compare the result to <span
-style='font-family:"Courier New"'>Profile#getDefinition()</span>.&nbsp; <span
-style='font-family:"Courier New"'>Profile#<span class=GramE>getDefinition(</span>)</span>
-will always return the latest version.</p>
-
-<p class=MsoBodyText>&nbsp;</p>
-
-<p class=MsoBodyText><a name="_Semantic_changes"></a><a
-name="_7637_Additional_events"></a>The tables below provide the basis of API
-migration work.&nbsp; They summarize the changes to the metamodel and give you
-an understanding of the kind of modifications required: </p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Issue</span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Item</span></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Metaclasses</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <b><i><span style='font-size:10.0pt;font-family:Helvetica'>Added</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ActionExecutionSpecification
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ActionInputPin
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>BehaviorExecutionSpecification
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ConsiderIgnoreFragment
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>CreationEvent
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>DestructionEvent
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>SendOperationEvent
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Event </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ExecutionEvent
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ExecutionOccurrenceSpecification
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ExecutionSpecification
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>FunctionBehavior</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Image </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>MessageOccurrenceSpecification
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>OpaqueAction</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>OpaqueBehavior</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>SequenceNode</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>UnmarshallAction</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ValueSpecificationAction</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>MessageEvent
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>SendSignalEvent
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>CallEvent </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ChangeEvent</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>SignalEvent</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>AnyReceiveEvent</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>LinkEndDestructionData</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>StartClassifierBehaviorAction</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ComponentRealization</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>TimeEvent</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Metaclasses</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>: </span></b></p>
-  <p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <b><i><span style='font-size:10.0pt;font-family:Helvetica'>Removed</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ApplyFunctionAction</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Permission</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>PrimitiveFunction</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Stop</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>MessageTrigger
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>CallTrigger
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ChageTrigger
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>SignalTrigger
-  </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>AnyTrigger </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>TimeTrigger</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ParameterableClassifier</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>TemplateableClassifier</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>RemoveVariableValueAction</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>StartOwnedBehaviorAction</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Metaclasses</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>: </span></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <i>Renamed</i></span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>CollaborationOccurrence
-  -&gt; &nbsp;&nbsp;&nbsp;&nbsp; CollaborationUse&nbsp;&nbsp; </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>EventOccurrence
-  -&gt;
-  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  ExecutionOccurrenceSpecification </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ExecutionOccurrence
-  -&gt; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  ExecutionSpecification </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Implementation
-  -&gt;
-  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  InterfaceRealization&nbsp; </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>InteractionOccurrence
-  -&gt;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  InteractionUse&nbsp; </span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>StartOwnedBehaviorAction
-  -&gt;&nbsp;&nbsp; StartClassifierBehaviorAction</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Metaclasses</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>: </span></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <i>Made Abstract</i></span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Action</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ExecutionOccurrence</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:9.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:5;mso-yfti-lastrow:yes'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Metaclasses</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>: </span></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <i>Made Concrete</i></span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Trigger</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal style='margin-left:.75pt;line-height:12.0pt;text-autospace:
-none'><span style='font-size:10.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<p class=MsoNormal style='margin-left:.75pt;line-height:12.0pt;text-autospace:
-none'><span style='font-size:10.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Issue</span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Item</span></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Properties</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <i>Added</i></span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>AcceptEventAction::isUnmarshall
-  : Boolean = false</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Activity::<span
-  class=GramE>variable :</span> Variable [0..*]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Association::<span
-  class=GramE>navigableOwnedEnd :</span> Property [0..*]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>BehavioralFeature::<span
-  class=GramE>ownedParameterSet :</span> ParameterSet [0..*]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>DestroyLinkAction::<span
-  class=GramE>endData :</span> LinkEndDesctructionData [2..*]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>EventOccurrence::event
-  : Event [1..1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ExecutionOccurrence::action
-  : Action [0..1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>InformationFlow::<span
-  class=GramE>realizingActivityEdge :</span> ActivityEdge [0..*]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>InformationFlow::<span
-  class=GramE>realizingConnector :</span> Connector [0..*]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>InformationFlow::<span
-  class=GramE>realizingMessage :</span> Message [0..*]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>InformationFlow::source:
-  NamedElement [1<span class=GramE>..*</span>]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>InformationFlow::target:
-  NamedElement [1<span class=GramE>..*</span>]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>MessageEnd::message
-  : Message [1..1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ObjectNode::isControlType
-  : Boolean = false</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Operation::interface
-  : Interface [0..1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Pin::isControl
-  : Boolean</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>RemoveStructuralFeatureValueAction::isRemoveDuplicates
-  : Boolean</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>RemoveStructuralFeatureValueAction::removeAt
-  : InputPin [0..1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>RemoveVariableValueAction::isRemoveDuplicates
-  : Boolean</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>RemoveVariableValueAction::removeAt
-  : InputPin [0..1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>State::<span
-  class=GramE>connectionPoint :</span> Pseudostate [0..*]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Stereotype::<span
-  class=GramE>icon :</span> Image [0..*]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Trigger::event
-  : Event [1..1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Variable::activityScope
-  : Activity [0..1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ExtensionPoint::useCase
-  : UseCase[1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>RemoveVariableValueAction::isRemoveDuplicates:Boolean</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>RemoveVariableValueAction::removeAt:
-  InputPin</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Properties</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <i>Removed</i></span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Behavior::formalParameter</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Behavior::parameter</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Behavior::returnResult</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>BehavioralFeature::parameter</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>BehavioralFeature::returnResult</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>BehavioredClassifier::ownedStateMachine</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>EventOccurrence::finishExec</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>EventOccurrence::startExec</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>MessageEnd::sendMessage</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>MessageEnd::receiveMessage</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Package::packageExtension</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>StructuralFeature::isReadOnly</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol'>·</span><span
-  style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>NamedElement::namespace</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol'>·</span><span
-  style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Comment::bodyExpression
-  *</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Properties</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <i>Renamed</i></span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>BehavioralFeature::formalParameter
-  -&gt; ownedParameter</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>BehavioredClassifier::implementation
-  -&gt; interfaceRealization</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Classifier::occurrence
-  -&gt; collaborationUse</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol'>·</span><span
-  style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>PackageMerge::mergingPackage
-  -&gt; receivingPackage</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4;mso-yfti-lastrow:yes'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Properties</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <i>Type Changed</i></span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ReplyAction::replyToCall
-  : CallTrigger -&gt; Trigger</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:10.0pt;font-family:Symbol'>·</span><span
-  style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal style='margin-left:.75pt;line-height:12.0pt;text-autospace:
-none'><span style='font-size:10.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<p class=MsoNormal style='margin-left:.75pt;line-height:12.0pt;text-autospace:
-none'><span style='font-size:10.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Issue</span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Item</span></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Properties</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  Made d<i>erived</i></span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:10.0pt;font-family:Symbol'>·</span><span
-  style='font-size:7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>Behavior::context</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Properties</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <i>Made navigable</i></span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ConnectionPointReference::state</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Pseudostate::stateMachine</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Properties</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <i>Made ordered</i></span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ApplyFunctionAction::argument</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Association::endType</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>CombinedFragment::operand</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ConnectableElement::end</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>InteractionOccurrence::argument</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Message::argument</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>StructuredClassifier::ownedAttribute</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>TemplateSignature::parameter</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>DataType::ownedAttribute</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>DataType::ownedOperation</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>OpaqueAction::body</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>OpaqueAction::language</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>LoopNode::result</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>LoopNode::loopVariable</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4;mso-yfti-lastrow:yes;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Properties</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <i>Multiplicities changed</i></span></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>List&nbsp; to Scalar</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></i></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv'>Scalar to List</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>AcceptCallAction::trigger
-  : CallTrigger [0..*] -&gt; 1..1</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>AcceptEventAction::<span
-  class=GramE>trigger :</span> Trigger [0..*] -&gt; 1..*</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ConnectorEnd::role
-  : ConnectableElement [0..1] -&gt; 1..1</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Lifeline::represents
-  : ConnectableElement [1..1] -&gt; 0..1</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Variable::scope
-  : StructuredActivityNode [1..1] -&gt; 0..1</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ConnectionPointReference::<span
-  class=GramE>entry :</span> Elist[1..*]-&gt; *</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ConnectionPointReference::<span
-  class=GramE>exit :</span> Elist[1..*]-&gt;*</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>InstanceSpecification::specification
-  : ValueSpecification::[0..1] -&gt;1</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>BehaviorExecutionSpecification::behavior
-  : Behavior [1] -&gt; 0..1</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Message::message[1]-&gt;[0..1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ConnectionPointReference::<span
-  class=GramE>entry :</span> Pseudostate[1..*]-&gt;[*]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ConnectionPointReference::<span
-  class=GramE>exit :</span> Pseudostate[1..*]-&gt;[*]</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>DurationObservationAction::duration[*]
-  -&gt;[1]&nbsp; </span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ExecutionOccurrence::behavior
-  : Behavior[0..*] </span><span style='font-size:9.0pt;font-family:"Courier New";
-  color:black'>à</span><span style='font-size:9.0pt;font-family:Helv;
-  color:black'> BehaviorExecutionSpecification::behavior[0..1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Interval::min:
-  ValueSpecification[0..*] -&gt; [1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Interval::max:
-  ValueSpecification[0..*]-&gt;[1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>TimeObservationAction::now[*]
-  -&gt;[1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>EventOccurrence::startExec[*]
-  -&gt; ExecutionSpecification::start: ExecutionOccurrence[1]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>EventOccurrence::finishExec[*]
-  -&gt; ExecutionSpecification::finish:ExecutionOccurrence[1]</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Activity::<span
-  class=GramE>body :</span> String[1] -&gt; OpaqueBehavior::body:String[1..*]</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>OpaqueExpression::<span
-  class=GramE>body :</span> String [0..1] -&gt; 1..*</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>OpaqueExpression::<span
-  class=GramE>language :</span> String [0..1] -&gt; 0..*</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Issue</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Item</span></i></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2;mso-yfti-lastrow:yes;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Default Values</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <b><i><span style='font-size:10.0pt;font-family:Helvetica'>Specified</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>CallAction.isSynchronous
-  = true </span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal style='margin-left:18.75pt;line-height:12.0pt;text-autospace:
-none'><span style='font-size:10.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Issue</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Item</span></i></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2;mso-yfti-lastrow:yes;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Operations</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <b><i><span style='font-size:10.0pt;font-family:Helvetica'>Added</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Property::isNavigable()
-  : Boolean</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Region::containingStateMachine()
-  : StateMachine</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Transition::containingStateMachine()
-  : StateMachine</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Vertex::containingStateMachine()
-  : StateMachine</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal style='margin-left:18.75pt;line-height:12.0pt;text-autospace:
-none'><span style='font-size:10.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Issue</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Item</span></i></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Enumerations</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <b><i><span style='font-size:10.0pt;font-family:Helvetica'>Renamed</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol'>·</span><span style='font-size:
-  7.0pt'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; </span><span
-  style='font-size:9.0pt;font-family:Helvetica'>InteractionOperator</span><span
-  style='font-size:9.0pt'> -&gt; InteractionOperatorKind</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2;mso-yfti-lastrow:yes'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Enumerations</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>: </span></b></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <i>Removed</i></span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>MessageSort::synchSignal</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal style='margin-left:18.75pt;line-height:12.0pt;text-autospace:
-none'><span style='font-size:10.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Issue</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><i><span
-  style='font-size:10.0pt;font-family:Helv;color:white'>Item</span></i></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><b><u><span
-  style='font-size:10.0pt;font-family:Helv'>Specializations</span></u></b><b><span
-  style='font-size:10.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <b><i><span style='font-size:10.0pt;font-family:Helvetica'>Added</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ChangeTrigger
-  :: Event</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>MessageTrigger
-  :: Event</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>TimeTrigger
-  :: Event</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>StringExpression
-  :: Expression</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in;line-height:
-  12.0pt;text-autospace:none'><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>ValueSpecification
-  :: PackageableElement</span></p>
-  <p class=MsoNormal style='line-height:12.0pt;text-autospace:none'><span
-  style='font-size:10.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<h2>FAQ</h2>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal><b>Q.</b> What does <span style='font-family:"Courier New"'>MultiplicityElement.UNLIMITED_UPPER_BOUND</span>
-map to?</p>
-
-<p class=MsoNormal><b>A.</b>&nbsp; <span style='font-family:"Courier New"'>LiteralUnlimitedNatureal.UNLIMITED</span>.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal><b>Q.</b> What does Activity::body map to?</p>
-
-<p class=MsoNormal><b>A</b>.&nbsp; Create an OpaqueBehavior::body. Both
-OpaqueBehavior and Activity now are specializations of Behavior.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal><b>Q.</b> What is the difference between <span class=GramE><span
-style='font-family:"Courier New"'>getUpperBound(</span></span><span
-style='font-family:"Courier New"'>)</span> and <span style='font-family:"Courier New"'>getUpper()</span>
-and <span style='font-family:"Courier New"'>getUpperValue()</span> on a pin?</p>
-
-<p class=MsoNormal><b>A</b>. <span class=GramE><span style='font-family:"Courier New"'>getUpperBound(</span></span><span
-style='font-family:"Courier New"'>)</span> on a pin is a convenience method
-that deals with tokens.&nbsp; The <span class=GramE><span style='font-family:
-"Courier New"'>getUpper(</span></span><span style='font-family:"Courier New"'>)</span>
-and <span style='font-family:"Courier New"'>getUpperValue()</span> is part of <span
-style='font-family:"Courier New"'>MultiplicityElement</span>.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal><b>Q</b>. Empty string tests are no longer working for some
-UML items.</p>
-
-<p class=MsoNormal><b>A</b>. By default, strings are initialized to NULL and
-not empty string in UML2 2.0.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal><b>Q</b>. What do I do if I have more questions?</p>
-
-<p class=MsoNormal><b>A</b>. Post a message to the <a
-href="news://news.eclipse.org/eclipse.modeling.mdt.uml2">Modeling / MDT / UML2
-newsgroup at eclipse.org</a>. The turnaround time for questions posted on the
-newsgroup is usually less than 24 hours.</p>
-
-<p class=MsoNormal>&nbsp;</p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/filelist.xml b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/filelist.xml
deleted file mode 100644
index 3ea14b1..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/filelist.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:MainFile HRef="../guide.html"/>
- <o:File HRef="image002.jpg"/>
- <o:File HRef="image003.jpg"/>
- <o:File HRef="image004.jpg"/>
- <o:File HRef="image005.jpg"/>
- <o:File HRef="image006.jpg"/>
- <o:File HRef="image007.jpg"/>
- <o:File HRef="image008.jpg"/>
- <o:File HRef="image009.jpg"/>
- <o:File HRef="image010.jpg"/>
- <o:File HRef="image011.jpg"/>
- <o:File HRef="image012.jpg"/>
- <o:File HRef="image013.jpg"/>
- <o:File HRef="image014.jpg"/>
- <o:File HRef="image015.jpg"/>
- <o:File HRef="image016.jpg"/>
- <o:File HRef="image017.jpg"/>
- <o:File HRef="image018.jpg"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image002.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image002.jpg
deleted file mode 100644
index 6a197a4..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image002.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image003.gif b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image003.gif
deleted file mode 100644
index f1702fc..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image003.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image004.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image004.jpg
deleted file mode 100644
index 7652429..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image005.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image005.jpg
deleted file mode 100644
index b5203ea..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image005.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image006.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image006.jpg
deleted file mode 100644
index ab35ede..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image006.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image007.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image007.jpg
deleted file mode 100644
index ae3e6f8..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image007.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image008.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image008.jpg
deleted file mode 100644
index 58dfeb4..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image008.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image009.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image009.jpg
deleted file mode 100644
index 0ab6f57..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image009.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image010.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image010.jpg
deleted file mode 100644
index 6519603..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image010.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image011.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image011.jpg
deleted file mode 100644
index caace47..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image011.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image012.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image012.jpg
deleted file mode 100644
index 9fd37c0..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image012.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image013.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image013.jpg
deleted file mode 100644
index 73ef591..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image013.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image014.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image014.jpg
deleted file mode 100644
index 1f61419..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image014.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image015.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image015.jpg
deleted file mode 100644
index 37311ad..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image015.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image016.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image016.jpg
deleted file mode 100644
index 680365c..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image016.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image017.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image017.jpg
deleted file mode 100644
index 4134328..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image017.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image018.jpg b/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image018.jpg
deleted file mode 100644
index d1a3886..0000000
--- a/uml2/docs/guides/UML2_2.0_Migration_Guide/guide_files/image018.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.1_Migration_Guide/default_style.css b/uml2/docs/guides/UML2_2.1_Migration_Guide/default_style.css
deleted file mode 100644
index 2bbff30..0000000
--- a/uml2/docs/guides/UML2_2.1_Migration_Guide/default_style.css
+++ /dev/null
@@ -1,11 +0,0 @@
-p, table, td, th {  font-family: arial, helvetica, geneva; font-size: 10pt}

-pre {  font-family: "Courier New", Courier, mono; font-size: 10pt}

-h2 { font-family: arial, helvetica, geneva; font-size: 18pt; font-weight: bold ; line-height: 14px}

-code {  font-family: "Courier New", Courier, mono; font-size: 10pt}

-sup {  font-family: arial,helvetica,geneva; font-size: 10px}

-h3 {  font-family: arial, helvetica, geneva; font-size: 14pt; font-weight: bold}

-li {  font-family: arial, helvetica, geneva; font-size: 10pt}

-h1 {  font-family: arial, helvetica, geneva; font-size: 28px; font-weight: bold}

-body {  font-family: arial, helvetica, geneva; font-size: 10pt; clip:   rect(   ); margin-top: 5mm; margin-left: 3mm}

-.indextop { font-size: x-large;; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold}

-.indexsub { font-size: xx-small;; font-family: Arial, Helvetica, sans-serif; color: #8080FF}

diff --git a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide.html b/uml2/docs/guides/UML2_2.1_Migration_Guide/guide.html
deleted file mode 100644
index 7958777..0000000
--- a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide.html
+++ /dev/null
@@ -1,1184 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="guide_files/filelist.xml">
-<link rel=Preview href="guide_files/preview.wmf">
-<link rel=Edit-Time-Data href="guide_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>UML2 2.1 Migration Guide</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="country-region"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="place"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>jbruck, khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>jbruck</o:LastAuthor>
-  <o:Revision>2</o:Revision>
-  <o:TotalTime>23531</o:TotalTime>
-  <o:LastPrinted>2006-09-12T15:08:00Z</o:LastPrinted>
-  <o:Created>2007-07-19T20:38:00Z</o:Created>
-  <o:LastSaved>2007-07-19T20:38:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>1645</o:Words>
-  <o:Characters>9379</o:Characters>
-  <o:Company>IBM</o:Company>
-  <o:Lines>78</o:Lines>
-  <o:Paragraphs>22</o:Paragraphs>
-  <o:CharactersWithSpaces>11002</o:CharactersWithSpaces>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Tahoma;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:1627421319 -2147483648 8 0 66047 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-style-next:Normal;
-	margin-top:12.0pt;
-	margin-right:0in;
-	margin-bottom:3.0pt;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	page-break-after:avoid;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	mso-bidi-font-size:14.0pt;
-	font-family:Arial;
-	mso-bidi-font-family:"Times New Roman";
-	font-weight:bold;}
-p.MsoCaption, li.MsoCaption, div.MsoCaption
-	{mso-style-noshow:yes;
-	mso-style-next:Normal;
-	margin-top:6.0pt;
-	margin-right:0in;
-	margin-bottom:6.0pt;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:purple;
-	text-decoration:underline;
-	text-underline:single;}
-p.MsoDocumentMap, li.MsoDocumentMap, div.MsoDocumentMap
-	{mso-style-noshow:yes;
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	background:navy;
-	font-size:12.0pt;
-	font-family:Tahoma;
-	mso-fareast-font-family:"Times New Roman";}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-tt
-	{font-family:"Courier New";
-	mso-ascii-font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-hansi-font-family:"Courier New";
-	mso-bidi-font-family:"Courier New";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-ins
-	{mso-style-type:export-only;
-	text-decoration:none;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	border:solid windowtext 1.0pt;
-	mso-border-alt:solid windowtext .5pt;
-	padding:24.0pt 24.0pt 24.0pt 24.0pt;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:1169830533;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1364484028 67698703 67698713 67698715 67698703 67698713 67698715 67698703 67698713 67698715;}
-@list l0:level1
-	{mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level2
-	{mso-level-number-format:alpha-lower;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableSimple2
-	{mso-style-name:"Table Simple 2";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableSimple2FirstRow
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:first-row;
-	mso-tstyle-border-bottom:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2LastRow
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:last-row;
-	mso-tstyle-border-top:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2FirstCol
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:first-column;
-	mso-tstyle-border-right:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2LastCol
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:last-column;
-	mso-tstyle-border-left:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2NECell
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:ne-cell;
-	mso-tstyle-border-left:0in none windowtext;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2SWCell
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:sw-cell;
-	mso-tstyle-border-top:0in none windowtext;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableClassic1
-	{mso-style-name:"Table Classic 1";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	border-top:solid black 1.5pt;
-	border-left:none;
-	border-bottom:solid black 1.5pt;
-	border-right:none;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableClassic1FirstRow
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:first-row;
-	mso-tstyle-border-bottom:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-style:italic;
-	mso-bidi-font-style:italic;}
-table.MsoTableClassic1LastRow
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:last-row;
-	mso-tstyle-border-top:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;}
-table.MsoTableClassic1FirstCol
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:first-column;
-	mso-tstyle-border-right:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;}
-table.MsoTableClassic1NECell
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:ne-cell;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;
-	mso-ansi-font-style:normal;
-	mso-bidi-font-style:normal;}
-table.MsoTableClassic1SWCell
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:sw-cell;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableList1
-	{mso-style-name:"Table List 1";
-	mso-tstyle-rowband-size:1;
-	mso-tstyle-colband-size:0;
-	border-top:1.5pt;
-	border-left:1.0pt;
-	border-bottom:1.5pt;
-	border-right:1.0pt;
-	border-color:teal;
-	border-style:solid;
-	mso-border-top-alt:1.5pt;
-	mso-border-left-alt:.75pt;
-	mso-border-bottom-alt:1.5pt;
-	mso-border-right-alt:.75pt;
-	mso-border-color-alt:teal;
-	mso-border-style-alt:solid;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableList1FirstRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:first-row;
-	mso-tstyle-shading:white;
-	mso-tstyle-pattern:solid silver;
-	mso-tstyle-border-bottom:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:maroon;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;
-	mso-ansi-font-style:italic;
-	mso-bidi-font-style:italic;}
-table.MsoTableList1LastRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:last-row;
-	mso-tstyle-border-top:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;}
-table.MsoTableList1OddRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:odd-row;
-	mso-tstyle-shading:white;
-	mso-tstyle-pattern:solid silver;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;}
-table.MsoTableList1EvenRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:even-row;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;}
-table.MsoTableList1SWCell
-	{mso-style-name:"Table List 1";
-	mso-table-condition:sw-cell;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableList4
-	{mso-style-name:"Table List 4";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	border:solid black 1.5pt;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-border-insideh:.75pt solid black;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableList4FirstRow
-	{mso-style-name:"Table List 4";
-	mso-table-condition:first-row;
-	mso-tstyle-shading:white;
-	mso-tstyle-pattern:solid gray;
-	mso-tstyle-border-bottom:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]><!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="57346"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=purple style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<p class=MsoNormal align=right style='text-align:right'><span style='font-size:
-10.0pt'>Copyright © 2007 International Business Machines Corp.</span><span
-style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></p>
-
-<div align=right>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width="100%"
- style='width:100.0%;mso-cellspacing:0in;mso-padding-alt:1.5pt 1.5pt 1.5pt 1.5pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td valign=top style='background:#0080C0;padding:1.5pt 1.5pt 1.5pt 1.5pt'>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;font-family:Arial;
-  color:white'>&nbsp;</span></b><span style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></p>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<h1><img width=120 height=86 id="_x0000_i1025" src="../../../../images/Idea.jpg"
-align=CENTER></h1>
-
-<p>&nbsp;</p>
-
-<h1 align=center style='text-align:center'>UML2 2.1 Migration Guide</h1>
-
-<h1 align=center style='text-align:center'><o:p>&nbsp;</o:p></h1>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:Arial'>Summary</span></b><span
-style='font-size:10.0pt;font-family:Arial'><br style='mso-special-character:
-line-break'>
-<![if !supportLineBreakNewLine]><br style='mso-special-character:line-break'>
-<![endif]><o:p></o:p></span></p>
-
-<p>This guide looks at the most recent changes to the UML metamodel and
-attempts to guide the user through the migration implications.<span
-style='mso-spacerun:yes'>  </span>Relatively few changes have been made between
-UML 2.0 and UML 2.1 so there is not much for clients to do in preparation of the
-migration, however, clients still have to understand the implications. </p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p><b>By James Bruck, Kenneth Hussey IBM</b><br>
-<st1:date Month="7" Day="19" Year="2007">July 19, 2007</st1:date> </p>
-
-</blockquote>
-
-<div class=MsoNormal align=center style='text-align:center'><span
-style='font-size:10.0pt;font-family:Arial'>
-
-<hr size=2 width="100%" align=center>
-
-</span></div>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2>Glossary</h2>
-
-<p>A few terms and abbreviations will be used throughout this document.</p>
-
-<table class=MsoTableList4 border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-alt:solid black 1.5pt;
- mso-yfti-tbllook:160;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-insideh:
- .75pt solid black'>
- <tr style='mso-yfti-irow:-1'>
-  <td width=168 valign=top style='width:125.75pt;border:solid black 1.5pt;
-  border-right:none;background:gray;mso-shading:white;mso-pattern:solid gray;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:1'><b><span style='color:white'>Term<o:p></o:p></span></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border:solid black 1.5pt;
-  border-left:none;background:gray;mso-shading:white;mso-pattern:solid gray;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:1'><b><span style='color:white'>Definition<o:p></o:p></span></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:0'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.0pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-left-alt:solid black 1.5pt;mso-border-bottom-alt:solid black .75pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>UML2 2.1<o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;mso-border-right-alt:solid black 1.5pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p>Latest version of the API.</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.0pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-left-alt:solid black 1.5pt;mso-border-bottom-alt:solid black .75pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>UML2 2.0.4<o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;mso-border-right-alt:solid black 1.5pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p>Maintenance version. Based on older UML2 2.0 version but supports opening
-  of 2.1 models.</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.5pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>OMG issue 10536<o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p><a href="http://www.omg.org/issues/uml2-rtf.html#Issue10536">http://www.omg.org/issues/uml2-rtf.html#Issue10536</a></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.5pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>OMG issue 10537<o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p><a href="http://www.omg.org/issues/uml2-rtf.html#Issue10537">http://www.omg.org/issues/uml2-rtf.html#Issue10537</a></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4;mso-yfti-lastrow:yes'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.5pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>UML2<o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p>UML2 2.1. This refers to the latest version of the UML API which is based
-  on the UML 2.1.1 specification defined by OMG available at
-  http://www.omg.org/cgi-bin/doc?formal/07-02-05.</p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2>Introduction</h2>
-
-<p>The underlying motivation behind metamodel changes in the UML2 2.1 release has
-to do with fixing problems that were discovered while trying to implement
-redefinition, however, there are more fundamental problems regarding the impact
-that bidirectional associations in the metamodel have on modeling in practice.<span
-style='mso-spacerun:yes'>  </span>The bidirectional associations in question
-are the ones between Transition and Vertex specifying incoming/outgoing and
-source/target, and also, the one between <span class=SpellE>ConnectorEnd</span>
-and Connector specifying ends and roles ( refer to: <i><span style='color:black'><ins
-cite="mailto:Bran%20Selic" datetime="2007-04-05T10:33">Superstructure
-(ptc/07-02-05)</ins>, </span></i>p.164 <ins cite="mailto:Bran%20Selic"
-datetime="2007-04-05T10:33">figure </ins>9.4 and<span style='color:black'><ins
-cite="mailto:Bran%20Selic" datetime="2007-04-05T10:33"> </ins>p.</span><ins
-cite="mailto:Bran%20Selic" datetime="2007-04-05T10:33">521 figure 15.2</ins> )<ins
-cite="mailto:Bran%20Selic" datetime="2007-04-05T10:33"><o:p></o:p></ins></p>
-
-<p>These associations make practical use of the API/metamodel difficult since
-for example changing the source or target of a transition in a specializing
-context would cause the incoming/outgoing of a vertex in some other context (and
-possibly different model/resource) to be updated.<span
-style='mso-spacerun:yes'>  </span><span lang=EN style='mso-ansi-language:EN'>The
-purpose of these changes was to break the requirement for bi-directional
-associations to not directly modify the incoming and outgoing properties of
-Vertex which could be in another model.<span style='mso-spacerun:yes'>  </span><o:p></o:p></span></p>
-
-<p>These changes were incorporated into the metamodel in anticipation that
-changes would be adopted in the 2.2 specification that as of this writing has
-not yet been finalized.<span style='mso-spacerun:yes'>  </span>The metamodel
-changes require changes to the serialized representation on disk thereby
-requiring a change to the namespace URI. </p>
-
-<p><img border=0 width=63 height=14 id="_x0000_i1027" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span><span lang=EN style='mso-ansi-language:EN'>The
-namespace URI for the UML metamodel in UML2 2.1 has changed to (</span><span
-lang=EN style='font-family:"Courier New";color:darkgreen;mso-ansi-language:
-EN'><a href="http://www.eclipse.org/uml2/2.1.0/UML"
-title="http://www.eclipse.org/uml2/2.1.0/UML">http://www.eclipse.org/uml2/2.1.0/UML</a></span><span
-lang=EN style='mso-ansi-language:EN'>) <o:p></o:p></span></p>
-
-<p><img border=0 width=63 height=14 id="_x0000_i1028" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span><span lang=EN style='mso-ansi-language:EN'>It
-is also important to note that making these metamodel changes does not
-constitute an API change </span>(the Java API will remain unchanged<span
-lang=EN style='mso-ansi-language:EN'>).<o:p></o:p></span></p>
-
-<p><span lang=EN style='mso-ansi-language:EN'><o:p>&nbsp;</o:p></span></p>
-
-<h2>Understanding the issuesÂ…</h2>
-
-<p>Prior to UML2 2.1, in order to create a connector between connectable
-elements (which could be in different resources), the connectable elements (and
-hence the resources that contain them) need to be modified. Likewise, to create
-a transition between vertices, the vertices need to be modified.<span
-style='mso-spacerun:yes'>  </span>The properties at the end of these
-bidirectional associations need to be made derived in order to enable practical
-use of connectors and transitions in an application that supports redefinition
-and/or team scenarios. Specifically, properties <span class=SpellE>ConnectableElement::end</span>,
-<span class=SpellE>Vertex::incoming</span>, and <span class=SpellE>Vertex::outgoing</span>
-should be made derived.</p>
-
-<p>Until similar changes are made to the UML specification (e.g. as part of UML
-2.2), export to XMI interchange format will serialize the (otherwise transient)
-values of these derived features so as to maintain compliance with UML 2.1.1.</p>
-
-<h3><o:p>&nbsp;</o:p></h3>
-
-<h3>Regarding the bidirectional association between Vertex and Transition:</h3>
-
-<p>UML RTF issue 10537 (<a
-href="http://www.omg.org/issues/uml2-rtf.html#Issue10537">http://www.omg.org/issues/uml2-rtf.html#Issue10537</a>)
-addresses the problem which can be summarized with the following example</p>
-
-<p><i style='mso-bidi-font-style:normal'><u>Example<b>:<o:p></o:p></b></u></i></p>
-
-<p>In context C1, assume we have 3 states S1, S2, S3 and a transition T1 from
-S1 to S2.<span style='mso-spacerun:yes'>  </span>Context C2 <span class=GramE>specializes</span>
-context C1.<span style='mso-spacerun:yes'>     </span>C2 redefines T1 call it
-T1*.</p>
-
-<p><i style='mso-bidi-font-style:normal'><u>Issue:<o:p></o:p></u></i></p>
-
-<p>Assume we want to change the target of T1* to S3.<span
-style='mso-spacerun:yes'>   </span>S3 itself is not redefined, but rather,
-visible through inheritance.<span style='mso-spacerun:yes'>  </span><span
-class=GramE>By changing the target of T1* to S3 we are actually referring to
-the S3 in the context of C1 and thereby crossing model boundaries.</span><span
-style='mso-spacerun:yes'>   </span>This is a result of a bi-directional
-association between Vertex and Transition in the meta-model.</p>
-
-<p><i style='mso-bidi-font-style:normal'><u>Resolution:<o:p></o:p></u></i></p>
-
-<p>The resolution involves breaking the bidirectional associations into two
-unidirectional associations.<span style='mso-spacerun:yes'>  </span>In this
-way, when we wish to change the source/target of a transition, we do not
-directly modify the incoming and outgoing properties of Vertex.</p>
-
-<p>The following modified metamodel diagram captures the changes:</p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<p><span style='mso-tab-count:2'>                     </span><span
-style='background:black;mso-highlight:black'><!--[if gte vml 1]><v:shapetype
- id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t"
- path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
- <v:stroke joinstyle="miter"/>
- <v:formulas>
-  <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-  <v:f eqn="sum @0 1 0"/>
-  <v:f eqn="sum 0 0 @1"/>
-  <v:f eqn="prod @2 1 2"/>
-  <v:f eqn="prod @3 21600 pixelWidth"/>
-  <v:f eqn="prod @3 21600 pixelHeight"/>
-  <v:f eqn="sum @0 0 1"/>
-  <v:f eqn="prod @6 1 2"/>
-  <v:f eqn="prod @7 21600 pixelWidth"/>
-  <v:f eqn="sum @8 21600 0"/>
-  <v:f eqn="prod @7 21600 pixelHeight"/>
-  <v:f eqn="sum @10 21600 0"/>
- </v:formulas>
- <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" aspectratio="t"/>
-</v:shapetype><v:shape id="_x0000_i1029" type="#_x0000_t75" style='width:6in;
- height:246pt' o:bordertopcolor="this" o:borderleftcolor="this"
- o:borderbottomcolor="this" o:borderrightcolor="this" filled="t" fillcolor="gray">
- <v:imagedata src="guide_files/image001.png" o:title=""/>
- <w:bordertop type="single" width="4" shadow="t"/>
- <w:borderleft type="single" width="4" shadow="t"/>
- <w:borderbottom type="single" width="4" shadow="t"/>
- <w:borderright type="single" width="4" shadow="t"/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=580 height=332
-src="guide_files/image002.jpg" v:shapes="_x0000_i1029"><![endif]></span></p>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<p>The derivation for the incomings can be described as follows:</p>
-
-<p class=MsoNormal style='text-indent:0in;mso-text-indent-alt:0in;mso-list:
-none;mso-list-ins:"Bran Selic" 20070405T1033;mso-layout-grid-align:none;
-text-autospace:none'><span class=GramE><i><span style='font-size:10.0pt;
-font-family:"Courier New";color:black'><ins cite="mailto:Bran%20Selic"
-datetime="2007-04-05T10:33">context</ins></span></i></span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><ins
-cite="mailto:Bran%20Selic" datetime="2007-04-05T10:33"> <span class=SpellE>Vertex::incoming</span><o:p></o:p></ins></span></i></p>
-
-<p class=MsoNormal style='text-indent:0in;mso-text-indent-alt:0in;mso-list:
-none;mso-list-ins:"Bran Selic" 20070405T1033;mso-layout-grid-align:none;
-text-autospace:none'><i><span style='font-size:10.0pt;font-family:"Courier New";
-color:black'><ins cite="mailto:Bran%20Selic" datetime="2007-04-05T10:33"><span
-style='mso-spacerun:yes'>  </span><span class=GramE>derive :</span> <span
-class=SpellE>Transition.allInstances</span>()-&gt;select(target=self)<o:p></o:p></ins></span></i></p>
-
-<pre><span style='font-size:12.0pt;mso-bidi-font-size:10.0pt;font-family:"Times New Roman"'><o:p>&nbsp;</o:p></span></pre><pre><span
-style='font-size:12.0pt;mso-bidi-font-size:10.0pt;font-family:"Times New Roman";
-color:black'>(By creating derivations in this way, we also take into account redefined transitions that may not be directly owned by the region owning the vertex to which the transition connects.)<o:p></o:p></span></pre><pre><span
-style='font-size:12.0pt;mso-bidi-font-size:10.0pt;font-family:"Times New Roman";
-color:black'><o:p>&nbsp;</o:p></span></pre>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>The
-derivation for the outgoings can be described as follows: <span
-style='font-size:12.0pt;mso-bidi-font-size:10.0pt;font-family:"Times New Roman";
-color:black'><o:p></o:p></span></p>
-
-<p class=MsoNormal style='text-indent:0in;mso-text-indent-alt:0in;mso-list:
-none;mso-list-ins:"Bran Selic" 20070405T1033;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-mso-layout-grid-align:none;text-autospace:none'><span class=GramE><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><ins
-cite="mailto:Bran%20Selic" datetime="2007-04-05T10:33">context</ins></span></i></span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><ins
-cite="mailto:Bran%20Selic" datetime="2007-04-05T10:33"> <span class=SpellE>Vertex::outgoing</span><o:p></o:p></ins></span></i></p>
-
-<p class=MsoNormal style='text-indent:0in;mso-text-indent-alt:0in;mso-list:
-none;mso-list-ins:"Bran Selic" 20070405T1033;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-mso-layout-grid-align:none;text-autospace:none'><i><span style='font-size:10.0pt;
-font-family:"Courier New";color:black'><ins cite="mailto:Bran%20Selic"
-datetime="2007-04-05T10:33"><span style='mso-spacerun:yes'>  </span><span
-class=GramE>derive :</span> <span class=SpellE>Transition.allInstances</span>()-&gt;select(source=self)</ins><o:p></o:p></span></i></p>
-
-<pre><span style='font-size:12.0pt;mso-bidi-font-size:10.0pt;font-family:"Times New Roman";
-color:black'><o:p>&nbsp;</o:p></span></pre>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Regarding
-the bidirectional association between <span class=SpellE>ConnectableElement</span>
-and <span class=SpellE>ConnectorEnd</span>:</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>UML
-RTF issue 10536 (<a href="http://www.omg.org/issues/uml2-rtf.html#Issue10536">http://www.omg.org/issues/uml2-rtf.html#Issue10536</a>)
-addresses the problem.<span style='mso-spacerun:yes'>   </span>The problem and
-subsequent solution are similar to that of the previously described
-bidirectional association between Vertex and <span class=SpellE>Transistion</span>.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>The
-derivation of end can be described as follows:</p>
-
-<p class=MsoNormal style='margin-top:6.0pt;margin-right:0in;margin-bottom:6.0pt;
-margin-left:0in;text-indent:.5in;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-mso-layout-grid-align:none;text-autospace:none'><span class=GramE><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><ins
-cite="mailto:Bran%20Selic" datetime="2007-04-05T10:33">context</ins></span></i></span><i><span
-style='font-size:10.0pt;font-family:"Courier New";color:black'><ins
-cite="mailto:Bran%20Selic" datetime="2007-04-05T10:33"> </ins><span
-class=SpellE>ConnectableElement<ins cite="mailto:Bran%20Selic"
-datetime="2007-04-05T10:33">::</ins>end</span><ins cite="mailto:Bran%20Selic"
-datetime="2007-04-05T10:33"><o:p></o:p></ins></span></i></p>
-
-<p class=MsoNormal style='text-indent:0in;mso-text-indent-alt:0in;mso-list:
-none;mso-list-ins:"Bran Selic" 20070405T1033;tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-mso-layout-grid-align:none;text-autospace:none'><i><span style='font-size:10.0pt;
-font-family:"Courier New";color:black'><ins cite="mailto:Bran%20Selic"
-datetime="2007-04-05T10:33"><span style='mso-spacerun:yes'> </span><span
-style='mso-tab-count:1'>     </span><span style='mso-spacerun:yes'> </span><span
-class=GramE>derive :</span> </ins><span class=SpellE>ConnectorEnd<ins
-cite="mailto:Bran%20Selic" datetime="2007-04-05T10:33">.allInstances</ins></span><ins
-cite="mailto:Bran%20Selic" datetime="2007-04-05T10:33">()-&gt;select(</ins>role<ins
-cite="mailto:Bran%20Selic" datetime="2007-04-05T10:33">=self)<o:p></o:p></ins></span></i></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><o:p>&nbsp;</o:p></p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>How
-will this affect clients?</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Clients
-face several issues:</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo2;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>1.<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]>Opening up older models with the new UML2 2.1
-API.<span style='mso-tab-count:1'>       </span></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo2;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>2.<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]>Supporting existing users of UML2 2.0.x API and
-allowing them to interoperate with clients of the UML2 2.1 API.</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo2;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>3.<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]>Updating existing Profiles or Models created
-with older version of the API.</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo2;
-tab-stops:list .5in'><![if !supportLists]><span style='mso-fareast-font-family:
-Arial'><span style='mso-list:Ignore'>4.<span style='font:7.0pt "Times New Roman"'>
-</span></span></span><![endif]>Code sweep for <span class=SpellE>hardcoded</span>
-uses of namespace URI.</p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Opening
-up older models with the new API</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Models
-created using the older 2.0.x version of the namespace URI will seamlessly open
-up in the latest version of the UML2 2.1 API.<span style='mso-spacerun:yes'>  
-</span>If these models are subsequently saved, the only observable differences
-would be that the properties mentioned previously (incoming/outgoing on Vertex
-and Connector) would no longer be serialized since they are derived.<span
-style='mso-spacerun:yes'>   </span>In addition to this information not being
-serialized, the namespace UIR would also be updated.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-class=GramE><u>Older 2.0.x version</u>.</span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1030" type="#_x0000_t75" style='width:498pt;height:96.75pt'>
- <v:imagedata src="guide_files/image003.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=664 height=129
-src="guide_files/image004.jpg" v:shapes="_x0000_i1030"><![endif]></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><u>Newer
-2.1 <span class=GramE>version</span><o:p></o:p></u></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><!--[if gte vml 1]><v:shape
- id="_x0000_i1031" type="#_x0000_t75" style='width:504.75pt;height:51.75pt'>
- <v:imagedata src="guide_files/image005.png" o:title=""/>
-</v:shape><![endif]--><![if !vml]><img border=0 width=673 height=69
-src="guide_files/image006.jpg" v:shapes="_x0000_i1031"><![endif]></p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Interoperability
-between UML2 2.0.x API and UML2 2.1 API</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Some
-clients based on UML2 2.0.x version of the API might need to interoperate with
-clients using UML2 2.1 version.<span style='mso-spacerun:yes'>  </span>In such
-a case, an existing model would need to be passed between the two clients
-without loss of data.<span style='mso-spacerun:yes'>    </span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>A
-new maintenance version (2.0.4) was created to support this scenario.<span
-style='mso-spacerun:yes'>   </span>The new maintenance build will allow users
-of the older 2.0.x version to open up models created with UML2 2.1 API.<span
-style='mso-spacerun:yes'>   </span>In such cases, the 2.1.0 model would not
-have the incomings/outgoings serialized.<span style='mso-spacerun:yes'> 
-</span>Therefore, the result of <span class=SpellE><span class=GramE>getOutgoings</span></span><span
-class=GramE>(</span>), <span class=SpellE>getIncomings</span>() is a
-“semi-derived” list capable of repopulating the lists if they were not
-previously serialized. <span style='mso-spacerun:yes'>  </span>Since in the 2.0
-version of the API, the association between Vertex and Transition is
-bidirectional and not cached by the cache adapter, a new cache adaptor was
-created called org.eclipse.uml2.uml.util.UMLCacheAdapter.<span
-style='mso-spacerun:yes'>    </span>The ability of the <span class=SpellE><span
-class=GramE>getIncomings</span></span><span class=GramE>(</span>)/<span
-class=SpellE>getOutgoings</span>() hinges on the new <span class=SpellE>UMLCacheAdapter</span>
-being used.<span style='mso-spacerun:yes'>    </span>Clients of the 2.0.4
-version must explicitly request this adapter by setting a system property <span
-style='font-family:"Courier New";color:black'>org.eclipse.uml2.common.util.CacheAdapter.INSTANCE</span><span
-style='font-family:"Courier New";color:#2A00FF'> </span><span lang=EN
-style='mso-ansi-language:EN'>to org.eclipse.uml2.uml.util.UMLCacheAdapter or an
-appropriate subtype.<o:p></o:p></span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=63 height=14 id="_x0000_i1032" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span><span lang=EN style='mso-ansi-language:EN'>specify
-</span><span style='font-family:"Courier New";color:#2A00FF'>org.eclipse.uml2.common.util.CacheAdapter.INSTANCE
-= org.eclipse.uml2.uml:org.eclipse.uml2.uml.util.UMLCacheAdapter</span><span
-lang=EN style='mso-ansi-language:EN'><o:p></o:p></span></p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Updating
-existing profiles and models created with older version.</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>To
-ensure existing models are up to date, simply open them up using the latest 2.1
-API, and save them out.<span style='mso-spacerun:yes'>  </span>Profiles and
-models should be opened and closed/saved so that the UML namespace URI will be
-updated.<span style='mso-spacerun:yes'>  </span></p>
-
-<h3 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Client
-code sweep</h3>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Annotations
-saved within user models still use the older <span lang=EN style='font-family:
-"Courier New";color:darkgreen;mso-ansi-language:EN'><a
-href="http://www.eclipse.org/uml2/2.0.0/UML"
-title="http://www.eclipse.org/uml2/2.0.0/UML">http://www.eclipse.org/uml2/2.0.0/UML</a>
-</span>source<span lang=EN style='font-family:"Courier New";color:darkgreen;
-mso-ansi-language:EN'>.<span style='mso-spacerun:yes'>  </span></span>Any
-client code <span class=SpellE>hardcoding</span> this source for annotations
-(not recommended) or using UMLPackage.nsURI should be aware that annotations
-still user the older namespace URI.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=63 height=14 id="_x0000_i1033" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span><span lang=EN style='mso-ansi-language:EN'><span
-style='mso-spacerun:yes'> </span>Annotations such as those used to store
-keywords and Ecore representation of defined profiles still use the original
-annotation source (</span><span lang=EN style='font-family:"Courier New";
-color:darkgreen;mso-ansi-language:EN'><a
-href="http://www.eclipse.org/uml2/2.0.0/UML"
-title="http://www.eclipse.org/uml2/2.0.0/UML">http://www.eclipse.org/uml2/2.0.0/UML</a></span><span
-lang=EN style='mso-ansi-language:EN'>) <o:p></o:p></span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-lang=EN style='mso-ansi-language:EN'><o:p>&nbsp;</o:p></span></p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Conclusion</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>For
-the most part, the migration from 2.0.x to 2.1.0 should be transparent.<span
-style='mso-spacerun:yes'>   </span>The key changes involve changes to Transitions
-and Vertex and also Connectors.<span style='mso-spacerun:yes'>  </span>If your
-tooling does not involve State machines or Composite Structures the only change
-you will notice is the namespace URI change.<span style='mso-spacerun:yes'> 
-</span>Also keep in mind that no changes have been made to the API - all the
-changes described here involve serialized version of client models.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=63 height=14 id="_x0000_i1034" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>For more information on UML2, visit the <a
-href="http://www.eclipse.org/uml2">home page</a> or join the <a
-href="news://news.eclipse.org/eclipse.modeling.mdt.uml2">newsgroup</a>.</p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>References</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-lang=EN style='mso-ansi-language:EN'><span style='mso-spacerun:yes'> </span>[1]
-Bugzilla: <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=185602"
-title="https://bugs.eclipse.org/bugs/show_bug.cgi?id=185602">185602</a><o:p></o:p></span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-lang=EN style='mso-ansi-language:EN'><o:p>&nbsp;</o:p></span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><o:p>&nbsp;</o:p></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='font-size:7.5pt'>Java and all Java-based trademarks and logos are
-trademarks or registered trademarks of Sun Microsystems, Inc. in the </span><st1:country-region><st1:place><span
-  style='font-size:7.5pt'>United States</span></st1:place></st1:country-region><span
-style='font-size:7.5pt'>, other countries, or both.</span></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/filelist.xml b/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/filelist.xml
deleted file mode 100644
index 8215317..0000000
--- a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/filelist.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:MainFile HRef="../guide.html"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="image001.png"/>
- <o:File HRef="image002.jpg"/>
- <o:File HRef="image003.png"/>
- <o:File HRef="image004.jpg"/>
- <o:File HRef="image005.png"/>
- <o:File HRef="image006.jpg"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image001.png b/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image001.png
deleted file mode 100644
index e2b9748..0000000
--- a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image001.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image002.jpg b/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image002.jpg
deleted file mode 100644
index ba08b7a..0000000
--- a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image002.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image003.png b/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image003.png
deleted file mode 100644
index b839349..0000000
--- a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image003.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image004.jpg b/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image004.jpg
deleted file mode 100644
index 6184775..0000000
--- a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image005.png b/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image005.png
deleted file mode 100644
index e68ad83..0000000
--- a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image005.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image006.jpg b/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image006.jpg
deleted file mode 100644
index 2e2561e..0000000
--- a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/image006.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/preview.wmf b/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/preview.wmf
deleted file mode 100644
index f74ee30..0000000
--- a/uml2/docs/guides/UML2_2.1_Migration_Guide/guide_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/guides/UML2_3.0_Migration_Guide/default_style.css b/uml2/docs/guides/UML2_3.0_Migration_Guide/default_style.css
deleted file mode 100644
index d725483..0000000
--- a/uml2/docs/guides/UML2_3.0_Migration_Guide/default_style.css
+++ /dev/null
@@ -1,11 +0,0 @@
-p, table, td, th {  font-family: arial, helvetica, geneva; font-size: 10pt}
-pre {  font-family: "Courier New", Courier, mono; font-size: 10pt}
-h2 { font-family: arial, helvetica, geneva; font-size: 18pt; font-weight: bold ; line-height: 14px}
-code {  font-family: "Courier New", Courier, mono; font-size: 10pt}
-sup {  font-family: arial,helvetica,geneva; font-size: 10px}
-h3 {  font-family: arial, helvetica, geneva; font-size: 14pt; font-weight: bold}
-li {  font-family: arial, helvetica, geneva; font-size: 10pt}
-h1 {  font-family: arial, helvetica, geneva; font-size: 28px; font-weight: bold}
-body {  font-family: arial, helvetica, geneva; font-size: 10pt; clip:   rect(   ); margin-top: 5mm; margin-left: 3mm}
-.indextop { font-size: x-large;; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold}
-.indexsub { font-size: xx-small;; font-family: Arial, Helvetica, sans-serif; color: #8080FF}
diff --git a/uml2/docs/guides/UML2_3.0_Migration_Guide/guide.html b/uml2/docs/guides/UML2_3.0_Migration_Guide/guide.html
deleted file mode 100644
index 28b701f..0000000
--- a/uml2/docs/guides/UML2_3.0_Migration_Guide/guide.html
+++ /dev/null
@@ -1,4496 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="guide_files/filelist.xml">
-<link rel=Preview href="guide_files/preview.wmf">
-<link rel=Edit-Time-Data href="guide_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>UML2 2.2 Migration Guide</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="country-region"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="place"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>James Bruck</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>jbruck</o:LastAuthor>
-  <o:Revision>23</o:Revision>
-  <o:TotalTime>23903</o:TotalTime>
-  <o:LastPrinted>2006-09-12T15:08:00Z</o:LastPrinted>
-  <o:Created>2007-07-19T20:38:00Z</o:Created>
-  <o:LastSaved>2008-10-07T21:42:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2842</o:Words>
-  <o:Characters>16200</o:Characters>
-  <o:Company>IBM</o:Company>
-  <o:Lines>135</o:Lines>
-  <o:Paragraphs>38</o:Paragraphs>
-  <o:CharactersWithSpaces>19004</o:CharactersWithSpaces>
-  <o:Version>10.6845</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:Helvetica;
-	panose-1:2 11 6 4 2 2 2 2 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536902279 -2147483648 8 0 511 0;}
-@font-face
-	{font-family:Helv;
-	panose-1:2 11 6 4 2 2 2 3 2 4;
-	mso-font-alt:Arial;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-format:other;
-	mso-font-pitch:variable;
-	mso-font-signature:3 0 0 0 1 0;}
-@font-face
-	{font-family:Wingdings;
-	panose-1:5 0 0 0 0 0 0 0 0 0;
-	mso-font-charset:2;
-	mso-generic-font-family:auto;
-	mso-font-pitch:variable;
-	mso-font-signature:0 268435456 0 0 -2147483648 0;}
-@font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Tahoma;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:1627421319 -2147483648 8 0 66047 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-style-next:Normal;
-	margin-top:12.0pt;
-	margin-right:0in;
-	margin-bottom:3.0pt;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	page-break-after:avoid;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	mso-bidi-font-size:14.0pt;
-	font-family:Arial;
-	mso-bidi-font-family:"Times New Roman";
-	font-weight:bold;}
-p.MsoCaption, li.MsoCaption, div.MsoCaption
-	{mso-style-noshow:yes;
-	mso-style-next:Normal;
-	margin-top:6.0pt;
-	margin-right:0in;
-	margin-bottom:6.0pt;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.MsoBodyText, li.MsoBodyText, div.MsoBodyText
-	{margin-top:0in;
-	margin-right:0in;
-	margin-bottom:6.0pt;
-	margin-left:.5in;
-	line-height:12.0pt;
-	mso-pagination:lines-together;
-	font-size:11.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:purple;
-	text-decoration:underline;
-	text-underline:single;}
-p.MsoDocumentMap, li.MsoDocumentMap, div.MsoDocumentMap
-	{mso-style-noshow:yes;
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	background:navy;
-	font-size:12.0pt;
-	font-family:Tahoma;
-	mso-fareast-font-family:"Times New Roman";}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-tt
-	{font-family:"Courier New";
-	mso-ascii-font-family:"Courier New";
-	mso-fareast-font-family:"Times New Roman";
-	mso-hansi-font-family:"Courier New";
-	mso-bidi-font-family:"Courier New";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	border:solid windowtext 1.0pt;
-	mso-border-alt:solid windowtext .5pt;
-	padding:24.0pt 24.0pt 24.0pt 24.0pt;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:66198550;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1726792664 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:205262161;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1713155732 67698689 -1210316840 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	mso-ansi-font-size:12.0pt;
-	mso-bidi-font-size:12.0pt;
-	font-family:"Courier New";}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:327826570;
-	mso-list-template-ids:-1926624198;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:542601176;
-	mso-list-template-ids:305293098;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:563222342;
-	mso-list-template-ids:824633580;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:589773843;
-	mso-list-template-ids:-526378662;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:620888954;
-	mso-list-template-ids:1014898398;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:672338380;
-	mso-list-template-ids:-128392428;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:711537956;
-	mso-list-template-ids:-1476887090;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:737635563;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1707620082 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l9:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10
-	{mso-list-id:866062257;
-	mso-list-type:hybrid;
-	mso-list-template-ids:875451256 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l10:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11
-	{mso-list-id:867259261;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1630203892 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l12
-	{mso-list-id:918372756;
-	mso-list-template-ids:442662236;}
-@list l12:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l13
-	{mso-list-id:931356628;
-	mso-list-type:hybrid;
-	mso-list-template-ids:2029293028 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l13:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l13:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l13:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l14
-	{mso-list-id:995963060;
-	mso-list-template-ids:1265424134;}
-@list l14:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l15
-	{mso-list-id:1026640002;
-	mso-list-template-ids:-711718290;}
-@list l15:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l16
-	{mso-list-id:1152527877;
-	mso-list-template-ids:1909647104;}
-@list l16:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l17
-	{mso-list-id:1155996821;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1605162988 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l17:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l17:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l17:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l18
-	{mso-list-id:1157572441;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1743478156 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l18:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l18:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l18:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l18:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l18:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l18:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l18:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l18:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l18:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l19
-	{mso-list-id:1166478218;
-	mso-list-template-ids:-515756568;}
-@list l19:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l20
-	{mso-list-id:1216966567;
-	mso-list-template-ids:1991923060;}
-@list l20:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l21
-	{mso-list-id:1230072760;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-575645006 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l21:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l21:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l21:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22
-	{mso-list-id:1252079439;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1749795666 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l22:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l22:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l22:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l23
-	{mso-list-id:1302881438;
-	mso-list-template-ids:-1257968654;}
-@list l23:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l24
-	{mso-list-id:1366835408;
-	mso-list-template-ids:974956964;}
-@list l24:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l25
-	{mso-list-id:1370759832;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-491238360 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l25:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l25:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l25:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l25:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l25:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l25:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l25:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l25:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l25:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l26
-	{mso-list-id:1374113261;
-	mso-list-template-ids:1986295412;}
-@list l26:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l27
-	{mso-list-id:1443645535;
-	mso-list-template-ids:1480116270;}
-@list l27:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l28
-	{mso-list-id:1509295804;
-	mso-list-template-ids:225980866;}
-@list l28:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l29
-	{mso-list-id:1514883846;
-	mso-list-template-ids:-681425178;}
-@list l29:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l30
-	{mso-list-id:1541865818;
-	mso-list-template-ids:116820640;}
-@list l30:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l31
-	{mso-list-id:1596859177;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-2013211278 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l31:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l31:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l31:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l32
-	{mso-list-id:1609004371;
-	mso-list-template-ids:-1845079202;}
-@list l32:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l33
-	{mso-list-id:1674449921;
-	mso-list-type:hybrid;
-	mso-list-template-ids:327428514 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l33:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l33:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l33:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l34
-	{mso-list-id:1710102798;
-	mso-list-template-ids:-1268510052;}
-@list l34:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l35
-	{mso-list-id:1732265222;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1059310210 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l35:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l35:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l35:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36
-	{mso-list-id:1754745015;
-	mso-list-type:hybrid;
-	mso-list-template-ids:1923142784 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l36:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	margin-left:1.0in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l36:level2
-	{mso-level-number-format:bullet;
-	mso-level-text:o;
-	mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	margin-left:1.5in;
-	text-indent:-.25in;
-	font-family:"Courier New";}
-@list l36:level3
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0A7;
-	mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	margin-left:2.0in;
-	text-indent:-.25in;
-	font-family:Wingdings;}
-@list l36:level4
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	margin-left:2.5in;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l36:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l36:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37
-	{mso-list-id:1839271556;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-356332422 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l37:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l37:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l37:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38
-	{mso-list-id:1969360414;
-	mso-list-type:hybrid;
-	mso-list-template-ids:-1876531884 67698689 67698691 67698693 67698689 67698691 67698693 67698689 67698691 67698693;}
-@list l38:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	font-family:Symbol;}
-@list l38:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l38:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableSimple2
-	{mso-style-name:"Table Simple 2";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableSimple2FirstRow
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:first-row;
-	mso-tstyle-border-bottom:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2LastRow
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:last-row;
-	mso-tstyle-border-top:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2FirstCol
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:first-column;
-	mso-tstyle-border-right:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2LastCol
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:last-column;
-	mso-tstyle-border-left:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2NECell
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:ne-cell;
-	mso-tstyle-border-left:0in none windowtext;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableSimple2SWCell
-	{mso-style-name:"Table Simple 2";
-	mso-table-condition:sw-cell;
-	mso-tstyle-border-top:0in none windowtext;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableClassic1
-	{mso-style-name:"Table Classic 1";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	border-top:solid black 1.5pt;
-	border-left:none;
-	border-bottom:solid black 1.5pt;
-	border-right:none;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableClassic1FirstRow
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:first-row;
-	mso-tstyle-border-bottom:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-style:italic;
-	mso-bidi-font-style:italic;}
-table.MsoTableClassic1LastRow
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:last-row;
-	mso-tstyle-border-top:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;}
-table.MsoTableClassic1FirstCol
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:first-column;
-	mso-tstyle-border-right:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;}
-table.MsoTableClassic1NECell
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:ne-cell;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;
-	mso-ansi-font-style:normal;
-	mso-bidi-font-style:normal;}
-table.MsoTableClassic1SWCell
-	{mso-style-name:"Table Classic 1";
-	mso-table-condition:sw-cell;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableList1
-	{mso-style-name:"Table List 1";
-	mso-tstyle-rowband-size:1;
-	mso-tstyle-colband-size:0;
-	border-top:1.5pt;
-	border-left:1.0pt;
-	border-bottom:1.5pt;
-	border-right:1.0pt;
-	border-color:teal;
-	border-style:solid;
-	mso-border-top-alt:1.5pt;
-	mso-border-left-alt:.75pt;
-	mso-border-bottom-alt:1.5pt;
-	mso-border-right-alt:.75pt;
-	mso-border-color-alt:teal;
-	mso-border-style-alt:solid;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableList1FirstRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:first-row;
-	mso-tstyle-shading:white;
-	mso-tstyle-pattern:solid silver;
-	mso-tstyle-border-bottom:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:maroon;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;
-	mso-ansi-font-style:italic;
-	mso-bidi-font-style:italic;}
-table.MsoTableList1LastRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:last-row;
-	mso-tstyle-border-top:.75pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;}
-table.MsoTableList1OddRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:odd-row;
-	mso-tstyle-shading:white;
-	mso-tstyle-pattern:solid silver;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;}
-table.MsoTableList1EvenRow
-	{mso-style-name:"Table List 1";
-	mso-table-condition:even-row;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:windowtext;}
-table.MsoTableList1SWCell
-	{mso-style-name:"Table List 1";
-	mso-table-condition:sw-cell;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableList3
-	{mso-style-name:"Table List 3";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	border-top:solid black 1.5pt;
-	border-left:none;
-	border-bottom:solid black 1.5pt;
-	border-right:none;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-border-insideh:.75pt solid black;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableList3FirstRow
-	{mso-style-name:"Table List 3";
-	mso-table-condition:first-row;
-	mso-tstyle-border-bottom:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:navy;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-table.MsoTableList3LastRow
-	{mso-style-name:"Table List 3";
-	mso-table-condition:last-row;
-	mso-tstyle-border-top:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;}
-table.MsoTableList3SWCell
-	{mso-style-name:"Table List 3";
-	mso-table-condition:sw-cell;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:navy;
-	mso-ansi-font-style:italic;
-	mso-bidi-font-style:italic;}
-table.MsoTableList4
-	{mso-style-name:"Table List 4";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	border:solid black 1.5pt;
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-border-insideh:.75pt solid black;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-table.MsoTableList4FirstRow
-	{mso-style-name:"Table List 4";
-	mso-table-condition:first-row;
-	mso-tstyle-shading:white;
-	mso-tstyle-pattern:solid gray;
-	mso-tstyle-border-bottom:1.5pt solid black;
-	mso-tstyle-diagonal-down:0in none windowtext;
-	mso-tstyle-diagonal-up:0in none windowtext;
-	font-size:10.0pt;
-	mso-ansi-font-size:10.0pt;
-	mso-bidi-font-size:10.0pt;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-ansi-font-weight:bold;
-	mso-bidi-font-weight:bold;}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]><!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="65538"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=purple style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<p class=MsoNormal align=right style='text-align:right'><span style='font-size:
-10.0pt'>Copyright © 2008 International Business Machines Corp.</span><span
-style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></p>
-
-<div align=right>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0 width="100%"
- style='width:100.0%;mso-cellspacing:0in;mso-padding-alt:1.5pt 1.5pt 1.5pt 1.5pt'>
- <tr style='mso-yfti-irow:0;mso-yfti-lastrow:yes'>
-  <td valign=top style='background:#0080C0;padding:1.5pt 1.5pt 1.5pt 1.5pt'>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;font-family:Arial;
-  color:white'>&nbsp;</span></b><span style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></p>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<h1><img width=120 height=86 id="_x0000_i1025" src="../../../../images/Idea.jpg"
-align=CENTER></h1>
-
-<p>&nbsp;</p>
-
-<h1 align=center style='text-align:center'>UML2 3.0 Migration Guide</h1>
-
-<h1 align=center style='text-align:center'><o:p>&nbsp;</o:p></h1>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p class=MsoNormal><b><span style='font-size:10.0pt;font-family:Arial'>Summary</span></b><span
-style='font-size:10.0pt;font-family:Arial'><br style='mso-special-character:
-line-break'>
-<![if !supportLineBreakNewLine]><br style='mso-special-character:line-break'>
-<![endif]><o:p></o:p></span></p>
-
-<p>This guide looks at the changes between UML 2.1.2 and UML 2.2 as defined by
-the OMG™.<span style='mso-spacerun:yes'>  </span>The changes in the versions of
-UML® correspond to versions UML2 2.2.x and UML2 3.0.0 in the UML2 API.</p>
-
-<p class=MsoNormal><span style='font-size:10.0pt;font-family:Arial'><o:p>&nbsp;</o:p></span></p>
-
-<p><b>By James <span class=SpellE>Bruck</span>, IBM</b><br>
-<st1:date Month="9" Day="26" Year="2008">September 26, 2008</st1:date> </p>
-
-</blockquote>
-
-<div class=MsoNormal align=center style='text-align:center'><span
-style='font-size:10.0pt;font-family:Arial'>
-
-<hr size=2 width="100%" align=center>
-
-</span></div>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2>Glossary</h2>
-
-<p>A few terms will be used throughout this document.</p>
-
-<table class=MsoTableList4 border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;border:none;mso-border-alt:solid black 1.5pt;
- mso-yfti-tbllook:160;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-insideh:
- .75pt solid black'>
- <tr style='mso-yfti-irow:-1'>
-  <td width=168 valign=top style='width:125.75pt;border:solid black 1.5pt;
-  border-right:none;background:gray;mso-shading:white;mso-pattern:solid gray;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:1'><b><span style='color:white'>Term<o:p></o:p></span></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border:solid black 1.5pt;
-  border-left:none;background:gray;mso-shading:white;mso-pattern:solid gray;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p style='mso-yfti-cnfc:1'><b><span style='color:white'>Definition<o:p></o:p></span></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:0'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.0pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-left-alt:solid black 1.5pt;mso-border-bottom-alt:solid black .75pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>UML2 3.0.0<o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;mso-border-right-alt:solid black 1.5pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p>Latest version of the UML2 API.</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.0pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-left-alt:solid black 1.5pt;mso-border-bottom-alt:solid black .75pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>UML2 2.2.x<o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.0pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;mso-border-right-alt:solid black 1.5pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p>Previous version of the UML2 API.</p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2;mso-yfti-lastrow:yes'>
-  <td width=168 valign=top style='width:125.75pt;border-top:none;border-left:
-  solid black 1.5pt;border-bottom:solid black 1.5pt;border-right:none;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p><b style='mso-bidi-font-weight:normal'>UML 2.2<o:p></o:p></b></p>
-  </td>
-  <td width=684 valign=top style='width:513.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p>This refers to the latest version of the UML specification defined by OMG
-  available at: <a href="http://www.omg.org/docs/ptc/08-05-05.pdf">http://www.omg.org/docs/ptc/08-05-05.pdf</a></p>
-  </td>
- </tr>
-</table>
-
-<p><o:p>&nbsp;</o:p></p>
-
-<h2>Introduction</h2>
-
-<p class=MsoNormal>Two important points to keep in mind:</p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l18 level1 lfo2;
-tab-stops:list .5in'><![if !supportLists]><span lang=EN style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-ansi-language:
-EN'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span lang=EN style='mso-ansi-language:
-EN'>The namespace URI for the UML metamodel in UML2 3.0.0<span
-style='mso-spacerun:yes'>  </span>has changed to (</span></span><span lang=EN
-style='font-family:"Courier New";color:darkgreen;mso-ansi-language:EN'><a
-href="http://www.eclipse.org/uml2/2.1.0/UML"
-title="http://www.eclipse.org/uml2/2.1.0/UML">http://www.eclipse.org/uml2/3.0.0/UML</a></span><span
-lang=EN style='mso-ansi-language:EN'> and corresponding updates to http://schema.omg.org/spec/UML2/2.2/uml.xml)<o:p></o:p></span></p>
-
-<p style='margin-left:.5in;text-indent:-.25in;mso-list:l18 level1 lfo2;
-tab-stops:list .5in'><![if !supportLists]><span lang=EN style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol;mso-ansi-language:
-EN'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span lang=EN style='mso-ansi-language:
-EN'>API breaking changes have been made in this latest version so the major
-version number of the API has been increased to 3.0.0.<o:p></o:p></span></span></p>
-
-<h2>Summary of the changes</h2>
-
-<p class=MsoNormal>The following tables summarize the changes affecting the UML
-metamodel from versions 2.1.2 to 2.2.</p>
-
-<p class=MsoNormal style='margin-left:22.5pt'><o:p>&nbsp;</o:p></p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv;color:white'>Issue</span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv;color:white'>Item</span></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span class=SpellE><b><u><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Helv'>Metaclasses</span></u></b></span><b><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>     </span><b><i><span style='font-size:9.0pt;
-  font-family:Helvetica'>Added</span></i></b><i><span style='font-size:9.0pt'><o:p></o:p></span></i></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>StartObjectBehaviorAction</span></span><span style='font-size:
-  10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal style='margin-left:.75pt'><span style='font-size:10.0pt;
-mso-bidi-font-size:12.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<p class=MsoNormal style='margin-left:.75pt'><span style='font-size:10.0pt;
-mso-bidi-font-size:12.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv;color:white'>Issue</span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv;color:white'>Item</span></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Properties</span></u></b><b><span style='font-size:
-  10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>     </span></span></b><b><i><span style='font-size:
-  9.0pt;font-family:Helv'>Added</span></i></b><span style='font-size:9.0pt'><o:p></o:p></span></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>ClearStructuralFeatureAction::result</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'> : <span class=SpellE>OutputPin</span>[0..1]<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>DecisionNode::decisionInputFlow</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'> : <span class=SpellE>ObjectFlow</span>[0..1]<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>WriteStructuralFeatureAction::result</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'> : <span class=SpellE>OutputPin</span>[0..1]<o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Properties</span></u></b><b><span style='font-size:
-  10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></b><b><i><span style='font-size:9.0pt;font-family:Helv'>Removed</span></i></b><span
-  style='font-size:9.0pt'><o:p></o:p></span></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>ClassifierTemplateParameter::defaultClassifier</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'><o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Properties</span></u></b><b><span style='font-size:
-  10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></b><b><i><span
-  style='font-size:9.0pt;font-family:Helv'>Default changed</span></i></b><b><u><span
-  style='font-size:9.0pt;font-family:Helv'><o:p></o:p></span></u></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>Generalization::isSubstitutable</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'><o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4;mso-yfti-lastrow:yes'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Properties</span></u></b><b><span style='font-size:
-  10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  &nbsp;</span></b><b><i><span style='font-size:9.0pt;font-family:Helv'>Type</span></i></b><b><i><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'> </span></i></b><b><i><span
-  style='font-size:9.0pt;font-family:Helv'>Changed</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>TimeEvent::getWhen</span></span><span style='font-size:9.0pt;
-  font-family:Helv;color:black'> -&gt; <span class=SpellE>ValueSpecification</span><span
-  style='mso-spacerun:yes'>  </span>to <span class=SpellE>TimeExpression</span></span><span
-  style='font-size:7.0pt;color:black'>&nbsp; </span><span style='font-size:
-  7.0pt'><span style='mso-spacerun:yes'> </span></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal style='margin-left:.75pt'><span style='font-size:10.0pt;
-mso-bidi-font-size:12.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<p class=MsoNormal style='margin-left:.75pt'><span style='font-size:10.0pt;
-mso-bidi-font-size:12.0pt;font-family:Helv;color:black'>&nbsp;<o:p></o:p></span></p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv;color:white'>Issue</span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv;color:white'>Item</span></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Properties</span></u></b><b><span style='font-size:
-  10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal><b><span style='font-size:9.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  &nbsp;&nbsp; <i>Made contained</i></span></b><span style='font-size:9.0pt'><o:p></o:p></span></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>Duration::expr</span></span><span style='font-size:9.0pt;
-  font-family:Helv;color:black'><o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:9.0pt;font-family:Symbol;
-  color:black'>·</span><span style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span
-  class=SpellE><span style='font-size:9.0pt;font-family:Helv;color:black'>TimeExpression::expr</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'><o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2;mso-yfti-lastrow:yes;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Properties</span></u></b><b><span style='font-size:
-  10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal><b><span style='font-size:9.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>     </span><i><span
-  style='mso-spacerun:yes'> </span>List&nbsp; to Scalar</i></span></b><span
-  style='font-size:9.0pt'><o:p></o:p></span></p>
-  <p class=MsoNormal><b><i><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>&nbsp;&nbsp;&nbsp;<o:p></o:p></span></i></b></p>
-  <p class=MsoNormal><o:p>&nbsp;</o:p></p>
-  <p class=MsoNormal><b><i><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'><span style='mso-spacerun:yes'>       </span><span
-  style='mso-spacerun:yes'>       </span></span></i></b><b><i><span
-  style='font-size:9.0pt;font-family:Helv'>Scalar to List</span></i></b><span
-  style='font-size:9.0pt'><o:p></o:p></span></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>    </span>&nbsp;</span><span class=SpellE><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>TemplateParameterSubstitution::actual</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>[1..*]-&gt;[1]</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>    </span></span><span class=SpellE><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>TemplateParameterSubstitution::ownedActual</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>[0..*]-&gt;[0..1]</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:7.0pt;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span
-  class=SpellE><span style='font-size:9.0pt;font-family:Helv;color:black'>ClassifierTemplateParameter::constrainingClassifier</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'> [0<span class=GramE>..1</span>]-&gt;[0..*]<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span
-  class=SpellE><span style='font-size:9.0pt;font-family:Helv;color:black'>ComponentRealization::<span
-  class=GramE>realizingClassifier</span></span></span><span class=GramE><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>[</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>1] -&gt; [1..*]</span><span
-  style='font-size:7.0pt;color:black'><o:p></o:p></span></p>
-  <p class=MsoNormal><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><i><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv;color:white'>Issue</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><i><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv;color:white'>Item</span></i></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Default Values</span></u></b><b><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <b><i><span style='font-size:9.0pt;font-family:Helvetica'>Specified</span></i></b><span
-  style='font-size:9.0pt'><o:p></o:p></span></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>CallAction.isSynchronous</span></span><span style='font-size:
-  9.0pt;font-family:Helv;color:black'> = true </span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal style='margin-left:18.75pt'><span style='font-size:10.0pt;
-mso-bidi-font-size:12.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><i><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv;color:white'>Issue</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><i><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv;color:white'>Item</span></i></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Operations</span></u></b><b><span style='font-size:
-  10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <b><i><span style='font-size:9.0pt;font-family:Helv;mso-bidi-font-family:
-  Helvetica'>Removed</span></i></b><b><u><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Helv'><o:p></o:p></span></u></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>ClassifierTemplateParameter::getDefaultClassifier</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>ClassifierTemplateParameter::setDefaultClassifier</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Operations</span></u></b><b><span style='font-size:
-  10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>  </span><b><i><span style='font-size:9.0pt;
-  font-family:Helv;mso-bidi-font-family:Helvetica'>Changed</span></i></b><span
-  style='font-size:9.0pt;font-family:Helv'><o:p></o:p></span></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>ActivityEdge::getWeight</span></span><span style='font-size:
-  9.0pt;font-family:Helv;color:black'>()</span><span style='font-size:7.0pt;
-  color:black'>&nbsp;&nbsp;&nbsp;&nbsp;<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>Component::getRequireds</span></span><span style='font-size:
-  9.0pt;font-family:Helv;color:black'>()</span><span style='font-size:7.0pt;
-  color:black'>&nbsp;&nbsp;&nbsp;&nbsp;<o:p></o:p></span></p>
-  <p class=MsoNormal><o:p>&nbsp;</o:p></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Operations</span></u></b><b><span style='font-size:
-  10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal><span style='mso-spacerun:yes'>           </span><b><i><span
-  style='font-size:9.0pt;font-family:Helvetica'>Constraint added</span></i></b><b><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'><o:p></o:p></span></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>ActivityParameterNode::validateMaximumOneParameterNode</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span
-  class=SpellE><span style='font-size:9.0pt;font-family:Helv;color:black'>ActivityParameterNode::validateMaximumTwoParameterNodes</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>  </span></span><span class=SpellE><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>ClearStructuralFeatureAction::validateTypeOfResult</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>  </span></span><span class=SpellE><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>ClearStructuralFeatureAction::validateMultiplicityOfResult</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>  </span></span><span class=SpellE><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>DecisionNode::validateDecisionInputFlowIncoming</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>  </span></span><span class=SpellE><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>DecisionNode::validateIncomingControlOneInputParameter</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>  </span></span><span class=SpellE><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>DecisionNode::validateIncomingOutgoingEdges</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>  </span></span><span class=SpellE><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>DecisionNode::validateparameters</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>  </span></span><span class=SpellE><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>DecisionNode::validateTwoInputParameters</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>  </span></span><span class=SpellE><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>DecisionNode::validateZeroInputParameters</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4'>
-  <td width=162 valign=top style='width:121.65pt;border:none;border-left:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Operations</span></u></b><b><span style='font-size:
-  10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal style='margin-left:21.75pt'><span
-  style='mso-spacerun:yes'> </span><b><i><span style='font-size:9.0pt;
-  font-family:Helvetica'>Constraint removed</span></i></b><b><u><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'><o:p></o:p></span></u></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border:none;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>  </span></span><span class=SpellE><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>DecisionNode::validateOneIncomingEdge</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>  </span></span><span class=SpellE><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>DecisionNode::validateInputParameter</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>  </span></span><span style='font-size:9.0pt;
-  font-family:Helv;color:black'>MultiplicityElement::validateupperGt0</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:5;mso-yfti-lastrow:yes;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Operations</span></u></b><b><span style='font-size:
-  10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal style='margin-left:21.75pt'>&nbsp;<b><i><span
-  style='font-size:9.0pt;font-family:Helvetica'>Constraint changed</span></i></b><span
-  style='font-size:9.0pt'><o:p></o:p></span></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>Behavior::getSpecification</span></span><span style='font-size:
-  9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>DecisionNode::validateEdges</span></span><span style='font-size:
-  9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>Transition::validateOutgoingPseudostates</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'>()</span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal style='margin-left:18.75pt'><span style='font-size:10.0pt;
-mso-bidi-font-size:12.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><i><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv;color:white'>Issue</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><i><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv;color:white'>Item</span></i></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Enumerations</span></u></b><b><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>: </span></b></p>
-  <p class=MsoNormal><b><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span
-  style='mso-spacerun:yes'>  </span></span></b><b><i><span style='font-size:
-  9.0pt;font-family:Helv'>Changed</span></i></b><span style='font-size:9.0pt'><o:p></o:p></span></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-  color:black'>CallConcurrencyKind::GUARDED</span></span><span
-  style='font-size:9.0pt;font-family:Helv;color:black'> </span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal>&nbsp;</p>
-
-<p class=MsoNormal style='margin-left:18.75pt'><span style='font-size:10.0pt;
-mso-bidi-font-size:12.0pt;font-family:Helv;color:black'>&nbsp;</span></p>
-
-<table class=MsoNormalTable border=0 cellspacing=0 cellpadding=0
- style='margin-left:.75pt;border-collapse:collapse;mso-padding-alt:0in 0in 0in 0in'>
- <tr style='mso-yfti-irow:0'>
-  <td width=162 valign=top style='width:121.65pt;border-top:solid black 1.5pt;
-  border-left:solid black 1.0pt;border-bottom:solid black 1.0pt;border-right:
-  none;background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><i><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv;color:white'>Issue</span></i></b></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:solid black 1.5pt;
-  border-left:none;border-bottom:solid black 1.0pt;border-right:solid black 1.0pt;
-  background:#B4B4CA;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><b><i><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv;color:white'>Item</span></i></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1;mso-yfti-lastrow:yes;height:17.1pt'>
-  <td width=162 valign=top style='width:121.65pt;border-top:none;border-left:
-  solid black 1.0pt;border-bottom:solid black 1.5pt;border-right:none;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal><b><u><span style='font-size:10.0pt;mso-bidi-font-size:
-  12.0pt;font-family:Helv'>Specializations</span></u></b><b><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Helv'>:</span></b></p>
-  <p class=MsoNormal>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  <b><i><span style='font-size:9.0pt;font-family:Helvetica'>Removed</span></i></b><span
-  style='font-size:9.0pt'><o:p></o:p></span></p>
-  </td>
-  <td width=420 valign=top style='width:315.0pt;border-top:none;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:solid black 1.0pt;
-  padding:0in 5.4pt 0in 5.4pt;height:17.1pt'>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal style='margin-left:.25in;text-indent:-.25in'><span
-  style='font-size:9.0pt;font-family:Symbol;color:black'>·</span><span
-  style='font-size:7.0pt;color:black'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span><span style='font-size:9.0pt;font-family:Helv;color:black'>Property no
-  longer specializes <span class=SpellE>TemplateableElement</span></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  font-family:Helv'>&nbsp;</span></p>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal style='margin-left:22.5pt'><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-mso-layout-grid-align:none;text-autospace:none'><span style='mso-tab-count:
-1'>             </span><i><span style='font-size:10.0pt;font-family:"Courier New";
-color:black'><o:p></o:p></span></i></p>
-
-<h2><a name="_Toc209335396">Opening up older models </a></h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='mso-bookmark:_Toc209335396'>Models created using the older 2.2.x version
-of the API will seamlessly open up in the latest version of the UML
-editor.<span style='mso-spacerun:yes'>   </span>The in-memory representation
-will comply with the latest metamodel changes.<span style='mso-spacerun:yes'> 
-</span>If these models are subsequently saved, the updated in-memory
-representation will be persisted with an updated namespace URI.</span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='mso-bookmark:_Toc209335396'><img border=0 width=63 height=15
-id="_x0000_i1027" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>To update older models, simply open them using
-the UML editor and then save them.<span style='mso-spacerun:yes'>  </span>Profiles
-and models should be opened and closed/saved so that the UML namespace URI will
-be updated.<span style='mso-spacerun:yes'>  </span></span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='mso-bookmark:_Toc209335396'><o:p>&nbsp;</o:p></span></p>
-
-<h3><span style='mso-bookmark:_Toc209335396'><a name="_Toc209335397">Model
-migration summary</a> </span></h3>
-
-<p class=MsoNormal><span style='mso-bookmark:_Toc209335396'>Model migration
-involves mapping constructs from the older version of the metamodel to the
-newer.<span style='mso-spacerun:yes'>   </span>There are several cases to consider
-for this particular mapping:</span></p>
-
-<p class=MsoNormal><span style='mso-bookmark:_Toc209335396'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level1 lfo4;tab-stops:list 1.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Features whose multiplicity have
-changed from lists to scalar</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>In such cases, the resource handler will take the last item out of the
-list.<span style='mso-spacerun:yes'>  </span>The only instances concern situations
-where having more than one item didnÂ’t make sense in the first place,
-therefore, dropping remaining items would be acceptable.</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>TemplateParameterSubstitution::actual</span>
-</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>TemplateParameterSubstitution::ownedActual</span></span></span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level1 lfo4;tab-stops:list 1.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Features whose multiplicities have
-changed<span style='mso-spacerun:yes'>  </span>from scalar to list</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>Simply move the singular item to the new list.<span
-style='mso-spacerun:yes'>   </span></span></span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level1 lfo4;tab-stops:list 1.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Features removed altogether:</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>In this case we map <span class=SpellE>defaultClassifier</span> to
-default from <span class=SpellE>TemplateParameter</span> if default was not
-previously set.<span style='mso-spacerun:yes'>  </span>If default was set
-previously, we save the default classifier to a new stereotype.</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>ClassifierTemplateParameter::defaultClassifier</span>.<span
-style='mso-spacerun:yes'>  </span></span></span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level1 lfo4;tab-stops:list 1.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Losing features due to change of
-inheritance:</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>A profile will be created to capture the missing information.<span
-style='mso-spacerun:yes'>  </span></span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Property no longer inherits from <span
-class=SpellE>TemplateableElement</span>.</span></span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='mso-bookmark:_Toc209335396'><o:p>&nbsp;</o:p></span></p>
-
-<h2><span style='mso-bookmark:_Toc209335396'>UML2 profile for unmapped features</span></h2>
-
-<p class=MsoNormal><span style='mso-bookmark:_Toc209335396'>A specialized
-profile is used to capture information that would otherwise be dropped since no
-direct mapping from the old metamodel to the new exists.</span></p>
-
-<p class=MsoNormal><span style='mso-bookmark:_Toc209335396'>The profile in
-question resides in <i>org.eclipse.uml2.uml.resources\profiles\UML2.profile.uml</i></span></p>
-
-<p class=MsoNormal style='margin-left:.5in'><span style='mso-bookmark:_Toc209335396'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal><span style='mso-bookmark:_Toc209335396'>3 new stereotypes
-with properties have been introduced:</span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l11 level1 lfo6;tab-stops:list 1.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>A stereotype with <span
-class=SpellE>metaclass</span> extension to <span class=SpellE>TimeEvent</span>
-with:</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l11 level2 lfo6;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR><span style='mso-spacerun:yes'> </span>“<span class=GramE>when</span>”
-meta-attribute : aggregation = composition. </span></span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l11 level1 lfo6;tab-stops:list 1.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>A stereotype with <span
-class=SpellE>metaclass</span> extension to Property with:</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l11 level2 lfo6;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>“<span class=SpellE><span class=GramE>tempateBinding</span></span>”
-meta-attribute : aggregation = composition.</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l11 level2 lfo6;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>“<span class=SpellE><span class=GramE>ownedTemplateSignature</span></span>”
-meta-attribute : aggregation = composition.</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l11 level1 lfo6;tab-stops:list 1.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>A stereotype with <span
-class=SpellE>metaclass</span> extension to <span class=SpellE>ClassifierTemplateParameter</span>
-with:</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l11 level2 lfo6;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span lang=IT
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New";
-mso-ansi-language:IT'><span style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;
-</span></span></span><![endif]><span dir=LTR><span lang=IT style='mso-ansi-language:
-IT'>“defaultClassifier” meta-attribute : aggregation = none.<o:p></o:p></span></span></span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='mso-bookmark:_Toc209335396'><span lang=IT style='mso-ansi-language:IT'><o:p>&nbsp;</o:p></span></span></p>
-
-<h2><span style='mso-bookmark:_Toc209335396'>Client code sweep</span></h2>
-
-<p class=MsoNormal><span style='mso-bookmark:_Toc209335396'>The following is a
-list of API modifications causing breakage.</span></p>
-
-<p class=MsoNormal style='margin-left:.5in'><span style='mso-bookmark:_Toc209335396'><o:p>&nbsp;</o:p></span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level1 lfo4;tab-stops:list 1.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Property no longer inherits from <span
-class=SpellE>TemplateableElement</span></span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>We lose:</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>createOwnedTemplateSignature</span>()</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>createTemplateBinding</span>()</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>getOwnedTemplateSignature</span>()</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>getTemplateBindings</span>()</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>isTemplate</span>()</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>parameterableElements</span>()</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>setOwnedTemplateSignature</span>()</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>Migration path:</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>The functionality is removed and
-there is no direct API migration path.<span style='mso-spacerun:yes'>  
-</span>The ability to use Property as a <span class=SpellE>TemplateableElement</span>
-is obscure however, and did not have much practical use in the past.</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level1 lfo4;tab-stops:list 1.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>ClassifierTemplateParameter::defaultClassifier</span>
-removed</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>We lose:</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>ClassifierTemplateParameter::getDefaultClassifier</span>()</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>ClassifierTemplateParameter::setDefaultClassifier</span>()</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>Migration path:</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Should simply call <span
-class=SpellE>ClassifierTemplateParamter::<span class=GramE>getDefault</span></span><span
-class=GramE>(</span>) or <span class=SpellE>setDefault</span>() inherited from <span
-class=SpellE>TemplateParameter</span>.</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level1 lfo4;tab-stops:list 1.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Multiplicities changing from list
-to scalar</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>Changed:</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>TemplateParameterSubstitution::actual</span>
-</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>TemplateParameterSubstitution::ownedActual</span></span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>Migration path:</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Having multiple ‘actual’ or ‘<span
-class=SpellE>ownedActual</span>Â’ didnÂ’t make sense in the past.<span
-style='mso-spacerun:yes'>  </span>The collections should have been used with
-one item in all cases.</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level1 lfo4;tab-stops:list 1.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>Mulitplicities</span>
-changing from scalar to list</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>Changed:</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>ClassifierTemplateParameter::constrainingClassifier</span></span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE>ComponentRealization::realizingClassifier</span></span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR><span class=SpellE>MigrationPath</span>:</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Simply move the one item to the
-list.</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level1 lfo4;tab-stops:list 1.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:Symbol'><span
-style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Constraints removed</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR><span class=SpellE>DecisionNode::validateOneIncomingEdge</span>()</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>MultiplicityElement::validateUppperGT0()</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR><span class=SpellE>DecisionNode::validateInputParameter</span>()</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level2 lfo4;tab-stops:list 1.5in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-"Courier New";mso-fareast-font-family:"Courier New"'><span style='mso-list:
-Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR>Migration path:</span></span></p>
-
-<p class=MsoNormal style='margin-left:2.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l36 level3 lfo4;tab-stops:list 2.0in'><span
-style='mso-bookmark:_Toc209335396'><![if !supportLists]><span style='font-family:
-Wingdings;mso-fareast-font-family:Wingdings;mso-bidi-font-family:Wingdings'><span
-style='mso-list:Ignore'>§<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Simply clean up removed
-functionality and references.</span></span></p>
-
-<p class=MsoNormal style='margin-left:1.0in'><span style='mso-bookmark:_Toc209335396'><o:p>&nbsp;</o:p></span></p>
-
-<span style='mso-bookmark:_Toc209335396'></span>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<h2 style='margin-top:6.0pt;margin-right:0in;margin-bottom:3.0pt;margin-left:
-0in;mso-line-height-alt:12.0pt;mso-pagination:none;page-break-after:avoid'><a
-name="_Toc209335400">Constraint migration details</a></h2>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal>The details of constraint migration will have to be examined
-on a case-by-case basis and will not be addressed in detail by this
-document.<span style='mso-spacerun:yes'>   </span>The following is a list of constraints
-that have been added, changed or removed:</p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l1 level1 lfo8;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Added</span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-color:black'>ActivityParameterNode::validateMaximumOneParameterNode</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()</span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New";
-color:black'><span style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE><span
-style='font-size:9.0pt;font-family:Helv;color:black'>ActivityParameterNode::validateMaximumTwoParameterNodes</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New";
-color:black'><span style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE><span
-style='font-size:9.0pt;font-family:Helv;color:black'>ClearStructuralFeatureAction::validateTypeOfResult</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New";
-color:black'><span style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE><span
-style='font-size:9.0pt;font-family:Helv;color:black'>ClearStructuralFeatureAction::validateMultiplicityOfResult</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-color:black'>DecisionNode::validateDecisionInputFlowIncoming</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()</span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-color:black'>DecisionNode::validateIncomingControlOneInputParameter</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()</span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-color:black'>DecisionNode::validateIncomingOutgoingEdges</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()</span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-color:black'>DecisionNode::validateparameters</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()</span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New";
-color:black'><span style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE><span
-style='font-size:9.0pt;font-family:Helv;color:black'>DecisionNode::validateTwoInputParameters</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-color:black'>DecisionNode::validateZeroInputParameters</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()</span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l1 level1 lfo8;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Changed</span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New";
-color:black'><span style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE><span
-style='font-size:9.0pt;font-family:Helv;color:black'>Behavior::getSpecification</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New";
-color:black'><span style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE><span
-style='font-size:9.0pt;font-family:Helv;color:black'>DecisionNode::validateEdges</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR><span class=SpellE><span style='font-size:9.0pt;font-family:Helv;
-color:black'>Transition::validateOutgoingPseudostates</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()</span></p>
-
-<p class=MsoNormal style='margin-left:1.0in;text-indent:-.25in;line-height:
-12.0pt;mso-pagination:none;mso-list:l1 level1 lfo8;tab-stops:list 1.0in'><![if !supportLists]><span
-style='font-family:Symbol;mso-fareast-font-family:Symbol;mso-bidi-font-family:
-Symbol'><span style='mso-list:Ignore'>·<span style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;
-</span></span></span><![endif]><span dir=LTR>Removed</span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New";
-color:black'><span style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE><span
-style='font-size:9.0pt;font-family:Helv;color:black'>DecisionNode::validateOneIncomingEdge</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New";
-color:black'><span style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp;
-</span></span></span><![endif]><span dir=LTR><span class=SpellE><span
-style='font-size:9.0pt;font-family:Helv;color:black'>DecisionNode::validateInputParameter</span></span></span><span
-style='font-size:9.0pt;font-family:Helv;color:black'>()<o:p></o:p></span></p>
-
-<p class=MsoNormal style='margin-left:1.5in;text-indent:-.25in;line-height:
-12.0pt;mso-list:l1 level2 lfo8;tab-stops:list 1.5in'><![if !supportLists]><span
-style='font-family:"Courier New";mso-fareast-font-family:"Courier New"'><span
-style='mso-list:Ignore'>o<span style='font:7.0pt "Times New Roman"'>&nbsp; </span></span></span><![endif]><span
-dir=LTR><span style='font-size:9.0pt;font-family:Helv;color:black'>MultiplicityElement::validateupperGt0</span></span></p>
-
-<p class=MsoBodyText><o:p>&nbsp;</o:p></p>
-
-<h1 style='margin-top:6.0pt;margin-right:0in;margin-bottom:3.0pt;margin-left:
-0in;mso-line-height-alt:12.0pt;mso-pagination:none;page-break-after:avoid'><a
-name="_Toc209335402">Detailed Summary</a></h1>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<p class=MsoNormal>The<span style='mso-spacerun:yes'>  </span>following table
-indicates the changes to the UML metamodel in more detail.</p>
-
-<p class=MsoNormal><o:p>&nbsp;</o:p></p>
-
-<table class=MsoTableList3 border=1 cellspacing=0 cellpadding=0
- style='border-collapse:collapse;mso-table-layout-alt:fixed;border:none;
- mso-border-top-alt:solid black 1.5pt;mso-border-bottom-alt:solid black 1.5pt;
- mso-yfti-tbllook:32;mso-padding-alt:0in 5.4pt 0in 5.4pt;mso-border-insideh:
- .75pt solid black'>
- <tr style='mso-yfti-irow:-1'>
-  <td width=54 style='width:40.8pt;border-top:solid black 1.5pt;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal align=center style='text-align:center;mso-yfti-cnfc:1'><b><span
-  style='mso-bidi-font-size:11.0pt;color:navy'>OMG Issue<o:p></o:p></span></b></p>
-  </td>
-  <td width=444 style='width:333.3pt;border-top:solid black 1.5pt;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal align=center style='text-align:center;mso-yfti-cnfc:1'><b><span
-  style='mso-bidi-font-size:11.0pt;color:navy'>Discussion<o:p></o:p></span></b></p>
-  </td>
-  <td width=528 style='width:396.3pt;border-top:solid black 1.5pt;border-left:
-  none;border-bottom:solid black 1.5pt;border-right:none;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal align=center style='text-align:center;mso-yfti-cnfc:1'><b><span
-  style='mso-bidi-font-size:11.0pt;color:navy'>Impact<o:p></o:p></span></b></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:0'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:1'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue10783">10783</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Remove
-  constraint on <span class=SpellE>MultiplicityElement</span> that limited
-  upper bound to be &gt; 0. Now have a<span style='color:black'>bility to set
-  the upper bound of a <span class=SpellE>MultiplicityElement</span> to 0.<o:p></o:p></span></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l35 level1 lfo11;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Update constraint on <span
-       class=SpellE>MultiplicityElement</span>.<o:p></o:p></span></li>
-   <li class=MsoNormal style='color:black;mso-list:l35 level1 lfo11;tab-stops:
-       list .5in'><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>deleted
-       InfrastructureLibrary::Core::Abstractions::Multiplicities::MultiplicityElement::upper_gt_0<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l35 level1 lfo11;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>deleted InfrastructureLibrary::Core::Basic::MultiplicityElement::upper_gt_0
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l35 level1 lfo11;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>deleted
-  InfrastructureLibrary::Core::Constructs::MultiplicityElement::upper_gt_0 <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l35 level1 lfo11;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>deleted
-  UML::Classes::Kernel::MultiplicityElement::upper_gt_0 <o:p></o:p></span></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:2'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:3'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue9143">9143</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>The
-  notation of operation has changed.<span style='mso-spacerun:yes'> 
-  </span>Multiplicity should now be part of the visual representation.<o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l25 level1 lfo14;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Labels for Operations
-       should be looked at.<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:4'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:5'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue12169">12169</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>The
-  meaning of redefinition has been clarified.<span style='mso-spacerun:yes'> 
-  </span>Explicitly states conformance of types.<span
-  style='mso-spacerun:yes'>  </span>Defines ‘explicitÂ’ and ‘implicitÂ’
-  redefinition.<o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l25 level1 lfo14;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Probably no impact
-       but we should double check that we follow the guidelines.<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:6'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:7'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue9142">9142</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Multiplicity
-  of <span class=SpellE>ComponentRealization::realizingClassifier</span> has
-  changed to [1..*] from [1]<o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  color:black'>updated documentation for
-  UML::Components::BasicComponents::ComponentRealization::realizingClassifier</span><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l22 level1 lfo18;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Changes to property
-       sheets.<span style='mso-spacerun:yes'>  </span><o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l22 level1 lfo18;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Possible
-       compare-merge impact.<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:8'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:9'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue10354">10354</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>The
-  OCL constraint indicating how required and provided interfaces should be
-  calculated has been updated.<o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Inherited
-  ports also are taken into account.<span style='mso-spacerun:yes'>  </span><o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l33 level1 lfo21;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>The OCL expression as
-       shown in the spec. should follow the current UML implementation but a
-       thorough review of the constraint would be needed.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l33 level1 lfo21;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>This *may* impact the
-       opensource UML component.<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l33 level1 lfo21;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>updated body constraint for <span
-  class=SpellE>UML::Components::BasicComponents::Component::provided</span>() <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l33 level1 lfo21;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>updated body constraint for <span
-  class=SpellE>UML::Components::BasicComponents::Component::required</span>() </span></span><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:10'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:11'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue10536">10536</a> <o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue10537">10537</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>These
-  are the changes that were introduced to make certain properties derived
-  (Vertex/Transition etc.)<o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l17 level1 lfo24;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>We already have the
-       implementation in place but the packages would have to be restructured
-       and made part of the core implementation.<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l21 level1 lfo26;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::compositeStructures::InternalStructures::ConnectableElement::end()
-  (10536)<o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l21 level1 lfo26;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added <span class=SpellE>UML::StateMachines::BasicStateMachines::Vertex::outgoing</span>()
-  (10537)<o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l21 level1 lfo26;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added <span class=SpellE>UML::StateMachines::BasicStateMachines::Vertex::incoming</span>()
-  (10537)<o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l21 level1 lfo26;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span class=SpellE><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt;color:black'>UML.uml</span></span></span><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt;color:black'> will be
-  changing as a consequence.<o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:12'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:13'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue10816">10816</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Added
-  new feature for <span class=SpellE>ClearStructuralFeatureAction</span>.<o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Added
-  <span class=SpellE>WriteStructuralFeatureAction::result</span><o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l31 level1 lfo29;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Changes to
-       open-source UML (meta-model)<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l31 level1 lfo29;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Several new
-       constraints to be implemented.<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added documentation for
-  UML::Actions::IntermediateActions::ClearStructuralFeatureAction::result <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::Actions::IntermediateActions::ClearStructuralFeatureAction::type_of_result
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::Actions::IntermediateActions::ClearStructuralFeatureAction::multiplicity_of_result
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added documentation and new feature
-  for UML::Actions::IntermediateActions::WriteStructuralFeatureAction::result <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::Actions::IntermediateActions::WriteStructuralFeatureAction::type_of_result
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::Actions::IntermediateActions::WriteStructuralFeatureAction::multiplicity_of_result
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:14'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:15'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue9872">9872</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>New
-  <span class=SpellE>metatype</span> <span class=SpellE>StartObjectBehaviorAction</span>
-  added.<o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l38 level1 lfo34;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Add new type for
-       Activity Diagram palette.<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo36;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>lower bound of <span class=SpellE>UML::Actions::CompleteActions::StartObjectBehaviorAction::object</span>
-  to 1 <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo36;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added documentation for <span
-  class=SpellE>UML::Actions::CompleteActions::StartObjectBehaviorAction</span> <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo36;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added documentation for <span
-  class=SpellE>UML::Actions::CompleteActions::StartObjectBehaviorAction::object</span>
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo36;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::Actions::CompleteActions::StartObjectBehaviorAction::type_of_object <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo36;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::Actions::CompleteActions::StartObjectBehaviorAction::multiplicity_of_object
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo36;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::Actions::CompleteActions::StartObjectBehaviorAction::number_order_arguments
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo36;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::Actions::CompleteActions::StartObjectBehaviorAction::number_order_results
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l0 level1 lfo36;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::Actions::CompleteActions::StartObjectBehaviorAction::type_ordering_multiplicity_match
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:16'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:17'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue9865">9865</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>2
-  new constraints added to <span class=SpellE>ActivityParameterNode</span><o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l9 level1 lfo39;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>New constraints to be
-       implemented.<o:p></o:p></span></li>
-  </ul>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='color:black;mso-list:l10 level1 lfo31;tab-stops:
-       list .5in'><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>added
-       UML::Activities::BasicActivities::ActivityParameterNode::maximum_one_parameter_node<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l10 level1 lfo31;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt;color:black'>added
-       UML::Activities::BasicActivities::ActivityParameterNode::maximum_two_parameter_nodes</span><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:18'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:19'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue9398">9398</a> <a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue11240">11240</a> <a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue11243">11243</a> <a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue11400">11400</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Multiplicity
-  on several template related features has been changed.<o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l10 level1 lfo31;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Affects templates<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>changed upper bound of
-  UML::AuxiliaryConstructs::Templates::TemplateParameterSubstitution::ownedActual
-  to 1 and updated<span style='mso-spacerun:yes'>  </span>documentation (9398)<o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>changed upper bound of
-  UML::AuxiliaryConstructs::Templates::TemplateParameterSubstitution::actual to
-  1 and updated documentation (938)<o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>updated documentation for
-  UML::AuxiliaryConstructs::Templates::TemplateParameterSubstitution (9398)<o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>updated documentation for
-  UML::AuxiliaryConstructs::Templates::ClassifierTemplateParameter::constrainingClassifier
-  (11243)</span></span><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>changed upper bound of <span
-  class=SpellE>ClassifierTemplateParameter::constrainingClassifier</span> from
-  1 to *</span></span><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p></o:p></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span class=SpellE><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt;color:black'>ClassifierTemplateParameter::defaultClassifier</span></span></span><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt;color:black'> was removed</span><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:20'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:21'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue10815">10815</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>New
-  definition of <span class=SpellE>DecisionNode</span>.<o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l13 level1 lfo44;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>New feature
-       added.<span style='mso-spacerun:yes'>   </span><o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l13 level1 lfo44;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>8 new constraints
-       added.<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>deleted
-  UML::Activities::IntermediateActivities::DecisionNode::one_incoming_edge <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>deleted
-  UML::Activities::IntermediateActivities::DecisionNode::input_parameter <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>updated specification of <span
-  class=SpellE>UML::Activities::IntermediateActivities::DecisionNode::edges</span>
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'><span
-  style='mso-spacerun:yes'> </span>added UML::Activities::IntermediateActivities::DecisionNode::incoming_outgoing_edges
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::Activities::IntermediateActivities::DecisionNode::decision_input_flow_incoming
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::Activities::IntermediateActivities::DecisionNode::parameters <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added UML::Activities::IntermediateActivities::DecisionNode::zero_input_parameters
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::Activities::IntermediateActivities::DecisionNode::incoming_object_one_input_parameter
-  <o:p></o:p></span></span></p>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l10 level1 lfo31;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol;color:black'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>added
-  UML::Activities::IntermediateActivities::DecisionNode::incoming_control_one_input_parameter
-  <o:p></o:p></span></span></p>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l10 level1 lfo31;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt;color:black'>added
-       UML::Activities::IntermediateActivities::DecisionNode::two_input_parameters
-       </span><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:22'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:23'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue12170">12170</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>One
-  constraint on Transitions was changed.<o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l37 level1 lfo48;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Disallow junctions
-       and joins to have triggers.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l37 level1 lfo48;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Constraint change.<o:p></o:p></span></li>
-  </ul>
-  <p class=MsoNormal style='margin-left:.5in;text-indent:-.25in;mso-list:l35 level1 lfo11;
-  tab-stops:-.5in 0in list .5in left 1.0in 1.5in 2.0in 2.5in 3.0in;mso-layout-grid-align:
-  none;text-autospace:none'><![if !supportLists]><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;font-family:Symbol;mso-fareast-font-family:Symbol;
-  mso-bidi-font-family:Symbol'><span style='mso-list:Ignore'>·<span
-  style='font:7.0pt "Times New Roman"'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
-  </span></span></span><![endif]><span dir=LTR><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt;color:black'>updated specification for
-  UML::StateMachines::BehaviorStateMachines::Transition::outgoing_pseudostates </span></span><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p></o:p></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:24'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:25'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>n/a<o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal style='tab-stops:-.5in 0in .5in 1.0in 1.5in 2.0in 2.5in 3.0in;
-  mso-layout-grid-align:none;text-autospace:none'><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt'>Changed namespace <span class=SpellE>URIÂ’s</span>
-  for root packages of Lx models to <span style='color:black'>'http://schema.omg.org/spec/UML/2.2/uml.xml'<o:p></o:p></span></span></p>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:26'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:27'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue9007">9007</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  color:black'>updated documentation for
-  UML::CommonBehaviors::Communications::CallConcurrencyKind::concurrent</span><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p></o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l35 level1 lfo11;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Opensource UML would
-       have to update documentation on API.<o:p></o:p></span></li>
-  </ul>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:28'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:29'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue9856">9856</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  color:black'>updated documentation for <span class=SpellE>UML::Activities::CompleteActivities::ActivityEdge::weight</span></span><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p></o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l35 level1 lfo11;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Opensource UML would
-       have to update documentation on API.<o:p></o:p></span></li>
-  </ul>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:30'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:31'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue9963">9963</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  color:black'>added default value for <span class=SpellE>UML::Classes::Kernel::Generalization::isSubstitutable</span></span><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p></o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l35 level1 lfo11;tab-stops:list .5in'><span
-       class=SpellE><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Generalization::isSubstitutable</span></span><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'> should no longer be <span
-       class=SpellE>unsettable</span> now that it has a default value.<o:p></o:p></span></li>
-  </ul>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:32'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:33'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue10655">10655</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt;
-  color:black'>updated documentation for <span class=SpellE>UML::CommonBehaviors::BasicBahaviors::Behavior::specification</span></span><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p></o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l35 level1 lfo11;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Opensource UML would
-       have to update documentation.<o:p></o:p></span></li>
-  </ul>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:34'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:35'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue11239">11239</a><o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span class=SpellE><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt'>TimeExpression::expr</span></span><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt'> and <span class=SpellE>Duration::expr</span>
-  are now composite.<o:p></o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l35 level1 lfo11;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>This might require
-       changes to tools an item providers<o:p></o:p></span></li>
-  </ul>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:36'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:37'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><a
-  href="http://www.omg.org/issues/uml2-rtf.html#Issue11409">11409</a> <o:p></o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span class=SpellE><span style='font-size:10.0pt;
-  mso-bidi-font-size:12.0pt'>TimeEvent::when</span></span><span
-  style='font-size:10.0pt;mso-bidi-font-size:12.0pt'> changed from <span
-  class=SpellE>ValueSpecification</span> to <span class=SpellE>TimeExpression</span><o:p></o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l35 level1 lfo11;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>This will have
-       migration impact<o:p></o:p></span></li>
-  </ul>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:38'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.0pt;
-  mso-border-top-alt:solid black .75pt;mso-border-top-alt:solid black .75pt;
-  mso-border-bottom-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
- </tr>
- <tr style='mso-yfti-irow:39;mso-yfti-lastrow:yes'>
-  <td width=54 valign=top style='width:40.8pt;border:none;border-bottom:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-  </td>
-  <td width=444 valign=top style='width:333.3pt;border:none;border-bottom:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Property
-  no longer specializes <span class=SpellE>TemplateableElement</span><o:p></o:p></span></p>
-  </td>
-  <td width=528 valign=top style='width:396.3pt;border:none;border-bottom:solid black 1.5pt;
-  mso-border-top-alt:solid black .75pt;padding:0in 5.4pt 0in 5.4pt'>
-  <ul style='margin-top:0in' type=disc>
-   <li class=MsoNormal style='mso-list:l35 level1 lfo11;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>This results in API
-       breaking changes since we are removing inherited features.<o:p></o:p></span></li>
-   <li class=MsoNormal style='mso-list:l35 level1 lfo11;tab-stops:list .5in'><span
-       style='font-size:10.0pt;mso-bidi-font-size:12.0pt'>Was missed in a
-       previous version of UML but corrected in this version.<o:p></o:p></span></li>
-  </ul>
-  </td>
- </tr>
-</table>
-
-<p class=MsoNormal><span style='font-size:10.0pt;mso-bidi-font-size:12.0pt'><o:p>&nbsp;</o:p></span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-lang=EN style='mso-ansi-language:EN'><o:p>&nbsp;</o:p></span></p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>Conclusion</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>For
-the most part, the migration from UML 2.1.2 to 2.2.0 should be straight
-forward.<span style='mso-spacerun:yes'>   </span>Keep in mind that changes have
-been made to the API and the namespace URI in the serialized models has been
-updated.</p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><img
-border=0 width=63 height=15 id="_x0000_i1028" src="../../../../images/tip.gif"><span
-style='mso-spacerun:yes'> </span>For more information on UML2, visit the <a
-href="http://www.eclipse.org/uml2">home page</a> or join the <a
-href="news://news.eclipse.org/eclipse.modeling.mdt.uml2">newsgroup</a>.</p>
-
-<h2 style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'>References</h2>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='mso-spacerun:yes'> </span>[1] Unified Modeling Language: Superstructure,
-version 2.2; formal/2008-05-05. <span class=GramE>OMG.</span></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><o:p>&nbsp;</o:p></p>
-
-<p style='tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt'><span
-style='font-size:7.5pt'>Java and all Java-based trademarks and logos are
-trademarks or registered trademarks of Sun Microsystems, Inc. in the </span><st1:country-region><st1:place><span
-  style='font-size:7.5pt'>United States</span></st1:place></st1:country-region><span
-style='font-size:7.5pt'>, other countries, or both.</span></p>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/guides/UML2_3.0_Migration_Guide/guide_files/filelist.xml b/uml2/docs/guides/UML2_3.0_Migration_Guide/guide_files/filelist.xml
deleted file mode 100644
index 8114a41..0000000
--- a/uml2/docs/guides/UML2_3.0_Migration_Guide/guide_files/filelist.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:MainFile HRef="../guide.html"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/guides/UML2_3.0_Migration_Guide/guide_files/preview.wmf b/uml2/docs/guides/UML2_3.0_Migration_Guide/guide_files/preview.wmf
deleted file mode 100644
index 6f854af..0000000
--- a/uml2/docs/guides/UML2_3.0_Migration_Guide/guide_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/plans/default_style.css b/uml2/docs/plans/default_style.css
deleted file mode 100644
index e26fec7..0000000
--- a/uml2/docs/plans/default_style.css
+++ /dev/null
@@ -1,18 +0,0 @@
-p, table, td, th {  font-family: arial, helvetica, geneva; font-size: 10pt}
-pre {  font-family: "Courier New", Courier, mono; font-size: 10pt}
-h2 { font-family: arial, helvetica, geneva; font-size: 18pt; font-weight: bold ; line-height: 14px}
-code {  font-family: "Courier New", Courier, mono; font-size: 10pt}
-sup {  font-family: arial,helvetica,geneva; font-size: 10px}
-h3 {  font-family: arial, helvetica, geneva; font-size: 14pt; font-weight: bold}
-li {  font-family: arial, helvetica, geneva; font-size: 10pt}
-h1 {  font-family: arial, helvetica, geneva; font-size: 28px; font-weight: bold}
-body {  font-family: arial, helvetica, geneva; font-size: 10pt; clip:   rect(   ); margin-top: 5mm; margin-left: 3mm}
-.indextop { font-size: x-large;; font-family: Verdana, Arial, Helvetica, sans-serif; font-weight: bold}
-.indexsub { font-size: xx-small;; font-family: Arial, Helvetica, sans-serif; color: #8080FF}
-a.bar:link {  text-decoration: none; color: #FFFFFF}
-a.bar:visited {  color: #FFFFFF; text-decoration: none}
-a.bar:hover {  color: #FFFFFF; text-decoration: underline}
-a.bar {  color: #FFFFFF}
-.jump { font-size: smaller;; font-family: Arial, Helvetica, sans-serif; color: #8080FF ; font-style: normal; text-decoration: none}
-.jump:link { font-size: smaller;; font-family: Arial, Helvetica, sans-serif; color: #8080FF; text-decoration: none}
-.jump:hover { font-size: smaller;; font-family: Arial, Helvetica, sans-serif; color: #0000FF; text-decoration: underline; font-style: normal}
diff --git a/uml2/docs/plans/uml2_project_plan_1_1.html b/uml2/docs/plans/uml2_project_plan_1_1.html
deleted file mode 100644
index 2aeedb6..0000000
--- a/uml2/docs/plans/uml2_project_plan_1_1.html
+++ /dev/null
@@ -1,946 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - 1.1 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>52</o:Revision>
-  <o:TotalTime>921</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2005-07-26T17:10:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2374</o:Words>
-  <o:Characters>13534</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>112</o:Lines>
-  <o:Paragraphs>31</o:Paragraphs>
-  <o:CharactersWithSpaces>15877</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:526797913;
-	mso-list-template-ids:-2097140410;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:677849793;
-	mso-list-template-ids:-1375062362;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:1400786720;
-	mso-list-template-ids:1800722274;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1950358623;
-	mso-list-template-ids:861565078;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1977762473;
-	mso-list-template-ids:206474590;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:2096441746;
-	mso-list-template-ids:412517296;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-1.1 Plan</h1>
-
-<p>Last revised 13:10 EDT July 26, 2005 (<img width=12 height=12
-id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes over the <a
-href="uml2_project_plan_1_1_20050520.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.0, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse bugzilla database, with a title and a concise summary (usually a
-single paragraph) that explains the work item at a suitably high enough level
-so that everyone can readily understand what the work item is without having to
-understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 11 - Milestone 1 (1.1 M1) - Stable
-     Build based on Eclipse 3.1 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 23 - Milestone 2 (1.1 M2) - Stable
-     Build based on Eclipse 3.1 M4 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1027" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, February 24 - Milestone 3 (1.1 M3) - Stable
-     Build based on Eclipse 3.1 M5 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1028" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 7 - Milestone 4 (1.1 M4) - Stable Build
-     based on Eclipse 3.1 M6 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1029" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, May 19 - Milestone 5 (1.1 M5) - Stable Build
-     based on Eclipse 3.1 M7 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1030" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for 2Q2005. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 1.1 with 1.0</h3>
-
-<p>Eclipse UML2 1.1 will be compatible with UML2 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 1.1 will be upwards
-contract-compatible with UML2 1.0 except in those areas noted in the <i>UML2
-1.1 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 1.1 APIs would ensure compliance with UML2
-1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 1.1 will be upwards
-binary-compatible with UML2 1.0 except in those areas noted in the <i>UML2 1.1
-Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 1.1 will
-likely be unusable with UML2 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.0 APIs will
-usually compile and run successfully against UML2 1.1 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 1.1 will be upwards
-workspace-compatible with UML2 1.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 1.0 installed can be successfully
-opened by an Eclipse with UML2 1.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be discarded
-when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for delivering
-     integrated modeling tools. With a growing base of both free and commercial
-     offerings based on UML2, it's critical for continued success to maintain
-     API stability and ensure that the framework scales well. This theme
-     includes work to measure and improve the performance and scalability of
-     UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.0 but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide the
-     features that advanced developers demand, but also be something that most
-     developers find simple to use. This theme includes ease-of-use reviews of
-     existing features, and work that helps make UML2-based products simple to
-     use for developers with widely-varying backgrounds and skill sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 1.1, this means
-     currency with Eclipse 3.1 and EMF 2.1.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to bugzilla problem
-reports for that plan item.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 metamodel for the
-Eclipse platform. Plan items reflect new features of the UML2 project, or areas
-where existing features will be significantly reworked (<span style='mso-bidi-font-style:
-italic'><img border=0 width=12 height=12 id="_x0000_i1031" src=../../../images/ok.gif> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1038" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>Eclipse
-3.1 / EMF 2.1 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b>
-Maintain release currency concurrent with EMF 2.1 (and Eclipse 3.1). Make
-changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405">77405</a>) [Theme:
-Release Currency] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1039" src=../../../images/ok.gif></span></p>
-
-<p><b>Migration Framework.</b> Provide a mechanism (using the Ecore2Ecore
-mapping framework and extended metadata) for migrating resources based on
-different (older) versions of the UML2 schema. Contribute the framework to the
-EMF project. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410">77410</a>)
-[Theme: Built To Last] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1032" src=../../../images/ok.gif></span></p>
-
-<p><b>Resource Localization.</b> Provide a mechanism for arbitrary (named)
-elements to be localized via properties bundles either co-located with the
-resource or distributed in a fragment. Enhance the existing stereotype keyword
-mechanism to support properties bundles distributed in fragments, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75659">75659</a>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406">77406</a>) [Theme:
-Built To Last] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1033" src=../../../images/ok.gif></span></p>
-
-<p><b>Update Site Support.</b> Provide UML2 runtime binary and SDK features on
-eclipse.org update site (install via Eclipse update manager). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77411">77411</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1034" src=../../../images/ok.gif></span></p>
-
-<p><b style='mso-bidi-font-weight:normal'>Instance Creation Support.</b>
-Provide a mechanism for creating instance specifications from classifiers.
-Enhance profile/stereotype operations to allow the values of complex stereotype
-properties (i.e. those typed by classifiers) to be accessed using instance
-specifications. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=78296">78296</a>)
-[Theme: Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1035" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><b>More Examples.</b> Deliver resource generation and query utilities to the
-open source community as examples. Introduce robust actions for converting
-models between Ecore and UML2 (and deprecate the existing import wizards). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412">77412</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1036" src=../../../images/ok.gif></span></p>
-
-<p><b>EMF Generator Extensions.</b> Refactor the custom Ecore "builder" and JET
-templates that were used to generate the UML2 metamodel and deliver them to the
-open source community, pending the availability of EMF generator extensibility
-enhancements, i.e. <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75923">75923</a>,
-<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75925">75925</a>, and <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75933">75933</a>. Provide
-an extension that builds an Ecore model from UML2 models. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408">77408</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1037" src=../../../images/ok.gif></span></p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1040" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>Improved Documentation.</b> Improve UML2
-documentation by updating the FAQ, enhancing the Javadoc, and publishing new
-articles. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>)
-[Theme: Simple To Use]</p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_1_1_20041101.html b/uml2/docs/plans/uml2_project_plan_1_1_20041101.html
deleted file mode 100644
index 989d710..0000000
--- a/uml2/docs/plans/uml2_project_plan_1_1_20041101.html
+++ /dev/null
@@ -1,910 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 1.1 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>21</o:Revision>
-  <o:TotalTime>828</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2004-11-01T19:20:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2026</o:Words>
-  <o:Characters>11552</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>96</o:Lines>
-  <o:Paragraphs>27</o:Paragraphs>
-  <o:CharactersWithSpaces>13551</o:CharactersWithSpaces>
-  <o:Version>10.4219</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:200024369;
-	mso-list-template-ids:967088208;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:363869721;
-	mso-list-template-ids:660518450;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:962226398;
-	mso-list-template-ids:-1900643438;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:1369338783;
-	mso-list-template-ids:-1178802402;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1683974827;
-	mso-list-template-ids:-939210998;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11
-	{mso-list-id:2016616261;
-	mso-list-template-ids:-1819003996;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 1.1 Plan</h1>
-
-<p>Last revised <st1:time Minute="20" Hour="14">14:20 EDT</st1:time> <st1:date
-Year="2004" Day="1" Month="11">November 1, 2004</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the previous plan revision)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.0, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage,
-documentation, examples, performance tuning, usability, etc. are considered
-routine ongoing maintenance activities and are not included in this plan unless
-they would also involve a significant change to the API or feature set, or
-involve a significant amount of work. The intent of the plan is to account for
-all interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 11 - Milestone 1 (1.1 M1) - Stable
-     Build based on Eclipse 3.1 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 23 - Milestone 2 (1.1 M2) - Stable
-     Build based on Eclipse 3.1 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, February 24 - Milestone 3 (1.1 M3) - Stable
-     Build based on Eclipse 3.1 M5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 7 - Milestone 4 (1.1 M4) - Stable Build
-     based on Eclipse 3.1 M6<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for 2Q2005. All release deliverables will be
-available for download as soon as the release has been tested and validated in the
-target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header><span style='font-family:
-Arial'>combinations of operating system and Java 2 Platform; these are our </span></span><em><span
-style='font-family:Arial'>reference platforms</span></em><span class=header><span
-style='font-family:Arial'>. Eclipse undoubtedly runs fine in many operating
-environments beyond the reference platforms we test. However, since we do not
-systematically test them we cannot vouch for them. Problems encountered when
-running Eclipse on non-reference platform that cannot be recreated on any
-reference platform will be given lower priority than problems with running
-Eclipse on a reference platform.</span></span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 1.1 with 1.0</h3>
-
-<p>Eclipse UML2 1.1 will be compatible with UML2 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 1.1 will be upwards contract-compatible
-with UML2 1.0 except in those areas noted in the <i>UML2 1.1 Migration<em><span
-style='font-family:Arial'> Guide</span></em></i>. Programs that use affected
-APIs and extension points will need to be ported to UML2 1.1 APIs. Downward
-contract compatibility is not supported. There is no guarantee that compliance
-with UML2 1.1 APIs would ensure compliance with UML2 1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that maintain
-contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 1.1 will be upwards
-binary-compatible with UML2 1.0 except in those areas noted in the <i>UML2 1.1
-Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 1.1 will
-likely be unusable with UML2 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.0 APIs will
-usually compile and run successfully against UML2 1.1 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 1.1 will be upwards
-workspace-compatible with UML2 1.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 1.0 installed can be successfully
-opened by an Eclipse with UML2 1.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.0 but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 1.1, this means
-     currency with Eclipse 3.1 and EMF 2.1.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say that
-     we won't be able to address it. After due consideration, a proposal will
-     either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1026" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b style='mso-bidi-font-weight:normal'>EMF <span class=GramE>2.1
-Compatibility</span><span style='mso-bidi-font-weight:bold'>.</span></b> Maintain
-release currency concurrent with EMF 2.1 (and Eclipse 3.1). Make changes as
-required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405">77405</a>) [Theme:
-Release Currency]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b>Resource Localization.</b></span> Provide a mechanism
-for arbitrary (named) elements to be localized via properties bundles either
-co-located with the resource or distributed in a fragment. Enhance the existing
-stereotype keyword mechanism to support properties bundles distributed in
-fragments, i.e. <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75659">75659</a>.
-(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406">77406</a>)
-[Theme: Built To Last]</p>
-
-<p><b>EMF Generator Extensions.</b> <span class=SpellE>Refactor</span> the
-custom <span class=SpellE>Ecore</span> "builder" and JET templates that were
-used to generate the UML2 <span class=SpellE>metamodel</span> and deliver them
-to the open source community, pending the availability of EMF generator
-extensibility enhancements, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75923">75923</a>, <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75925">75925</a>, and <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75933">75933</a>. Provide
-an extension that builds an <span class=SpellE>Ecore</span> model from UML2
-models. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408">77408</a>)
-[Theme: Simple To Use]</p>
-
-<p><span class=GramE><b>Migration Framework.</b></span> Provide a mechanism
-(using the Ecore2Ecore mapping framework and extended metadata) for migrating
-resources based on different (older) versions of the UML2 schema. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410">77410</a>) [Theme:
-Built To Last]</p>
-
-<p><b>Update Site Support.</b> Provide UML2 runtime binary and SDK features on
-eclipse.org update site (install via Eclipse update manager). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77411">77411</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>More Examples.</b></span> Deliver resource generation
-and query utilities to the open source community as examples. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412">77412</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><i>None at this time.</i></span></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_1_1_20041110.html b/uml2/docs/plans/uml2_project_plan_1_1_20041110.html
deleted file mode 100644
index 5aa8221..0000000
--- a/uml2/docs/plans/uml2_project_plan_1_1_20041110.html
+++ /dev/null
@@ -1,923 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 1.1 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>27</o:Revision>
-  <o:TotalTime>839</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2004-11-10T15:33:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2127</o:Words>
-  <o:Characters>12129</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>101</o:Lines>
-  <o:Paragraphs>28</o:Paragraphs>
-  <o:CharactersWithSpaces>14228</o:CharactersWithSpaces>
-  <o:Version>10.4219</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:250697725;
-	mso-list-template-ids:-1179098586;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:926377428;
-	mso-list-template-ids:-1909980746;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1198855637;
-	mso-list-template-ids:-2018750308;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1291742675;
-	mso-list-template-ids:694833828;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1350370376;
-	mso-list-template-ids:-1004881088;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11
-	{mso-list-id:2027443887;
-	mso-list-template-ids:2000713046;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 1.1 Plan</h1>
-
-<p>Last revised <st1:time Minute="33" Hour="10">10:33 EDT</st1:time> <st1:date
-Year="2004" Day="10" Month="11">November 10, 2004</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_1_1_20041101.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.0, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage,
-documentation, examples, performance tuning, usability, etc. are considered
-routine ongoing maintenance activities and are not included in this plan unless
-they would also involve a significant change to the API or feature set, or
-involve a significant amount of work. The intent of the plan is to account for
-all interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 11 - Milestone 1 (1.1 M1) - Stable
-     Build based on Eclipse 3.1 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 23 - Milestone 2 (1.1 M2) - Stable
-     Build based on Eclipse 3.1 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, February 24 - Milestone 3 (1.1 M3) - Stable
-     Build based on Eclipse 3.1 M5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 7 - Milestone 4 (1.1 M4) - Stable Build
-     based on Eclipse 3.1 M6<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for 2Q2005. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets reasonably
-current versions of underlying operating environments and other Eclipse
-projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse Platform,
-and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header><span style='font-family:
-Arial'>combinations of operating system and Java 2 Platform; these are our </span></span><em><span
-style='font-family:Arial'>reference platforms</span></em><span class=header><span
-style='font-family:Arial'>. Eclipse undoubtedly runs fine in many operating
-environments beyond the reference platforms we test. However, since we do not
-systematically test them we cannot vouch for them. Problems encountered when
-running Eclipse on non-reference platform that cannot be recreated on any
-reference platform will be given lower priority than problems with running
-Eclipse on a reference platform.</span></span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 1.1 with 1.0</h3>
-
-<p>Eclipse UML2 1.1 will be compatible with UML2 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 1.1 will be upwards
-contract-compatible with UML2 1.0 except in those areas noted in the <i>UML2
-1.1 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 1.1 APIs would ensure compliance with UML2
-1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 1.1 will be upwards
-binary-compatible with UML2 1.0 except in those areas noted in the <i>UML2 1.1
-Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 1.1 will
-likely be unusable with UML2 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.0 APIs will
-usually compile and run successfully against UML2 1.1 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 1.1 will be upwards
-workspace-compatible with UML2 1.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 1.0 installed can be successfully
-opened by an Eclipse with UML2 1.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.0 but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 1.1, this means
-     currency with Eclipse 3.1 and EMF 2.1.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are considering
-     addressing for the release. Although we are actively investigating it, we
-     are not yet in a position to commit to it, or to say that we won't be able
-     to address it. After due consideration, a proposal will either be
-     committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1026" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b style='mso-bidi-font-weight:normal'>EMF <span class=GramE>2.1
-Compatibility</span><span style='mso-bidi-font-weight:bold'>.</span></b>
-Maintain release currency concurrent with EMF 2.1 (and Eclipse 3.1). Make
-changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405">77405</a>) [Theme:
-Release Currency]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1028" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Migration Framework.</b></span>
-Provide a mechanism (using the Ecore2Ecore mapping framework and extended
-metadata) for migrating resources based on different (older) versions of the
-UML2 schema. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410">77410</a>)
-[Theme: Built To Last]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b>Resource Localization.</b></span> Provide a mechanism
-for arbitrary (named) elements to be localized via properties bundles either
-co-located with the resource or distributed in a fragment. Enhance the existing
-stereotype keyword mechanism to support properties bundles distributed in
-fragments, i.e. <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75659">75659</a>.
-(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406">77406</a>)
-[Theme: Built To Last]</p>
-
-<p><b>EMF Generator Extensions.</b> <span class=SpellE>Refactor</span> the
-custom <span class=SpellE>Ecore</span> "builder" and JET templates that were
-used to generate the UML2 <span class=SpellE>metamodel</span> and deliver them
-to the open source community, pending the availability of EMF generator
-extensibility enhancements, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75923">75923</a>, <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75925">75925</a>, and <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75933">75933</a>. Provide
-an extension that builds an <span class=SpellE>Ecore</span> model from UML2
-models. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408">77408</a>)
-[Theme: Simple To Use]</p>
-
-<p><b>Update Site Support.</b> Provide UML2 runtime binary and SDK features on
-eclipse.org update site (install via Eclipse update manager). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77411">77411</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>More Examples.</b></span> Deliver resource generation
-and query utilities to the open source community as examples. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412">77412</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1027" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>Instance
-Creation Support.</b> Provide a mechanism for creating instance specifications
-from classifiers. Enhance profile/stereotype operations to allow the values of
-complex stereotype properties (i.e. those typed by classifiers) to be accessed
-using instance specifications. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=78296">78296</a>) [Theme:
-Simple To Use] </p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><i>None at this time.</i></span></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_1_1_20041115.html b/uml2/docs/plans/uml2_project_plan_1_1_20041115.html
deleted file mode 100644
index 8bdd247..0000000
--- a/uml2/docs/plans/uml2_project_plan_1_1_20041115.html
+++ /dev/null
@@ -1,924 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 1.1 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>29</o:Revision>
-  <o:TotalTime>843</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2004-11-15T17:52:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2145</o:Words>
-  <o:Characters>12232</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>101</o:Lines>
-  <o:Paragraphs>28</o:Paragraphs>
-  <o:CharactersWithSpaces>14349</o:CharactersWithSpaces>
-  <o:Version>10.4219</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:961305256;
-	mso-list-template-ids:776608630;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:1006251725;
-	mso-list-template-ids:1782318188;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1027415138;
-	mso-list-template-ids:1049263798;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1259750065;
-	mso-list-template-ids:-1874580564;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1486319713;
-	mso-list-template-ids:161139754;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1722091670;
-	mso-list-template-ids:276222256;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 1.1 Plan</h1>
-
-<p>Last revised <st1:time Minute="53" Hour="12">12:53 EDT</st1:time> <st1:date
-Year="2004" Day="15" Month="11">November 15, 2004</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_1_1_20041110.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.0, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1029" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, November 11 - Milestone 1 (1.1 M1) - Stable Build based
-     on Eclipse 3.1 M3 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1028" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 23 - Milestone 2 (1.1 M2) - Stable
-     Build based on Eclipse 3.1 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, February 24 - Milestone 3 (1.1 M3) - Stable
-     Build based on Eclipse 3.1 M5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 7 - Milestone 4 (1.1 M4) - Stable Build
-     based on Eclipse 3.1 M6<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for 2Q2005. All release deliverables will be available
-for download as soon as the release has been tested and validated in the target
-operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header><span style='font-family:
-Arial'>combinations of operating system and Java 2 Platform; these are our </span></span><em><span
-style='font-family:Arial'>reference platforms</span></em><span class=header><span
-style='font-family:Arial'>. Eclipse undoubtedly runs fine in many operating
-environments beyond the reference platforms we test. However, since we do not
-systematically test them we cannot vouch for them. Problems encountered when
-running Eclipse on non-reference platform that cannot be recreated on any
-reference platform will be given lower priority than problems with running Eclipse
-on a reference platform.</span></span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 1.1 with 1.0</h3>
-
-<p>Eclipse UML2 1.1 will be compatible with UML2 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 1.1 will be upwards
-contract-compatible with UML2 1.0 except in those areas noted in the <i>UML2
-1.1 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to UML2
-1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 1.1 APIs would ensure compliance with UML2
-1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 1.1 will be upwards
-binary-compatible with UML2 1.0 except in those areas noted in the <i>UML2 1.1
-Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 1.1 will
-likely be unusable with UML2 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.0 APIs will
-usually compile and run successfully against UML2 1.1 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 1.1 will be upwards
-workspace-compatible with UML2 1.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 1.0 installed can be successfully
-opened by an Eclipse with UML2 1.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and certainly
-everything in a package with &quot;internal&quot; in its name, are considered
-implementation details which may vary between operating environment and are
-subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.0 but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide the
-     features that advanced developers demand, but also be something that most
-     developers find simple to use. This theme includes ease-of-use reviews of
-     existing features, and work that helps make UML2-based products simple to
-     use for developers with widely-varying backgrounds and skill sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 1.1, this means
-     currency with Eclipse 3.1 and EMF 2.1.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1026" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b style='mso-bidi-font-weight:normal'>EMF <span class=GramE>2.1
-Compatibility</span><span style='mso-bidi-font-weight:bold'>.</span></b>
-Maintain release currency concurrent with EMF 2.1 (and Eclipse 3.1). Make
-changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405">77405</a>) [Theme:
-Release Currency]</p>
-
-<p><span class=GramE><b>Migration Framework.</b></span> Provide a mechanism
-(using the Ecore2Ecore mapping framework and extended metadata) for migrating
-resources based on different (older) versions of the UML2 schema. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410">77410</a>) [Theme:
-Built To Last]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1027" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>Update Site Support.</b> Provide UML2
-runtime binary and SDK features on eclipse.org update site (install via Eclipse
-update manager). (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77411">77411</a>)
-[Theme: Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b>Resource Localization.</b></span> Provide a mechanism
-for arbitrary (named) elements to be localized via properties bundles either
-co-located with the resource or distributed in a fragment. Enhance the existing
-stereotype keyword mechanism to support properties bundles distributed in fragments,
-i.e. <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75659">75659</a>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406">77406</a>) [Theme:
-Built To Last]</p>
-
-<p><b>EMF Generator Extensions.</b> <span class=SpellE>Refactor</span> the
-custom <span class=SpellE>Ecore</span> "builder" and JET templates that were
-used to generate the UML2 <span class=SpellE>metamodel</span> and deliver them
-to the open source community, pending the availability of EMF generator
-extensibility enhancements, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75923">75923</a>, <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75925">75925</a>, and <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75933">75933</a>. Provide
-an extension that builds an <span class=SpellE>Ecore</span> model from UML2
-models. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408">77408</a>)
-[Theme: Simple To Use]</p>
-
-<p><span class=GramE><b>More Examples.</b></span> Deliver resource generation
-and query utilities to the open source community as examples. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412">77412</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-<p><b style='mso-bidi-font-weight:normal'>Instance Creation Support.</b>
-Provide a mechanism for creating instance specifications from classifiers.
-Enhance profile/stereotype operations to allow the values of complex stereotype
-properties (i.e. those typed by classifiers) to be accessed using instance
-specifications. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=78296">78296</a>)
-[Theme: Simple To Use] </p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><i>None at this time.</i></span></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_1_1_20041206.html b/uml2/docs/plans/uml2_project_plan_1_1_20041206.html
deleted file mode 100644
index 623af2f..0000000
--- a/uml2/docs/plans/uml2_project_plan_1_1_20041206.html
+++ /dev/null
@@ -1,928 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_1_1_20041206_files/filelist.xml">
-<link rel=Edit-Time-Data
-href="uml2_project_plan_1_1_20041206_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 1.1 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>34</o:Revision>
-  <o:TotalTime>851</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2004-12-13T18:54:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2182</o:Words>
-  <o:Characters>12441</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>103</o:Lines>
-  <o:Paragraphs>29</o:Paragraphs>
-  <o:CharactersWithSpaces>14594</o:CharactersWithSpaces>
-  <o:Version>10.6714</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:187449420;
-	mso-list-template-ids:-614423132;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:736321613;
-	mso-list-template-ids:1485366022;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:739787791;
-	mso-list-template-ids:1464388052;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:891117912;
-	mso-list-template-ids:-2098398752;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1193764147;
-	mso-list-template-ids:637547176;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10
-	{mso-list-id:1761683642;
-	mso-list-template-ids:806127570;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 1.1 Plan</h1>
-
-<p>Last revised <st1:time Minute="12" Hour="15">15:12 EDT</st1:time> <st1:date
-Year="2004" Day="6" Month="12">December 6, 2004</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_1_1_20041115.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.0, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the work
-item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage,
-documentation, examples, performance tuning, usability, etc. are considered
-routine ongoing maintenance activities and are not included in this plan unless
-they would also involve a significant change to the API or feature set, or
-involve a significant amount of work. The intent of the plan is to account for
-all interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 11 - Milestone 1 (1.1 M1) - Stable
-     Build based on Eclipse 3.1 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 23 - Milestone 2 (1.1 M2) - Stable Build
-     based on Eclipse 3.1 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, February 24 - Milestone 3 (1.1 M3) - Stable
-     Build based on Eclipse 3.1 M5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 7 - Milestone 4 (1.1 M4) - Stable Build
-     based on Eclipse 3.1 M6<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for 2Q2005. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 1.1 with 1.0</h3>
-
-<p>Eclipse UML2 1.1 will be compatible with UML2 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 1.1 will be upwards
-contract-compatible with UML2 1.0 except in those areas noted in the <i>UML2
-1.1 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 1.1 APIs would ensure compliance with UML2
-1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 1.1 will be upwards binary-compatible
-with UML2 1.0 except in those areas noted in the <i>UML2 1.1 Migration<em><span
-style='font-family:Arial'> Guide</span></em></i>. Downward plug-in
-compatibility is not supported: plug-ins compiled against UML2 1.1 will likely
-be unusable with UML2 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.0 APIs will
-usually compile and run successfully against UML2 1.1 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 1.1 will be upwards
-workspace-compatible with UML2 1.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 1.0 installed can be successfully
-opened by an Eclipse with UML2 1.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.0 but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use reviews
-     of existing features, and work that helps make UML2-based products simple
-     to use for developers with widely-varying backgrounds and skill sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 1.1, this means
-     currency with Eclipse 3.1 and EMF 2.1.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as committed
-     plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1027" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b style='mso-bidi-font-weight:normal'>EMF 2.1 Compatibility<span
-style='mso-bidi-font-weight:bold'>.</span></b> Maintain release currency
-concurrent with EMF 2.1 (and Eclipse 3.1). Make changes as required to align
-with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405">77405</a>) [Theme:
-Release Currency]</p>
-
-<p><b>Migration Framework.</b> Provide a mechanism (using the Ecore2Ecore mapping
-framework and extended metadata) for migrating resources based on different
-(older) versions of the UML2 schema. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410">77410</a>) [Theme:
-Built To Last]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1028" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Resource Localization.</b></span>
-Provide a mechanism for arbitrary (named) elements to be localized via
-properties bundles either co-located with the resource or distributed in a fragment.
-Enhance the existing stereotype keyword mechanism to support properties bundles
-distributed in fragments, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75659">75659</a>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406">77406</a>) [Theme:
-Built To Last]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1030" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>Update Site Support.</b> Provide UML2
-runtime binary and SDK features on eclipse.org update site (install via Eclipse
-update manager). (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77411">77411</a>)
-[Theme: Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1031" src=../../../images/ok.gif></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1029" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>Instance
-Creation Support.</b> Provide a mechanism for creating instance specifications
-from classifiers. Enhance profile/stereotype operations to allow the values of
-complex stereotype properties (i.e. those typed by classifiers) to be accessed
-using instance specifications. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=78296">78296</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>EMF Generator Extensions.</b> <span class=SpellE>Refactor</span> the
-custom <span class=SpellE>Ecore</span> "builder" and JET templates that were
-used to generate the UML2 <span class=SpellE>metamodel</span> and deliver them
-to the open source community, pending the availability of EMF generator
-extensibility enhancements, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75923">75923</a>, <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75925">75925</a>, and <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75933">75933</a>. Provide an
-extension that builds an <span class=SpellE>Ecore</span> model from UML2
-models. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408">77408</a>)
-[Theme: Simple To Use]</p>
-
-<p><b>More Examples.</b> Deliver resource generation and query utilities to the
-open source community as examples. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412">77412</a>) [Theme:
-Simple To Use]</p>
-
-<p><b>Improved Documentation.</b> Improve UML2 documentation by updating the
-FAQ, enhancing the <span class=SpellE>Javadoc</span>, and publishing new
-articles. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>)
-[Theme: Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_1_1_20041213.html b/uml2/docs/plans/uml2_project_plan_1_1_20041213.html
deleted file mode 100644
index 64c412a..0000000
--- a/uml2/docs/plans/uml2_project_plan_1_1_20041213.html
+++ /dev/null
@@ -1,918 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 1.1 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>33</o:Revision>
-  <o:TotalTime>854</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2004-12-13T18:54:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2200</o:Words>
-  <o:Characters>12544</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>104</o:Lines>
-  <o:Paragraphs>29</o:Paragraphs>
-  <o:CharactersWithSpaces>14715</o:CharactersWithSpaces>
-  <o:Version>10.6714</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:240137686;
-	mso-list-template-ids:460854398;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:946549329;
-	mso-list-template-ids:350628158;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1194269183;
-	mso-list-template-ids:-389018628;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1265770377;
-	mso-list-template-ids:-152375256;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1448426150;
-	mso-list-template-ids:1931932508;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1710911764;
-	mso-list-template-ids:-1056150672;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 1.1 Plan</h1>
-
-<p>Last revised 13:54 EDT December 13, 2004 (<img width=12 height=12
-id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes over the <a
-href="uml2_project_plan_1_1_20041206.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.0, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 11 - Milestone 1 (1.1 M1) - Stable
-     Build based on Eclipse 3.1 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 23 - Milestone 2 (1.1 M2) - Stable
-     Build based on Eclipse 3.1 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, February 24 - Milestone 3 (1.1 M3) - Stable
-     Build based on Eclipse 3.1 M5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 7 - Milestone 4 (1.1 M4) - Stable Build
-     based on Eclipse 3.1 M6<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for 2Q2005. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs and
-error messages, are externalized. The English strings for UML2 are provided as
-the default resource bundles. Translations are not provided with this release.
-However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 1.1 with 1.0</h3>
-
-<p>Eclipse UML2 1.1 will be compatible with UML2 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 1.1 will be upwards
-contract-compatible with UML2 1.0 except in those areas noted in the <i>UML2
-1.1 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 1.1 APIs would ensure compliance with UML2
-1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 1.1 will be upwards
-binary-compatible with UML2 1.0 except in those areas noted in the <i>UML2 1.1
-Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 1.1 will
-likely be unusable with UML2 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.0 APIs will
-usually compile and run successfully against UML2 1.1 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 1.1 will be upwards
-workspace-compatible with UML2 1.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 1.0 installed can be successfully
-opened by an Eclipse with UML2 1.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.0 but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that most
-     developers find simple to use. This theme includes ease-of-use reviews of
-     existing features, and work that helps make UML2-based products simple to
-     use for developers with widely-varying backgrounds and skill sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 1.1, this means
-     currency with Eclipse 3.1 and EMF 2.1.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1027" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b style='mso-bidi-font-weight:normal'>EMF <span class=GramE>2.1 Compatibility</span><span
-style='mso-bidi-font-weight:bold'>.</span></b> Maintain release currency
-concurrent with EMF 2.1 (and Eclipse 3.1). Make changes as required to align
-with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405">77405</a>) [Theme:
-Release Currency]</p>
-
-<p><span class=GramE><b>Migration Framework.</b></span> Provide a mechanism
-(using the Ecore2Ecore mapping framework and extended metadata) for migrating
-resources based on different (older) versions of the UML2 schema. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410">77410</a>) [Theme:
-Built To Last]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1028" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Resource Localization.</b></span>
-Provide a mechanism for arbitrary (named) elements to be localized via
-properties bundles either co-located with the resource or distributed in a
-fragment. Enhance the existing stereotype keyword mechanism to support
-properties bundles distributed in fragments, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75659">75659</a>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406">77406</a>) [Theme:
-Built To Last] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1032" src=../../../images/ok.gif></span></p>
-
-<p><b>Update Site Support.</b> Provide UML2 runtime binary and SDK features on
-eclipse.org update site (install via Eclipse update manager). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77411">77411</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1030" src=../../../images/ok.gif></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1029" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>Instance
-Creation Support.</b> Provide a mechanism for creating instance specifications
-from classifiers. Enhance profile/stereotype operations to allow the values of
-complex stereotype properties (i.e. those typed by classifiers) to be accessed
-using instance specifications. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=78296">78296</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1031" src=../../../images/ok.gif></span></p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b>EMF Generator Extensions.</b></span> <span
-class=SpellE>Refactor</span> the custom <span class=SpellE>Ecore</span>
-"builder" and JET templates that were used to generate the UML2 <span
-class=SpellE>metamodel</span> and deliver them to the open source community,
-pending the availability of EMF generator extensibility enhancements, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75923">75923</a>, <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75925">75925</a>, and <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75933">75933</a>. Provide
-an extension that builds an <span class=SpellE>Ecore</span> model from UML2
-models. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408">77408</a>)
-[Theme: Simple To Use]</p>
-
-<p><span class=GramE><b>More Examples.</b></span> Deliver resource generation
-and query utilities to the open source community as examples. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412">77412</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><i>None at this time.</i></span></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_1_1_20041223.html b/uml2/docs/plans/uml2_project_plan_1_1_20041223.html
deleted file mode 100644
index 552bd37..0000000
--- a/uml2/docs/plans/uml2_project_plan_1_1_20041223.html
+++ /dev/null
@@ -1,911 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 1.1 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>35</o:Revision>
-  <o:TotalTime>859</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2004-12-23T20:44:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2255</o:Words>
-  <o:Characters>12859</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>107</o:Lines>
-  <o:Paragraphs>30</o:Paragraphs>
-  <o:CharactersWithSpaces>15084</o:CharactersWithSpaces>
-  <o:Version>10.6714</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:450708773;
-	mso-list-template-ids:-1408594224;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:1414662798;
-	mso-list-template-ids:853315722;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1442870789;
-	mso-list-template-ids:-858256086;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1584679690;
-	mso-list-template-ids:-185823514;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1663123691;
-	mso-list-template-ids:1609468820;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11
-	{mso-list-id:1861507059;
-	mso-list-template-ids:-1146875746;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 1.1 Plan</h1>
-
-<p>Last revised 15:44 EDT December 23, 2004 (<img width=12 height=12
-id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes over the <a
-href="uml2_project_plan_1_1_20041213.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.0, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse bugzilla database, with a title and a concise summary (usually a
-single paragraph) that explains the work item at a suitably high enough level
-so that everyone can readily understand what the work item is without having to
-understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 11 - Milestone 1 (1.1 M1) - Stable
-     Build based on Eclipse 3.1 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1034" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, December 23 - Milestone 2 (1.1 M2) - Stable Build based
-     on Eclipse 3.1 M4 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1035" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, February 24 - Milestone 3 (1.1 M3) - Stable
-     Build based on Eclipse 3.1 M5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 7 - Milestone 4 (1.1 M4) - Stable Build
-     based on Eclipse 3.1 M6<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for 2Q2005. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 1.1 with 1.0</h3>
-
-<p>Eclipse UML2 1.1 will be compatible with UML2 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 1.1 will be upwards
-contract-compatible with UML2 1.0 except in those areas noted in the <i>UML2
-1.1 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 1.1 APIs would ensure compliance with UML2
-1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 1.1 will be upwards
-binary-compatible with UML2 1.0 except in those areas noted in the <i>UML2 1.1
-Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 1.1 will
-likely be unusable with UML2 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.0 APIs will
-usually compile and run successfully against UML2 1.1 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 1.1 will be upwards
-workspace-compatible with UML2 1.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 1.0 installed can be successfully
-opened by an Eclipse with UML2 1.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.0 but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 1.1, this means
-     currency with Eclipse 3.1 and EMF 2.1.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to bugzilla problem
-reports for that plan item.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 metamodel for the Eclipse
-platform. Plan items reflect new features of the UML2 project, or areas where
-existing features will be significantly reworked (<span style='mso-bidi-font-style:
-italic'><img border=0 width=12 height=12 id="_x0000_i1027" src=../../../images/ok.gif> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b style='mso-bidi-font-weight:normal'>EMF 2.1 Compatibility<span
-style='mso-bidi-font-weight:bold'>.</span></b> Maintain release currency
-concurrent with EMF 2.1 (and Eclipse 3.1). Make changes as required to align
-with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405">77405</a>) [Theme:
-Release Currency]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1031" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>Migration Framework.</b> Provide a
-mechanism (using the Ecore2Ecore mapping framework and extended metadata) for
-migrating resources based on different (older) versions of the UML2 schema. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410">77410</a>) [Theme:
-Built To Last]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1032" src=../../../images/ok.gif></span></p>
-
-<p><b>Resource Localization.</b> Provide a mechanism for arbitrary (named)
-elements to be localized via properties bundles either co-located with the
-resource or distributed in a fragment. Enhance the existing stereotype keyword
-mechanism to support properties bundles distributed in fragments, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75659">75659</a>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406">77406</a>) [Theme:
-Built To Last] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1028" src=../../../images/ok.gif></span></p>
-
-<p><b>Update Site Support.</b> Provide UML2 runtime binary and SDK features on
-eclipse.org update site (install via Eclipse update manager). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77411">77411</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1029" src=../../../images/ok.gif></span></p>
-
-<p><b style='mso-bidi-font-weight:normal'>Instance Creation Support.</b>
-Provide a mechanism for creating instance specifications from classifiers.
-Enhance profile/stereotype operations to allow the values of complex stereotype
-properties (i.e. those typed by classifiers) to be accessed using instance
-specifications. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=78296">78296</a>)
-[Theme: Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1030" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1033" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>More Examples.</b> Deliver resource
-generation and query utilities to the open source community as examples. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412">77412</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>EMF Generator Extensions.</b> Refactor the custom Ecore "builder" and JET
-templates that were used to generate the UML2 metamodel and deliver them to the
-open source community, pending the availability of EMF generator extensibility
-enhancements, i.e. <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75923">75923</a>,
-<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75925">75925</a>, and <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75933">75933</a>. Provide
-an extension that builds an Ecore model from UML2 models. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408">77408</a>) [Theme:
-Simple To Use]</p>
-
-<p><b>Improved Documentation.</b> Improve UML2 documentation by updating the
-FAQ, enhancing the Javadoc, and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_1_1_20050207.html b/uml2/docs/plans/uml2_project_plan_1_1_20050207.html
deleted file mode 100644
index 206f167..0000000
--- a/uml2/docs/plans/uml2_project_plan_1_1_20050207.html
+++ /dev/null
@@ -1,942 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 1.1 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>39</o:Revision>
-  <o:TotalTime>864</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2005-02-07T20:14:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2218</o:Words>
-  <o:Characters>12647</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>105</o:Lines>
-  <o:Paragraphs>29</o:Paragraphs>
-  <o:CharactersWithSpaces>14836</o:CharactersWithSpaces>
-  <o:Version>10.6714</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:204174849;
-	mso-list-template-ids:-1173470588;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:364017077;
-	mso-list-template-ids:-1038719066;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:377903359;
-	mso-list-template-ids:322623182;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:1110322904;
-	mso-list-template-ids:-2141310732;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1532526005;
-	mso-list-template-ids:-787951852;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1766924459;
-	mso-list-template-ids:-273544546;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 1.1 Plan</h1>
-
-<p>Last revised 15:14 EST February 7, 2005 (<img width=12 height=12
-id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes over the <a
-href="uml2_project_plan_1_1_20041223.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.0, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 11 - Milestone 1 (1.1 M1) - Stable
-     Build based on Eclipse 3.1 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 23 - Milestone 2 (1.1 M2) - Stable
-     Build based on Eclipse 3.1 M4 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1027" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, February 24 - Milestone 3 (1.1 M3) - Stable
-     Build based on Eclipse 3.1 M5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 7 - Milestone 4 (1.1 M4) - Stable Build
-     based on Eclipse 3.1 M6<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for 2Q2005. All release deliverables will be available
-for download as soon as the release has been tested and validated in the target
-operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we test.
-However, since we do not systematically test them we cannot vouch for them.
-Problems encountered when running Eclipse on non-reference platform that cannot
-be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 1.1 with 1.0</h3>
-
-<p>Eclipse UML2 1.1 will be compatible with UML2 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 1.1 will be upwards
-contract-compatible with UML2 1.0 except in those areas noted in the <i>UML2
-1.1 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 1.1 APIs would ensure compliance with UML2
-1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 1.1 will be upwards
-binary-compatible with UML2 1.0 except in those areas noted in the <i>UML2 1.1
-Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 1.1 will
-likely be unusable with UML2 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.0 APIs will
-usually compile and run successfully against UML2 1.1 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 1.1 will be upwards
-workspace-compatible with UML2 1.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 1.0 installed can be successfully
-opened by an Eclipse with UML2 1.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.0 but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 1.1, this means
-     currency with Eclipse 3.1 and EMF 2.1.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1028" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b style='mso-bidi-font-weight:normal'>EMF <span class=GramE>2.1
-Compatibility</span><span style='mso-bidi-font-weight:bold'>.</span></b>
-Maintain release currency concurrent with EMF 2.1 (and Eclipse 3.1). Make
-changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405">77405</a>) [Theme:
-Release Currency]</p>
-
-<p><span class=GramE><b>Migration Framework.</b></span> Provide a mechanism
-(using the Ecore2Ecore mapping framework and extended metadata) for migrating resources
-based on different (older) versions of the UML2 schema. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410">77410</a>) [Theme:
-Built To Last]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1029" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Resource Localization.</b></span> Provide a mechanism
-for arbitrary (named) elements to be localized via properties bundles either
-co-located with the resource or distributed in a fragment. Enhance the existing
-stereotype keyword mechanism to support properties bundles distributed in
-fragments, i.e. <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75659">75659</a>.
-(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406">77406</a>)
-[Theme: Built To Last] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1030" src=../../../images/ok.gif></span></p>
-
-<p><b>Update Site Support.</b> Provide UML2 runtime binary and SDK features on
-eclipse.org update site (install via Eclipse update manager). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77411">77411</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1031" src=../../../images/ok.gif></span></p>
-
-<p><b style='mso-bidi-font-weight:normal'>Instance Creation Support.</b>
-Provide a mechanism for creating instance specifications from classifiers.
-Enhance profile/stereotype operations to allow the values of complex stereotype
-properties (i.e. those typed by classifiers) to be accessed using instance
-specifications. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=78296">78296</a>)
-[Theme: Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1032" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><span class=GramE><b>More Examples.</b></span> Deliver resource generation
-and query utilities to the open source community as examples. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412">77412</a>) [Theme:
-Simple To Use]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1033" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>EMF Generator Extensions.</b></span>
-<span class=SpellE>Refactor</span> the custom <span class=SpellE>Ecore</span>
-"builder" and JET templates that were used to generate the UML2 <span
-class=SpellE>metamodel</span> and deliver them to the open source community,
-pending the availability of EMF generator extensibility enhancements, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75923">75923</a>, <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75925">75925</a>, and <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75933">75933</a>. Provide
-an extension that builds an <span class=SpellE>Ecore</span> model from UML2
-models. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408">77408</a>)
-[Theme: Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><i>None at this time.</i></span></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_1_1_20050307.html b/uml2/docs/plans/uml2_project_plan_1_1_20050307.html
deleted file mode 100644
index 2d99e68..0000000
--- a/uml2/docs/plans/uml2_project_plan_1_1_20050307.html
+++ /dev/null
@@ -1,955 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - 1.1 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>42</o:Revision>
-  <o:TotalTime>873</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2005-03-07T14:50:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2317</o:Words>
-  <o:Characters>13207</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>110</o:Lines>
-  <o:Paragraphs>30</o:Paragraphs>
-  <o:CharactersWithSpaces>15494</o:CharactersWithSpaces>
-  <o:Version>10.6714</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:23023052;
-	mso-list-template-ids:-1754887770;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:490953673;
-	mso-list-template-ids:312626778;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:1113016486;
-	mso-list-template-ids:-1929483316;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1124541522;
-	mso-list-template-ids:946606692;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1415586545;
-	mso-list-template-ids:1516436414;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1603369872;
-	mso-list-template-ids:1172078684;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-1.1 Plan</h1>
-
-<p>Last revised <st1:time Minute="50" Hour="9">09:50 EST</st1:time> <st1:date
-Year="2005" Day="7" Month="3">March 7, 2005</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_1_1_20050207.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.0, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse bugzilla database, with a title and a concise summary (usually a
-single paragraph) that explains the work item at a suitably high enough level
-so that everyone can readily understand what the work item is without having to
-understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 11 - Milestone 1 (1.1 M1) - Stable
-     Build based on Eclipse 3.1 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 23 - Milestone 2 (1.1 M2) - Stable
-     Build based on Eclipse 3.1 M4 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1027" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1028" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, February 24 - Milestone 3 (1.1 M3) - Stable Build based
-     on Eclipse 3.1 M5 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1029" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 7 - Milestone 4 (1.1 M4) - Stable Build
-     based on Eclipse 3.1 M6<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1037" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, May 19 - Milestone 5 (1.1 M5) - Stable Build based on
-     Eclipse 3.1 M7<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for 2Q2005. All release deliverables will be available
-for download as soon as the release has been tested and validated in the target
-operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we test.
-However, since we do not systematically test them we cannot vouch for them.
-Problems encountered when running Eclipse on non-reference platform that cannot
-be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 1.1 with 1.0</h3>
-
-<p>Eclipse UML2 1.1 will be compatible with UML2 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 1.1 will be upwards
-contract-compatible with UML2 1.0 except in those areas noted in the <i>UML2
-1.1 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 1.1 APIs would ensure compliance with UML2
-1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving Java-based
-APIs</a></i> for a discussion of the kinds of API changes that maintain
-contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 1.1 will be upwards
-binary-compatible with UML2 1.0 except in those areas noted in the <i>UML2 1.1
-Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 1.1 will
-likely be unusable with UML2 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.0 APIs will
-usually compile and run successfully against UML2 1.1 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 1.1 will be upwards
-workspace-compatible with UML2 1.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 1.0 installed can be successfully
-opened by an Eclipse with UML2 1.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.0 but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide the
-     features that advanced developers demand, but also be something that most
-     developers find simple to use. This theme includes ease-of-use reviews of
-     existing features, and work that helps make UML2-based products simple to
-     use for developers with widely-varying backgrounds and skill sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 1.1, this means
-     currency with Eclipse 3.1 and EMF 2.1.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to bugzilla problem
-reports for that plan item.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 metamodel for the Eclipse
-platform. Plan items reflect new features of the UML2 project, or areas where
-existing features will be significantly reworked (<span style='mso-bidi-font-style:
-italic'><img border=0 width=12 height=12 id="_x0000_i1030" src=../../../images/ok.gif> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1031" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b style='mso-bidi-font-weight:normal'>Eclipse
-3.1 / EMF 2.1 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b>
-Maintain release currency concurrent with EMF 2.1 (and Eclipse 3.1). Make
-changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405">77405</a>) [Theme:
-Release Currency]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1032" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>Migration Framework.</b> Provide a
-mechanism (using the Ecore2Ecore mapping framework and extended metadata) for
-migrating resources based on different (older) versions of the UML2 schema.
-Contribute the framework to the EMF project. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410">77410</a>) [Theme:
-Built To Last]</p>
-
-<p><b>Resource Localization.</b> Provide a mechanism for arbitrary (named)
-elements to be localized via properties bundles either co-located with the
-resource or distributed in a fragment. Enhance the existing stereotype keyword
-mechanism to support properties bundles distributed in fragments, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75659">75659</a>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406">77406</a>) [Theme:
-Built To Last] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1033" src=../../../images/ok.gif></span></p>
-
-<p><b>Update Site Support.</b> Provide UML2 runtime binary and SDK features on
-eclipse.org update site (install via Eclipse update manager). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77411">77411</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1034" src=../../../images/ok.gif></span></p>
-
-<p><b style='mso-bidi-font-weight:normal'>Instance Creation Support.</b>
-Provide a mechanism for creating instance specifications from classifiers.
-Enhance profile/stereotype operations to allow the values of complex stereotype
-properties (i.e. those typed by classifiers) to be accessed using instance
-specifications. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=78296">78296</a>)
-[Theme: Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1035" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><b>More Examples.</b> Deliver resource generation and query utilities to the
-open source community as examples. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412">77412</a>) [Theme:
-Simple To Use]</p>
-
-<p><b>EMF Generator Extensions.</b> Refactor the custom Ecore "builder" and JET
-templates that were used to generate the UML2 metamodel and deliver them to the
-open source community, pending the availability of EMF generator extensibility
-enhancements, i.e. <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75923">75923</a>,
-<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75925">75925</a>, and <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75933">75933</a>. Provide
-an extension that builds an Ecore model from UML2 models. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408">77408</a>) [Theme:
-Simple To Use]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1036" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>Improved Documentation.</b> Improve UML2
-documentation by updating the FAQ, enhancing the Javadoc, and publishing new
-articles. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>)
-[Theme: Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_1_1_20050411.html b/uml2/docs/plans/uml2_project_plan_1_1_20050411.html
deleted file mode 100644
index e89534f..0000000
--- a/uml2/docs/plans/uml2_project_plan_1_1_20050411.html
+++ /dev/null
@@ -1,958 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - 1.1 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>45</o:Revision>
-  <o:TotalTime>878</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2005-04-11T15:16:00Z</o:LastSaved>
-  <o:Pages>2</o:Pages>
-  <o:Words>2324</o:Words>
-  <o:Characters>13248</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>110</o:Lines>
-  <o:Paragraphs>31</o:Paragraphs>
-  <o:CharactersWithSpaces>15541</o:CharactersWithSpaces>
-  <o:Version>10.6714</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:434711385;
-	mso-list-template-ids:1383919950;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:567610914;
-	mso-list-template-ids:-487930008;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:704713687;
-	mso-list-template-ids:-1020383866;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:792557060;
-	mso-list-template-ids:692360164;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1019742603;
-	mso-list-template-ids:-1274238240;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11
-	{mso-list-id:2079591761;
-	mso-list-template-ids:357236564;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-1.1 Plan</h1>
-
-<p>Last revised 11:16 EST April 11, 2005 (<img width=12 height=12
-id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes over the <a
-href="uml2_project_plan_1_1_20050307.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.0, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 11 - Milestone 1 (1.1 M1) - Stable
-     Build based on Eclipse 3.1 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 23 - Milestone 2 (1.1 M2) - Stable
-     Build based on Eclipse 3.1 M4 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1027" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, February 24 - Milestone 3 (1.1 M3) - Stable
-     Build based on Eclipse 3.1 M5 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1028" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1035" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, April 7 - Milestone 4 (1.1 M4) - Stable Build based on
-     Eclipse 3.1 M6 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1034" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, May 19 - Milestone 5 (1.1 M5) - Stable Build
-     based on Eclipse 3.1 M7<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for 2Q2005. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 1.1 with 1.0</h3>
-
-<p>Eclipse UML2 1.1 will be compatible with UML2 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 1.1 will be upwards
-contract-compatible with UML2 1.0 except in those areas noted in the <i>UML2
-1.1 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 1.1 APIs would ensure compliance with UML2
-1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 1.1 will be upwards
-binary-compatible with UML2 1.0 except in those areas noted in the <i>UML2 1.1
-Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 1.1 will
-likely be unusable with UML2 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.0 APIs will
-usually compile and run successfully against UML2 1.1 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 1.1 will be upwards
-workspace-compatible with UML2 1.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 1.0 installed can be successfully
-opened by an Eclipse with UML2 1.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single release
-much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.0 but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 1.1, this means
-     currency with Eclipse 3.1 and EMF 2.1.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1029" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.1 / EMF
-2.1 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.1 (and Eclipse 3.1). Make
-changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405">77405</a>) [Theme:
-Release Currency]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1030" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Migration Framework.</b></span>
-Provide a mechanism (using the Ecore2Ecore mapping framework and extended
-metadata) for migrating resources based on different (older) versions of the
-UML2 schema. Contribute the framework to the EMF project. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410">77410</a>) [Theme:
-Built To Last] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1036" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Resource Localization.</b></span> Provide a mechanism
-for arbitrary (named) elements to be localized via properties bundles either
-co-located with the resource or distributed in a fragment. Enhance the existing
-stereotype keyword mechanism to support properties bundles distributed in
-fragments, i.e. <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75659">75659</a>.
-(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406">77406</a>)
-[Theme: Built To Last] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1031" src=../../../images/ok.gif></span></p>
-
-<p><b>Update Site Support.</b> Provide UML2 runtime binary and SDK features on
-eclipse.org update site (install via Eclipse update manager). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77411">77411</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1032" src=../../../images/ok.gif></span></p>
-
-<p><b style='mso-bidi-font-weight:normal'>Instance Creation Support.</b> Provide
-a mechanism for creating instance specifications from classifiers. Enhance
-profile/stereotype operations to allow the values of complex stereotype
-properties (i.e. those typed by classifiers) to be accessed using instance
-specifications. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=78296">78296</a>)
-[Theme: Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1033" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1037" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>More Examples.</b></span>
-Deliver resource generation and query utilities to the open source community as
-examples. Introduce robust actions for converting models between <span
-class=SpellE>Ecore</span> and UML2 (and deprecate the existing import wizards).
-(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412">77412</a>)
-[Theme: Simple <span class=GramE>To</span> Use]</p>
-
-<p><b>EMF Generator Extensions.</b> <span class=SpellE>Refactor</span> the
-custom <span class=SpellE>Ecore</span> "builder" and JET templates that were
-used to generate the UML2 <span class=SpellE>metamodel</span> and deliver them
-to the open source community, pending the availability of EMF generator
-extensibility enhancements, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75923">75923</a>, <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75925">75925</a>, and <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75933">75933</a>. Provide
-an extension that builds an <span class=SpellE>Ecore</span> model from UML2
-models. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408">77408</a>)
-[Theme: Simple To Use]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_1_1_20050418.html b/uml2/docs/plans/uml2_project_plan_1_1_20050418.html
deleted file mode 100644
index 3945669..0000000
--- a/uml2/docs/plans/uml2_project_plan_1_1_20050418.html
+++ /dev/null
@@ -1,966 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - 1.1 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>47</o:Revision>
-  <o:TotalTime>880</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2005-04-18T12:46:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2306</o:Words>
-  <o:Characters>13145</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>109</o:Lines>
-  <o:Paragraphs>30</o:Paragraphs>
-  <o:CharactersWithSpaces>15421</o:CharactersWithSpaces>
-  <o:Version>10.6714</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:10762230;
-	mso-list-template-ids:1291479180;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:172578537;
-	mso-list-template-ids:-687195836;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:252739544;
-	mso-list-template-ids:-1479751418;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:819342913;
-	mso-list-template-ids:-1386996586;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1427191262;
-	mso-list-template-ids:-1858853888;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1663001683;
-	mso-list-template-ids:1060145556;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-1.1 Plan</h1>
-
-<p>Last revised <st1:time Minute="46" Hour="8">08:46 EDT</st1:time> <st1:date
-Year="2005" Day="18" Month="4">April 18, 2005</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_1_1_20050411.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.0, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 11 - Milestone 1 (1.1 M1) - Stable
-     Build based on Eclipse 3.1 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 23 - Milestone 2 (1.1 M2) - Stable
-     Build based on Eclipse 3.1 M4 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1027" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, February 24 - Milestone 3 (1.1 M3) - Stable
-     Build based on Eclipse 3.1 M5 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1028" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 7 - Milestone 4 (1.1 M4) - Stable Build
-     based on Eclipse 3.1 M6 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1029" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, May 19 - Milestone 5 (1.1 M5) - Stable Build
-     based on Eclipse 3.1 M7<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for 2Q2005. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 1.1 with 1.0</h3>
-
-<p>Eclipse UML2 1.1 will be compatible with UML2 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 1.1 will be upwards
-contract-compatible with UML2 1.0 except in those areas noted in the <i>UML2
-1.1 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 1.1 APIs would ensure compliance with UML2
-1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 1.1 will be upwards
-binary-compatible with UML2 1.0 except in those areas noted in the <i>UML2 1.1
-Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 1.1 will
-likely be unusable with UML2 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.0 APIs will
-usually compile and run successfully against UML2 1.1 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 1.1 will be upwards
-workspace-compatible with UML2 1.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 1.0 installed can be successfully
-opened by an Eclipse with UML2 1.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single release
-much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.0 but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that most
-     developers find simple to use. This theme includes ease-of-use reviews of
-     existing features, and work that helps make UML2-based products simple to
-     use for developers with widely-varying backgrounds and skill sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 1.1, this means
-     currency with Eclipse 3.1 and EMF 2.1.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project, or
-areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1030" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.1 / EMF 2.1
-Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.1 (and Eclipse 3.1). Make
-changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405">77405</a>) [Theme:
-Release Currency]</p>
-
-<p><span class=GramE><b>Migration Framework.</b></span> Provide a mechanism
-(using the Ecore2Ecore mapping framework and extended metadata) for migrating
-resources based on different (older) versions of the UML2 schema. Contribute
-the framework to the EMF project. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410">77410</a>) [Theme:
-Built To Last] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1031" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Resource Localization.</b></span> Provide a mechanism
-for arbitrary (named) elements to be localized via properties bundles either
-co-located with the resource or distributed in a fragment. Enhance the existing
-stereotype keyword mechanism to support properties bundles distributed in
-fragments, i.e. <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75659">75659</a>.
-(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406">77406</a>)
-[Theme: Built To Last] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1032" src=../../../images/ok.gif></span></p>
-
-<p><b>Update Site Support.</b> Provide UML2 runtime binary and SDK features on
-eclipse.org update site (install via Eclipse update manager). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77411">77411</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1033" src=../../../images/ok.gif></span></p>
-
-<p><b style='mso-bidi-font-weight:normal'>Instance Creation Support.</b>
-Provide a mechanism for creating instance specifications from classifiers.
-Enhance profile/stereotype operations to allow the values of complex stereotype
-properties (i.e. those typed by classifiers) to be accessed using instance
-specifications. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=78296">78296</a>)
-[Theme: Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1034" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1036" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>More Examples.</b></span>
-Deliver resource generation and query utilities to the open source community as
-examples. Introduce robust actions for converting models between <span
-class=SpellE>Ecore</span> and UML2 (and deprecate the existing import wizards).
-(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412">77412</a>)
-[Theme: Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1035" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>EMF Generator Extensions.</b></span> <span
-class=SpellE>Refactor</span> the custom <span class=SpellE>Ecore</span>
-"builder" and JET templates that were used to generate the UML2 <span
-class=SpellE>metamodel</span> and deliver them to the open source community,
-pending the availability of EMF generator extensibility enhancements, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75923">75923</a>, <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75925">75925</a>, and <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75933">75933</a>. Provide
-an extension that builds an <span class=SpellE>Ecore</span> model from UML2
-models. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408">77408</a>)
-[Theme: Simple To Use]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_1_1_20050520.html b/uml2/docs/plans/uml2_project_plan_1_1_20050520.html
deleted file mode 100644
index 7f2d04a..0000000
--- a/uml2/docs/plans/uml2_project_plan_1_1_20050520.html
+++ /dev/null
@@ -1,962 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_1_1_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_1_1_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - 1.1 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>50</o:Revision>
-  <o:TotalTime>913</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2005-05-20T19:01:00Z</o:LastSaved>
-  <o:Pages>2</o:Pages>
-  <o:Words>2359</o:Words>
-  <o:Characters>13448</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>112</o:Lines>
-  <o:Paragraphs>31</o:Paragraphs>
-  <o:CharactersWithSpaces>15776</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:7946175;
-	mso-list-template-ids:2035070930;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:838621484;
-	mso-list-template-ids:1475792820;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1130904993;
-	mso-list-template-ids:826951900;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:1397238794;
-	mso-list-template-ids:-1944139706;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1512066021;
-	mso-list-template-ids:-1314856482;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11
-	{mso-list-id:2101095084;
-	mso-list-template-ids:-2041119722;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-1.1 Plan</h1>
-
-<p>Last revised 15:00 EDT May 20, 2005 (<img width=12 height=12
-id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes over the <a
-href="uml2_project_plan_1_1_20050418.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.0, designated release 1.1. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R1_1&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 11 - Milestone 1 (1.1 M1) - Stable
-     Build based on Eclipse 3.1 M3 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 23 - Milestone 2 (1.1 M2) - Stable
-     Build based on Eclipse 3.1 M4 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1027" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, February 24 - Milestone 3 (1.1 M3) - Stable
-     Build based on Eclipse 3.1 M5 </span><span style='mso-bidi-font-style:
-     italic'><img border=0 width=12 height=12 id="_x0000_i1028" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 7 - Milestone 4 (1.1 M4) - Stable Build
-     based on Eclipse 3.1 M6 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1029" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1037" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, May 19 - Milestone 5 (1.1 M5) - Stable Build based on
-     Eclipse 3.1 M7 </span><span style='mso-bidi-font-style:italic'><img
-     border=0 width=12 height=12 id="_x0000_i1036" src=../../../images/ok.gif></span><span
-     style='font-size:10.0pt;font-family:Arial'><o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release is targeted for 2Q2005. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 1.1 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 1.1 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly runs
-fine in many operating environments beyond the reference platforms we test.
-However, since we do not systematically test them we cannot vouch for them.
-Problems encountered when running Eclipse on non-reference platform that cannot
-be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 1.1 with 1.0</h3>
-
-<p>Eclipse UML2 1.1 will be compatible with UML2 1.0.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 1.1 will be upwards
-contract-compatible with UML2 1.0 except in those areas noted in the <i>UML2
-1.1 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 1.1 APIs. Downward contract compatibility is not supported. There is no
-guarantee that compliance with UML2 1.1 APIs would ensure compliance with UML2
-1.0 APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 1.1 will be upwards
-binary-compatible with UML2 1.0 except in those areas noted in the <i>UML2 1.1
-Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 1.1 will
-likely be unusable with UML2 1.0. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.0 APIs will
-usually compile and run successfully against UML2 1.1 APIs, although this
-cannot be guaranteed. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 1.1 will be upwards
-workspace-compatible with UML2 1.0 unless noted. This means that workspaces and
-projects created by an Eclipse with UML2 1.0 installed can be successfully
-opened by an Eclipse with UML2 1.1 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.0 but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 1.1, this means
-     currency with Eclipse 3.1 and EMF 2.1.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item.</p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are considering
-     addressing for the release. Although we are actively investigating it, we
-     are not yet in a position to commit to it, or to say that we won't be able
-     to address it. After due consideration, a proposal will either be
-     committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1030" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.1 / EMF
-2.1 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.1 (and Eclipse 3.1). Make changes
-as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405">77405</a>) [Theme:
-Release Currency]</p>
-
-<p><span class=GramE><b>Migration Framework.</b></span> Provide a mechanism
-(using the Ecore2Ecore mapping framework and extended metadata) for migrating
-resources based on different (older) versions of the UML2 schema. Contribute
-the framework to the EMF project. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410">77410</a>) [Theme:
-Built To Last] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1031" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Resource Localization.</b></span> Provide a mechanism
-for arbitrary (named) elements to be localized via properties bundles either
-co-located with the resource or distributed in a fragment. Enhance the existing
-stereotype keyword mechanism to support properties bundles distributed in
-fragments, i.e. <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75659">75659</a>.
-(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406">77406</a>)
-[Theme: Built To Last] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1032" src=../../../images/ok.gif></span></p>
-
-<p><b>Update Site Support.</b> Provide UML2 runtime binary and SDK features on
-eclipse.org update site (install via Eclipse update manager). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77411">77411</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1033" src=../../../images/ok.gif></span></p>
-
-<p><b style='mso-bidi-font-weight:normal'>Instance Creation Support.</b>
-Provide a mechanism for creating instance specifications from classifiers.
-Enhance profile/stereotype operations to allow the values of complex stereotype
-properties (i.e. those typed by classifiers) to be accessed using instance
-specifications. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=78296">78296</a>)
-[Theme: Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1034" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><span class=GramE><b>More Examples.</b></span> Deliver resource generation
-and query utilities to the open source community as examples. Introduce robust
-actions for converting models between <span class=SpellE>Ecore</span> and UML2
-(and deprecate the existing import wizards). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412">77412</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1035" src=../../../images/ok.gif></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1039" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>EMF Generator Extensions.</b></span>
-<span class=SpellE>Refactor</span> the custom <span class=SpellE>Ecore</span>
-"builder" and JET templates that were used to generate the UML2 <span
-class=SpellE>metamodel</span> and deliver them to the open source community,
-pending the availability of EMF generator extensibility enhancements, i.e. <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75923">75923</a>, <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75925">75925</a>, and <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75933">75933</a>. Provide an
-extension that builds an <span class=SpellE>Ecore</span> model from UML2
-models. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408">77408</a>)
-[Theme: Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1038" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0.html b/uml2/docs/plans/uml2_project_plan_2_0.html
deleted file mode 100644
index 657ee2c..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0.html
+++ /dev/null
@@ -1,1061 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>69</o:Revision>
-  <o:TotalTime>2065</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-07-10T19:15:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2851</o:Words>
-  <o:Characters>16256</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>135</o:Lines>
-  <o:Paragraphs>38</o:Paragraphs>
-  <o:CharactersWithSpaces>19069</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:336621202;
-	mso-list-template-ids:719244226;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:348409232;
-	mso-list-template-ids:-2048899130;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:779452413;
-	mso-list-template-ids:-1478828510;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1833720550;
-	mso-list-template-ids:90837214;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1835413724;
-	mso-list-template-ids:1744848544;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1888836023;
-	mso-list-template-ids:569543394;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="3074"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-2.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="15" Hour="15">15:15 EDT</st1:time> <st1:date
-Year="2006" Day="10" Month="7">July 10, 2006</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_2_0_20060608.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage,
-documentation, examples, performance tuning, usability, etc. are considered
-routine ongoing maintenance activities and are not included in this plan unless
-they would also involve a significant change to the API or feature set, or
-involve a significant amount of work. The intent of the plan is to account for
-all interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 10 - Milestone 1 (2.0 M1) - Stable
-     Build based on Eclipse 3.2 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 5 - Milestone 2 (2.0 M2) - Stable
-     Build based on Eclipse 3.2 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, March 2 - Milestone 3 (2.0 M3) - Stable Build
-     based on Eclipse 3.2 M5 - API complete - API freeze<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 13 - Milestone 4 (2.0 M4) - Stable
-     Build based on Eclipse 3.2 M6 - feature complete - development freeze -
-     lock down and testing begins<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for late 2Q2006. All release deliverables will
-be available for download as soon as the release has been tested and validated
-in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other Eclipse
-projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.2<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_2.html">Eclipse
-Project 3.2 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i><a
-href="http://www.eclipse.org/modeling/mdt/uml2/docs/guides/UML2_2.0_Migration_Guide/guide.html">UML2
-2.0 Migration<span style='font-style:normal'> Guide</span></a></i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 2.0
-APIs. Downward contract compatibility is not supported. Compliance with UML2
-2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure compliance
-with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i><a
-href="http://www.eclipse.org/modeling/mdt/uml2/docs/guides/UML2_2.0_Migration_Guide/guide.html">UML2
-2.0 Migration<span style='font-style:normal'> Guide</span></a></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 2.0 will
-be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files use
-new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Completeness</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - This theme includes consolidation activities
-     where groundwork was laid in 1.x but needs to be completed and brought into
-     full use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of <span class=SpellE>SWT's</span> native
-     platform integration and the many other reusable components that the
-     Eclipse platform provides. This theme includes work to provide UML2
-     support for developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 2.0, this means
-     currency with Eclipse 3.2 and EMF 2.2.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are considering
-     addressing for the release. Although we are actively investigating it, we
-     are not yet in a position to commit to it, or to say that we won't be able
-     to address it. After due consideration, a proposal will either be
-     committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup><span style='font-size:
-9.5pt'>TM</span></sup> 2.x <span class=SpellE>metamodel</span> for the Eclipse
-platform. Plan items reflect new features of the UML2 project, or areas where
-existing features will be significantly reworked (<span style='mso-bidi-font-style:
-italic'><img border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1039" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Eclipse 3.2 / EMF 2.2 Compatibility<span style='mso-bidi-font-weight:
-bold'>.</span></b></span> Maintain release currency concurrent with EMF 2.2
-(and Eclipse 3.2). Make changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260">87260</a>) [Theme:
-Release Currency]<span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1040" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>UML</b><b><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.1 Conformance.</b></span> Implement the revised package merge algorithm and
-regenerate the code using a source model based on the finalized UML<sup><span
-style='font-size:9.5pt'>TM</span></sup> 2.1 Superstructure specification
-(compliance level L3). Update UML2 resources (libraries, <span class=SpellE>metamodels</span>,
-<span class=GramE>profiles</span>), examples, and EMF generator extensions as
-necessary. Enhance the generator extensions (developed in UML2 1.1) to
-facilitate code generation for an arbitrary compliance level. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>) [Theme:
-Completeness]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1027" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>UML2 2.0 Migration.</b></span> Provide a resource
-migration mechanism to migrate resources based on the UML2 1.x schema to 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191">105191</a>) [Theme:
-Completeness] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1028" src=../../../images/ok.gif></span></p>
-
-<p><b>Reduced Memory Footprint / Improved Performance.</b> Reduce the memory
-footprint of UML. Improve performance of key operations such as model load,
-save, traversal, etc<span class=GramE>..</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>) [Theme:
-Built To Last] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1029" src=../../../images/ok.gif></span></p>
-
-<p><span class=SpellE><span class=GramE><b>Supressed</b></span></span><span
-class=GramE><b> EMF Types.</b></span> Consider suppressing EMF types in the
-generated code by turning on the 'Model Feature Defaults &gt; Suppress EMF
-Types' generator option. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1030" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Resource Fragments.</b></span> Provide support for
-segregation of UML2 resources into 'fragments' (e.g. *.fragment.uml2) with
-packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1031" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Derived Features.</b></span> Make derived features
-changeable (where appropriate) and consider using EMF feature maps to implement
-unions, subsets, and supersets (where possible). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1032" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Improved Convenience Methods.</b></span> Provide
-improved factory and convenience methods. For example, factory methods that
-accept a name as an argument (for named element creation), and retrieval
-methods that accept arguments indicating whether name comparisons should be
-case-sensitive and whether elements should be created on demand. Ensure that
-metadata exists for custom operations. Also provide query methods for
-retrieving the reverse of one-way references (depends on resolution for EMF bug
-<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75922">75922</a>). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1033" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>UML <span class=SpellE>Ecore</span> Importer /
-Exporter.</b></span> Provide an exporter that takes advantage of the new
-exporter framework in EMF to convert <span class=SpellE>Ecore</span> models to
-UML (*.<span class=SpellE>uml</span>) models, in addition to an importer that
-converts UML models to <span class=SpellE>Ecore</span>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=122863">122863</a>) [Theme:
-Completeness] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1034" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><b>UML</b><b><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1
-Interchange.</b> Provide support for importing/exporting resources based on the
-official OMG XMI representation of UML<sup><span style='font-size:9.5pt'>TM</span></sup>
-2.1. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>)
-[Theme: Completeness]<span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1035" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><span class=GramE><b>RCP Support.</b></span> Provide support for Rich Client
-Platform where applicable. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]<span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1036" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><span class=GramE><b>Enhanced Icons.</b></span> Provide meaningful icons for
-most, if not all, of the types in UML. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1037" src=../../../images/ok.gif></span></p>
-
-<p><span class=SpellE><span class=GramE><b>Javadoc</b></span></span><span
-class=GramE><b>.</b></span> Complete the generation of model documentation from
-the UML<sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1038" src=../../../images/ok.gif></span></p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1043" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><i style='mso-bidi-font-style:
-normal'><span style='mso-bidi-font-weight:bold'>None at this time.</span></i></span><i
-style='mso-bidi-font-style:normal'><span style='mso-bidi-font-weight:bold'><o:p></o:p></span></i></p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1041" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Unit Tests.</b></span>
-Complete the implementation of generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Completeness]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1042" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Improved Documentation.</b></span>
-Improve UML2 documentation by updating the FAQ, enhancing the <span
-class=SpellE>Javadoc</span>, and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Validation Rules.</b></span> Complete the generation
-and implementation of validation rules from the UML<sup><span style='font-size:
-9.5pt'>TM</span></sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Tools.</b></span> Engage partners and tool developers
-to contribute tools based on UML2, e.g. a mechanism for import/exporting
-resources based on Unisys XMI for UML 1.x. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>) [Theme:
-Broadening <span class=GramE>The</span> Community]</p>
-
-<p><span class=GramE><b>OCL Support.</b></span> Provide support for constraints
-specified in OCL. Requires EMF support for OCL (e.g. an OCL
-parser/interpreter). Consider providing a convenience method on Constraint for
-returning the parsed representation of OCL expressions. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199">105199</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20041206.html b/uml2/docs/plans/uml2_project_plan_2_0_20041206.html
deleted file mode 100644
index e92c907..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20041206.html
+++ /dev/null
@@ -1,936 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>26</o:Revision>
-  <o:TotalTime>964</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2004-12-06T21:10:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2144</o:Words>
-  <o:Characters>12226</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>101</o:Lines>
-  <o:Paragraphs>28</o:Paragraphs>
-  <o:CharactersWithSpaces>14342</o:CharactersWithSpaces>
-  <o:Version>10.6714</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:47077531;
-	mso-list-template-ids:-509042802;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:149950309;
-	mso-list-template-ids:-1748093696;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:857696888;
-	mso-list-template-ids:-1367053634;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:896815802;
-	mso-list-template-ids:-1088289990;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1479111769;
-	mso-list-template-ids:2012885788;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1709377359;
-	mso-list-template-ids:273600124;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 2.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="10" Hour="16">16:10 EDT</st1:time> <st1:date
-Year="2004" Day="6" Month="12">December 6, 2004</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the previous plan revision)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage,
-documentation, examples, performance tuning, usability, etc. are considered
-routine ongoing maintenance activities and are not included in this plan unless
-they would also involve a significant change to the API or feature set, or
-involve a significant amount of work. The intent of the plan is to account for
-all interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, February 24 - Milestone 1 (2.0 M1) - Stable
-     Build based on Eclipse 3.1 M5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 7 - Milestone 2 (2.0 M2) - Stable Build
-     based on Eclipse 3.1 M6<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for 2Q2005. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header><span style='font-family:
-Arial'>combinations of operating system and Java 2 Platform; these are our </span></span><em><span
-style='font-family:Arial'>reference platforms</span></em><span class=header><span
-style='font-family:Arial'>. Eclipse undoubtedly runs fine in many operating
-environments beyond the reference platforms we test. However, since we do not
-systematically test them we cannot vouch for them. Problems encountered when
-running Eclipse on non-reference platform that cannot be recreated on any
-reference platform will be given lower priority than problems with running
-Eclipse on a reference platform.</span></span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 2.0 APIs. Downward contract compatibility is not supported. Compliance
-with UML2 2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure
-compliance with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.0 will be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully against
-UML2 2.0 APIs. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.x but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build applications
-     ranging from command line tools to feature-rich applications that take
-     full advantage of <span class=SpellE>SWT's</span> native platform
-     integration and the many other reusable components that the Eclipse
-     platform provides. This theme includes work to provide UML2 support for
-     developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will be
-significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as committed
-     plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1026" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><i>None at this time.</i></span></p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b>UML<sup>TM</sup> 2.0 Conformance.</b></span> Implement the revised
-package merge algorithm and regenerate the code using a Rose model based on the
-finalized UML<sup>TM</sup> 2.0 Superstructure specification (compliance level L3). Update
-UML2 resources (libraries, <span class=SpellE>metamodels</span>, <span
-class=GramE>profiles</span>), examples, and EMF generator extensions as
-necessary. Enhance the generator extensions (developed in UML2 1.1) to
-facilitate code generation for an arbitrary compliance level. Provide a
-resource migration extension to migrate resources based on the UML2 1.x schema
-to 2.0. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>)
-[Theme: Built To Last]</p>
-
-<p><b>UML<sup>TM</sup> 2.0 Interchange.</b> Provide support for importing/exporting
-resources based on the official OMG XMI representation of UML<sup>TM</sup> 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>) [Theme:
-Built To Last]</p>
-
-<p><span class=GramE><b>Validation Rules.</b></span> Complete the generation and
-implementation of validation rules from the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Built To Last]</p>
-
-<p><span class=GramE><b>Unit Tests.</b></span> Complete the implementation of
-generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Built To Last]</p>
-
-<p><span class=SpellE><span class=GramE><b>Supressed</b></span></span><span
-class=GramE><b> EMF Types.</b></span> <span class=GramE>Suppress EMF types in
-the generated code by turning on the 'Model Feature Defaults &gt; Suppress EMF
-Types' generator option.</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Resource Fragments.</b></span> Provide support for
-segregation of UML2 resources into 'fragments' (e.g. *.fragment.uml2) with
-packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Derived Features.</b></span> Make derived features
-changeable (where appropriate) and use EMF feature maps to implement unions,
-subsets, and supersets (where possible). Use derived features (and feature
-maps) as needed to support resource fragments. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=SpellE><span class=GramE><b>Javadoc</b></span></span><span
-class=GramE><b>.</b></span> Complete the generation of model documentation from
-the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>RCP Support.</b></span> Provide support for Rich Client
-Platform where applicable (perhaps by turning on the 'Editor &gt; Rich Client
-Platform' generator option). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]</p>
-
-<p><span class=GramE><b>Tools.</b></span> Engage partners and tool developers
-to contribute tools based on UML2, e.g. a mechanism for import/exporting
-resources based on Unisys XMI for UML 1.x. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>) [Theme:
-Broadening <span class=GramE>The</span> Community]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><i>None at this time.</i></span></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20050207.html b/uml2/docs/plans/uml2_project_plan_2_0_20050207.html
deleted file mode 100644
index d872a05..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20050207.html
+++ /dev/null
@@ -1,958 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>28</o:Revision>
-  <o:TotalTime>968</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2005-02-07T20:20:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2191</o:Words>
-  <o:Characters>12491</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>104</o:Lines>
-  <o:Paragraphs>29</o:Paragraphs>
-  <o:CharactersWithSpaces>14653</o:CharactersWithSpaces>
-  <o:Version>10.6714</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:83957222;
-	mso-list-template-ids:2083038374;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:434445432;
-	mso-list-template-ids:-796595032;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:461852701;
-	mso-list-template-ids:979665832;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:1147160661;
-	mso-list-template-ids:1548796804;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1294017237;
-	mso-list-template-ids:397026714;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10
-	{mso-list-id:1724400580;
-	mso-list-template-ids:322869110;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 2.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="20" Hour="15">15:20 EST</st1:time> <st1:date
-Year="2005" Day="7" Month="2">February 7, 2005</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_2_0_20041206.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage,
-documentation, examples, performance tuning, usability, etc. are considered
-routine ongoing maintenance activities and are not included in this plan unless
-they would also involve a significant change to the API or feature set, or
-involve a significant amount of work. The intent of the plan is to account for
-all interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1027" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, April 7 - Milestone 1 (2.0 M1) - Stable Build based on
-     Eclipse 3.1 M6<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for <img border=0 width=12 height=12
-id="_x0000_i1029" src=../../../images/new.gif><span style='mso-spacerun:yes'> </span>3Q2005.
-All release deliverables will be available for download as soon as the release
-has been tested and validated in the target operating configurations listed
-below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets reasonably
-current versions of underlying operating environments and other Eclipse
-projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse Platform,
-and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 2.0
-APIs. Downward contract compatibility is not supported. Compliance with UML2
-2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure compliance
-with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.0 will be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.x but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of <span class=SpellE>SWT's</span> native
-     platform integration and the many other reusable components that the
-     Eclipse platform provides. This theme includes work to provide UML2
-     support for developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1026" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1028" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>UML<sup>TM</sup> 2.0 Conformance.</b></span>
-Implement the revised package merge algorithm and regenerate the code using a
-Rose model based on the finalized UML<sup>TM</sup> 2.0 Superstructure specification
-(compliance level L3). Update UML2 resources (libraries, <span class=SpellE>metamodels</span>,
-<span class=GramE>profiles</span>), examples, and EMF generator extensions as
-necessary. Enhance the generator extensions (developed in UML2 1.1) to
-facilitate code generation for an arbitrary compliance level. Provide a
-resource migration extension to migrate resources based on the UML2 1.x schema
-to 2.0. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>)
-[Theme: Built To Last]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>UML<sup>TM</sup> 2.0 Interchange.</b> Provide support for importing/exporting
-resources based on the official OMG XMI representation of UML<sup>TM</sup> 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>) [Theme:
-Built To Last]</p>
-
-<p><span class=GramE><b>Validation Rules.</b></span> Complete the generation
-and implementation of validation rules from the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Built To Last]</p>
-
-<p><span class=GramE><b>Unit Tests.</b></span> Complete the implementation of
-generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Built To Last]</p>
-
-<p><span class=SpellE><span class=GramE><b>Supressed</b></span></span><span
-class=GramE><b> EMF Types.</b></span> <span class=GramE>Suppress EMF types in
-the generated code by turning on the 'Model Feature Defaults &gt; Suppress EMF
-Types' generator option.</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Resource Fragments.</b></span> Provide support for
-segregation of UML2 resources into 'fragments' (e.g. *.fragment.uml2) with
-packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Derived Features.</b></span> Make derived features
-changeable (where appropriate) and use EMF feature maps to implement unions,
-subsets, and supersets (where possible). Use derived features (and feature
-maps) as needed to support resource fragments. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=SpellE><span class=GramE><b>Javadoc</b></span></span><span
-class=GramE><b>.</b></span> Complete the generation of model documentation from
-the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>RCP Support.</b></span> Provide support for Rich Client
-Platform where applicable (perhaps by turning on the 'Editor &gt; Rich Client
-Platform' generator option). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]</p>
-
-<p><span class=GramE><b>Tools.</b></span> Engage partners and tool developers
-to contribute tools based on UML2, e.g. a mechanism for import/exporting
-resources based on Unisys XMI for UML 1.x. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>) [Theme:
-Broadening <span class=GramE>The</span> Community]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><i>None at this time.</i></span></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20050214.html b/uml2/docs/plans/uml2_project_plan_2_0_20050214.html
deleted file mode 100644
index eacf81b..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20050214.html
+++ /dev/null
@@ -1,962 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>31</o:Revision>
-  <o:TotalTime>1144</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2005-02-14T19:53:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2345</o:Words>
-  <o:Characters>13370</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>111</o:Lines>
-  <o:Paragraphs>31</o:Paragraphs>
-  <o:CharactersWithSpaces>15684</o:CharactersWithSpaces>
-  <o:Version>10.6714</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:191304835;
-	mso-list-template-ids:760747024;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:1076829185;
-	mso-list-template-ids:639242532;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1147939230;
-	mso-list-template-ids:-1727898900;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:1415055175;
-	mso-list-template-ids:-1716491824;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1487893663;
-	mso-list-template-ids:-1611336512;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1826629020;
-	mso-list-template-ids:172388948;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 2.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="53" Hour="14">14:53 EST</st1:time> <st1:date
-Year="2005" Day="14" Month="2">February 14, 2005</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_2_0_20050207.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse bugzilla database, with a title and a concise summary (usually a
-single paragraph) that explains the work item at a suitably high enough level
-so that everyone can readily understand what the work item is without having to
-understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 7 - Milestone 1 (2.0 M1) - Stable Build
-     based on Eclipse 3.1 M6<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for 3Q2005. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse Platform,
-and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.1<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_1.html">Eclipse
-Project 3.1 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 2.0
-APIs. Downward contract compatibility is not supported. Compliance with UML2
-2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure compliance
-with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.0 will be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources. This theme also includes consolidation activities where
-     groundwork was laid in 1.x but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of SWT's native platform integration and the many
-     other reusable components that the Eclipse platform provides. This theme
-     includes work to provide UML2 support for developing and deploying
-     RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to bugzilla problem
-reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are considering
-     addressing for the release. Although we are actively investigating it, we
-     are not yet in a position to commit to it, or to say that we won't be able
-     to address it. After due consideration, a proposal will either be
-     committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 metamodel for the Eclipse
-platform. Plan items reflect new features of the UML2 project, or areas where
-existing features will be significantly reworked (<span style='mso-bidi-font-style:
-italic'><img border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>UML<sup>TM</sup> 2.0 Conformance.</b> Implement the revised package merge algorithm
-and regenerate the code using a source model based on the finalized UML<sup>TM</sup> 2.0
-Superstructure specification (compliance level L3). Update UML2 resources
-(libraries, metamodels, profiles), examples, and EMF generator extensions as
-necessary. Enhance the generator extensions (developed in UML2 1.1) to
-facilitate code generation for an arbitrary compliance level. Provide a
-resource migration extension to migrate resources based on the UML2 1.x schema
-to 2.0. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>)
-[Theme: Built To Last]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1029" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>Reduced Memory Footprint.</b> Reduce the
-memory footprint of UML models by, for example, providing alternative
-implementations and/or lightweight alternatives to heavyweight representations
-of certain concepts (e.g. lower and upper bounds). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>) [Theme:
-Built To Last]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>UML<sup>TM</sup> 2.0 Interchange.</b> Provide support for importing/exporting
-resources based on the official OMG XMI representation of UML<sup>TM</sup> 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>) [Theme:
-Built To Last]</p>
-
-<p><b>Validation Rules.</b> Complete the generation and implementation of
-validation rules from the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Built To Last]</p>
-
-<p><b>Unit Tests.</b> Complete the implementation of generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Built To Last]</p>
-
-<p><b>Supressed EMF Types.</b> Suppress EMF types in the generated code by
-turning on the 'Model Feature Defaults &gt; Suppress EMF Types' generator
-option. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>)
-[Theme: Simple To Use]</p>
-
-<p><b>Resource Fragments.</b> Provide support for segregation of UML2 resources
-into 'fragments' (e.g. *.fragment.uml2) with packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]</p>
-
-<p><b>Derived Features.</b> Make derived features changeable (where
-appropriate) and use EMF feature maps to implement unions, subsets, and
-supersets (where possible). Use derived features (and feature maps) as needed
-to support resource fragments. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]</p>
-
-<p><b>Javadoc.</b> Complete the generation of model documentation from the UML
-2.0 source model. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>)
-[Theme: Simple To Use]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1027" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>Enhanced Icons.</b> Provide meaningful
-icons for most, if not all, of the types in UML. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>) [Theme:
-Simple To Use]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1028" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>Improved Convenience Methods.</b> Provide
-improved factory and convenience methods. For example, factory methods that
-don't require an Ecore class as an argument if the type is obvious (concrete)
-and that accept a name as an argument (for named element creation), and
-retrieval methods that accept arguments indicating whether name comparisons
-should be case-sensitive and whether elements should be created on demand. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>) [Theme:
-Simple To Use]</p>
-
-<p><b>RCP Support.</b> Provide support for Rich Client Platform where
-applicable (perhaps by turning on the 'Editor &gt; Rich Client Platform'
-generator option). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]</p>
-
-<p><b>Tools.</b> Engage partners and tool developers to contribute tools based
-on UML2, e.g. a mechanism for import/exporting resources based on Unisys XMI
-for UML 1.x. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>)
-[Theme: Broadening The Community]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20050307.html b/uml2/docs/plans/uml2_project_plan_2_0_20050307.html
deleted file mode 100644
index 23e252e..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20050307.html
+++ /dev/null
@@ -1,1015 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>35</o:Revision>
-  <o:TotalTime>1164</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2005-03-07T14:57:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2597</o:Words>
-  <o:Characters>14804</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>123</o:Lines>
-  <o:Paragraphs>34</o:Paragraphs>
-  <o:CharactersWithSpaces>17367</o:CharactersWithSpaces>
-  <o:Version>10.6714</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:391269711;
-	mso-list-template-ids:368887104;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:849024565;
-	mso-list-template-ids:1464780230;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1207720969;
-	mso-list-template-ids:207393728;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1279992335;
-	mso-list-template-ids:-1596547768;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1663508942;
-	mso-list-template-ids:611487008;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11
-	{mso-list-id:2105376491;
-	mso-list-template-ids:-1184434408;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 2.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="56" Hour="9">09:56 EST</st1:time> <st1:date
-Year="2005" Day="7" Month="3">March 7, 2005</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_2_0_20050214.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To ensure
-the planning process is transparent and open to the entire Eclipse community,
-plans are posted in an embryonic form and then revised from time to time
-throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage,
-documentation, examples, performance tuning, usability, etc. are considered
-routine ongoing maintenance activities and are not included in this plan unless
-they would also involve a significant change to the API or feature set, or
-involve a significant amount of work. The intent of the plan is to account for
-all interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1026" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, August 18 - Milestone 1 (2.0 M1) - Stable Build based on
-     Eclipse 3.2 M1<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1027" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, September 29 - Milestone 2 (2.0 M2) - Stable Build based
-     on Eclipse 3.2 M2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1028" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, November 10 - Milestone 3 (2.0 M3) - Stable Build based
-     on Eclipse 3.2 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1029" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, December 22 - Milestone 4 (2.0 M4) - Stable Build based
-     on Eclipse 3.2 M4<o:p></o:p></span></li>
-</ul>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1030" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span>The 2.0 release is targeted for 2Q2006. All
-release deliverables will be available for download as soon as the release has
-been tested and validated in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1031" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Eclipse Platform 3.2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1032" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>EMF 2.x<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the </span><img border=0
-width=12 height=12 id="_x0000_i1033" src=../../../images/new.gif><span style='mso-bidi-font-weight:
-bold'><span style='mso-spacerun:yes'> </span><a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_2.html">Eclipse
-Project 3.2 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 2.0 APIs. Downward contract compatibility is not supported. Compliance
-with UML2 2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure
-compliance with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.0 will be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1037" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><b><span style='font-size:10.0pt;
-     font-family:Arial'>Completeness</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> - This theme includes consolidation activities where
-     groundwork was laid in 1.x but needs to be completed and brought into full
-     use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide the
-     features that advanced developers demand, but also be something that most
-     developers find simple to use. This theme includes ease-of-use reviews of
-     existing features, and work that helps make UML2-based products simple to
-     use for developers with widely-varying backgrounds and skill sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of <span class=SpellE>SWT's</span> native
-     platform integration and the many other reusable components that the
-     Eclipse platform provides. This theme includes work to provide UML2
-     support for developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1034" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><b><span style='font-size:10.0pt;
-     font-family:Arial'>Release Currency</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> - Tools projects will maintain release currency
-     concurrent with 3.x releases. For UML2 2.0, this means currency with
-     Eclipse 3.2 and EMF 2.x.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1035" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>UML<sup>TM</sup> 2.0 Conformance.</b> Implement the revised package merge algorithm and
-regenerate the code using a source model based on the finalized UML<sup>TM</sup> 2.0
-Superstructure specification (compliance level L3). Update UML2 resources
-(libraries, <span class=SpellE>metamodels</span>, profiles), examples, and EMF
-generator extensions as necessary. Enhance the generator extensions (developed
-in UML2 1.1) to facilitate code generation for an arbitrary compliance level.
-Provide a resource migration extension to migrate resources based on the UML2
-1.x schema to 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>) [Theme: Completeness]</p>
-
-<p><span class=GramE><b>Reduced Memory Footprint.</b></span> Reduce the memory
-footprint of UML models by, for example, providing alternative implementations
-and/or lightweight alternatives to heavyweight representations of certain
-concepts (e.g. lower and upper bounds). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>) [Theme:
-Built To Last]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>UML<sup>TM</sup> 2.0 Interchange.</b> Provide support for importing/exporting
-resources based on the official OMG XMI representation of UML<sup>TM</sup> 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>) [Theme: Completeness]</p>
-
-<p><b>Validation Rules.</b> Complete the generation and implementation of
-validation rules from the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme: Completeness]</p>
-
-<p><b>Unit Tests.</b> Complete the implementation of generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme: Completeness]</p>
-
-<p><span class=SpellE><b>Supressed</b></span><b> EMF Types.</b> Suppress EMF
-types in the generated code by turning on the 'Model Feature Defaults &gt;
-Suppress EMF Types' generator option. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]</p>
-
-<p><b>Resource Fragments.</b> Provide support for segregation of UML2 resources
-into 'fragments' (e.g. *.fragment.uml2) with packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]</p>
-
-<p><b>Derived Features.</b> Make derived features changeable (where
-appropriate) and use EMF feature maps to implement unions, subsets, and
-supersets (where possible). Use derived features (and feature maps) as needed
-to support resource fragments. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=SpellE><b>Javadoc</b></span><b>.</b> Complete the generation of
-model documentation from the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Enhanced Icons.</b></span> Provide meaningful icons for
-most, if not all, of the types in UML. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Improved Convenience Methods.</b></span> Provide
-improved factory and convenience methods. For example, factory methods that
-don't require an <span class=SpellE>Ecore</span> class as an argument if the
-type is obvious (concrete) and that accept a name as an argument (for named
-element creation), and retrieval methods that accept arguments indicating
-whether name comparisons should be case-sensitive and whether elements should
-be created on demand. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>) [Theme:
-Simple To Use]</p>
-
-<p><b>RCP Support.</b> Provide support for Rich Client Platform where
-applicable (perhaps by turning on the 'Editor &gt; Rich Client Platform'
-generator option). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]</p>
-
-<p><b>Tools.</b> Engage partners and tool developers to contribute tools based on
-UML2, e.g. a mechanism for import/exporting resources based on Unisys XMI for
-UML 1.x. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>)
-[Theme: Broadening <span class=GramE>The</span> Community]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1036" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Eclipse 3.2 / EMF 2.x Compatibility<span style='mso-bidi-font-weight:
-bold'>.</span></b></span> Maintain release currency concurrent with EMF 2.x
-(and Eclipse 3.2). Make changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260">87260</a>) [Theme:
-Release Currency]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20050726.html b/uml2/docs/plans/uml2_project_plan_2_0_20050726.html
deleted file mode 100644
index 7b88112..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20050726.html
+++ /dev/null
@@ -1,1034 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>37</o:Revision>
-  <o:TotalTime>1241</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2005-07-26T18:26:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2744</o:Words>
-  <o:Characters>15646</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>130</o:Lines>
-  <o:Paragraphs>36</o:Paragraphs>
-  <o:CharactersWithSpaces>18354</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:49308016;
-	mso-list-template-ids:-1465871468;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:1160383619;
-	mso-list-template-ids:1369202310;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1192493535;
-	mso-list-template-ids:-588359554;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1849712460;
-	mso-list-template-ids:1178484910;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1974211015;
-	mso-list-template-ids:1281772656;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:2044749303;
-	mso-list-template-ids:239907886;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 2.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="25" Hour="14">14:25 EST</st1:time> <st1:date
-Year="2005" Day="26" Month="7">July 26, 2005</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_2_0_20050307.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release of
-the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage,
-documentation, examples, performance tuning, usability, etc. are considered
-routine ongoing maintenance activities and are not included in this plan unless
-they would also involve a significant change to the API or feature set, or
-involve a significant amount of work. The intent of the plan is to account for
-all interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1026" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, September 29 - Milestone 1 (2.0 M1) - Stable Build based
-     on Eclipse 3.2 M2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1027" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, November 10 - Milestone 2 (2.0 M2) - Stable Build based
-     on Eclipse 3.2 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1028" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, December 22 - Milestone 3 (2.0 M3) - Stable Build based
-     on Eclipse 3.2 M4<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for 2Q2006. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence on
-the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1033" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Java 2 Platform 1.x<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1029" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>EMF 2.2<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_2.html">Eclipse
-Project 3.2 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 2.0 APIs. Downward contract compatibility is not supported. Compliance
-with UML2 2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure
-compliance with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.0 will be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Completeness</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - This theme includes consolidation activities
-     where groundwork was laid in 1.x but needs to be completed and brought
-     into full use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of <span class=SpellE>SWT's</span> native
-     platform integration and the many other reusable components that the
-     Eclipse platform provides. This theme includes work to provide UML2
-     support for developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1030" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><b><span style='font-size:10.0pt;
-     font-family:Arial'>Release Currency</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> - Tools projects will maintain release currency
-     concurrent with 3.x releases. For UML2 2.0, this means currency with
-     Eclipse 3.2 and EMF 2.2.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will be
-significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as committed
-     plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1031" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1040" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b style='mso-bidi-font-weight:
-normal'>Eclipse 3.2 / EMF 2.2 Compatibility<span style='mso-bidi-font-weight:
-bold'>.</span></b></span> Maintain release currency concurrent with EMF 2.2
-(and Eclipse 3.2). Make changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260">87260</a>) [Theme:
-Release Currency]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1034" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>UML<sup>TM</sup> 2.0 Conformance.</b></span>
-Implement the revised package merge algorithm and regenerate the code using a
-source model based on the finalized UML<sup>TM</sup> 2.0 Superstructure specification
-(compliance level L3). Update UML2 resources (libraries, <span class=SpellE>metamodels</span>,
-profiles), examples, and EMF generator extensions as necessary. Enhance the
-generator extensions (developed in UML2 1.1) to facilitate code generation for
-an arbitrary compliance level. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>) [Theme:
-Completeness]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1039" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>UML2 2.0 Migration.</b></span>
-Provide a resource migration extension to migrate resources based on the UML2
-1.x schema to 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191">105191</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Reduced Memory Footprint.</b></span> Reduce the memory
-footprint of UML models by, for example, providing alternative implementations
-and/or lightweight alternatives to heavyweight representations of certain
-concepts (e.g. lower and upper bounds). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>) [Theme:
-Built To Last]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>UML<sup>TM</sup> 2.0 Interchange.</b> Provide support for importing/exporting
-resources based on the official OMG XMI representation of UML<sup>TM</sup> 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>) [Theme:
-Completeness]</p>
-
-<p><b>Validation Rules.</b> Complete the generation and implementation of
-validation rules from the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Completeness]</p>
-
-<p><b>Unit Tests.</b> Complete the implementation of generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Completeness]</p>
-
-<p><span class=SpellE><b>Supressed</b></span><b> EMF Types.</b> Suppress EMF
-types in the generated code by turning on the 'Model Feature Defaults &gt;
-Suppress EMF Types' generator option. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]</p>
-
-<p><b>Resource Fragments.</b> Provide support for segregation of UML2 resources
-into 'fragments' (e.g. *.fragment.uml2) with packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1037" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Derived Features.</b></span>
-Make derived features changeable (where appropriate) and consider using EMF
-feature maps to implement unions, subsets, and supersets (where possible). Use
-derived features (and feature maps) as needed to support resource fragments. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=SpellE><b>Javadoc</b></span><b>.</b> Complete the generation of
-model documentation from the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Enhanced Icons.</b></span> Provide meaningful icons for
-most, if not all, of the types in UML. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>) [Theme:
-Simple To Use]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1036" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Improved Convenience
-Methods.</b></span> Provide improved factory and convenience methods. For
-example, factory methods that accept a name as an argument (for named element
-creation), and retrieval methods that accept arguments indicating whether name
-comparisons should be case-sensitive and whether elements should be created on
-demand. Ensure that metadata exists for custom operations. Also provide query
-methods for retrieving the reverse of one-way references (depends on resolution
-for EMF bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75922">75922</a>).
-(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>)
-[Theme: Simple To Use]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1035" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>RCP Support.</b></span>
-Provide support for Rich Client Platform where applicable. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]</p>
-
-<p><b>Tools.</b> Engage partners and tool developers to contribute tools based
-on UML2, e.g. a mechanism for import/exporting resources based on Unisys XMI
-for UML 1.x. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>)
-[Theme: Broadening <span class=GramE>The</span> Community]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1032" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Improved Documentation.</b></span>
-Improve UML2 documentation by updating the FAQ, enhancing the <span
-class=SpellE>Javadoc</span>, and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1038" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>OCL Support.</b></span>
-Provide support for constraints specified in OCL. Requires EMF support for OCL
-(e.g. an OCL parser/interpreter). Consider providing a convenience method on
-Constraint for returning the parsed representation of OCL expressions. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199">105199</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20050926.html b/uml2/docs/plans/uml2_project_plan_2_0_20050926.html
deleted file mode 100644
index 5b2d4df..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20050926.html
+++ /dev/null
@@ -1,1022 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>39</o:Revision>
-  <o:TotalTime>1250</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2005-09-26T15:23:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2553</o:Words>
-  <o:Characters>14554</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>121</o:Lines>
-  <o:Paragraphs>34</o:Paragraphs>
-  <o:CharactersWithSpaces>17073</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:338120235;
-	mso-list-template-ids:23990792;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:423381039;
-	mso-list-template-ids:-506424654;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:443841408;
-	mso-list-template-ids:1263042638;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:1207720942;
-	mso-list-template-ids:725272596;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1404641123;
-	mso-list-template-ids:-2070791596;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1477721710;
-	mso-list-template-ids:1895703384;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 2.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="23" Hour="11">11:23 EDT</st1:time> <st1:date
-Year="2005" Day="26" Month="9">September 26, 2005</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_2_0_20050726.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear for
-any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level <span class=GramE>projects</span>. Although some plan
-items are for work that is more pressing that others, the plan items appear in
-no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage,
-documentation, examples, performance tuning, usability, etc. are considered
-routine ongoing maintenance activities and are not included in this plan unless
-they would also involve a significant change to the API or feature set, or
-involve a significant amount of work. The intent of the plan is to account for
-all interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1026" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, November 10 - Milestone 1 (2.0 M1) - Stable Build based
-     on Eclipse 3.2 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1027" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, December 22 - Milestone 2 (2.0 M2) - Stable Build based
-     on Eclipse 3.2 M4<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for 2Q2006. All release deliverables will be
-available for download as soon as the release has been tested and validated in the
-target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1028" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.2<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating system
-and Java 2 Platform; these are our </span><em><span style='font-family:Arial'>reference
-platforms</span></em><span class=header>. Eclipse undoubtedly runs fine in many
-operating environments beyond the reference platforms we test. However, since
-we do not systematically test them we cannot vouch for them. Problems encountered
-when running Eclipse on non-reference platform that cannot be recreated on any
-reference platform will be given lower priority than problems with running
-Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_2.html">Eclipse
-Project 3.2 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 2.0 APIs. Downward contract compatibility is not supported. Compliance
-with UML2 2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure
-compliance with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.0 will be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully opened
-by an Eclipse with UML2 2.0 installed. This includes both hidden metadata,
-which is localized to a particular workspace, as well as metadata files found
-within a workspace project, which may propagate between workspaces via file
-copying or team repositories. User interface session state may be discarded
-when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Completeness</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - This theme includes consolidation activities
-     where groundwork was laid in 1.x but needs to be completed and brought
-     into full use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of <span class=SpellE>SWT's</span> native
-     platform integration and the many other reusable components that the
-     Eclipse platform provides. This theme includes work to provide UML2
-     support for developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 2.0, this means
-     currency with Eclipse 3.2 and EMF 2.2.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1029" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.2 / EMF
-2.2 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.2 (and Eclipse 3.2). Make
-changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260">87260</a>) [Theme:
-Release Currency]</p>
-
-<p><span class=GramE><b>UML<sup>TM</sup> 2.0 Conformance.</b></span> Implement the revised
-package merge algorithm and regenerate the code using a source model based on
-the finalized UML<sup>TM</sup> 2.0 Superstructure <span class=GramE>specification</span>
-(compliance level L3). Update UML2 resources (libraries, <span class=SpellE>metamodels</span>,
-<span class=GramE>profiles</span>), examples, and EMF generator extensions as
-necessary. Enhance the generator extensions (developed in UML2 1.1) to
-facilitate code generation for an arbitrary compliance level. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>UML2 2.0 Migration.</b></span> Provide a resource
-migration extension to migrate resources based on the UML2 1.x schema to 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191">105191</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Reduced Memory Footprint.</b></span> Reduce the memory
-footprint of UML models by, for example, providing alternative implementations
-and/or lightweight alternatives to heavyweight representations of certain
-concepts (e.g. lower and upper bounds). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>) [Theme:
-Built To Last]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1030" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=SpellE><span class=GramE><b>Supressed</b></span></span><span
-class=GramE><b> EMF Types.</b></span> <span class=GramE>Suppress EMF types in
-the generated code by turning on the 'Model Feature Defaults &gt; Suppress EMF
-Types' generator option.</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>UML<sup>TM</sup> 2.0 Interchange.</b> Provide support for importing/exporting
-resources based on the official OMG XMI representation of UML<sup>TM</sup> 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Validation Rules.</b></span> Complete the generation
-and implementation of validation rules from the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Unit Tests.</b></span> Complete the implementation of
-generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Resource Fragments.</b></span> Provide support for
-segregation of UML2 resources into 'fragments' (e.g. *.fragment.uml2) with
-packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Derived Features.</b></span> Make derived features
-changeable (where appropriate) and consider using EMF feature maps to implement
-unions, subsets, and supersets (where possible). Use derived features (and
-feature maps) as needed to support resource fragments. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=SpellE><span class=GramE><b>Javadoc</b></span></span><span
-class=GramE><b>.</b></span> Complete the generation of model documentation from
-the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Enhanced Icons.</b></span> Provide meaningful icons for
-most, if not all, of the types in UML. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Improved Convenience Methods.</b></span> Provide
-improved factory and convenience methods. For example, factory methods that
-accept a name as an argument (for named element creation), and retrieval
-methods that accept arguments indicating whether name comparisons should be
-case-sensitive and whether elements should be created on demand. Ensure that
-metadata exists for custom operations. Also provide query methods for
-retrieving the reverse of one-way references (depends on resolution for EMF bug
-<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75922">75922</a>). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>RCP Support.</b></span> Provide support for Rich Client
-Platform where applicable. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]</p>
-
-<p><span class=GramE><b>Tools.</b></span> Engage partners and tool developers
-to contribute tools based on UML2, e.g. a mechanism for import/exporting
-resources based on Unisys XMI for UML 1.x. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>) [Theme:
-Broadening <span class=GramE>The</span> Community]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>OCL Support.</b></span> Provide support for constraints
-specified in OCL. Requires EMF support for OCL (e.g. an OCL parser/interpreter).
-Consider providing a convenience method on Constraint for returning the parsed
-representation of OCL expressions. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199">105199</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20051105.html b/uml2/docs/plans/uml2_project_plan_2_0_20051105.html
deleted file mode 100644
index f4b1b99..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20051105.html
+++ /dev/null
@@ -1,1020 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>42</o:Revision>
-  <o:TotalTime>1758</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2005-11-07T21:54:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2535</o:Words>
-  <o:Characters>14451</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>120</o:Lines>
-  <o:Paragraphs>33</o:Paragraphs>
-  <o:CharactersWithSpaces>16953</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:69890326;
-	mso-list-template-ids:1805819666;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:287783838;
-	mso-list-template-ids:-1192750836;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:639042366;
-	mso-list-template-ids:549739852;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:1075708097;
-	mso-list-template-ids:1132384026;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1720864506;
-	mso-list-template-ids:1004960264;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1735736637;
-	mso-list-template-ids:414073816;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 2.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="55" Hour="16">16:55 EST</st1:time> <st1:date
-Year="2005" Day="7" Month="11">November 7, 2005</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_2_0_20050926.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 10 - Milestone 1 (2.0 M1) - Stable
-     Build based on Eclipse 3.2 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 22 - Milestone 2 (2.0 M2) - Stable
-     Build based on Eclipse 3.2 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><o:p>&nbsp;</o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for 2Q2006. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.2<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_2.html">Eclipse
-Project 3.2 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user interface
-elements provided by the various Eclipse projects, including dialogs and error
-messages, are externalized. The English strings for UML2 are provided as the
-default resource bundles. Translations are not provided with this release.
-However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 2.0 APIs. Downward contract compatibility is not supported. Compliance
-with UML2 2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure
-compliance with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.0 will be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Completeness</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - This theme includes consolidation activities
-     where groundwork was laid in 1.x but needs to be completed and brought
-     into full use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of <span class=SpellE>SWT's</span> native
-     platform integration and the many other reusable components that the
-     Eclipse platform provides. This theme includes work to provide UML2
-     support for developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 2.0, this means currency
-     with Eclipse 3.2 and EMF 2.2.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as committed
-     plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1026" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.2 / EMF
-2.2 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.2 (and Eclipse 3.2). Make
-changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260">87260</a>) [Theme:
-Release Currency]</p>
-
-<p><span class=GramE><b>UML<sup>TM</sup> 2.0 Conformance.</b></span> Implement the revised
-package merge algorithm and regenerate the code using a source model based on
-the finalized UML<sup>TM</sup> 2.0 Superstructure <span class=GramE>specification</span>
-(compliance level L3). Update UML2 resources (libraries, <span class=SpellE>metamodels</span>,
-<span class=GramE>profiles</span>), examples, and EMF generator extensions as
-necessary. Enhance the generator extensions (developed in UML2 1.1) to
-facilitate code generation for an arbitrary compliance level. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>UML2 2.0 Migration.</b></span> Provide a resource
-migration extension to migrate resources based on the UML2 1.x schema to 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191">105191</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Reduced Memory Footprint.</b></span> Reduce the memory
-footprint of UML models by, for example, providing alternative implementations
-and/or lightweight alternatives to heavyweight representations of certain
-concepts (e.g. lower and upper bounds). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>) [Theme:
-Built To Last]</p>
-
-<p><span class=SpellE><span class=GramE><b>Supressed</b></span></span><span
-class=GramE><b> EMF Types.</b></span> <span class=GramE>Suppress EMF types in
-the generated code by turning on the 'Model Feature Defaults &gt; Suppress EMF
-Types' generator option.</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1027" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Resource Fragments.</b></span>
-Provide support for segregation of UML2 resources into 'fragments' (e.g.
-*.fragment.uml2) with packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1028" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Derived Features.</b></span>
-Make derived features changeable (where appropriate) and consider using EMF
-feature maps to implement unions, subsets, and supersets (where possible). Use
-derived features (and feature maps) as needed to support resource fragments. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1029" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Improved Convenience
-Methods.</b></span> Provide improved factory and convenience methods. For example,
-factory methods that accept a name as an argument (for named element creation),
-and retrieval methods that accept arguments indicating whether name comparisons
-should be case-sensitive and whether elements should be created on demand.
-Ensure that metadata exists for custom operations. Also provide query methods
-for retrieving the reverse of one-way references (depends on resolution for EMF
-bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75922">75922</a>). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>UML<sup>TM</sup> 2.0 Interchange.</b> Provide support for importing/exporting
-resources based on the official OMG XMI representation of UML<sup>TM</sup> 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Validation Rules.</b></span> Complete the generation
-and implementation of validation rules from the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Unit Tests.</b></span> Complete the implementation of
-generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Completeness]</p>
-
-<p><span class=SpellE><span class=GramE><b>Javadoc</b></span></span><span
-class=GramE><b>.</b></span> Complete the generation of model documentation from
-the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Enhanced Icons.</b></span> Provide meaningful icons for
-most, if not all, of the types in UML. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>RCP Support.</b></span> Provide support for Rich Client
-Platform where applicable. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]</p>
-
-<p><span class=GramE><b>Tools.</b></span> Engage partners and tool developers
-to contribute tools based on UML2, e.g. a mechanism for import/exporting
-resources based on Unisys XMI for UML 1.x. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>) [Theme:
-Broadening <span class=GramE>The</span> Community]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>OCL Support.</b></span> Provide support for constraints
-specified in OCL. Requires EMF support for OCL (e.g. an OCL
-parser/interpreter). Consider providing a convenience method on Constraint for
-returning the parsed representation of OCL expressions. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199">105199</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20051212.html b/uml2/docs/plans/uml2_project_plan_2_0_20051212.html
deleted file mode 100644
index 402ff94..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20051212.html
+++ /dev/null
@@ -1,1018 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>45</o:Revision>
-  <o:TotalTime>1766</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2005-12-12T21:11:00Z</o:LastSaved>
-  <o:Pages>2</o:Pages>
-  <o:Words>2575</o:Words>
-  <o:Characters>14679</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>122</o:Lines>
-  <o:Paragraphs>34</o:Paragraphs>
-  <o:CharactersWithSpaces>17220</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:289867300;
-	mso-list-template-ids:-1470344124;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:455218912;
-	mso-list-template-ids:-1551212448;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:1227178619;
-	mso-list-template-ids:1005251546;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:1612276497;
-	mso-list-template-ids:-1516980208;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1744838385;
-	mso-list-template-ids:-1714408060;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11
-	{mso-list-id:1856188456;
-	mso-list-template-ids:1169602680;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 2.0 Plan</h1>
-
-<p>Last revised 16:11 EST December 12, 2005 (<img width=12 height=12
-id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes over the <a
-href="uml2_project_plan_2_0_20051105.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 10 - Milestone 1 (2.0 M1) - Stable
-     Build based on Eclipse 3.2 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, December 22 - Milestone 2 (2.0 M2) - Stable
-     Build based on Eclipse 3.2 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1027" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, February 23 - Milestone 3 (2.0 M3) - Stable Build based
-     on Eclipse 3.2 M5 - API complete - API freeze<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1028" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, April 6 - Milestone 4 (2.0 M4) - Stable Build based on
-     Eclipse 3.2 M6 - feature complete - development freeze - lock down and
-     testing begins<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for <img border=0 width=12 height=12
-id="_x0000_i1029" src=../../../images/new.gif><span style='mso-spacerun:yes'> </span>late 2Q2006.
-All release deliverables will be available for download as soon as the release
-has been tested and validated in the target operating configurations listed
-below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.2<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_2.html">Eclipse
-Project 3.2 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 2.0
-APIs. Downward contract compatibility is not supported. Compliance with UML2
-2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure compliance
-with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.0 will be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Completeness</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - This theme includes consolidation activities
-     where groundwork was laid in 1.x but needs to be completed and brought
-     into full use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of <span class=SpellE>SWT's</span> native
-     platform integration and the many other reusable components that the
-     Eclipse platform provides. This theme includes work to provide UML2
-     support for developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 2.0, this means
-     currency with Eclipse 3.2 and EMF 2.2.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1026" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.2 / EMF
-2.2 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.2 (and Eclipse 3.2). Make
-changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260">87260</a>) [Theme: Release
-Currency]</p>
-
-<p><span class=GramE><b>UML<sup>TM</sup> 2.0 Conformance.</b></span> Implement the revised
-package merge algorithm and regenerate the code using a source model based on
-the finalized UML<sup>TM</sup> 2.0 Superstructure <span class=GramE>specification</span>
-(compliance level L3). Update UML2 resources (libraries, <span class=SpellE>metamodels</span>,
-<span class=GramE>profiles</span>), examples, and EMF generator extensions as
-necessary. Enhance the generator extensions (developed in UML2 1.1) to
-facilitate code generation for an arbitrary compliance level. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>UML2 2.0 Migration.</b></span> Provide a resource
-migration extension to migrate resources based on the UML2 1.x schema to 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191">105191</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Reduced Memory Footprint.</b></span> Reduce the memory
-footprint of UML models by, for example, providing alternative implementations
-and/or lightweight alternatives to heavyweight representations of certain
-concepts (e.g. lower and upper bounds). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>) [Theme:
-Built To Last]</p>
-
-<p><span class=SpellE><span class=GramE><b>Supressed</b></span></span><span
-class=GramE><b> EMF Types.</b></span> <span class=GramE>Suppress EMF types in
-the generated code by turning on the 'Model Feature Defaults &gt; Suppress EMF
-Types' generator option.</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Resource Fragments.</b></span> Provide support for
-segregation of UML2 resources into 'fragments' (e.g. *.fragment.uml2) with
-packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Derived Features.</b></span> Make derived features
-changeable (where appropriate) and consider using EMF feature maps to implement
-unions, subsets, and supersets (where possible). Use derived features (and
-feature maps) as needed to support resource fragments. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Improved Convenience Methods.</b></span> Provide
-improved factory and convenience methods. For example, factory methods that
-accept a name as an argument (for named element creation), and retrieval
-methods that accept arguments indicating whether name comparisons should be
-case-sensitive and whether elements should be created on demand. Ensure that
-metadata exists for custom operations. Also provide query methods for
-retrieving the reverse of one-way references (depends on resolution for EMF bug
-<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75922">75922</a>). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>UML<sup>TM</sup> 2.0 Interchange.</b> Provide support for importing/exporting
-resources based on the official OMG XMI representation of UML<sup>TM</sup> 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Validation Rules.</b></span> Complete the generation
-and implementation of validation rules from the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Unit Tests.</b></span> Complete the implementation of
-generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Completeness]</p>
-
-<p><span class=SpellE><span class=GramE><b>Javadoc</b></span></span><span
-class=GramE><b>.</b></span> Complete the generation of model documentation from
-the UML<sup>TM</sup> 2.0 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Enhanced Icons.</b></span> Provide meaningful icons for
-most, if not all, of the types in UML. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>RCP Support.</b></span> Provide support for Rich Client
-Platform where applicable. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]</p>
-
-<p><span class=GramE><b>Tools.</b></span> Engage partners and tool developers
-to contribute tools based on UML2, e.g. a mechanism for import/exporting
-resources based on Unisys XMI for UML 1.x. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>) [Theme:
-Broadening <span class=GramE>The</span> Community]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>OCL Support.</b></span> Provide support for constraints
-specified in OCL. Requires EMF support for OCL (e.g. an OCL
-parser/interpreter). Consider providing a convenience method on Constraint for
-returning the parsed representation of OCL expressions. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199">105199</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20060109.html b/uml2/docs/plans/uml2_project_plan_2_0_20060109.html
deleted file mode 100644
index 48959db..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20060109.html
+++ /dev/null
@@ -1,1042 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>49</o:Revision>
-  <o:TotalTime>1882</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-01-09T21:02:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2788</o:Words>
-  <o:Characters>15896</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>132</o:Lines>
-  <o:Paragraphs>37</o:Paragraphs>
-  <o:CharactersWithSpaces>18647</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:62872384;
-	mso-list-template-ids:-548511122;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:292831883;
-	mso-list-template-ids:795746216;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:375200819;
-	mso-list-template-ids:779530060;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:908267122;
-	mso-list-template-ids:-1044058286;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1292521443;
-	mso-list-template-ids:460089074;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10
-	{mso-list-id:1370180363;
-	mso-list-template-ids:968411448;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 2.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="2" Hour="16">16:02 EST</st1:time> <st1:date
-Year="2006" Day="9" Month="1">January 9, 2006</st1:date> (<img width=12
-height=12 id="_x0000_i1026" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_2_0_20051212.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage,
-documentation, examples, performance tuning, usability, etc. are considered
-routine ongoing maintenance activities and are not included in this plan unless
-they would also involve a significant change to the API or feature set, or
-involve a significant amount of work. The intent of the plan is to account for
-all interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 10 - Milestone 1 (2.0 M1) - Stable
-     Build based on Eclipse 3.2 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1027" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, January 5 - Milestone 2 (2.0 M2) - Stable Build based on
-     Eclipse 3.2 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, February 23 - Milestone 3 (2.0 M3) - Stable
-     Build based on Eclipse 3.2 M5 - API complete - API freeze<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 6 - Milestone 4 (2.0 M4) - Stable Build
-     based on Eclipse 3.2 M6 - feature complete - development freeze - lock
-     down and testing begins<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for late 2Q2006. All release deliverables will
-be available for download as soon as the release has been tested and validated
-in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse Platform,
-and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.2<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly runs
-fine in many operating environments beyond the reference platforms we test.
-However, since we do not systematically test them we cannot vouch for them.
-Problems encountered when running Eclipse on non-reference platform that cannot
-be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_2.html">Eclipse
-Project 3.2 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 2.0 APIs. Downward contract compatibility is not supported. Compliance
-with UML2 2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure
-compliance with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.0 will be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Completeness</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - This theme includes consolidation activities
-     where groundwork was laid in 1.x but needs to be completed and brought
-     into full use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide the
-     features that advanced developers demand, but also be something that most
-     developers find simple to use. This theme includes ease-of-use reviews of
-     existing features, and work that helps make UML2-based products simple to
-     use for developers with widely-varying backgrounds and skill sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of <span class=SpellE>SWT's</span> native
-     platform integration and the many other reusable components that the
-     Eclipse platform provides. This theme includes work to provide UML2
-     support for developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 2.0, this means
-     currency with Eclipse 3.2 and EMF 2.2.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1025" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.2 / EMF
-2.2 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.2 (and Eclipse 3.2). Make
-changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260">87260</a>) [Theme:
-Release Currency]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1028" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>UML<sup>TM</sup> 2.1 Conformance.</b></span>
-Implement the revised package merge algorithm and regenerate the code using a
-source model based on the finalized UML<sup>TM</sup> 2.1 Superstructure <span class=GramE>specification</span>
-(compliance level L3). Update UML2 resources (libraries, <span class=SpellE>metamodels</span>,
-<span class=GramE>profiles</span>), examples, and EMF generator extensions as
-necessary. Enhance the generator extensions (developed in UML2 1.1) to
-facilitate code generation for an arbitrary compliance level. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>) [Theme:
-Completeness]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1029" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>UML2 2.0 Migration.</b></span> Provide a resource
-migration extension to migrate resources based on the UML2 1.x schema to 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191">105191</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Reduced Memory Footprint.</b></span> Reduce the memory
-footprint of UML models by, for example, providing alternative implementations
-and/or lightweight alternatives to heavyweight representations of certain
-concepts (e.g. lower and upper bounds). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>) [Theme:
-Built To Last]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1035" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=SpellE><span class=GramE><b>Supressed</b></span></span><span
-class=GramE><b> EMF Types.</b></span> <span class=GramE>Suppress EMF types in
-the generated code by turning on the 'Model Feature Defaults &gt; Suppress EMF
-Types' generator option.</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1030" src=../../../images/ok.gif></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1036" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Resource Fragments.</b></span>
-Provide support for segregation of UML2 resources into 'fragments' (e.g.
-*.fragment.uml2) with packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1031" src=../../../images/ok.gif></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1037" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Derived Features.</b></span>
-Make derived features changeable (where appropriate) and consider using EMF
-feature maps to implement unions, subsets, and supersets (where possible). Use
-derived features (and feature maps) as needed to support resource fragments. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1032" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Improved Convenience Methods.</b></span> Provide
-improved factory and convenience methods. For example, factory methods that
-accept a name as an argument (for named element creation), and retrieval
-methods that accept arguments indicating whether name comparisons should be
-case-sensitive and whether elements should be created on demand. Ensure that
-metadata exists for custom operations. Also provide query methods for
-retrieving the reverse of one-way references (depends on resolution for EMF bug
-<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75922">75922</a>). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>) [Theme:
-Simple To Use]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1034" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>UML <span class=SpellE>Ecore</span>
-Exporter.</b></span> Provide an exporter that takes advantage of the new exporter
-framework in EMF to convert <span class=SpellE>Ecore</span> models to UML
-models. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=112863">112863</a>)
-[Theme: Completeness]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1033" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>UML<sup>TM</sup> 2.1 Interchange.</b> Provide support
-for importing/exporting resources based on the official OMG XMI representation
-of UML<sup>TM</sup> 2.1. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>)
-[Theme: Completeness]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1038" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Validation Rules.</b></span>
-Complete the generation and implementation of validation rules from the UML<sup>TM</sup>
-2.1 source model. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>)
-[Theme: Completeness]</p>
-
-<p><span class=GramE><b>Unit Tests.</b></span> Complete the implementation of
-generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Completeness]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1039" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=SpellE><span class=GramE><b>Javadoc</b></span></span><span
-class=GramE><b>.</b></span> Complete the generation of model documentation from
-the UML<sup>TM</sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Enhanced Icons.</b></span> Provide meaningful icons for
-most, if not all, of the types in UML. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>RCP Support.</b></span> Provide support for Rich Client
-Platform where applicable. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]</p>
-
-<p><span class=GramE><b>Tools.</b></span> Engage partners and tool developers
-to contribute tools based on UML2, e.g. a mechanism for import/exporting
-resources based on Unisys XMI for UML 1.x. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>) [Theme:
-Broadening <span class=GramE>The</span> Community]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>OCL Support.</b></span> Provide support for constraints
-specified in OCL. Requires EMF support for OCL (e.g. an OCL
-parser/interpreter). Consider providing a convenience method on Constraint for
-returning the parsed representation of OCL expressions. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199">105199</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20060220.html b/uml2/docs/plans/uml2_project_plan_2_0_20060220.html
deleted file mode 100644
index b325b76..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20060220.html
+++ /dev/null
@@ -1,1024 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>51</o:Revision>
-  <o:TotalTime>1888</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-02-20T22:27:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2644</o:Words>
-  <o:Characters>15077</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>125</o:Lines>
-  <o:Paragraphs>35</o:Paragraphs>
-  <o:CharactersWithSpaces>17686</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:24984923;
-	mso-list-template-ids:121042488;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5
-	{mso-list-id:1049376412;
-	mso-list-template-ids:-1993066112;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:1586525292;
-	mso-list-template-ids:1695587282;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1659187009;
-	mso-list-template-ids:-57232516;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1744134334;
-	mso-list-template-ids:1200665590;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1780489744;
-	mso-list-template-ids:515813612;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 2.0 Plan</h1>
-
-<p>Last revised 17:28 EST February 20, 2006 (<img width=12 height=12
-id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes over the <a
-href="uml2_project_plan_2_0_20060109.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l4 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 10 - Milestone 1 (2.0 M1) - Stable
-     Build based on Eclipse 3.2 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 5 - Milestone 2 (2.0 M2) - Stable
-     Build based on Eclipse 3.2 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1031" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, March 2 - Milestone 3 (2.0 M3) - Stable Build based on
-     Eclipse 3.2 M5 - API complete - API freeze<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 6 - Milestone 4 (2.0 M4) - Stable Build
-     based on Eclipse 3.2 M6 - feature complete - development freeze - lock
-     down and testing begins<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for late 2Q2006. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.2<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_2.html">Eclipse
-Project 3.2 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 2.0 APIs. Downward contract compatibility is not supported. Compliance
-with UML2 2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure
-compliance with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.0 will be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Completeness</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - This theme includes consolidation activities
-     where groundwork was laid in 1.x but needs to be completed and brought
-     into full use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of <span class=SpellE>SWT's</span> native
-     platform integration and the many other reusable components that the
-     Eclipse platform provides. This theme includes work to provide UML2
-     support for developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 2.0, this means
-     currency with Eclipse 3.2 and EMF 2.2.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1026" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.2 / EMF
-2.2 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span> Maintain
-release currency concurrent with EMF 2.2 (and Eclipse 3.2). Make changes as
-required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260">87260</a>) [Theme:
-Release Currency]</p>
-
-<p><span class=GramE><b>UML<sup>TM</sup> 2.1 Conformance.</b></span> Implement the revised
-package merge algorithm and regenerate the code using a source model based on
-the finalized UML<sup>TM</sup> 2.1 Superstructure <span class=GramE>specification</span>
-(compliance level L3). Update UML2 resources (libraries, <span class=SpellE>metamodels</span>,
-<span class=GramE>profiles</span>), examples, and EMF generator extensions as
-necessary. Enhance the generator extensions (developed in UML2 1.1) to
-facilitate code generation for an arbitrary compliance level. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>) [Theme:
-Completeness]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1027" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>UML2 2.0 Migration.</b></span> Provide a resource
-migration extension to migrate resources based on the UML2 1.x schema to 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191">105191</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Reduced Memory Footprint.</b></span> Reduce the memory
-footprint of UML models by, for example, providing alternative implementations
-and/or lightweight alternatives to heavyweight representations of certain
-concepts (e.g. lower and upper bounds). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>) [Theme:
-Built To Last]</p>
-
-<p><span class=SpellE><span class=GramE><b>Supressed</b></span></span><span
-class=GramE><b> EMF Types.</b></span> <span class=GramE>Suppress EMF types in
-the generated code by turning on the 'Model Feature Defaults &gt; Suppress EMF
-Types' generator option.</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1028" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Resource Fragments.</b></span> Provide support for
-segregation of UML2 resources into 'fragments' (e.g. *.fragment.uml2) with
-packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1029" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Derived Features.</b></span> Make derived features
-changeable (where appropriate) and consider using EMF feature maps to implement
-unions, subsets, and supersets (where possible). Use derived features (and feature
-maps) as needed to support resource fragments. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1030" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Improved Convenience Methods.</b></span> Provide
-improved factory and convenience methods. For example, factory methods that
-accept a name as an argument (for named element creation), and retrieval methods
-that accept arguments indicating whether name comparisons should be
-case-sensitive and whether elements should be created on demand. Ensure that
-metadata exists for custom operations. Also provide query methods for
-retrieving the reverse of one-way references (depends on resolution for EMF bug
-<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75922">75922</a>). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>UML <span class=SpellE>Ecore</span> Exporter.</b></span>
-Provide an exporter that takes advantage of the new exporter framework in EMF
-to convert <span class=SpellE>Ecore</span> models to UML models. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=112863">112863</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>UML<sup>TM</sup> 2.1 Interchange.</b> Provide support for importing/exporting
-resources based on the official OMG XMI representation of UML<sup>TM</sup> 2.1. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Validation Rules.</b></span> Complete the generation
-and implementation of validation rules from the UML<sup>TM</sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Unit Tests.</b></span> Complete the implementation of
-generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Completeness]</p>
-
-<p><span class=SpellE><span class=GramE><b>Javadoc</b></span></span><span
-class=GramE><b>.</b></span> Complete the generation of model documentation from
-the UML<sup>TM</sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Enhanced Icons.</b></span> Provide meaningful icons for
-most, if not all, of the types in UML. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>RCP Support.</b></span> Provide support for Rich Client
-Platform where applicable. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]</p>
-
-<p><span class=GramE><b>Tools.</b></span> Engage partners and tool developers
-to contribute tools based on UML2, e.g. a mechanism for import/exporting
-resources based on Unisys XMI for UML 1.x. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>) [Theme:
-Broadening <span class=GramE>The</span> Community]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>OCL Support.</b></span> Provide support for constraints
-specified in OCL. Requires EMF support for OCL (e.g. an OCL parser/interpreter).
-Consider providing a convenience method on Constraint for returning the parsed
-representation of OCL expressions. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199">105199</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20060306.html b/uml2/docs/plans/uml2_project_plan_2_0_20060306.html
deleted file mode 100644
index 61f24b7..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20060306.html
+++ /dev/null
@@ -1,1029 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>54</o:Revision>
-  <o:TotalTime>1894</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-03-06T14:22:00Z</o:LastSaved>
-  <o:Pages>2</o:Pages>
-  <o:Words>2708</o:Words>
-  <o:Characters>15441</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>128</o:Lines>
-  <o:Paragraphs>36</o:Paragraphs>
-  <o:CharactersWithSpaces>18113</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:336352781;
-	mso-list-template-ids:-431184774;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:374239184;
-	mso-list-template-ids:-1449750750;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:515769555;
-	mso-list-template-ids:-1521831438;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:724450031;
-	mso-list-template-ids:1545268374;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1269121207;
-	mso-list-template-ids:-1092682548;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10
-	{mso-list-id:1648048660;
-	mso-list-template-ids:-982907018;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 2.0 Plan</h1>
-
-<p>Last revised 9:22 EST March 6, 2006 (<img width=12 height=12
-id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes over the <a
-href="uml2_project_plan_2_0_20060220.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 10 - Milestone 1 (2.0 M1) - Stable
-     Build based on Eclipse 3.2 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 5 - Milestone 2 (2.0 M2) - Stable
-     Build based on Eclipse 3.2 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, March 2 - Milestone 3 (2.0 M3) - Stable Build
-     based on Eclipse 3.2 M5 - API complete - API freeze<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><img border=0 width=12
-     height=12 id="_x0000_i1034" src=../../../images/new.gif><span
-     style='mso-spacerun:yes'> </span><span style='font-size:10.0pt;font-family:
-     Arial'>Thursday, April 13 - Milestone 4 (2.0 M4) - Stable Build based on
-     Eclipse 3.2 M6 - feature complete - development freeze - lock down and
-     testing begins<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for late 2Q2006. All release deliverables will
-be available for download as soon as the release has been tested and validated
-in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.2<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we test.
-However, since we do not systematically test them we cannot vouch for them.
-Problems encountered when running Eclipse on non-reference platform that cannot
-be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_2.html">Eclipse
-Project 3.2 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 2.0 APIs. Downward contract compatibility is not supported. Compliance
-with UML2 2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure
-compliance with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.0 will be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Completeness</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - This theme includes consolidation activities
-     where groundwork was laid in 1.x but needs to be completed and brought
-     into full use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of <span class=SpellE>SWT's</span> native
-     platform integration and the many other reusable components that the
-     Eclipse platform provides. This theme includes work to provide UML2
-     support for developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 2.0, this means
-     currency with Eclipse 3.2 and EMF 2.2.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.0 <span class=SpellE>metamodel</span>
-for the Eclipse platform. Plan items reflect new features of the UML2 project,
-or areas where existing features will be significantly reworked (<span
-style='mso-bidi-font-style:italic'><img border=0 width=12 height=12
-id="_x0000_i1026" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.2 / EMF
-2.2 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span> Maintain
-release currency concurrent with EMF 2.2 (and Eclipse 3.2). Make changes as
-required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260">87260</a>) [Theme:
-Release Currency]</p>
-
-<p><span class=GramE><b>UML<sup>TM</sup> 2.1 Conformance.</b></span> Implement the revised
-package merge algorithm and regenerate the code using a source model based on
-the finalized UML<sup>TM</sup> 2.1 Superstructure <span class=GramE>specification</span>
-(compliance level L3). Update UML2 resources (libraries, <span class=SpellE>metamodels</span>,
-<span class=GramE>profiles</span>), examples, and EMF generator extensions as
-necessary. Enhance the generator extensions (developed in UML2 1.1) to
-facilitate code generation for an arbitrary compliance level. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>) [Theme:
-Completeness]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1027" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>UML2 2.0 Migration.</b></span> Provide a resource
-migration extension to migrate resources based on the UML2 1.x schema to 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191">105191</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Reduced Memory Footprint.</b></span> Reduce the memory
-footprint of UML models by, for example, providing alternative implementations
-and/or lightweight alternatives to heavyweight representations of certain
-concepts (e.g. lower and upper bounds). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>) [Theme:
-Built To Last]</p>
-
-<p><span class=SpellE><span class=GramE><b>Supressed</b></span></span><span
-class=GramE><b> EMF Types.</b></span> <span class=GramE>Suppress EMF types in
-the generated code by turning on the 'Model Feature Defaults &gt; Suppress EMF
-Types' generator option.</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1028" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Resource Fragments.</b></span> Provide support for
-segregation of UML2 resources into 'fragments' (e.g. *.fragment.uml2) with
-packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1029" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Derived Features.</b></span> Make derived features
-changeable (where appropriate) and consider using EMF feature maps to implement
-unions, subsets, and supersets (where possible). Use derived features (and
-feature maps) as needed to support resource fragments. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1030" src=../../../images/ok.gif></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1032" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Improved Convenience
-Methods.</b></span> Provide improved factory and convenience methods. For
-example, factory methods that accept a name as an argument (for named element
-creation), and retrieval methods that accept arguments indicating whether name
-comparisons should be case-sensitive and whether elements should be created on
-demand. Ensure that metadata exists for custom operations. Also provide query
-methods for retrieving the reverse of one-way references (depends on resolution
-for EMF bug <a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75922">75922</a>).
-(<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>)
-[Theme: Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1031" src=../../../images/ok.gif></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1033" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>UML <span class=SpellE>Ecore</span>
-Importer / Exporter.</b></span> Provide an exporter that takes advantage of the
-new exporter framework in EMF to convert <span class=SpellE>Ecore</span> models
-to UML models, in addition to an importer that converts UML models to <span
-class=SpellE>Ecore</span>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=112863">112863</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>UML<sup>TM</sup> 2.1 Interchange.</b> Provide support for importing/exporting
-resources based on the official OMG XMI representation of UML<sup>TM</sup> 2.1. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Validation Rules.</b></span> Complete the generation
-and implementation of validation rules from the UML<sup>TM</sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Unit Tests.</b></span> Complete the implementation of
-generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Completeness]</p>
-
-<p><span class=SpellE><span class=GramE><b>Javadoc</b></span></span><span
-class=GramE><b>.</b></span> Complete the generation of model documentation from
-the UML<sup>TM</sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Enhanced Icons.</b></span> Provide meaningful icons for
-most, if not all, of the types in UML. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>RCP Support.</b></span> Provide support for Rich Client
-Platform where applicable. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]</p>
-
-<p><span class=GramE><b>Tools.</b></span> Engage partners and tool developers
-to contribute tools based on UML2, e.g. a mechanism for import/exporting
-resources based on Unisys XMI for UML 1.x. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>) [Theme:
-Broadening <span class=GramE>The</span> Community]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>OCL Support.</b></span> Provide support for constraints
-specified in OCL. Requires EMF support for OCL (e.g. an OCL
-parser/interpreter). Consider providing a convenience method on Constraint for
-returning the parsed representation of OCL expressions. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199">105199</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20060316.html b/uml2/docs/plans/uml2_project_plan_2_0_20060316.html
deleted file mode 100644
index 352d8f4..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20060316.html
+++ /dev/null
@@ -1,1041 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>58</o:Revision>
-  <o:TotalTime>1901</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-03-16T13:52:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2725</o:Words>
-  <o:Characters>15536</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>129</o:Lines>
-  <o:Paragraphs>36</o:Paragraphs>
-  <o:CharactersWithSpaces>18225</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:392823058;
-	mso-list-template-ids:1573794806;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l4
-	{mso-list-id:661617154;
-	mso-list-template-ids:-163001862;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:863522065;
-	mso-list-template-ids:-1385539706;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:950894078;
-	mso-list-template-ids:-1202444776;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1083649581;
-	mso-list-template-ids:1960369280;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10
-	{mso-list-id:1812749599;
-	mso-list-template-ids:1842511260;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 2.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="51" Hour="8">8:51 EST</st1:time> <st1:date
-Year="2006" Day="16" Month="3">March 16, 2006</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_2_0_20060306.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 10 - Milestone 1 (2.0 M1) - Stable
-     Build based on Eclipse 3.2 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 5 - Milestone 2 (2.0 M2) - Stable
-     Build based on Eclipse 3.2 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, March 2 - Milestone 3 (2.0 M3) - Stable Build
-     based on Eclipse 3.2 M5 - API complete - API freeze<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 13 - Milestone 4 (2.0 M4) - Stable
-     Build based on Eclipse 3.2 M6 - feature complete - development freeze -
-     lock down and testing begins<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for late 2Q2006. All release deliverables will be
-available for download as soon as the release has been tested and validated in
-the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup>TM</sup> code and has no direct dependence
-on the underlying operating system. The chief dependence is on the Eclipse
-Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.2<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_2.html">Eclipse
-Project 3.2 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 2.0 APIs. Downward contract compatibility is not supported. Compliance
-with UML2 2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure
-compliance with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.0 will be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Completeness</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - This theme includes consolidation activities
-     where groundwork was laid in 1.x but needs to be completed and brought
-     into full use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of <span class=SpellE>SWT's</span> native
-     platform integration and the many other reusable components that the
-     Eclipse platform provides. This theme includes work to provide UML2
-     support for developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 2.0, this means
-     currency with Eclipse 3.2 and EMF 2.2.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l11 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> <img border=0 width=12
-height=12 id="_x0000_i1034" src=../../../images/new.gif><span style='mso-spacerun:yes'> </span>2.x
-<span class=SpellE>metamodel</span> for the Eclipse platform. Plan items
-reflect new features of the UML2 project, or areas where existing features will
-be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.2 / EMF
-2.2 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span> Maintain
-release currency concurrent with EMF 2.2 (and Eclipse 3.2). Make changes as
-required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260">87260</a>) [Theme:
-Release Currency]</p>
-
-<p><span class=GramE><b>UML<sup>TM</sup> 2.1 Conformance.</b></span> Implement the revised
-package merge algorithm and regenerate the code using a source model based on
-the finalized UML<sup>TM</sup> 2.1 Superstructure <span class=GramE>specification</span>
-(compliance level L3). Update UML2 resources (libraries, <span class=SpellE>metamodels</span>,
-<span class=GramE>profiles</span>), examples, and EMF generator extensions as
-necessary. Enhance the generator extensions (developed in UML2 1.1) to
-facilitate code generation for an arbitrary compliance level. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>) [Theme:
-Completeness]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1027" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>UML2 2.0 Migration.</b></span> Provide a resource
-migration extension to migrate resources based on the UML2 1.x schema to 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191">105191</a>) [Theme:
-Completeness]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1033" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>Reduced Memory Footprint / Improved
-Performance.</b> Reduce the memory footprint of UML models by, for example,
-providing alternative implementations and/or lightweight alternatives to
-heavyweight representations of certain concepts (e.g. lower and upper bounds). Improve
-performance of key operations such as model load, save, traversal, etc<span
-class=GramE>..</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>) [Theme:
-Built To Last]</p>
-
-<p><span class=SpellE><span class=GramE><b>Supressed</b></span></span><span
-class=GramE><b> EMF Types.</b></span> <span class=GramE>Suppress EMF types in
-the generated code by turning on the 'Model Feature Defaults &gt; Suppress EMF
-Types' generator option.</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1028" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Resource Fragments.</b></span> Provide support for
-segregation of UML2 resources into 'fragments' (e.g. *.fragment.uml2) with
-packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1029" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Derived Features.</b></span> Make derived features
-changeable (where appropriate) and consider using EMF feature maps to implement
-unions, subsets, and supersets (where possible). Use derived features (and
-feature maps) as needed to support resource fragments. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1030" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Improved Convenience Methods.</b></span> Provide
-improved factory and convenience methods. For example, factory methods that
-accept a name as an argument (for named element creation), and retrieval
-methods that accept arguments indicating whether name comparisons should be
-case-sensitive and whether elements should be created on demand. Ensure that metadata
-exists for custom operations. Also provide query methods for retrieving the
-reverse of one-way references (depends on resolution for EMF bug <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75922">75922</a>). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1031" src=../../../images/ok.gif></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1032" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>UML <span class=SpellE>Ecore</span>
-Importer / Exporter.</b></span> Provide an exporter that takes advantage of the
-new exporter framework in EMF to convert <span class=SpellE>Ecore</span> models
-to UML (*.<span class=SpellE>uml</span>) models, in addition to an importer
-that converts UML models to <span class=SpellE>Ecore</span>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=122863">122863</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>UML<sup>TM</sup> 2.1 Interchange.</b> Provide support for importing/exporting
-resources based on the official OMG XMI representation of UML<sup>TM</sup> 2.1. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Validation Rules.</b></span> Complete the generation
-and implementation of validation rules from the UML<sup>TM</sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Unit Tests.</b></span> Complete the implementation of
-generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Completeness]</p>
-
-<p><span class=SpellE><span class=GramE><b>Javadoc</b></span></span><span
-class=GramE><b>.</b></span> Complete the generation of model documentation from
-the UML<sup>TM</sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>Enhanced Icons.</b></span> Provide meaningful icons for
-most, if not all, of the types in UML. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>RCP Support.</b></span> Provide support for Rich Client
-Platform where applicable. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]</p>
-
-<p><span class=GramE><b>Tools.</b></span> Engage partners and tool developers
-to contribute tools based on UML2, e.g. a mechanism for import/exporting
-resources based on Unisys XMI for UML 1.x. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>) [Theme:
-Broadening <span class=GramE>The</span> Community]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-<p><span class=GramE><b>OCL Support.</b></span> Provide support for constraints
-specified in OCL. Requires EMF support for OCL (e.g. an OCL
-parser/interpreter). Consider providing a convenience method on Constraint for
-returning the parsed representation of OCL expressions. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199">105199</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><i>None at this time.</i></p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20060417.html b/uml2/docs/plans/uml2_project_plan_2_0_20060417.html
deleted file mode 100644
index b03bcd6..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20060417.html
+++ /dev/null
@@ -1,1019 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>59</o:Revision>
-  <o:TotalTime>2001</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-04-17T19:03:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2832</o:Words>
-  <o:Characters>16145</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>134</o:Lines>
-  <o:Paragraphs>37</o:Paragraphs>
-  <o:CharactersWithSpaces>18940</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:184251476;
-	mso-list-template-ids:-21990820;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:360670231;
-	mso-list-template-ids:34247954;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:1032919282;
-	mso-list-template-ids:1965177180;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:1357851967;
-	mso-list-template-ids:-141115306;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1485272291;
-	mso-list-template-ids:199672048;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l11
-	{mso-list-id:2000496660;
-	mso-list-template-ids:-2140925918;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-DRAFT 2.0 Plan</h1>
-
-<p>Last revised 15:04 EDT April 17, 2006 (<img width=12 height=12
-id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes over the <a
-href="uml2_project_plan_2_0_20060316.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this draft plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse bugzilla database, with a title and a concise summary (usually a
-single paragraph) that explains the work item at a suitably high enough level
-so that everyone can readily understand what the work item is without having to
-understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage,
-documentation, examples, performance tuning, usability, etc. are considered
-routine ongoing maintenance activities and are not included in this plan unless
-they would also involve a significant change to the API or feature set, or
-involve a significant amount of work. The intent of the plan is to account for
-all interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 10 - Milestone 1 (2.0 M1) - Stable
-     Build based on Eclipse 3.2 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 5 - Milestone 2 (2.0 M2) - Stable
-     Build based on Eclipse 3.2 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, March 2 - Milestone 3 (2.0 M3) - Stable Build
-     based on Eclipse 3.2 M5 - API complete - API freeze<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 13 - Milestone 4 (2.0 M4) - Stable
-     Build based on Eclipse 3.2 M6 - feature complete - development freeze -
-     lock down and testing begins<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for late 2Q2006. All release deliverables will
-be available for download as soon as the release has been tested and validated
-in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; Java<sup><span style='font-size:9.5pt'>TM</span></sup>
-code and has no direct dependence on the underlying operating system. The chief
-dependence is on the Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.2<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_2.html">Eclipse
-Project 3.2 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Programs that use affected APIs and extension points will need to be ported to
-UML2 2.0 APIs. Downward contract compatibility is not supported. Compliance
-with UML2 2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure
-compliance with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i>UML2
-2.0 Migration<em><span style='font-family:Arial'> Guide</span></em></i>.
-Downward plug-in compatibility is not supported: plug-ins compiled against UML2
-2.0 will be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly depend
-on anything other than what is specified in the API are inherently
-unsupportable and receive no guarantees about compatibility within a single
-release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Completeness</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - This theme includes consolidation activities
-     where groundwork was laid in 1.x but needs to be completed and brought
-     into full use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of SWT's native platform integration and the many
-     other reusable components that the Eclipse platform provides. This theme
-     includes work to provide UML2 support for developing and deploying
-     RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 2.0, this means
-     currency with Eclipse 3.2 and EMF 2.2.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to bugzilla problem
-reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l10 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup><span style='font-size:
-9.5pt'>TM</span></sup> 2.x metamodel for the Eclipse platform. Plan items
-reflect new features of the UML2 project, or areas where existing features will
-be significantly reworked (<span style='mso-bidi-font-style:italic'><img
-border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif> marks completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b style='mso-bidi-font-weight:normal'>Eclipse 3.2 / EMF 2.2 Compatibility<span
-style='mso-bidi-font-weight:bold'>.</span></b> Maintain release currency
-concurrent with EMF 2.2 (and Eclipse 3.2). Make changes as required to align
-with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260">87260</a>) [Theme:
-Release Currency]</p>
-
-<p><b>UML</b><b><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1
-Conformance.</b> Implement the revised package merge algorithm and regenerate
-the code using a source model based on the finalized UML<sup><span
-style='font-size:9.5pt'>TM</span></sup> 2.1 Superstructure specification
-(compliance level L3). Update UML2 resources (libraries, metamodels, profiles),
-examples, and EMF generator extensions as necessary. Enhance the generator
-extensions (developed in UML2 1.1) to facilitate code generation for an
-arbitrary compliance level. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>) [Theme:
-Completeness]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1027" src=../../../images/ok.gif></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1036" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>UML2 2.0 Migration.</b> Provide a resource
-migration extension to migrate resources based on the UML2 1.x schema to 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191">105191</a>) [Theme:
-Completeness] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1035" src=../../../images/ok.gif></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1028" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>Reduced Memory Footprint / Improved
-Performance.</b> Reduce the memory footprint of UML models by, for example,
-providing alternative implementations and/or lightweight alternatives to
-heavyweight representations of certain concepts (e.g. lower and upper bounds).
-Improve performance of key operations such as model load, save, traversal,
-etc.. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>)
-[Theme: Built To Last] <span style='mso-bidi-font-style:italic'><img border=0
-width=12 height=12 id="_x0000_i1034" src=../../../images/ok.gif></span></p>
-
-<p><b>Supressed EMF Types.</b> Suppress EMF types in the generated code by
-turning on the 'Model Feature Defaults &gt; Suppress EMF Types' generator
-option. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>)
-[Theme: Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1029" src=../../../images/ok.gif></span></p>
-
-<p><b>Resource Fragments.</b> Provide support for segregation of UML2 resources
-into 'fragments' (e.g. *.fragment.uml2) with packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1030" src=../../../images/ok.gif></span></p>
-
-<p><b>Derived Features.</b> Make derived features changeable (where
-appropriate) and consider using EMF feature maps to implement unions, subsets,
-and supersets (where possible). Use derived features (and feature maps) as
-needed to support resource fragments. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1031" src=../../../images/ok.gif></span></p>
-
-<p><b>Improved Convenience Methods.</b> Provide improved factory and
-convenience methods. For example, factory methods that accept a name as an
-argument (for named element creation), and retrieval methods that accept
-arguments indicating whether name comparisons should be case-sensitive and
-whether elements should be created on demand. Ensure that metadata exists for
-custom operations. Also provide query methods for retrieving the reverse of
-one-way references (depends on resolution for EMF bug <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75922">75922</a>). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1032" src=../../../images/ok.gif></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1033" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>UML Ecore Importer / Exporter.</b> Provide
-an exporter that takes advantage of the new exporter framework in EMF to
-convert Ecore models to UML (*.uml) models, in addition to an importer that
-converts UML models to Ecore. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=122863">122863</a>) [Theme:
-Completeness] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1037" src=../../../images/ok.gif></span></p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><b>UML</b><b><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1
-Interchange.</b> Provide support for importing/exporting resources based on the
-official OMG XMI representation of UML<sup><span style='font-size:9.5pt'>TM</span></sup>
-2.1. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>)
-[Theme: Completeness]</p>
-
-<p><b>Unit Tests.</b> Complete the implementation of generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Completeness]</p>
-
-<p><b>Javadoc.</b> Complete the generation of model documentation from the UML<sup><span
-style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use]</p>
-
-<p><b>Enhanced Icons.</b> Provide meaningful icons for most, if not all, of the
-types in UML. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>)
-[Theme: Simple To Use]</p>
-
-<p><b>RCP Support.</b> Provide support for Rich Client Platform where
-applicable. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>)
-[Theme: Rich Client Platform]</p>
-
-<p><b>Improved Documentation.</b> Improve UML2 documentation by updating the
-FAQ, enhancing the Javadoc, and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1038" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>Validation Rules.</b> Complete the
-generation and implementation of validation rules from the UML<sup><span
-style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Completeness]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1039" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>Tools.</b> Engage partners and tool
-developers to contribute tools based on UML2, e.g. a mechanism for
-import/exporting resources based on Unisys XMI for UML 1.x. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>) [Theme:
-Broadening The Community]</p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1040" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>OCL Support.</b> Provide support for
-constraints specified in OCL. Requires EMF support for OCL (e.g. an OCL
-parser/interpreter). Consider providing a convenience method on Constraint for
-returning the parsed representation of OCL expressions. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199">105199</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20060525.html b/uml2/docs/plans/uml2_project_plan_2_0_20060525.html
deleted file mode 100644
index 2a44c83..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20060525.html
+++ /dev/null
@@ -1,1056 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>64</o:Revision>
-  <o:TotalTime>2024</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-05-25T17:25:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2876</o:Words>
-  <o:Characters>16396</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>136</o:Lines>
-  <o:Paragraphs>38</o:Paragraphs>
-  <o:CharactersWithSpaces>19234</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-   <w:UseFELayout/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l0:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l0:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:803039990;
-	mso-list-template-ids:1134302978;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:1203253827;
-	mso-list-template-ids:-1107553946;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l6:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7
-	{mso-list-id:1457723051;
-	mso-list-template-ids:-1774297118;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l8:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9
-	{mso-list-id:1897232020;
-	mso-list-template-ids:-1646349150;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l10
-	{mso-list-id:2064020091;
-	mso-list-template-ids:1977660458;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:2101176243;
-	mso-list-template-ids:908213354;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-2.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="24" Hour="13">13:24 EDT</st1:time> <st1:date
-Year="2006" Day="25" Month="5">May 25, 2006</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_2_0_20060417.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage, documentation,
-examples, performance tuning, usability, etc. are considered routine ongoing
-maintenance activities and are not included in this plan unless they would also
-involve a significant change to the API or feature set, or involve a
-significant amount of work. The intent of the plan is to account for all
-interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 10 - Milestone 1 (2.0 M1) - Stable
-     Build based on Eclipse 3.2 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 5 - Milestone 2 (2.0 M2) - Stable
-     Build based on Eclipse 3.2 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, March 2 - Milestone 3 (2.0 M3) - Stable Build
-     based on Eclipse 3.2 M5 - API complete - API freeze<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l0 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 13 - Milestone 4 (2.0 M4) - Stable
-     Build based on Eclipse 3.2 M6 - feature complete - development freeze -
-     lock down and testing begins<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for late 2Q2006. All release deliverables will
-be available for download as soon as the release has been tested and validated
-in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l6 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.2<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_2.html">Eclipse
-Project 3.2 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs and
-error messages, are externalized. The English strings for UML2 are provided as
-the default resource bundles. Translations are not provided with this release.
-However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <img
-border=0 width=12 height=12 id="_x0000_i1040" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><i><a
-href="http://www.eclipse.org/modeling/mdt/uml2/docs/guides/UML2_2.0_Migration_Guide/guide.html">UML2
-2.0 Migration<span style='font-style:normal'> Guide</span></a></i>. Programs
-that use affected APIs and extension points will need to be ported to UML2 2.0
-APIs. Downward contract compatibility is not supported. Compliance with UML2
-2.0 APIs would <b style='mso-bidi-font-weight:normal'>not</b> ensure compliance
-with UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <img
-border=0 width=12 height=12 id="_x0000_i1041" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><i><a
-href="http://www.eclipse.org/modeling/mdt/uml2/docs/guides/UML2_2.0_Migration_Guide/guide.html">UML2
-2.0 Migration<span style='font-style:normal'> Guide</span></a></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 2.0 will
-be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully against
-UML2 2.0 APIs. In some cases, it may be necessary to make minor changes to the
-source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully opened
-by an Eclipse with UML2 2.0 installed. This includes both hidden metadata,
-which is localized to a particular workspace, as well as metadata files found
-within a workspace project, which may propagate between workspaces via file
-copying or team repositories. User interface session state may be discarded
-when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Completeness</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - This theme includes consolidation activities
-     where groundwork was laid in 1.x but needs to be completed and brought
-     into full use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of <span class=SpellE>SWT's</span> native
-     platform integration and the many other reusable components that the
-     Eclipse platform provides. This theme includes work to provide UML2
-     support for developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 2.0, this means
-     currency with Eclipse 3.2 and EMF 2.2.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l8 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup><span style='font-size:
-9.5pt'>TM</span></sup> 2.x <span class=SpellE>metamodel</span> for the Eclipse
-platform. Plan items reflect new features of the UML2 project, or areas where
-existing features will be significantly reworked (<span style='mso-bidi-font-style:
-italic'><img border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.2 / EMF
-2.2 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.2 (and Eclipse 3.2). Make
-changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260">87260</a>) [Theme:
-Release Currency]</p>
-
-<p><span class=GramE><b>UML</b><b><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.1 Conformance.</b></span> Implement the revised package merge algorithm and
-regenerate the code using a source model based on the finalized UML<sup><span
-style='font-size:9.5pt'>TM</span></sup> 2.1 Superstructure specification
-(compliance level L3). Update UML2 resources (libraries, <span class=SpellE>metamodels</span>,
-<span class=GramE>profiles</span>), examples, and EMF generator extensions as
-necessary. Enhance the generator extensions (developed in UML2 1.1) to
-facilitate code generation for an arbitrary compliance level. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>) [Theme:
-Completeness]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1027" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>UML2 2.0 Migration.</b></span> Provide a resource
-migration <img border=0 width=12 height=12 id="_x0000_i1042" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span>mechanism to migrate resources based on the
-UML2 1.x schema to 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191">105191</a>) [Theme:
-Completeness] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1028" src=../../../images/ok.gif></span></p>
-
-<p><b>Reduced Memory Footprint / Improved Performance.</b> Reduce the memory
-footprint of <span class=GramE>UML </span><img border=0 width=12 height=12
-id="_x0000_i1043" src=../../../images/new.gif>. Improve performance of key operations such as
-model load, save, traversal, etc<span class=GramE>..</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>) [Theme:
-Built To Last] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1029" src=../../../images/ok.gif></span></p>
-
-<p><span class=SpellE><span class=GramE><b>Supressed</b></span></span><span
-class=GramE><b> EMF Types.</b></span> <img border=0 width=12 height=12
-id="_x0000_i1044" src=../../../images/new.gif><span style='mso-spacerun:yes'> </span>Consider suppressing
-EMF types in the generated code by turning on the 'Model Feature Defaults &gt;
-Suppress EMF Types' generator option. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1030" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Resource Fragments.</b></span> Provide support for
-segregation of UML2 resources into 'fragments' (e.g. *.fragment.uml2) with
-packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1031" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Derived Features.</b></span> Make derived features
-changeable (where appropriate) and consider using EMF feature maps to implement
-unions, subsets, and supersets (where possible<span class=GramE>) </span><img
-border=0 width=12 height=12 id="_x0000_i1045" src=../../../images/new.gif>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1032" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Improved Convenience Methods.</b></span> Provide
-improved factory and convenience methods. For example, factory methods that accept
-a name as an argument (for named element creation), and retrieval methods that
-accept arguments indicating whether name comparisons should be case-sensitive
-and whether elements should be created on demand. Ensure that metadata exists
-for custom operations. Also provide query methods for retrieving the reverse of
-one-way references (depends on resolution for EMF bug <a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75922">75922</a>). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1033" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>UML <span class=SpellE>Ecore</span> Importer /
-Exporter.</b></span> Provide an exporter that takes advantage of the new
-exporter framework in EMF to convert <span class=SpellE>Ecore</span> models to
-UML (*.<span class=SpellE>uml</span>) models, in addition to an importer that
-converts UML models to <span class=SpellE>Ecore</span>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=122863">122863</a>) [Theme:
-Completeness] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1034" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1035" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><b>UML</b><b><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.1 Interchange.</b> Provide support for importing/exporting resources based on
-the official OMG XMI representation of UML<sup><span style='font-size:9.5pt'>TM</span></sup>
-2.1. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>)
-[Theme: Completeness]<span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1036" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1037" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>RCP Support.</b></span>
-Provide support for Rich Client Platform where applicable. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]<span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1038" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1039" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Enhanced Icons.</b></span>
-Provide meaningful icons for most, if not all, of the types in UML. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b>Unit Tests.</b></span> Complete the implementation of
-generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Completeness]</p>
-
-<p><span class=SpellE><span class=GramE><b>Javadoc</b></span></span><span
-class=GramE><b>.</b></span> Complete the generation of model documentation from
-the UML<sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme: Simple
-To Use]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b>Validation Rules.</b></span> Complete the generation
-and implementation of validation rules from the UML<sup><span style='font-size:
-9.5pt'>TM</span></sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Tools.</b></span> Engage partners and tool developers
-to contribute tools based on UML2, e.g. a mechanism for import/exporting
-resources based on Unisys XMI for UML 1.x. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>) [Theme:
-Broadening <span class=GramE>The</span> Community]</p>
-
-<p><span class=GramE><b>OCL Support.</b></span> Provide support for constraints
-specified in OCL. Requires EMF support for OCL (e.g. an OCL
-parser/interpreter). Consider providing a convenience method on Constraint for
-returning the parsed representation of OCL expressions. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199">105199</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/plans/uml2_project_plan_2_0_20060608.html b/uml2/docs/plans/uml2_project_plan_2_0_20060608.html
deleted file mode 100644
index 7d215d9..0000000
--- a/uml2/docs/plans/uml2_project_plan_2_0_20060608.html
+++ /dev/null
@@ -1,1054 +0,0 @@
-<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:w="urn:schemas-microsoft-com:office:word"
-xmlns:st1="urn:schemas-microsoft-com:office:smarttags"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=Word.Document>
-<meta name=Generator content="Microsoft Word 10">
-<meta name=Originator content="Microsoft Word 10">
-<link rel=File-List href="uml2_project_plan_2_0_files/filelist.xml">
-<link rel=Edit-Time-Data href="uml2_project_plan_2_0_files/editdata.mso">
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-w\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-</style>
-<![endif]-->
-<title>Eclipse UML2 - DRAFT 2.0 Plan</title>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="date"/>
-<o:SmartTagType namespaceuri="urn:schemas-microsoft-com:office:smarttags"
- name="time"/>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>khussey</o:Author>
-  <o:Template>Normal</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>66</o:Revision>
-  <o:TotalTime>2055</o:TotalTime>
-  <o:Created>2004-10-27T01:51:00Z</o:Created>
-  <o:LastSaved>2006-06-09T08:22:00Z</o:LastSaved>
-  <o:Pages>1</o:Pages>
-  <o:Words>2794</o:Words>
-  <o:Characters>15930</o:Characters>
-  <o:Company>Rational Software</o:Company>
-  <o:Lines>132</o:Lines>
-  <o:Paragraphs>37</o:Paragraphs>
-  <o:CharactersWithSpaces>18687</o:CharactersWithSpaces>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <w:WordDocument>
-  <w:SpellingState>Clean</w:SpellingState>
-  <w:GrammarState>Clean</w:GrammarState>
-  <w:Compatibility>
-   <w:ApplyBreakingRules/>
-  </w:Compatibility>
-  <w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel>
- </w:WordDocument>
-</xml><![endif]--><!--[if !mso]><object
- classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object>
-<style>
-st1\:*{behavior:url(#ieooui) }
-</style>
-<![endif]-->
-<link rel=Stylesheet type="text/css" media=all href="default_style.css">
-<style>
-<!--
- /* Font Definitions */
- @font-face
-	{font-family:"MS Mincho";
-	panose-1:2 2 6 9 4 2 5 8 3 4;
-	mso-font-alt:"\FF2D\FF33 \660E\671D";
-	mso-font-charset:128;
-	mso-generic-font-family:roman;
-	mso-font-format:other;
-	mso-font-pitch:fixed;
-	mso-font-signature:1 134676480 16 0 131072 0;}
-@font-face
-	{font-family:Verdana;
-	panose-1:2 11 6 4 3 5 4 4 2 4;
-	mso-font-charset:0;
-	mso-generic-font-family:swiss;
-	mso-font-pitch:variable;
-	mso-font-signature:536871559 0 0 0 415 0;}
-@font-face
-	{font-family:"\@MS Mincho";
-	mso-font-charset:128;
-	mso-generic-font-family:modern;
-	mso-font-pitch:fixed;
-	mso-font-signature:-1610612033 1757936891 16 0 131231 0;}
- /* Style Definitions */
- p.MsoNormal, li.MsoNormal, div.MsoNormal
-	{mso-style-parent:"";
-	margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"Times New Roman";
-	mso-believe-normal-left:yes;}
-h1
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:1;
-	font-size:21.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h2
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-line-height-alt:10.5pt;
-	mso-pagination:widow-orphan;
-	mso-outline-level:2;
-	font-size:18.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h3
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:3;
-	font-size:14.0pt;
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-h4
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	mso-outline-level:4;
-	font-size:12.0pt;
-	font-family:"Times New Roman";
-	mso-fareast-font-family:"MS Mincho";
-	font-weight:bold;}
-a:link, span.MsoHyperlink
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-a:visited, span.MsoHyperlinkFollowed
-	{color:blue;
-	text-decoration:underline;
-	text-underline:single;}
-p
-	{mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-code
-	{mso-fareast-font-family:"Times New Roman";}
-pre
-	{margin:0in;
-	margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	tab-stops:45.8pt 91.6pt 137.4pt 183.2pt 229.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641.2pt 687.0pt 732.8pt;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.indextop, li.indextop, div.indextop
-	{mso-style-name:indextop;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:24.0pt;
-	mso-fareast-font-family:"Times New Roman";
-	font-weight:bold;}
-p.indexsub, li.indexsub, div.indexsub
-	{mso-style-name:indexsub;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:7.5pt;
-	mso-fareast-font-family:"Times New Roman";}
-p.jump, li.jump, div.jump
-	{mso-style-name:jump;
-	mso-margin-top-alt:auto;
-	margin-right:0in;
-	mso-margin-bottom-alt:auto;
-	margin-left:0in;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	mso-fareast-font-family:"Times New Roman";}
-span.header
-	{mso-style-name:header;}
-span.SpellE
-	{mso-style-name:"";
-	mso-spl-e:yes;}
-span.GramE
-	{mso-style-name:"";
-	mso-gram-e:yes;}
-@page Section1
-	{size:8.5in 11.0in;
-	margin:1.0in 1.25in 1.0in 1.25in;
-	mso-header-margin:.5in;
-	mso-footer-margin:.5in;
-	mso-paper-source:0;}
-div.Section1
-	{page:Section1;}
- /* List Definitions */
- @list l0
-	{mso-list-id:45761297;
-	mso-list-template-ids:1618411282;}
-@list l0:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1
-	{mso-list-id:199630218;
-	mso-list-template-ids:-1221184516;}
-@list l1:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l1:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l1:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2
-	{mso-list-id:213278280;
-	mso-list-template-ids:1664226462;}
-@list l2:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l2:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l2:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3
-	{mso-list-id:347144999;
-	mso-list-template-ids:1345604724;}
-@list l3:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l3:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l3:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l4
-	{mso-list-id:520552991;
-	mso-list-template-ids:153358006;}
-@list l4:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5
-	{mso-list-id:676233000;
-	mso-list-template-ids:-227133684;}
-@list l5:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l5:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l5:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l6
-	{mso-list-id:1210843838;
-	mso-list-template-ids:-965808084;}
-@list l6:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7
-	{mso-list-id:1303848377;
-	mso-list-template-ids:-391109514;}
-@list l7:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l7:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l7:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l8
-	{mso-list-id:1735161775;
-	mso-list-template-ids:2077629576;}
-@list l8:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9
-	{mso-list-id:1831213725;
-	mso-list-template-ids:1905270258;}
-@list l9:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l9:level2
-	{mso-level-tab-stop:1.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level3
-	{mso-level-tab-stop:1.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level4
-	{mso-level-tab-stop:2.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level5
-	{mso-level-tab-stop:2.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level6
-	{mso-level-tab-stop:3.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level7
-	{mso-level-tab-stop:3.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level8
-	{mso-level-tab-stop:4.0in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l9:level9
-	{mso-level-tab-stop:4.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;}
-@list l10
-	{mso-list-id:2026979729;
-	mso-list-template-ids:724976498;}
-@list l10:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-@list l11
-	{mso-list-id:2106999719;
-	mso-list-template-ids:805758002;}
-@list l11:level1
-	{mso-level-number-format:bullet;
-	mso-level-text:\F0B7;
-	mso-level-tab-stop:.5in;
-	mso-level-number-position:left;
-	text-indent:-.25in;
-	mso-ansi-font-size:10.0pt;
-	font-family:Symbol;}
-ol
-	{margin-bottom:0in;}
-ul
-	{margin-bottom:0in;}
--->
-</style>
-<!--[if gte mso 10]>
-<style>
- /* Style Definitions */
- table.MsoNormalTable
-	{mso-style-name:"Table Normal";
-	mso-tstyle-rowband-size:0;
-	mso-tstyle-colband-size:0;
-	mso-style-noshow:yes;
-	mso-style-parent:"";
-	mso-padding-alt:0in 5.4pt 0in 5.4pt;
-	mso-para-margin:0in;
-	mso-para-margin-bottom:.0001pt;
-	mso-pagination:widow-orphan;
-	font-size:10.0pt;
-	font-family:"Times New Roman";}
-</style>
-<![endif]--><![if mso 9]>
-<style>
-p.MsoNormal
-	{margin-left:8.5pt;}
-</style>
-<![endif]>
-<meta name="Kenn Hussey" content="Eclipse UML2 PMC">
-<!--[if gte mso 9]><xml>
- <o:shapedefaults v:ext="edit" spidmax="2050"/>
-</xml><![endif]--><!--[if gte mso 9]><xml>
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout></xml><![endif]-->
-</head>
-
-<body lang=EN-US link=blue vlink=blue style='tab-interval:.5in;margin-left:
-8.5pt;margin-top:14.2pt'>
-
-<div class=Section1>
-
-<h1>Eclipse UML2<br>
-2.0 Plan</h1>
-
-<p>Last revised <st1:time Minute="50" Hour="15">15:50 EDT</st1:time> <st1:date
-Year="2006" Day="8" Month="6">June 08, 2006</st1:date> (<img width=12
-height=12 id="_x0000_i1025" src=../../../images/new.gif border=0> marks interesting changes
-over the <a href="uml2_project_plan_2_0_20060525.html">previous plan revision</a>)</p>
-
-<p><i>&nbsp;&nbsp;&nbsp; Please send comments about this plan to the </i><a
-href="mailto:mdt-uml2.dev@eclipse.org">mdt-uml2.dev@eclipse.org</a> <i>developer
-mailing list.</i></p>
-
-<p>This document lays out the feature and API set for the next feature release
-of the Eclipse UML2 project after 1.x, designated release 2.0. </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Deliverables">Release deliverables</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Milestones">Release milestones</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#TargetOperatingEnvironments">Target operating
-     environments</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#Compatibility">Compatibility with previous
-     releases</a><o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l2 level1 lfo3;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'><a href="#UML2">UML2 project</a><o:p></o:p></span></li>
-</ul>
-
-<p>Plans do not materialize out of nowhere, nor are they entirely static. To
-ensure the planning process is transparent and open to the entire Eclipse
-community, plans are posted in an embryonic form and then revised from time to
-time throughout the release cycle. </p>
-
-<p>The first part of the plan deals with the important matters of release
-deliverables, release milestones, target operating environments, and
-release-to-release compatibility. These are all things that need to be clear
-for any release, even if no features were to change.&nbsp; </p>
-
-<p>The remainder of the plan consists of plan items for the projects under the
-Eclipse UML2 project. Each plan item covers a feature or API that is to be
-added, or some aspect that is to be improved. Each plan item has its own entry
-in the Eclipse <span class=SpellE>bugzilla</span> database, with a title and a
-concise summary (usually a single paragraph) that explains the work item at a
-suitably high enough level so that everyone can readily understand what the
-work item is without having to understand the nitty-gritty detail. </p>
-
-<p>Not all plan items represent the same amount of work; some may be quite
-large, others, quite small. Some plan items may involve work that is localized
-to a single subsystem; others may involve coordinated changes across several
-projects within the same top-level project; and others may involve coordination
-with other top-level projects. Although some plan items are for work that is
-more pressing that others, the plan items appear in no particular order. </p>
-
-<p>With the previous release as the starting point, this is the plan for how we
-will enhance and improve it. Fixing bugs, improving test coverage,
-documentation, examples, performance tuning, usability, etc. are considered
-routine ongoing maintenance activities and are not included in this plan unless
-they would also involve a significant change to the API or feature set, or
-involve a significant amount of work. The intent of the plan is to account for
-all interesting feature work. </p>
-
-<h2><a name=Deliverables></a>Release deliverables</h2>
-
-<p>The release deliverables are: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Source code release for Eclipse UML2, available as
-     versions tagged &quot;R2_0&quot; in the eclipse.org <a
-     href="http://dev.eclipse.org/viewcvs/">CVS repository</a>.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK distributions
-     (downloadable).<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l5 level1 lfo6;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>UML2 runtime binary and SDK features on eclipse.org
-     update site (install via Eclipse update manager).<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=Milestones></a>Release milestones</h2>
-
-<p>Release milestone occurring at roughly 6 week intervals exist to facilitate
-coarse-grained planning and staging. The milestones are:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, November 10 - Milestone 1 (2.0 M1) - Stable
-     Build based on Eclipse 3.2 M3<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, January 5 - Milestone 2 (2.0 M2) - Stable
-     Build based on Eclipse 3.2 M4<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, March 2 - Milestone 3 (2.0 M3) - Stable Build
-     based on Eclipse 3.2 M5 - API complete - API freeze<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l1 level1 lfo9;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Thursday, April 13 - Milestone 4 (2.0 M4) - Stable
-     Build based on Eclipse 3.2 M6 - feature complete - development freeze -
-     lock down and testing begins<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release is targeted for late 2Q2006. All release deliverables will
-be available for download as soon as the release has been tested and validated
-in the target operating configurations listed below.</p>
-
-<h2><a name=TargetOperatingEnvironments></a>Target Operating Environments</h2>
-
-<p>In order to remain current, each release of an Eclipse project targets
-reasonably current versions of underlying operating environments and other
-Eclipse projects on which it depends.&nbsp;</p>
-
-<p>Most of Eclipse is &quot;pure&quot; <span class=SpellE>Java<sup><span
-style='font-size:9.5pt'>TM</span></sup></span> code and has no direct
-dependence on the underlying operating system. The chief dependence is on the
-Eclipse Platform, and on the Java 2 Platform that runs it.</p>
-
-<p>The UML2 2.0 release depends on the following:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Java 2 Platform 1.5<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>Eclipse Platform 3.2<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l7 level1 lfo12;tab-stops:list .5in'><span style='font-size:10.0pt;
-     font-family:Arial'>EMF 2.2<o:p></o:p></span></li>
-</ul>
-
-<p>The 2.0 release of UML2 is designed to run on any configuration supporting
-the above components.</p>
-
-<p>The Eclipse Platform runs in a variety of operating environments. Testing is
-focused on a handful of popular <span class=header>combinations of operating
-system and Java 2 Platform; these are our </span><em><span style='font-family:
-Arial'>reference platforms</span></em><span class=header>. Eclipse undoubtedly
-runs fine in many operating environments beyond the reference platforms we
-test. However, since we do not systematically test them we cannot vouch for
-them. Problems encountered when running Eclipse on non-reference platform that
-cannot be recreated on any reference platform will be given lower priority than
-problems with running Eclipse on a reference platform.</span></p>
-
-<p><span style='mso-bidi-font-weight:bold'>See the <a
-href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_2.html">Eclipse
-Project 3.2 plan</a> for a list of reference platforms.</span></p>
-
-<h4><span style='font-family:Arial'>Internationalization<o:p></o:p></span></h4>
-
-<p>Eclipse is designed as the basis for internationalized products. The user
-interface elements provided by the various Eclipse projects, including dialogs
-and error messages, are externalized. The English strings for UML2 are provided
-as the default resource bundles. Translations are not provided with this
-release. However, the plug-in fragment mechanism provides the means by which
-translations into any number of other languages can be incorporated.</p>
-
-<h2><a name=Compatibility></a>Compatibility with Previous Releases</h2>
-
-<h3>Compatibility of Release 2.0 with 1.x</h3>
-
-<p>Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:normal'>not</b> be
-compatible with UML2 1.x.</p>
-
-<p><b>API Contract Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards contract-compatible with UML2 1.x as noted in the <i><a
-href="http://www.eclipse.org/modeling/mdt/uml2/docs/guides/UML2_2.0_Migration_Guide/guide.html">UML2
-2.0 Migration<span style='font-style:normal'> Guide</span></a></i>. Programs that
-use affected APIs and extension points will need to be ported to UML2 2.0 APIs.
-Downward contract compatibility is not supported. Compliance with UML2 2.0 APIs
-would <b style='mso-bidi-font-weight:normal'>not</b> ensure compliance with
-UML2 1.x APIs. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain contract compatibility.</p>
-
-<p><b>Binary (plug-in) Compatibility:</b> UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards binary-compatible with UML2 1.x as noted in the <i><a
-href="http://www.eclipse.org/modeling/mdt/uml2/docs/guides/UML2_2.0_Migration_Guide/guide.html">UML2
-2.0 Migration<span style='font-style:normal'> Guide</span></a></i>. Downward
-plug-in compatibility is not supported: plug-ins compiled against UML2 2.0 will
-be unusable with UML2 1.x. Refer to <i><a
-href="http://www.eclipse.org/eclipse/development/java-api-evolution.html">Evolving
-Java-based APIs</a></i> for a discussion of the kinds of API changes that
-maintain binary compatibility.</p>
-
-<p><b>Source Compatibility:</b> Source files written to use UML2 1.x APIs will <b
-style='mso-bidi-font-weight:normal'>not</b> compile and run successfully
-against UML2 2.0 APIs. In some cases, it may be necessary to make minor changes
-to the source code to disambiguate things like imports or overloaded method
-invocations. Downward source compatibility is not supported. If source files
-use new APIs, they will not be usable with earlier versions. </p>
-
-<p><b>Workspace Compatibility:</b> Eclipse UML2 2.0 will <b style='mso-bidi-font-weight:
-normal'>not</b> be upwards workspace-compatible with UML2 1.x as noted. This
-means that workspaces and projects created by an Eclipse with UML2 1.x
-installed <b style='mso-bidi-font-weight:normal'>cannot</b> be successfully
-opened by an Eclipse with UML2 2.0 installed. This includes both hidden
-metadata, which is localized to a particular workspace, as well as metadata
-files found within a workspace project, which may propagate between workspaces
-via file copying or team repositories. User interface session state may be
-discarded when a workspace is upgraded. Downward workspace compatibility is not
-supported. Metadata files created (or overwritten) by the newer version will
-generally be unusable with older versions.</p>
-
-<p><b>Non-compliant usage of API's</b>: All non-API methods and classes, and
-certainly everything in a package with &quot;internal&quot; in its name, are
-considered implementation details which may vary between operating environment
-and are subject to change without notice. Client plug-ins that directly <span
-class=GramE>depend</span> on anything other than what is specified in the API
-are inherently unsupportable and receive no guarantees about compatibility
-within a single release much less with an earlier releases. Refer to <i><a
-href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">How
-to Use the Eclipse API</a></i> for information about how to write compliant
-plug-ins.</p>
-
-<h2>Themes</h2>
-
-<p>The changes under consideration for the next release of Eclipse UML2 address
-a few major themes:</p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Built To Last </span></b><span style='font-size:
-     10.0pt;font-family:Arial'>- UML2 has always been a framework for
-     delivering integrated modeling tools. With a growing base of both free and
-     commercial offerings based on UML2, it's critical for continued success to
-     maintain API stability and ensure that the framework scales well. This
-     theme includes work to measure and improve the performance and scalability
-     of UML2 resources.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Completeness</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - This theme includes consolidation activities
-     where groundwork was laid in 1.x but needs to be completed and brought
-     into full use.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Simple To Use</span></b><span style='font-size:
-     10.0pt;font-family:Arial'> - The UML2 framework needs to not only provide
-     the features that advanced developers demand, but also be something that
-     most developers find simple to use. This theme includes ease-of-use
-     reviews of existing features, and work that helps make UML2-based products
-     simple to use for developers with widely-varying backgrounds and skill
-     sets.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Rich Client Platform </span></b><span
-     style='font-size:10.0pt;font-family:Arial'>- The Eclipse RCP is a
-     Java-based application framework for the desktop. Building on the Eclipse
-     runtime and the modular plug-in story, it is possible to build
-     applications ranging from command line tools to feature-rich applications
-     that take full advantage of <span class=SpellE>SWT's</span> native
-     platform integration and the many other reusable components that the
-     Eclipse platform provides. This theme includes work to provide UML2
-     support for developing and deploying RCP-based applications.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Broadening The Community</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - This theme includes work
-     that grows deeper roots into the various domain-specific communities,
-     spreads UML2 to additional operating environments, and builds bridges to
-     other open source communities.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l3 level1 lfo15;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Release Currency</span></b><span
-     style='font-size:10.0pt;font-family:Arial'> - Tools projects will maintain
-     release currency concurrent with 3.x releases. For UML2 2.0, this means
-     currency with Eclipse 3.2 and EMF 2.2.<o:p></o:p></span></li>
-</ul>
-
-<p>Each theme has a number of items; the relevant theme is identified for each
-committed, proposed, and deferred plan items.</p>
-
-<p>The items listed reflect new features or areas where existing features will
-be significantly reworked. Numbers in parentheses link to <span class=SpellE>bugzilla</span>
-problem reports for that plan item. </p>
-
-<p>The current status of each plan item is noted: </p>
-
-<ul type=disc>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Committed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A committed plan item is one that we have
-     decided to address for the release.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Proposed</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A proposed plan item is one that we are
-     considering addressing for the release. Although we are actively
-     investigating it, we are not yet in a position to commit to it, or to say
-     that we won't be able to address it. After due consideration, a proposal
-     will either be committed or deferred.<o:p></o:p></span></li>
- <li class=MsoNormal style='mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
-     mso-list:l9 level1 lfo18;tab-stops:list .5in'><b><span style='font-size:
-     10.0pt;font-family:Arial'>Deferred</span></b><span style='font-size:10.0pt;
-     font-family:Arial'> plan item - A reasonable proposal that will not make
-     it in to this release for some reason is marked as deferred with a brief
-     note as to why it was deferred. Deferred plan items may resurface as
-     committed plan items at a later point.<o:p></o:p></span></li>
-</ul>
-
-<h2><a name=UML2>UML2 project</a></h2>
-
-<p>UML2 is an EMF-based implementation of the UML<sup><span style='font-size:
-9.5pt'>TM</span></sup> 2.x <span class=SpellE>metamodel</span> for the Eclipse
-platform. Plan items reflect new features of the UML2 project, or areas where
-existing features will be significantly reworked (<span style='mso-bidi-font-style:
-italic'><img border=0 width=12 height=12 id="_x0000_i1026" src=../../../images/ok.gif> marks
-completed work)</span>.</p>
-
-<h4><span style='font-family:Arial'>Committed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b style='mso-bidi-font-weight:normal'>Eclipse 3.2 / EMF
-2.2 Compatibility<span style='mso-bidi-font-weight:bold'>.</span></b></span>
-Maintain release currency concurrent with EMF 2.2 (and Eclipse 3.2). Make
-changes as required to align with EMF bug fixes. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260">87260</a>) [Theme:
-Release Currency]</p>
-
-<p><span class=GramE><b>UML</b><b><sup><span style='font-size:9.5pt'>TM</span></sup>
-2.1 Conformance.</b></span> Implement the revised package merge algorithm and
-regenerate the code using a source model based on the finalized UML<sup><span
-style='font-size:9.5pt'>TM</span></sup> 2.1 Superstructure specification
-(compliance level L3). Update UML2 resources (libraries, <span class=SpellE>metamodels</span>,
-<span class=GramE>profiles</span>), examples, and EMF generator extensions as
-necessary. Enhance the generator extensions (developed in UML2 1.1) to
-facilitate code generation for an arbitrary compliance level. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305">80305</a>) [Theme:
-Completeness]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1027" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>UML2 2.0 Migration.</b></span> Provide a resource
-migration mechanism to migrate resources based on the UML2 1.x schema to 2.0. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191">105191</a>) [Theme:
-Completeness] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1028" src=../../../images/ok.gif></span></p>
-
-<p><b>Reduced Memory Footprint / Improved Performance.</b> Reduce the memory
-footprint of UML. Improve performance of key operations such as model load,
-save, traversal, etc<span class=GramE>..</span> (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176">85176</a>) [Theme:
-Built To Last] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1029" src=../../../images/ok.gif></span></p>
-
-<p><span class=SpellE><span class=GramE><b>Supressed</b></span></span><span
-class=GramE><b> EMF Types.</b></span> Consider suppressing EMF types in the
-generated code by turning on the 'Model Feature Defaults &gt; Suppress EMF
-Types' generator option. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80311">80311</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1030" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Resource Fragments.</b></span> Provide support for
-segregation of UML2 resources into 'fragments' (e.g. *.fragment.uml2) with
-packages as root elements. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312">80312</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1031" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Derived Features.</b></span> Make derived features
-changeable (where appropriate) and consider using EMF feature maps to implement
-unions, subsets, and supersets (where possible). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313">80313</a>) [Theme:
-Simple To Use]<span style='mso-bidi-font-style:italic'> <img border=0 width=12
-height=12 id="_x0000_i1032" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>Improved Convenience Methods.</b></span> Provide
-improved factory and convenience methods. For example, factory methods that
-accept a name as an argument (for named element creation), and retrieval
-methods that accept arguments indicating whether name comparisons should be
-case-sensitive and whether elements should be created on demand. Ensure that
-metadata exists for custom operations. Also provide query methods for
-retrieving the reverse of one-way references (depends on resolution for EMF bug
-<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=75922">75922</a>). (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179">85179</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1033" src=../../../images/ok.gif></span></p>
-
-<p><span class=GramE><b>UML <span class=SpellE>Ecore</span> Importer /
-Exporter.</b></span> Provide an exporter that takes advantage of the new
-exporter framework in EMF to convert <span class=SpellE>Ecore</span> models to
-UML (*.<span class=SpellE>uml</span>) models, in addition to an importer that
-converts UML models to <span class=SpellE>Ecore</span>. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=122863">122863</a>) [Theme:
-Completeness] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1034" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><b>UML</b><b><sup><span style='font-size:9.5pt'>TM</span></sup> 2.1
-Interchange.</b> Provide support for importing/exporting resources based on the
-official OMG XMI representation of UML<sup><span style='font-size:9.5pt'>TM</span></sup>
-2.1. (<a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306">80306</a>)
-[Theme: Completeness]<span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1035" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><span class=GramE><b>RCP Support.</b></span> Provide support for Rich Client
-Platform where applicable. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80316">80316</a>) [Theme:
-Rich Client Platform]<span style='mso-bidi-font-style:italic'> <img border=0
-width=12 height=12 id="_x0000_i1036" src=../../../images/ok.gif><o:p></o:p></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1039" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=GramE><b>Enhanced Icons.</b></span>
-Provide meaningful icons for most, if not all, of the types in UML. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177">85177</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1038" src=../../../images/ok.gif></span></p>
-
-<p><img border=0 width=12 height=12 id="_x0000_i1040" src=../../../images/new.gif><span
-style='mso-spacerun:yes'> </span><span class=SpellE><span class=GramE><b>Javadoc</b></span></span><span
-class=GramE><b>.</b></span> Complete the generation of model documentation from
-the UML<sup><span style='font-size:9.5pt'>TM</span></sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315">80315</a>) [Theme:
-Simple To Use] <span style='mso-bidi-font-style:italic'><img border=0 width=12
-height=12 id="_x0000_i1037" src=../../../images/ok.gif></span></p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Proposed Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b>Unit Tests.</b></span> Complete the implementation of
-generated unit tests. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308">80308</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Improved Documentation.</b></span> Improve UML2
-documentation by updating the FAQ, enhancing the <span class=SpellE>Javadoc</span>,
-and publishing new articles. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413">77413</a>) [Theme:
-Simple To Use]</p>
-
-</blockquote>
-
-<h4><span style='font-family:Arial'>Deferred Items (UML2 project)<o:p></o:p></span></h4>
-
-<blockquote style='margin-top:5.0pt;margin-bottom:5.0pt'>
-
-<p><span class=GramE><b>Validation Rules.</b></span> Complete the generation
-and implementation of validation rules from the UML<sup><span style='font-size:
-9.5pt'>TM</span></sup> 2.1 source model. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307">80307</a>) [Theme:
-Completeness]</p>
-
-<p><span class=GramE><b>Tools.</b></span> Engage partners and tool developers
-to contribute tools based on UML2, e.g. a mechanism for import/exporting
-resources based on Unisys XMI for UML 1.x. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318">80318</a>) [Theme:
-Broadening <span class=GramE>The</span> Community]</p>
-
-<p><span class=GramE><b>OCL Support.</b></span> Provide support for constraints
-specified in OCL. Requires EMF support for OCL (e.g. an OCL parser/interpreter).
-Consider providing a convenience method on Constraint for returning the parsed
-representation of OCL expressions. (<a
-href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199">105199</a>) [Theme:
-Completeness]</p>
-
-</blockquote>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession.html b/uml2/docs/presentations/EclipseCon2004_PosterSession.html
deleted file mode 100644
index 6ec6d57..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession.html
+++ /dev/null
@@ -1,83 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link rel=File-List href="EclipseCon2004_PosterSession_files/filelist.xml">
-<link rel=Preview href="EclipseCon2004_PosterSession_files/preview.wmf">
-<link rel=Edit-Time-Data href="EclipseCon2004_PosterSession_files/editdata.mso">
-<title>Eclipse UML2 Project</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Subject>Poster Session</o:Subject>
-  <o:Author>Kenn Hussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>340</o:Revision>
-  <o:TotalTime>4327</o:TotalTime>
-  <o:Created>2002-08-23T15:26:08Z</o:Created>
-  <o:LastSaved>2004-02-10T19:49:20Z</o:LastSaved>
-  <o:Words>403</o:Words>
-  <o:PresentationFormat>On-screen Show</o:PresentationFormat>
-  <o:Manager>Daniel Leroux</o:Manager>
-  <o:Company>Rational Software, IBM Software Group</o:Company>
-  <o:Bytes>109131</o:Bytes>
-  <o:Paragraphs>96</o:Paragraphs>
-  <o:Slides>12</o:Slides>
-  <o:Notes>1</o:Notes>
-  <o:Version>10.4219</o:Version>
- </o:DocumentProperties>
- <o:OfficeDocumentSettings>
-  <o:ShowReviewingToolbar/>
-  <o:PixelsPerInch>80</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
-</xml><![endif]-->
-<link rel=Presentation-XML href="EclipseCon2004_PosterSession_files/pres.xml">
-<meta name=Description content="2/10/2004: Eclipse UML2 Project">
-<meta http-equiv=expires content=0>
-<![if !ppt]><script>
-<!--
-	var ver = 0, appVer = navigator.appVersion, msie = appVer.indexOf( "MSIE " )
-	var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0)
-	if( msie >= 0 )
-		ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) )
-	else
-		ver = parseInt( appVer )
-	browserSupported=0
-	if( !isMac && ver >= 4 && msie >= 0 ) {
-		browserSupported=1
-		window.location.replace( 'EclipseCon2004_PosterSession_files/frame.htm'+document.location.hash )
-	}
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<script><!--
-
-if( browserSupported )
-	document.writeln('<div style="visibility:hidden">');
-
-//--></script><font face=Arial size=2><b>
-
-<p>This presentation contains content that your browser may not be able to show
-properly. This presentation was optimized for more recent versions of Microsoft
-Internet Explorer.</p>
-
-<p>If you would like to proceed anyway, click <a
-href="EclipseCon2004_PosterSession_files/frame.htm">here</a>.</p>
-
-</b></font><script><!--
-
-if( browserSupported )
-	document.writeln('</div>');
-
-//--></script>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/buttons.gif b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/buttons.gif
deleted file mode 100644
index 1f2c73c..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/buttons.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/editdata.mso b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/editdata.mso
deleted file mode 100644
index e7a4058..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/editdata.mso
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/filelist.xml b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/filelist.xml
deleted file mode 100644
index 25cb2c2..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/filelist.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:File HRef="master08.htm"/>
- <o:File HRef="master08.xml"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="master08_image001.jpg"/>
- <o:File HRef="master08_image002.jpg"/>
- <o:File HRef="master09.htm"/>
- <o:File HRef="master09.xml"/>
- <o:File HRef="master09_image003.jpg"/>
- <o:File HRef="master09_image004.jpg"/>
- <o:File HRef="master02.htm"/>
- <o:File HRef="pres.xml"/>
- <o:File HRef="editdata.mso"/>
- <o:File HRef="slide0028.htm"/>
- <o:File HRef="master09_image005.jpg"/>
- <o:File HRef="master09_image006.jpg"/>
- <o:File HRef="slide0029.htm"/>
- <o:File HRef="master08_image007.jpg"/>
- <o:File HRef="master08_image008.gif"/>
- <o:File HRef="slide0030.htm"/>
- <o:File HRef="slide0031.htm"/>
- <o:File HRef="slide0032.htm"/>
- <o:File HRef="slide0033.htm"/>
- <o:File HRef="slide0034.htm"/>
- <o:File HRef="slide0035.htm"/>
- <o:File HRef="slide0036.htm"/>
- <o:File HRef="slide0037.htm"/>
- <o:File HRef="slide0038.htm"/>
- <o:File HRef="slide0039.htm"/>
- <o:File HRef="master01.htm"/>
- <o:File HRef="master08_stylesheet.css"/>
- <o:File HRef="script.js"/>
- <o:MainFile HRef="../EclipseCon2004_PosterSession.htm"/>
- <o:File HRef="fullscreen.htm"/>
- <o:File HRef="buttons.gif"/>
- <o:File HRef="frame.htm"/>
- <o:File HRef="outline.htm"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/frame.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/frame.htm
deleted file mode 100644
index 428fb6a..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/frame.htm
+++ /dev/null
@@ -1,37 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<title>Eclipse UML2 Project</title>
-<![if !ppt]><script src=script.js></script><script>
-<!--
-var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
-function Load()
-{
-	str=document.location.hash,idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(str) PPTSld.location.replace(str);
-}
-//-->
-</script>
-<![endif]>
-</head>
-
-
-<frameset rows="*,25" border=0>
- <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust framespacing=1 frameborder=1>
-  <frame src=outline.htm title="Outline" name=PPTOtl>
-  <frame src=slide0028.htm title="Slide" name=PPTSld>
- </frameset>
- <frameset cols="25%,*" framespacing=1>
-  <frame src=outline.htm title="Outline
-Navigation Bar" name=PPTOtlNav scrolling=no noresize>
-  <frame src=outline.htm title="Slide
-Navigation Bar" name=PPTNav scrolling=no noresize>
- </frameset>
-</frameset>
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/fullscreen.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/fullscreen.htm
deleted file mode 100644
index c0a9fac..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/fullscreen.htm
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<script src=script.js></script><script><!--
-var SCREEN_MODE   = "FullScreen";
-function Load() {
-	str=document.location.hash,idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(!str) str = "slide0028.htm";
-	PPTSld.location.replace(MHTMLPrefix+str);
-}
-function Unload() {
-	if ( document.body.PPTSldFrameset != null )
-		document.body.PPTSldFrameset.frames[1].document.body.resume();
-}
-//-->
-</script>
-</head>
-
-<frameset rows="*" frameborder=0 onload="Load()" onunload="Unload()">
- <frame name=PPTSld>
-</frameset>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master01.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master01.htm
deleted file mode 100644
index a7a276c..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master01.htm
+++ /dev/null
@@ -1,197 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="103"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s105473" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s105474" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105474" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta14'>‹header›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105475" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1"/></v:shapetype>
-
-<div v:shape="_x0000_s105475" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-field-code:meta0'>‹date/time›</span><span style='font-size:67%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_m105476" style='position:absolute;left:91.75pt;top:54.5pt;
- width:363.5pt;height:272.625pt;v-text-anchor:middle' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter"/>
- <v:shadow obscured="t"/>
- <v:path gradientshapeok="t" fillok="f" o:connecttype="rect"/>
- <o:lock v:ext="edit" rotation="t" text="t"/>
- <p:placeholder type="slideImage" position="2"/></v:shapetype><v:shapetype
- id="_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
- width:437.5pt;height:327.125pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="body" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_m105477">
-
-<div class=N>Click to edit Master text styles&#13;</div>
-
-<div class=N1>Second level&#13;</div>
-
-<div class=N2>Third level&#13;</div>
-
-<div class=N3>Fourth level&#13;</div>
-
-<div class=N4>Fifth level</div>
-
-</div>
-
-<v:shapetype id="_x0000_s105478" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="4" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105478" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta15'>‹footer›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105479" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="5" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105479" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span style='font-size:67%;mso-field-code:
-meta16'>‹#›</span><span style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<p:notes id="28" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="647"/>
- </o:shapelayout><v:shape id="_x0000_s662530" type="#_x0000_m105476" style='position:absolute;
-  left:92pt;top:54.625pt;width:363.125pt;height:272.375pt' filled="t"
-  fillcolor="white" stroked="t" strokecolor="black" strokeweight="1pt">
-  <v:fill o:detectmouseclick="t" type="solid"/>
-  <v:stroke dashstyle="solid" filltype="solid" linestyle="single" endcap="flat"
-   o:forcedash="t"/>
-  <v:shadow on="f"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s662531"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt;mso-wrap-style:square;v-text-anchor:top'
-  filled="f" stroked="f">
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <v:shadow on="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-fit-shape-to-text:f' inset="2.58931mm,1.2947mm,2.58931mm,1.2947mm"/>
-  <p:placeholder type="body" position="1"/></v:shape></p:notes>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master02.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master02.htm
deleted file mode 100644
index 1fd4c11..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master02.htm
+++ /dev/null
@@ -1,141 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="530"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s542721" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s542722" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542722" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta14'>‹header›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542723" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542723" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-field-code:meta0'>‹date/time›</span><span style='font-size:67%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542724" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="2" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542724" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta15'>‹footer›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542725" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542725" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span style='font-size:67%;mso-field-code:
-meta16'>‹#›</span><span style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08.htm
deleted file mode 100644
index 124dd2e..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08.htm
+++ /dev/null
@@ -1,60 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m32774" class=T><span lang=EN-US style='mso-ansi-language:
-EN-US'>Click to edit Master title style</span></div>
-
-<div v:shape="_x0000_m32775">
-
-<div class=B><span lang=EN-US style='mso-ansi-language:EN-US'>Click to edit
-Master text styles&#13;</span></div>
-
-<div class=B1><span lang=EN-US style='mso-ansi-language:EN-US'>Second
-level&#13;</span></div>
-
-<div class=B2><span lang=EN-US style='mso-ansi-language:EN-US'>Third level&#13;</span></div>
-
-<div class=B3><span lang=EN-US style='mso-ansi-language:EN-US'>Fourth
-level&#13;</span></div>
-
-<div class=B4><span lang=EN-US style='mso-ansi-language:EN-US'>Fifth level</span></div>
-
-</div>
-
-<div v:shape="_x0000_s33016" class=O style='mso-line-spacing:"100 50 0"'><span
-lang=EN-US style='font-family:Arial;mso-hansi-font-family:Arial;font-size:56%;
-mso-ansi-language:EN-US;mso-field-code:meta16'><b>‹#›</b></span><span
-lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
-EN-US;mso-special-format:lastCR'><b>&#13;</b></span></div>
-
-<div v:shape="_x0000_s33019" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span lang=EN-US style='font-size:56%;mso-ansi-language:EN-US'><span
-style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
-style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
-</span>Poster Session<span style='mso-spacerun:yes'>  </span>|<span
-style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08.xml b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08.xml
deleted file mode 100644
index 05c0417..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08.xml
+++ /dev/null
@@ -1,102 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="32"/>
-  <o:regrouptable v:ext="edit">
-   <o:entry new="1" old="0"/>
-   <o:entry new="2" old="0"/>
-   <o:entry new="3" old="0"/>
-   <o:entry new="4" old="0"/>
-   <o:entry new="5" old="4"/>
-   <o:entry new="6" old="0"/>
-   <o:entry new="7" old="0"/>
-   <o:entry new="8" old="0"/>
-   <o:entry new="9" old="0"/>
-   <o:entry new="10" old="0"/>
-   <o:entry new="11" old="10"/>
-  </o:regrouptable>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s32769" o:bwmode="white" fillcolor="#322c72"/>
- <p:shaperange id="_x0000_m32774">
-  <v:shapetype id="_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-   width:649.25pt;height:39.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m32775">
-  <v:shapetype id="_x0000_m32775" style='position:absolute;left:87.625pt;top:139.875pt;
-   width:578.625pt;height:307.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="white [1]" stroked="f"
-   strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33014">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s33014" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master08_image001.jpg" o:title="dark4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33016">
-  <v:shapetype id="_x0000_s33016" style='position:absolute;left:12.125pt;top:508.875pt;
-   width:79.25pt;height:25.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33017">
-  <v:line id="_x0000_s33017" style='position:absolute;mso-wrap-style:none;
-   v-text-anchor:middle' from="114pt,506.875pt" to="114pt,522pt" o:bwmode="black"
-   o:userdrawn="t" strokecolor="white [1]">
-   <v:shadow color="#ccf [2]"/>
-  </v:line></p:shaperange>
- <p:shaperange id="_x0000_s33018">
-  <v:shape id="_x0000_s33018" type="#_x0000_t75" style='position:absolute;
-   left:576.75pt;top:0;width:143.25pt;height:46.5pt' o:userdrawn="t">
-   <v:imagedata src="master08_image002.jpg" o:title="dark3"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33019">
-  <v:rect id="_x0000_s33019" style='position:absolute;left:114pt;top:509.875pt;
-   width:407pt;height:19.25pt' o:bwmode="black" o:userdrawn="t" filled="f"
-   fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_image001.jpg b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_image001.jpg
deleted file mode 100644
index 86c4fa8..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_image001.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_image002.jpg b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_image002.jpg
deleted file mode 100644
index 2faf841..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_image002.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_image007.jpg b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_image007.jpg
deleted file mode 100644
index de7c2dd..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_image007.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_image008.gif b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_image008.gif
deleted file mode 100644
index f81d890..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_image008.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_stylesheet.css b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_stylesheet.css
deleted file mode 100644
index 98baeeb..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master08_stylesheet.css
+++ /dev/null
@@ -1,470 +0,0 @@
-body
-	{width:534px;
-	height:400px;}
-.TB
-	{mso-special-format:nobullet•;}
-.T
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#CCCCFF;
-	mso-color-index:2;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.BB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.NB
-	{mso-special-format:nobullet•;}
-.N
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N1B
-	{mso-special-format:nobullet•;}
-.N1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N2B
-	{mso-special-format:nobullet•;}
-.N2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N3B
-	{mso-special-format:nobullet•;}
-.N3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N4N
-	{mso-special-format:nobullet•;}
-.N4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.OB
-	{mso-special-format:nobullet•;}
-.O
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CBB
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:95%;
-	mso-line-spacing:"100 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CTB
-	{mso-special-format:nobullet•;}
-.CT
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HBB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QBB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.TblB
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl1B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl2B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl3B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl4B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.defaultB
-	{mso-special-format:nobullet•;}
-.default
-	{text-align:left;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-weight:normal;
-	font-style:normal;
-	text-decoration:none;
-	text-shadow:none;
-	text-effect:none;
-	mso-fareast-hint:no;
-	layout-flow:horizontal;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-text-raise:-25%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:0;
-	mso-text-indent-alt:0;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;
-	direction:ltr;
-	mso-word-wrap:1;
-	mso-vertical-align-special:baseline;
-	mso-ansi-language:EN-US;}
-a:link
-	{color:silver !important;}
-a:active
-	{color:#DFFF66 !important;}
-a:visited
-	{color:#D18213 !important;}
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09.htm
deleted file mode 100644
index 13e98ed..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09.htm
+++ /dev/null
@@ -1,65 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m33800" class=CT><span lang=EN-US style='mso-ansi-language:
-EN-US'>Presentation Title</span></div>
-
-<div v:shape="_x0000_m33801" class=CB><span lang=EN-US style='mso-ansi-language:
-EN-US'>Presentation Subtitle<br>
-</span><span lang=EN-US style='mso-ansi-language:EN-US'>Subtitle Second Line</span></div>
-
-<div v:shape="_x0000_s33951" class=O style='text-align:right;mso-char-wrap:
-0;mso-kinsoku-overflow:0'><span lang=EN-US style='font-size:56%;mso-ansi-language:
-EN-US'>© 2002 IBM Corporation</span></div>
-
-<div v:shape="_x0000_s33912">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O style='mso-line-spacing:"98 20 0";mso-margin-left-alt:216'><span
-lang=EN-US style='mso-hansi-font-family:Arial;font-size:72%;mso-ansi-language:
-EN-US'>Confidential<span style='mso-spacerun:yes'>  </span>|<span
-style='mso-spacerun:yes'>  </span>Date<span style='mso-spacerun:yes'> 
-</span>|<span style='mso-spacerun:yes'>  </span>Other Information, if necessary</span></div>
-
-</div>
-
-<div v:shape="_x0000_s33968" class=O><span lang=EN-US style='font-size:78%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-<div v:shape="_x0000_s33969" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span lang=EN-US style='font-size:72%;mso-ansi-language:EN-US'>© 2004 IBM
-Corporation |<span style='mso-spacerun:yes'>  </span>Tuesday, February 3<span
-style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>Kenn
-Hussey</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09.xml b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09.xml
deleted file mode 100644
index b81a858..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09.xml
+++ /dev/null
@@ -1,115 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="33"/>
-  <o:regrouptable v:ext="edit">
-   <o:entry new="1" old="0"/>
-   <o:entry new="2" old="0"/>
-   <o:entry new="3" old="0"/>
-   <o:entry new="4" old="0"/>
-   <o:entry new="5" old="0"/>
-   <o:entry new="6" old="5"/>
-   <o:entry new="7" old="0"/>
-   <o:entry new="8" old="0"/>
-   <o:entry new="9" old="0"/>
-   <o:entry new="10" old="0"/>
-   <o:entry new="11" old="0"/>
-   <o:entry new="12" old="0"/>
-   <o:entry new="13" old="0"/>
-   <o:entry new="14" old="0"/>
-   <o:entry new="15" old="0"/>
-  </o:regrouptable>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s33793" o:bwmode="white" fillcolor="#322c72"/>
- <p:shaperange id="_x0000_m33800">
-  <v:shapetype id="_x0000_m33800" style='position:absolute;left:30.75pt;top:134.375pt;
-   width:626.375pt;height:115.75pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="centerTitle"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m33801">
-  <v:shapetype id="_x0000_m33801" style='position:absolute;left:153.5pt;top:261.375pt;
-   width:7in;height:109pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="subTitle" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33951">
-  <v:rect id="_x0000_s33951" style='position:absolute;left:576.75pt;top:493.75pt;
-   width:122pt;height:19.25pt' o:bwmode="white" o:userdrawn="t" filled="f"
-   fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect><v:rect id="_x0000_s33912" style='position:absolute;left:159.375pt;
-   top:490.25pt;width:324pt;height:24.125pt;v-text-anchor:middle' o:bwmode="black"
-   o:regroupid="15" o:userdrawn="t" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox inset="1.44pt,1.44pt,1.44pt,1.44pt"/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s33965">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s33965" type="#_x0000_t75" style='position:absolute;
-   left:0;top:0;width:10in;height:111.625pt' o:userdrawn="t">
-   <v:imagedata src="master09_image003.jpg" o:title="dark1"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33966">
-  <v:shape id="_x0000_s33966" type="#_x0000_t75" style='position:absolute;
-   left:0;top:418.5pt;width:10in;height:121.5pt' o:userdrawn="t">
-   <v:imagedata src="master09_image004.jpg" o:title="dark2"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33968">
-  <v:shapetype id="_x0000_s33968" style='position:absolute;left:542pt;top:20pt;
-   width:168pt;height:37.5pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33969">
-  <v:rect id="_x0000_s33969" style='position:absolute;left:3.5pt;top:495pt;
-   width:407pt;height:22.875pt' o:bwmode="black" o:userdrawn="t" filled="f"
-   fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09_image003.jpg b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09_image003.jpg
deleted file mode 100644
index 69207e0..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09_image003.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09_image004.jpg b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09_image004.jpg
deleted file mode 100644
index e8299a5..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09_image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09_image005.jpg b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09_image005.jpg
deleted file mode 100644
index 8539483..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09_image005.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09_image006.jpg b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09_image006.jpg
deleted file mode 100644
index d8632d9..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/master09_image006.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/outline.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/outline.htm
deleted file mode 100644
index c839303..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/outline.htm
+++ /dev/null
@@ -1,595 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<script src=script.js></script><script><!--
-if( !(IsWin("PPTOtl")||IsWin("PPTNav")||IsWin("PPTOtlNav")) )
-{
-	obj = GetObj("Main-File")
-	parent.location.href=obj.href
-}
-var gOtlHiliteClr="#ffffff",gOtlNormalClr="#000000",gOtlActiveClr="#ffff00",gSelected="",gTxtState=false,gChildEntryTable=new Array()
-function Load()
-{
-	if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
-	if( g_supportsPPTHTML ) {
-		if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true; return }
-		if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); parent.gOtlNavLoaded=true; return }
-	}
-}
-function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
-function LoadNav( oId,UpdFunc )
-{
-	document.ondragstart=CancelDrag
-	document.onselectstart=CancelDrag
-	document.body.style.margin=2
-	UpdFunc()
-	obj=document.all.item(oId)
-	obj.style.display="block"
-	obj.style.visibility="visible"
-	document.bgColor="threedface"
-	if( parent.frames["PPTNts"] )
-		notesBtn.style.display = ""
-	if( parent.gHasNarration )
-		nb_voiceBorder.style.display = ""
-}
-function LoadOtl()
-{
-	var otl=GetObj("OtlObj")
-	otl.style.display="block"
-	otl.style.visibility="visible"
-	if( gOtlActiveClr == "" ) gOtlActiveClr=document.linkColor
-	if( gOtlHiliteClr == "" ) gOtlHiliteClr=document.fgColor
-	if( gOtlNormalClr == "" )
-		gOtlNormalClr=document.bgColor
-	else
-		document.bgColor=gOtlNormalClr
-	InitArray()
-	if( ObjExists( parent.gCurSld ) ) {
-		ChangeState( parent.gCurSld,gOtlNormalClr,gOtlHiliteClr )
-		gSelected=parent.gCurSld
-	}
-	else gSelected = -1
-	UpdOtl()
-}
-function UpdOtl(){ UpdIdx(parent.gCurSld) }
-function UpdIdx( idx )
-{
-	if( gSelected != idx ) {
-		if( gSelected > 0 )
-			ChangeState( gSelected,gOtlHiliteClr,gOtlNormalClr )
-		if( ObjExists( idx ) ) {
-			gSelected = idx
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-		}
-		else gSelected = -1
-	}
-	if( gTxtState != parent.gOtlTxtExp ) {
-		state = "block"
-		if( !parent.gOtlTxtExp )
-			state="none"
-		for(ii=0; ii<gChildEntryTable.length; ii++) {
-			obj=gChildEntryTable[ii];
-			if( obj.id == null ) continue;
-			if( obj.id.indexOf("PPTC") >= 0 )
-				obj.style.display=state;
-		}
-		gTxtState=parent.gOtlTxtExp
-		if( ObjExists( gSelected ) )
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-	}
-}
-function InitArray()
-{
-	count=0
-	var list=GetTags(document,"DIV");
-	for(ii=0; ii<list.length; ii++) {
-		obj=list.item(ii)
-		if( obj.id == null ) continue
-		if( obj.id.indexOf("PPTC") >= 0 )
-			gChildEntryTable[count++]=obj
-	}
-}
-function ChangeState( idx,fgColor,bgColor )
-{
-	obj=GetObj("PPTL"+idx)
-	obj.style.color=fgColor
-	obj=GetObj("PPTP"+idx)
-	obj.style.backgroundColor=bgColor
-}
-function ChgClr( o,clr ){ if( o.id != "PPTL"+gSelected ) o.style.color=clr }
-function Over( src ){ ChgClr(GetLink(src),gOtlActiveClr) }
-function Out( src ){ ChgClr(GetLink(src),gOtlHiliteClr) }
-function Follow(src){ window.location.href = GetLink(src).href; }
-function ObjExists( ii ) { obj=GetObj("PPTP"+ii ); return( obj ) }
-function GoToSld( href ){ UpdIdx(parent.GetSldNum(href)); parent.GoToSld( href ) }
-function CancelDrag(){ window.event.cancelBubble=true;window.event.returnValue=false}
-function GetLink(src)
-{
-   if(src.tagName=="A") return src
-   else return GetTags(src,"A").item(0)
-}
-function UpdNav()
-{
-	txt = "<center>";
-	if( parent.GetHrefObj( parent.gCurSld ).mOrigVis == 1 )
-		txt += "Slide " + parent.GetCurSldNum() + " of " + parent.GetNumSlds()
-	else
-		txt += "Hidden Slide"
-	txt += "</center>";
-	nav_text.innerHTML = txt;
-	if( !parent.HasPrevSld() )
-		gBtnArr["nb_prev"].Enabled(0)
-	else
-		gBtnArr["nb_prev"].Enabled(1)
-	if( !parent.HasNextSld() )
-		gBtnArr["nb_next"].Enabled(0)
-	else
-		gBtnArr["nb_next"].Enabled(1)
-	gBtnArr["nb_nts"].SetEnabled()
-	gBtnArr["nb_nts"].SetFlag( parent.gHasNts )
-	gBtnArr["nb_sldshw"].Enabled(1)
-	gBtnArr["nb_voice"].Enabled(1)
-}
-function UpdOtlNav()
-{
-	gBtnArr["nb_otl"].SetEnabled();
-	if( parent.gOtlOpen )
-		gBtnArr["nb_otlTxt"].Enabled( true );
-	else
-		document.all.item("nb_otlTxtBorder").style.visibility = "hidden";
-}
-
-//--></script>
-<style>
-<!--.PTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;
-	padding-left:2px;
-	font-weight:bold;}
-.CTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;}
-a
-	{color:white;
-	text-decoration:none;}
-ul
-	{color:white;
-	margin-bottom:0px;
-	margin-left:20px;}
-.sldNum
-	{margin-top:5px;
-	color:white;}
-.button
-	{position:absolute;
-	width:32px;
-	height:20px;
-	border-style:solid;
-	border-width:1px;
-	border-color:threedface;}
--->
-</style>
-</head>
-
-<body onload="Load()" style='margin:2px'>
-
-<div id=NavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-<table id="notesBtn" style='position:absolute;display:none;width:70px' align=left cellpadding=0
- cellspacing=0>
- <td nowrap>
- <div id="nb_ntsElem" align=center style='position:relative;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt'><img src="notes_flag.gif"
- border=0 id="notes_flag" style='display:none'><span
-style='mso-spacerun:yes'>  </span>Notes</div>
- <div title="Show/Hide Notes" id="nb_nts" style='position:absolute;top:0%;
- left:0%;width:100%;height:100%'></div>
- </td>
-</table>
-
-<table style='position:relative;width:70px' align=right cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_sldshwText" title="Full
-Screen Slide Show" align=center style='position:relative;margin-left:20px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt;cursor:default'>Slide
-Show</div>
- <div id="nb_sldshwBorder" title="Full Screen Slide Show" style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_sldshw" style='position:relative;left:-254px'></div>
- </div>
- </td>
- <td>
- <div id="nb_voiceBorder" style='display:none;position:absolute;top:0;left:-40px;
- width:20px;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_voice" title="Pause/Play Narration" style='position:
- relative;left:-290px'></div>
- </div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_prevBorder" class=button style='left:-30px'>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_prev" title="Previous Slide" style='position:relative;
- left:0px'></div>
- </div>
- <span id="nav_text" style='position:relative;top:3px;width:100px;font-family:
- Arial;color:buttontext;font-size:9pt'></span>
- <div id="nb_nextBorder" class=button>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_next" title="Next Slide" style='position:relative;
- left:-90px'></div>
- </div>
- </td>
-</table>
-</div>
-
-<div id=OtlNavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-
-<table style='position:relative;width:70px' align=left cellpadding=0 cellspacing=0>
- <td nowrap><div title="Show/Hide
-Outline" id="nb_otl"
- style='position:absolute;top:0%;left:0%;width:100%;height:100%;cursor:default'>
- <div id="nb_otlElem" align=center style='position:relative;padding:3px;font-family:Arial;
- color:buttontext;font-size:9pt'>Outline</div></div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td>
- <div style='position:absolute;left:-18px;width:24px;height:20px;border-style:
- solid;border-width:1px;border-color:threedface' id="nb_otlTxtBorder">
- <div style='position:absolute;clip:rect(0px, 22px, 18px, 0px)'><img
- src=buttons.gif id="nb_otlTxt" title="Expand/Collapse Outline"
- style='position:relative;left:-157px'></div>
- </div>
- </td>
-</table>
-
-</div>
-
-<div id=OtlObj style='display:none;visibility:hidden;'>
-
-
-<table width="100%" style='font-family:Arial;font-size:9pt'>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>1</font></div>
-  </td>
-  <td width="100%">
-  <div id=PPTP1 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0028.htm');" id=PPTL1>Eclipse UML2 Project</a></font></div>
-  <div id=PPTC1 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Poster Session</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>2</font></div>
-  </td>
-  <td>
-  <div id=PPTP2 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0029.htm');" id=PPTL2>Contents</a></font></div>
-  <div id=PPTC2 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Overview</li>
-   <br>
-   <br>
-   <li>Goals</li>
-   <br>
-   <br>
-   <li>Challenges</li>
-   <br>
-   <br>
-   <li>Status</li>
-   <br>
-   <br>
-   <li>Milestones</li>
-   <br>
-   <br>
-   <li>Work Items</li>
-   <br>
-   <br>
-   <li>How Can You Help?</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>3</font></div>
-  </td>
-  <td>
-  <div id=PPTP3 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0030.htm');" id=PPTL3>Overview</a></font></div>
-  <div id=PPTC3 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>An Eclipse Modeling Development Tools subcomponent at http://www.eclipse.org/modeling/mdt/?project=uml2#uml2</li>
-   <br>
-   <br>
-   <li>An EMF-based implementation of the UML™ 2.0 metamodel for the Eclipse
-       platform</li>
-   <br>
-   <br>
-   <li>Project lead is Kenn Hussey (khussey@ca.ibm.com)</li>
-   <br>
-   <br>
-   <li>Partners include Borland, Ericsson, and Unisys</li>
-   <br>
-   <br>
-   <li>Users include IBM, Metanology, Omondo, and Ontogenics</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>4</font></div>
-  </td>
-  <td>
-  <div id=PPTP4 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0031.htm');" id=PPTL4>Goals</a></font></div>
-  <div id=PPTC4 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Provide a useable implementation of the metamodel to support the
-       development of modeling tools</li>
-   <br>
-   <br>
-   <li>Provide a common XMI schema to facilitate interchange of semantic models</li>
-   <br>
-   <br>
-   <li>Provide test cases as a means of validating the specification and
-       implementation</li>
-   <br>
-   <br>
-   <li>Provide validation rules as means of defining and enforcing levels of compliance</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>5</font></div>
-  </td>
-  <td>
-  <div id=PPTP5 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0032.htm');" id=PPTL5>Challenges</a></font></div>
-  <div id=PPTC5 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Since the specification isnÂ’t finalized, the API is a moving target</li>
-   <br>
-   <br>
-   <li>The current structure of the standard metamodel (w.r.t. package merge,
-       redefinitions, subsets/supersets) makes the mapping to Java difficult</li>
-   <br>
-   <br>
-   <li>An XMI schema based on the current specification could not be used for
-       interchange without transformations</li>
-   <br>
-   <br>
-   <li>There are a number of errors in the specification which, until fixed,
-       make the API and XMI schema difficult to use</li>
-   <br>
-   <br>
-   <li>Compliance points for UML™ 2.0 are a subject of much debate within the
-       modeling community</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>6</font></div>
-  </td>
-  <td>
-  <div id=PPTP6 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0033.htm');" id=PPTL6>Status – Metamodel</a></font></div>
-  <div id=PPTC6 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>EMF-generated API based on a collapsed version of the metamodel in which
-       package merges and a majority of the redefinitions have been factored
-       out</li>
-   <br>
-   <br>
-   <li>Includes mechanisms to support derived union, redefines, and subsets
-       constraints</li>
-   <br>
-   <br>
-   <li>Generated using a customized Rose2Ecore builder and JET templates</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>7</font></div>
-  </td>
-  <td>
-  <div id=PPTP7 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0034.htm');" id=PPTL7>Status – Interchange</a></font></div>
-  <div id=PPTC7 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Default XMI schema generated using EMF</li>
-   <br>
-   <br>
-   <li>Defines one namespace (http://org.eclipse/uml2.ecore) for all elements,
-       thus supporting interchange</li>
-   <br>
-   <br>
-   <li>Elements identified using Universally Unique Identifiers (UUIDs)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>8</font></div>
-  </td>
-  <td>
-  <div id=PPTP8 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0035.htm');" id=PPTL8>Status – Specification</a></font></div>
-  <div id=PPTC8 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Errors discovered while using the API and/or XMI schema are being fixed
-       and submitted as issues to the UML™ 2.0 Superstructure Finalization Task
-       Force (FTF)</li>
-   <br>
-   <br>
-   <li>UML™ 2.0 Superstructure FTF currently has a large number of unresolved
-       issues, available at
-       http://www.omg.org/issues/uml2-superstructure-ftf.open.html</li>
-   <br>
-   <br>
-   <li>Tentative finalization date for UML™ 2.0 Specification is April 2004</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>9</font></div>
-  </td>
-  <td>
-  <div id=PPTP9 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0036.htm');" id=PPTL9>Status - Compliance</a></font></div>
-  <div id=PPTC9 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Validation rules to be evaluated using EMF Switch-based validator
-       mechanism</li>
-   <br>
-   <br>
-   <li>Validators are being implemented based on sets of OCL constraints</li>
-   <br>
-   <br>
-   <li>May correspond to compliance levels when defined</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>10</font></div>
-  </td>
-  <td>
-  <div id=PPTP10 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0037.htm');" id=PPTL10>Milestones</a></font></div>
-  <div id=PPTC10 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Release 1.0 of UML2 to coincide with Eclipse 3.0</li>
-   <br>
-   <br>
-   <li>Will be based on EMF 2.0</li>
-   <br>
-   <br>
-   <li>Depends on successful finalization of UML™ 2.0 specification</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>11</font></div>
-  </td>
-  <td>
-  <div id=PPTP11 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0038.htm');" id=PPTL11>Work Items</a></font></div>
-  <div id=PPTC11 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Validation rules</li>
-   <br>
-   <br>
-   <li>Resource migration mechanism</li>
-   <br>
-   <br>
-   <li>Import/export from/to Rose (Unisys XMI)</li>
-   <br>
-   <br>
-   <li>Unit tests</li>
-   <br>
-   <br>
-   <li>Javadoc</li>
-   <br>
-   <br>
-   <li>Bug fixes</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>12</font></div>
-  </td>
-  <td>
-  <div id=PPTP12 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0039.htm');" id=PPTL12>How Can You Help?</a></font></div>
-  <div id=PPTC12 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Develop tools based on UML2</li>
-   <br>
-   <br>
-   <li>Report bugs</li>
-   <br>
-   <br>
-   <li>Participate in newsgroup discussions</li>
-   <br>
-   <br>
-   <li>Write articles</li>
-   <br>
-   <br>
-   <li>Become a UML2 contributor</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
-</table>
-
-
-
-</div>
-
-<div style='display:none'><a href=master08.htm></a><a href=master08.xml></a><a
-href=preview.wmf></a><a href="master08_image001.jpg"></a><a
-href="master08_image002.jpg"></a><a href=master09.htm></a><a href=master09.xml></a><a
-href="master09_image003.jpg"></a><a href="master09_image004.jpg"></a><a
-href=master02.htm></a><a href=pres.xml></a><a href=editdata.mso></a><a
-href=slide0028.htm></a><a href="master09_image005.jpg"></a><a
-href="master09_image006.jpg"></a><a href=slide0029.htm></a><a
-href="master08_image007.jpg"></a><a href="master08_image008.gif"></a><a
-href=slide0030.htm></a><a href=slide0031.htm></a><a href=slide0032.htm></a><a
-href=slide0033.htm></a><a href=slide0034.htm></a><a href=slide0035.htm></a><a
-href=slide0036.htm></a><a href=slide0037.htm></a><a href=slide0038.htm></a><a
-href=slide0039.htm></a><a href=master01.htm></a><a
-href="master08_stylesheet.css"></a><a href=script.js></a><a
-href="../EclipseCon2004_PosterSession.htm"></a><a href=fullscreen.htm></a><a
-href=buttons.gif></a><a href=frame.htm></a><a href=outline.htm></a></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/pres.xml b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/pres.xml
deleted file mode 100644
index cc41ac2..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/pres.xml
+++ /dev/null
@@ -1,68 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <p:presentation sizeof="screen" notessizex="4376" notessizey="5816"
-  gridspacingx="23224" gridspacingy="23224">
-  <p:master id="8" slidesn="1C24AB8,8B769EC0" type="main" href="master08.htm"
-   xmlhref="master08.xml" template="1_Default Design" preserved="t"
-   layout="title_body" slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-    <p:colorscheme
-     colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
-   </p:schemes>
-  </p:master>
-  <p:master id="9" slidesn="1C24D0E,1F75CD10" type="title" href="master09.htm"
-   xmlhref="master09.xml" preserved="t" layout="title_subtitle"
-   slots="centerTitle,subTitle,dateTime,footer,slideNumber"/>
-  <p:master id="1" slidesn="1C24D43,1A7CCF90" type="notes" href="master01.htm"
-   layout="notes" slots="header,dateTime,slideImage,body,footer,slideNumber"/>
-  <p:master id="2" slidesn="1C2506F,D2141A80" type="handout" href="master02.htm"
-   layout="handout" slots="header,dateTime,footer,slideNumber"/>
-  <p:slide id="28" slidesn="1C1D9B1,B4E74A20" href="slide0028.htm"
-   masterhref="master09.htm" layout="title_subtitle"
-   slots="centerTitle,subTitle"/>
-  <p:slide id="29" slidesn="1C3C8A5,8AC9DCF0" href="slide0029.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="30" slidesn="1C3E101,AAF621E0" href="slide0030.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="31" slidesn="1C3E101,AC0B6270" href="slide0031.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="32" slidesn="1C3E101,ACF12E90" href="slide0032.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="33" slidesn="1C3E101,D1519EF0" href="slide0033.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="34" slidesn="1C3E101,D22801C0" href="slide0034.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="35" slidesn="1C3E101,D3001240" href="slide0035.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="36" slidesn="1C3E102,C722FE0" href="slide0036.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="37" slidesn="1C3E102,D9A5ECE0" href="slide0037.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="38" slidesn="1C3E102,DE929B40" href="slide0038.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="39" slidesn="1C3E102,E358FCF0" href="slide0039.htm"
-   layout="title_body" slots="title,body"/>
-  <p:viewstate type="slideView" scale="75" nosnaptogrid="t" snaptoshape="t"
-   sorterscale="100" restoredleft="111" restoredtop="947" horizbarstate="2"
-   manualadjustleft="t" manualadjusttop="t" hideoutlineicons="t"/>
-  <p:guide type="horizontal" position="1070"/>
-  <p:guide type="horizontal" position="3247"/>
-  <p:guide type="horizontal" position="2150"/>
-  <p:guide type="horizontal" position="4079"/>
-  <p:guide type="vertical" position="2880"/>
-  <p:guide type="vertical" position="1176"/>
-  <p:guide type="vertical" position="913"/>
-  <p:font name="Arial" charset="0" type="4"/>
-  <p:font name="Wingdings" charset="2" type="4" family="2"/>
-  <p:font name="Times" charset="0" type="10" family="18"/>
-  <p:headersfooters slidenumber="t" formatid="0" noheader="t" nodate="t"/>
-  <p:headersfooters notes="t" slidenumber="t"/>
-  <p:pptdocumentsettings framecolors="WhiteTextOnBlack" hideslideanimation="t"
-   browsersupport="v4"/>
- </p:presentation>
- <o:shapedefaults v:ext="edit" spidmax="683012">
-  <o:colormru v:ext="edit" colors="#322c72,#2f2672,#302775,#322777,#312672,#2c2674,#2d2672,#302573"/>
-  <o:colormenu v:ext="edit" fillcolor="none" strokecolor="none [0]"/>
- </o:shapedefaults></xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/preview.wmf b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/preview.wmf
deleted file mode 100644
index ef5d315..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/script.js b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/script.js
deleted file mode 100644
index aff3271..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/script.js
+++ /dev/null
@@ -1,833 +0,0 @@
-function LoadSld()

-{

-	var sld=GetObj("SlideObj")

-	if( !g_supportsPPTHTML ) {

-		sld.style.visibility="visible"

-		return

-	}

-	if( MakeNotesVis() ) return

-	runAnimations = _InitAnimations();

-	if( IsWin("PPTSld") )

-		parent.SldUpdated(GetSldId())

-	g_origSz=parseInt(SlideObj.style.fontSize)

-	g_origH=sld.style.posHeight

-	g_origW=sld.style.posWidth

-	g_scaleHyperlinks=(document.all.tags("AREA").length>0)

-	if( g_scaleHyperlinks )

-		InitHLinkArray()

-	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )

-		document.body.scroll="no"

-	_RSW()

-	if( IsWin("PPTSld") && parent.IsFullScrMode() )

-		FullScrInit();

-	

-	MakeSldVis();

-	ChkAutoAdv()

-

-	if( runAnimations )

-	{

-		if( document.all("NSPlay") )

-			document.all("NSPlay").autoStart = false;

-		if( sld.filters && sld.filters.revealtrans )

-			setTimeout( "document.body.start()", sld.filters.revealtrans.duration * 1000 );

-		else

-			document.body.start();

-	}

-}

-function MakeSldVis()

-{

-	var fTrans=g_showAnimation && SldHasTrans()

-	if( fTrans )

-	{

-		if( g_bgSound ) {

-			idx=g_bgSound.indexOf(",");

-			pptSound.src=g_bgSound.substr( 0, idx );

-			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));

-		}

-		SlideObj.filters.revealtrans.Apply()

-    }

-	SlideObj.style.visibility="visible"

-	if( fTrans )

-		SlideObj.filters.revealtrans.Play()

-}

-function MakeNotesVis()

-{

-	if( !IsNts() ) return false

-	SlideObj.style.display="none"

-	nObj = document.all.item("NotesObj")

-	parent.SetHasNts(0)

-	if( nObj ) {

-		nObj.style.display=""

-		parent.SetHasNts(1)

-	}

-	return 1

-}

-function ChkAutoAdv()

-{

-	if(SldHasTrans())

-		SlideObj.onfilterchange=AutoAdv

-	else

-		AutoAdv()

-}

-function AutoAdv()

-{

-	if(!IsWin("PPTSld") || !gUseSldTimings )return

-	var sld=GetCurSld()

-	if( (sld.mAdvDelay>0) && !parent.IsFramesMode() )

-		setTimeout("parent.GoToNextSld()",sld.mAdvDelay)

-}

-function GetObj(id)

-{

-	if(g_supportsPPTHTML) return document.all(id);

-	else return document.getElementById(id);

-}

-function SldHasTrans() { return SlideObj.style.getAttribute("filter")!="" }

-function GetSldId() { return sId=location.href.substring(location.href.lastIndexOf('/')+1) }

-function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }

-function IsWin( name ) { return window.name == name }

-function IsNts() { return IsWin("PPTNts") }

-function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }

-function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }

-function SupportsPPTHTML()

-{

-	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0

-	if( msie >= 0 )

-		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )

-	else

-		ver=parseInt(appVer)

-	return( ver >= 4 && msie >= 0 )

-}

-function _RSW()

-{

-	if( !g_supportsPPTHTML || IsNts() ||

-	  ( !g_scaleInFrame && (!IsWin("PPTSld") || !parent.IsFullScrMode()) ) )

-		return

-        var padding=0;

-        if( IsWin("PPTSld") && parent.IsFramesMode() ) padding=6

-	cltWidth=document.body.clientWidth-padding

-	cltHeight=document.body.clientHeight-padding

-	factor=(1.0*cltWidth)/g_origW

-	if( cltHeight < g_origH*factor )

-		factor=(1.0*cltHeight)/g_origH

-	newSize = g_origSz * factor

-	if( newSize < 1 ) newSize=1

-	s=SlideObj.style

-	s.fontSize=newSize+"px"

-	s.posWidth=g_origW*factor

-	s.posHeight=g_origH*factor

-	s.posLeft=(cltWidth-s.posWidth+padding)/2

-	s.posTop=(cltHeight-s.posHeight+padding)/2

-	if( g_scaleHyperlinks )

-		ScaleHyperlinks( factor )

-}

-function _InitAnimations()

-{

-	animRuntimeInstalled = ''+document.body.localTime != 'undefined';

-	isFullScreen = (window.name == "PPTSld") && !parent.IsFramesMode();

-	g_animUseRuntime = g_showAnimation && animRuntimeInstalled && !(isFullScreen && parent.IsSldVisited());

-	if( g_animUseRuntime ) {

-		collSeq = document.all.tags("seq");

-		if( collSeq != null ) {

-			for(ii=0;ii<collSeq.length;ii++) {

-				if( collSeq[ii].getAttribute( "p:nodeType" ) == "mainSeq" ) {

-					g_animMainSequence = collSeq[ii];

-					break;

-				}

-			}

-		}

-		if( g_animItemsToHide ) {

-			for(jj = 0; jj < g_animItemsToHide.length; jj++) {

-				if( hideObj = GetObj(g_animItemsToHide[jj]) )

-					hideObj.runtimeStyle.visibility="hidden";

-			}

-		}

-		if( g_animInteractiveItems ){

-			for(jj = 0; jj < g_animInteractiveItems.length; jj++) {

-				if( triggerObj = GetObj(g_animInteractiveItems[jj]) )

-					triggerObj.runtimeStyle.cursor="hand";

-			}

-		}

-		if( gUseSldTimings && ''+g_animSlideTime != 'undefined' ) {

-			adjustedTime = document.body.calculateAutoAdvanceTimes( g_animSlideTime, g_animEffectTimings );

-			if( IsWin("PPTSld") && adjustedTime != g_animSlideTime ) {

-			   var sld = GetCurSld();

-			   sld.mAdvDelay = adjustedTime * 1000;

-			}

-		}

-	}

-	return g_animUseRuntime;

-}

-gSldJump = 0, gSldJumpTrack = 0, gSldJumpIdx = "";

-function _KPH()

-{

-	if( IsNts() ) return;

-	if( !parent.IsFramesMode() && event.keyCode == 27 && !HideMenu() )

-		parent.window.close( self );

-	else if( event.keyCode == 32 ) {

-		if( window.name == "PPTSld" )

-			parent.PPTSld.DocumentOnClick();

-		else

-			parent.GoToNextSld();

-	}

-	CatchNumKeys( parent, event );

-}

-function CatchNumKeys( win, event ) {

-	if( win.IsFullScrMode() && (48<=event.keyCode) && (event.keyCode<=57) ) {

-		gSldJump = 1;

-		gSldJumpIdx += (event.keyCode-48).toString();

-	}

-	if( win.IsFullScrMode() && gSldJump && event.keyCode == 13 ) {

-		var numSlds = parent.GetSldList().mList.length

-		if ( gSldJumpIdx > numSlds )

-			gSldJumpIdx = numSlds;

-		if ( gSldJumpIdx >= 0 ) {

-			if ( gSldJumpIdx == 0 )

-				gSldJumpIdx = 1;

-			var jumpTo = parseInt(gSldJumpIdx);

-			gSldJump = 0; gSldJumpIdx = "";

-			win.GoToSld( parent.GetSldList().mList[jumpTo-1].mSldHref )

-		}

-	}

-}

-function _KDH()

-{

-	if( event.keyCode == 8 ) {

-		event.returnValue = 0;

-		parent.GoToPrevSld();

-	}

-}

-function DocumentOnClick()

-{

-	if( IsNts() || parent.HideMenu() ) return;

-	if( ( g_allowAdvOnClick && !parent.IsFramesMode() ) ||

-	    (event && (event.keyCode==32) ) )

-		parent.GoToNextSld();

-}

-

-var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = 1, gId="", g_bgSound="",

-    g_scaleHyperlinks = false, g_allowAdvOnClick = 1, g_showInBrowser = 0, gLoopCont = 0, gUseSldTimings = 1;

-var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && ( (window.name=="PPTSld" && !parent.IsFramesMode()) || g_showInBrowser );var g_animManager = null;

-var g_animUseRuntime = false;

-var g_animItemsToHide, g_animInteractiveItems, g_animSlideTime;

-var g_animMainSequence = null;

-var ENDSHOW_MESG="End of slide show, click to exit.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=12, SCRIPT_HREF="script.js", FULLSCR_HREF="fullscreen.htm";

-var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = 0, gHasNarration = 0, gOtlOpen = true

-window.gPPTHTML=SupportsPPTHTML()

-var gMainDoc=new Array(new hrefList("slide0028.htm",1,-1,1),new hrefList("slide0029.htm",1,-1,1),new hrefList("slide0030.htm",1,-1,1),new hrefList("slide0031.htm",1,-1,1),new hrefList("slide0032.htm",1,-1,1),new hrefList("slide0033.htm",1,-1,1),new hrefList("slide0034.htm",1,-1,1),new hrefList("slide0035.htm",1,-1,1),new hrefList("slide0036.htm",1,-1,1),new hrefList("slide0037.htm",1,-1,1),new hrefList("slide0038.htm",1,-1,1),new hrefList("slide0039.htm",1,-1,1));

-function FullScrInit()

-{

-	g_allowAdvOnClick = GetCurSld().mAdvOnClk

-	document.body.style.backgroundColor="black"

-	document.oncontextmenu=parent._CM;

-	document.onkeydown = _KDH;

-	document.ondragstart=Cancel

-	document.onselectstart=Cancel

-	self.focus()

-}

-function Redirect( frmId )

-{

-	var str=document.location.hash,idx=str.indexOf('#'), sId=GetSldId()

-	if(idx>=0) str=str.substr(1);

-	if( window.name != frmId && ( sId != str) ) {

-		obj = GetObj("Main-File")

-		window.location.href=obj.href+"#"+sId

-		return 1

-	}

-	return 0

-}

-var MHTMLPrefix = CalculateMHTMLPrefix();

-function CalculateMHTMLPrefix()

-{

-	if ( document.location.protocol == 'mhtml:') {

-		href=new String(document.location.href)

-		Start=href.indexOf('!')+1

-		End=href.lastIndexOf('/')+1

-		if (End < Start)

-			return href.substring(0, Start)

-		else

-		return href.substring(0, End)

-	}

-	return '';

-}

-function GetTags(base,tag)

-{

-	if(g_supportsPPTHTML) return base.all.tags(tag);

-	else return base.getElementsByTagName(tag);

-}

-function UpdNtsPane(){ if(frames["PPTNts"]) PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }

-function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }

-function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }

-function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }

-function SetHasNts( fVal )

-{

-	if( gHasNts != fVal ) {

-		gHasNts=fVal

-		UpdNavPane()

-	}

-}

-function ToggleOtlText()

-{

-	gOtlTxtExp=!gOtlTxtExp

-	UpdOtlPane()

-}

-function ToggleOtlPane()

-{

-	frmset=document.all("PPTHorizAdjust")

-	frm=document.all("PPTOtl")

-	if( gOtlOpen )

-		frmset.cols="*,100%"

-	else

-		frmset.cols="25%,*"

-	gOtlOpen=!gOtlOpen

-	frm.noResize=!frm.noResize

-	UpdOtNavPane()

-}

-function ToggleNtsPane()

-{

-	frmset=document.all("PPTVertAdjust")

-	frm=document.all("PPTNts")

-	if( gNtsOpen )

-		frmset.rows="100%,*"

-	else

-		frmset.rows="*,20%"

-	gNtsOpen=!gNtsOpen

-	UpdNtsPane()

-}

-function ClearMedia()

-{

-	if (PPTSld.pptSound) PPTSld.pptSound.loop = 0;

-}

-function FullScreen()

-{

-	if ( PPTSld.g_animUseRuntime )

-		PPTSld.document.body.pause();

-	ClearMedia();

-	var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;

-	if(PPTNav.event.ctrlKey) {

-		var w = (window.screen.availWidth * 1.0) / 2.0

-		var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW

-		win = window.open( MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w + ",height=" + h );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-	else

-	{

-		win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-}

-function ToggleVNarration()

-{

-	rObj=PPTSld.document.all("NSPlay")

-	if( rObj && !PPTSld.g_animUseRuntime ) {

-		if( (rObj.playState == 1)||(rObj.playState == 0) )

-			rObj.Play()

-		else if( rObj.playState == 2 )

-			rObj.Pause()

-		else

-			return;

-	}

-	else if( PPTSld.g_animUseRuntime )

-	{

-		narObj = PPTSld.document.all("narrationID")

-		if( narObj )

-			narObj.togglePause()

-	}

-}

-function GetCurSldNum()

-{

-	obj=GetHrefObj(gCurSld)

-	if( obj.mOrigVis == 1 )

-		return obj.mSldIdx

-	else

-		return gCurSld

-}

-function GetNumSlds()

-{

-	if( GetHrefObj(gCurSld).mOrigVis == 1 )

-		return GetSldList().mNumVisSlds;

-	else

-		return GetSldList().mList.length

-}

-function GetSldNum( href )

-{

-	for(ii=0; ii<GetSldList().mList.length; ii++) {

-		if ( GetSldList().mList[ii].mSldHref == href )

-			return ii+1

-	}

-	return 1

-}

-function GetHrefObj( sldIdx ){ return GetSldList().mList[sldIdx-1] }

-function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }

-function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }

-function GoToNextSld()

-{

-	ii=gCurSld + 1

-	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {

-		if( ii<=GetSldList().mList.length ) {

-			obj=GetHrefObj(ii)

-			obj.mVis=1

-			GoToSldNum(ii)

-			return

-		}

-	}

-	else {

-		obj=GetHrefObj( ii )

-		while ( obj && ( obj.mOrigVis == 0 ) )

-			obj=GetHrefObj(++ii)

-		if( obj && obj.mOrigVis ) {

-			GoToSldNum(ii)

-			return

-		}

-	}

-	if( gSldStack.length > 1 )

-		PopSldList();

-	else if( !IsFramesMode() ) {

-                if( gLoopCont )

-			GoToFirst()

-                else

-			EndShow()

-	}

-}

-function GoToPrevSld()

-{

-	ii=gCurSld-1

-	if( ii > 0 ) {

-		obj=GetHrefObj(ii)

-		while ( obj && ( obj.mVis == 0 ) && ( ii>0 ) )

-			obj=GetHrefObj(--ii)

-        if( ii == 0 ) ii=1

-		GoToSldNum(ii)

-	}

-}

-function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }

-function GoToLast()

-{

-	ii=GetSldList().mList.length

-	if( ii != gCurSld )

-		GoToSld( GetHrefObj(ii).mSldHref )

-}

-function GoToSldNum( num )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	obj = GetHrefObj( num )

-	obj.mVis=1

-	gPrevSld=gCurSld

-	gCurSld = num;

-	PPTSld.location.replace(MHTMLPrefix+obj.mSldHref)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function GoToSld( href )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	GetHrefObj( GetSldNum(href) ).mVis=1

-	PPTSld.location.replace(MHTMLPrefix+href)

-}

-function SldUpdated( id )

-{

-	if( id == GetHrefObj(gCurSld).mSldHref ) return

-	gPrevSld=gCurSld

-	gCurSld=GetSldNum(id)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }

-function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }

-function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }

-function CloseWindow() {

-	if( HideMenu() ) return;

-	var event = PPTSld.event;

-	if( !IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) )

-		window.close( self );

-	CatchNumKeys( self, event );

-}

-function Unload() { gIsEndShow=0; }

-function SetupEndShow() {

-	gIsEndShow=1;

-	PPTSld.document.body.scroll="no";

-	PPTSld.document.onkeypress=CloseWindow;

-	PPTSld.document.onclick=CloseWindow;

-	PPTSld.document.oncontextmenu=_CM;

-}

-function EndShow()

-{

-	if( IsFramesMode() ) return

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	doc=PPTSld.document

-	doc.open()

-	doc.writeln('<html><body bgcolor=black onload=parent.SetupEndShow() onunload=parent.Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')

-	doc.close()

-}

-function SetSldVisited(){ GetSldList().mList[gCurSld-1].mVisited=true }

-function IsSldVisited(){ return GetSldList().mList[gCurSld-1].mVisited }

-function hrefList( sldHref, visible, advDelay, advClk )

-{

-	this.mSldHref= this.mNtsHref = sldHref

-	this.mOrigVis= this.mVis = visible

-	this.mVisited= false

-	this.mAdvDelay= advDelay

-	this.mAdvOnClk= advClk

-}

-function SldList(arr,curSld,fEnd)

-{

-	this.mCurSld = curSld;

-	this.mList = new Array();

-	var idx = 1;

-	for(ii=0;ii<arr.length;ii++) {

-		this.mList[ii] = new hrefList( arr[ii].mSldHref, arr[ii].mOrigVis, arr[ii].mAdvDelay, arr[ii].mAdvOnClk );

-		if( arr[ii].mOrigVis )

-			this.mList[ii].mSldIdx = idx++;

-	}

-	this.mNumVisSlds = idx-1;

-	this.fEndShow = fEnd;

-}

-function GetSldList() {	return gSldStack[gSldStack.length-1] }

-function GetCurSld() { return parent.GetSldList().mList[parent.gCurSld - 1] }

-gSldStack = new Array();

-gSldStack[0] = new SldList(gMainDoc,gCurSld,1)

-function ViewCustomShow(idx,fEnd)

-{

-	if( !IsFullScrMode() ) return;

-	var sldList = new Array();

-	var custShow = custShowList[idx-1];

-	var jj = 0;

-	for( ii=0;ii<custShow.length;ii++ ) {

-		if( custShow[ii] <= gMainDoc.length )

-			sldList[jj++] = gMainDoc[custShow[ii]-1];

-	}

-	if (sldList.length > 0) {

-	PushSldList(sldList,fEnd);

-	gCurSld = 1;

-	}

-	else

-		if( PPTSld.event ) PPTSld.event.cancelBubble=true

-}

-function PushSldList(arr,fEnd) {

-	var ii = gSldStack.length;

-	gSldStack[ii] = new SldList(arr,gCurSld,fEnd);

-	GoToSld( gSldStack[ii].mList[0].mSldHref );

-}

-function PopSldList() {

-	if (gSldStack[gSldStack.length-1].fEndShow)

-		EndShow()

-	else {

-	gCurSld = gSldStack[gSldStack.length-1].mCurSld;

-	gSldStack[gSldStack.length-1] = null;

-	gSldStack.length--;

-	var sldList = gSldStack[gSldStack.length-1];

-	GoToSld( sldList.mList[gCurSld - 1].mSldHref );

-	}

-}

-var custShowList=new Array();

-function ImgBtn( oId,bId,w,action )

-{

-	var t=this

-	t.Perform    = _IBP

-	t.SetActive  = _IBSetA

-	t.SetInactive= _IBSetI

-	t.SetPressed = _IBSetP

-	t.SetDisabled= _IBSetD

-	t.Enabled    = _IBSetE

-	t.ChangeIcon = null

-	t.UserAction = action

-	t.ChgState   = _IBUI

-	t.mObjId   = oId

-	t.mBorderId= bId

-	t.mWidth   = w

-	t.mIsOn    = t.mCurState = 0

-}

-function _IBSetA()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetI()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetP()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gShadowClr,gHiliteClr,2 )

-		obj.style.posLeft+=1; obj.style.posTop+=1

-	}

-}

-function _IBSetD()

-{

-	obj=this.ChgState( gFaceClr,gFaceClr,0 )

-	obj.style.posTop=0

-}

-function _IBSetE( state )

-{

-	var t=this

-	GetObj( t.mBorderId ).style.visibility="visible"

-	if( state != t.mIsOn ) {

-		t.mIsOn=state

-		if( state )

-			t.SetInactive()

-		else

-			t.SetDisabled()

-	}

-}

-function _IBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-		if( t.ChangeIcon ) {

-			obj=GetObj(t.mObjId)

-			if( t.ChangeIcon() )

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth

-			else

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth

-		}

-		t.SetActive()

-	}

-}

-function _IBUI( clr1,clr2,nextState )

-{

-	var t=this

-	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )

-	obj=GetObj( t.mObjId )

-	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop

-	t.mCurState=nextState

-	return obj

-}

-function TxtBtn( oId,oeId,action,chkState )

-{

-	var t=this

-	t.Perform    = _TBP

-	t.SetActive  = _TBSetA

-	t.SetInactive= _TBSetI

-	t.SetPressed = _TBSetP

-	t.SetDisabled= _TBSetD

-	t.SetEnabled = _TBSetE

-	t.GetState   = chkState

-	t.UserAction = action

-	t.ChgState   = _TBUI

-	t.mObjId      = oId

-	t.m_elementsId= oeId

-	t.mIsOn       = 1

-}

-function _TBSetA()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gHiliteClr,gShadowClr,0,0 )

-}

-function _TBSetI()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-}

-function _TBSetP()

-{

-	if( this.mIsOn )

-		this.ChgState( gShadowClr,gHiliteClr,1,1 )

-}

-function _TBSetD()

-{

-	this.ChgState( gFaceClr,gFaceClr,0,0 )

-	this.mIsOn = 0

-}

-function _TBSetE()

-{

-	var t=this

-	if( !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-	else

-		t.ChgState( gShadowClr,gHiliteClr,1,1 )

-	t.mIsOn = 1

-}

-function _TBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-        if( !t.GetState )

-            return

-		if( t.GetState() )

-			t.SetPressed()

-		else

-			t.SetActive()

-	}

-}

-function _TBUI( clr1,clr2,lOffset,tOffset )

-{

-	SetBorder( GetObj( this.mObjId ),clr1,clr2 )

-	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )

-}

-function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }

-function SetBorder( obj, upperLeft, lowerRight )

-{

-	s=obj.style;

-	s.borderStyle      = "solid"

-	s.borderWidth      = 1

-	s.borderLeftColor  = s.borderTopColor = upperLeft

-	s.borderBottomColor= s.borderRightColor = lowerRight

-}

-function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }

-function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }

-function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }

-function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }

-function BtnOnUp()

-{

-	b=GetBtnObj()

-	if( b != null )

-		b.Perform()

-	else

-		Upd()

-}

-function GetNtsState(){ return parent.gNtsOpen }

-function GetOtlState(){ return parent.gOtlOpen }

-function GetOtlTxtState(){ return parent.gOtlTxtExp }

-function NtsBtnSetFlag( fVal )

-{

-	s=document.all.item( this.m_flagId ).style

-	s.display="none"

-	if( fVal )

-		s.display=""

-	else

-		s.display="none"

-}

-function _BSetA_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetActive() }

-function _BSetI_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetInactive() }

-var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"

-var gBtnArr = new Array()

-gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_otlElem"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_nts"] = new TxtBtn( "nb_nts","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )

-gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )

-gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )

-gBtnArr["nb_sldshwBorder"] = new TxtBtn( "nb_sldshw","nb_sldshwBorder",parent.FullScreen,null )

-gBtnArr["nb_sldshwBorder"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwBorder"].SetInactive = _BSetI_Border;

-gBtnArr["nb_sldshwText"] = new TxtBtn( "nb_sldshw","nb_sldshwText",parent.FullScreen,null )

-gBtnArr["nb_sldshwText"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwText"].SetInactive = _BSetI_Border;

-gBtnArr["nb_voice"]  = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )

-gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )

-gBtnArr["nb_nts"].m_flagId= "notes_flag"

-gBtnArr["nb_nts"].SetFlag = NtsBtnSetFlag

-gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState

-var sNext="Next",sPrev="Previous",sEnd="End Show",sFont="Arial",sArrow="Arrow",sFreeform="Freeform",sRect="Rectangle",sOval="Oval"

-function ShowMenu()

-{

-	BuildMenu();

-	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

-	m = PPTSld.document.all.item("ctxtmenu")

-	m.style.pixelLeft=x

-	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )

-		m.style.pixelLeft=x-m.scrollWidth

-	m.style.pixelTop=y

-	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )

-		m.style.pixelTop=y-m.scrollHeight

-	m.style.display=""

-}

-function _CM()

-{

-	if( !parent.IsFullScrMode() ) return;

-	if(!PPTSld.event.ctrlKey) {

-		ShowMenu()

-		return false

-	} else

-		HideMenu()

-}

-function BuildMenu()

-{

-	if( PPTSld.document.all.item("ctxtmenu") ) return

-	var mObj=CreateItem( PPTSld.document.body )

-	mObj.id="ctxtmenu"

-	mObj.style.visibility="hidden"

-	var s=mObj.style

-	s.position="absolute"

-	s.cursor="default"

-	s.width="120px"

-	SetCMBorder(mObj,"menu","black")

-	var iObj=CreateItem( mObj )

-	SetCMBorder( iObj, "threedhighlight","threedshadow" )

-	iObj.style.padding=2

-	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )

-	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )

-	CreateSeparator( iObj )

-	CreateMenuItem( iObj,sEnd,M_End,M_True )

-	mObj.style.visibility="visible"

-}

-function Cancel() { window.event.cancelBubble=true; window.event.returnValue=false }

-function Highlight() { ChangeClr("activecaption","threedhighlight") }

-function Deselect() { ChangeClr("threedface","menutext") }

-function Perform()

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() )

-		e.Action()

-	else

-		PPTSld.event.cancelBubble=true

-}

-function ChangeClr( bg,clr )

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() ) {

-		e.style.backgroundColor=bg

-		e.style.color=clr

-	}

-}

-function M_HasPrevSld() { return( parent.HasPrevSld() ) }

-function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }

-function M_GoPrevSld() { if( gIsEndShow ) { history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }

-function M_True() { return true }

-function M_End() { window.close( self ) }

-function CreateMenuItem( node,text,action,eval )

-{

-	var e=CreateItem( node )

-	e.type="menuitem"

-	e.Action=action

-	e.IsActive=eval

-	e.innerHTML=text

-	if( !e.IsActive() )

-		e.style.color="threedshadow"

-	e.onclick=Perform

-	e.onmouseover=Highlight

-	e.onmouseout=Deselect

-	s=e.style;

-	s.fontFamily=sFont

-	s.fontSize="9pt"

-	s.paddingLeft=2

-}

-function CreateSeparator( node )

-{

-	var sObj=CreateItem( node )

-	SetCMBorder(sObj,"menu","menu")

-	var s=sObj.style

-	s.borderTopColor="threedshadow"

-	s.borderBottomColor="threedhighlight"

-	s.height=1

-	s.fontSize="0px"

-}

-function CreateItem( node )

-{

-	var elem=PPTSld.document.createElement("DIV")

-	node.insertBefore( elem )

-	return elem

-}

-function SetCMBorder( o,ltClr,rbClr )

-{

-	var s=o.style

-	s.backgroundColor="menu"

-	s.borderStyle="solid"

-	s.borderWidth=1

-	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr

-}

diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0028.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0028.htm
deleted file mode 100644
index da23bb4..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0028.htm
+++ /dev/null
@@ -1,112 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Eclipse UML2 Project">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:white;}
-.CT
-	{color:white;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="646"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master09.xml">
- <p:shaperange href="master09.xml#_x0000_s33793"/><![if !ppt]><p:shaperange
-  href="master09.xml#_x0000_s33951"/>
- <div v:shape="_x0000_s33951" class=O style='text-align:right;mso-char-wrap:
- 0;mso-kinsoku-overflow:0;position:absolute;top:92.25%;left:78.08%;width:18.16%;
- height:2.25%'><span lang=EN-US style='font-size:56%;mso-ansi-language:EN-US'>©
- 2002 IBM Corporation</span></div>
- <div v:shape="_x0000_s33912">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-line-spacing:"98 20 0";mso-margin-left-alt:216;
- position:absolute;top:91.75%;left:22.28%;width:51.87%;height:3.0%'><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:72%;mso-ansi-language:
- EN-US'>Confidential<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Date<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Other Information, if
- necessary</span></div>
- </div>
- <p:shaperange href="master09.xml#_x0000_s33965"/><![if !vml]><img border=0
- v:shapes="_x0000_s33965" src="master09_image005.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:20.75%'><![endif]><p:shaperange
-  href="master09.xml#_x0000_s33966"/><![if !vml]><img border=0
- v:shapes="_x0000_s33966" src="master09_image006.jpg" style='position:absolute;
- top:77.5%;left:0%;width:100.0%;height:22.5%'><![endif]><p:shaperange
-  href="master09.xml#_x0000_s33968"/><p:shaperange
-  href="master09.xml#_x0000_s33969"/>
- <div v:shape="_x0000_s33969" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:92.5%;left:1.49%;width:61.98%;height:3.0%'><span
- lang=EN-US style='font-size:72%;mso-ansi-language:EN-US'>© 2004 IBM
- Corporation |<span style='mso-spacerun:yes'>  </span>Tuesday, February 3<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Kenn Hussey</span></div>
- <![endif]><p:shaperange href="master09.xml#_x0000_m33801"/><v:shape id="_x0000_s661510"
-  type="#_x0000_m33801" style='position:absolute;left:153.125pt;top:261.5pt;
-  width:504.625pt;height:107.75pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="subTitle" position="1"/></v:shape><p:shaperange
-  href="master09.xml#_x0000_m33800"/><v:shape id="_x0000_s661511" type="#_x0000_m33800"
-  style='position:absolute;left:30.75pt;top:134.375pt;width:626.375pt;height:115.75pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="centerTitle"/></v:shape>
- <div v:shape="_x0000_s661510" class=CB style='position:absolute;top:49.25%;
- left:22.28%;width:68.16%;height:4.5%'>Poster Session</div>
- <div v:shape="_x0000_s661511" class=CT style='position:absolute;top:25.5%;
- left:5.24%;width:85.2%;height:6.0%'>Eclipse UML2 Project</div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0029.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0029.htm
deleted file mode 100644
index 06033c8..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0029.htm
+++ /dev/null
@@ -1,138 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="657"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O style='mso-line-spacing:"100 50 0";
- position:absolute;top:95.0%;left:2.62%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>2</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:95.25%;left:16.85%;width:54.68%;height:2.25%'><span
- lang=EN-US style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Poster Session<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s672770"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s672771" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s672770" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s672771" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Overview&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Goals&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Challenges&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Status&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Milestones&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Work Items&#13;</span></div>
- <div style='position:absolute;top:70.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:74.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>How Can You Help?</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0030.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0030.htm
deleted file mode 100644
index 6a94e5c..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0030.htm
+++ /dev/null
@@ -1,134 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Overview">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="658"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>3</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:54.68%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Poster Session<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s673794"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s673795" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s673794" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Overview</div>
- <div v:shape="_x0000_s673795" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:80.52%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.25%;width:96.97%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.35%'>§</span>An Eclipse Modeling Development Tools subcomponent at http://www.eclipse.org/modeling/mdt/?project=uml2#uml2&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:34.75%;left:15.73%;width:86.89%;height:
- 4.0%'><span class=BB style='position:absolute;left:-3.01%'>§</span>An
- EMF-based implementation of the UML™ 2.0 metamodel for the </span><span
- style='position:absolute;top:38.75%;left:15.73%;width:76.02%;height:4.0%'>Eclipse
- platform&#13;</span>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Project lead is Kenn
- Hussey (khussey@ca.ibm.com)&#13;</span></div>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Partners include
- Borland, Ericsson, and Unisys&#13;</span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:13.1%;width:79.96%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.27%;width:96.95%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.38%'>§</span>Users include IBM,
- Metanology, Omondo, and Ontogenics</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0031.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0031.htm
deleted file mode 100644
index 8597749..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0031.htm
+++ /dev/null
@@ -1,127 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Goals">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="659"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>4</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:54.68%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Poster Session<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s674818"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s674819" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s674818" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Goals</div>
- <div v:shape="_x0000_s674819" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:88.57%;height:4.0%'><span class=BB
- style='position:absolute;left:-2.95%'>§</span>Provide a useable implementation
- of the <i>metamodel</i> to support the </span><span style='position:absolute;
- top:30.75%;left:15.73%;width:76.02%;height:4.0%'>development of modeling
- tools&#13;</span>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:38.75%;left:15.73%;width:90.44%;height:
- 4.0%'><span class=BB style='position:absolute;left:-2.89%'>§</span>Provide a
- common XMI schema to facilitate <i>interchange</i> of semantic </span><span
- style='position:absolute;top:42.75%;left:15.73%;width:76.02%;height:4.0%'>models&#13;</span>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:50.75%;left:15.73%;width:85.95%;height:
- 4.0%'><span class=BB style='position:absolute;left:-3.05%'>§</span>Provide
- test cases as a means of validating the <i>specification</i> and </span><span
- style='position:absolute;top:54.75%;left:15.73%;width:76.02%;height:4.0%'>implementation&#13;</span>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:62.75%;left:15.73%;width:90.44%;height:
- 4.0%'><span class=BB style='position:absolute;left:-2.89%'>§</span>Provide
- validation rules as means of defining and enforcing levels of </span><span
- style='position:absolute;top:66.75%;left:15.73%;width:76.02%;height:4.0%'><i>compliance</i></span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0032.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0032.htm
deleted file mode 100644
index 8282cc5..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0032.htm
+++ /dev/null
@@ -1,152 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Challenges">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="660"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>5</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:54.68%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Poster Session<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s675842"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s675843" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s675842" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Challenges</div>
- <div v:shape="_x0000_s675843" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:13.1%;
- width:86.51%;height:4.0%'><span style='position:absolute;top:0%;left:3.03%;
- width:97.18%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.11%;font-family:Wingdings'>§</span>Since the specification
- isnÂ’t finalized, the API is a moving target&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:33.75%;left:15.73%;width:85.01%;height:4.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.08%;font-family:Wingdings'>§</span>The
- current structure of the standard metamodel (w.r.t. package </span><span
- style='position:absolute;top:37.25%;left:15.73%;width:90.82%;height:4.0%'>merge,
- redefinitions, subsets/supersets) makes the mapping to Java </span><span
- style='position:absolute;top:41.0%;left:15.73%;width:76.02%;height:4.0%'>difficult&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:48.25%;left:15.73%;width:84.26%;height:4.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.11%;font-family:Wingdings'>§</span>An XMI
- schema based on the current specification could not be </span><span
- style='position:absolute;top:51.75%;left:15.73%;width:76.02%;height:4.0%'>used
- for interchange without transformations&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:59.0%;left:15.73%;width:87.82%;height:4.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.98%;font-family:Wingdings'>§</span>There are
- a number of errors in the specification which, until fixed, </span><span
- style='position:absolute;top:62.5%;left:15.73%;width:76.02%;height:4.0%'>make
- the API and XMI schema difficult to use&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:69.75%;left:15.73%;width:89.32%;height:4.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.93%;font-family:Wingdings'>§</span>Compliance
- points for UML™ 2.0 are a subject of much debate within </span><span
- style='position:absolute;top:73.5%;left:15.73%;width:76.02%;height:4.0%'>the
- modeling community</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0033.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0033.htm
deleted file mode 100644
index a447670..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0033.htm
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Status – Metamodel">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="661"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>6</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:54.68%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Poster Session<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s676866"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s676867" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s676866" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Status – Metamodel</div>
- <div v:shape="_x0000_s676867" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:90.44%;height:4.0%'><span class=BB
- style='position:absolute;left:-2.89%'>§</span>EMF-generated API based on a
- collapsed version of the metamodel </span><span style='position:absolute;
- top:30.75%;left:15.73%;width:86.32%;height:4.0%'>in which package merges and a
- majority of the redefinitions have </span><span style='position:absolute;
- top:34.75%;left:15.73%;width:76.02%;height:4.0%'>been factored out&#13;</span>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:42.75%;left:15.73%;width:82.77%;height:
- 4.0%'><span class=BB style='position:absolute;left:-3.16%'>§</span>Includes
- mechanisms to support derived union, redefines, and </span><span
- style='position:absolute;top:46.75%;left:15.73%;width:76.02%;height:4.0%'>subsets
- constraints&#13;</span>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:54.75%;left:15.73%;width:79.96%;height:
- 4.0%'><span class=BB style='position:absolute;left:-3.27%'>§</span>Generated
- using a customized Rose2Ecore builder and JET </span><span style='position:
- absolute;top:58.75%;left:15.73%;width:76.02%;height:4.0%'>templates</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0034.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0034.htm
deleted file mode 100644
index 1ce4969..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0034.htm
+++ /dev/null
@@ -1,124 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Status – Interchange">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="662"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>7</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:54.68%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Poster Session<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s677890"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s677891" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s677890" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Status – Interchange</div>
- <div v:shape="_x0000_s677891" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Default XMI schema
- generated using EMF&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:34.75%;left:15.73%;width:81.27%;height:
- 4.0%'><span class=BB style='position:absolute;left:-3.22%'>§</span>Defines one
- namespace (<p:onmouseclick hyperlinktype="url"
-  href="http://org.eclipse/uml2.ecore"/><a href="http://org.eclipse/uml2.ecore"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>http://org.eclipse/uml2.ecore</a>) for all </span><span
- style='position:absolute;top:38.75%;left:15.73%;width:76.02%;height:4.0%'>elements,
- thus supporting interchange&#13;</span>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:87.45%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.99%;width:97.0%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.09%'>§</span>Elements identified
- using Universally Unique Identifiers (UUIDs)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0035.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0035.htm
deleted file mode 100644
index 074205a..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0035.htm
+++ /dev/null
@@ -1,125 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Status – Specification">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="663"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>8</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:54.68%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Poster Session<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s678914"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s678915" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s678914" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Status – Specification</div>
- <div v:shape="_x0000_s678915" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:90.26%;height:4.0%'><span class=BB
- style='position:absolute;left:-2.9%'>§</span>Errors discovered while using the
- API and/or XMI schema are being </span><span style='position:absolute;
- top:30.75%;left:15.73%;width:80.52%;height:4.0%'>fixed and submitted as issues
- to the UML™ 2.0 Superstructure </span><span style='position:absolute;
- top:34.75%;left:15.73%;width:76.02%;height:4.0%'>Finalization Task Force
- (FTF)&#13;</span>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:42.75%;left:15.73%;width:80.71%;height:
- 4.0%'><span class=BB style='position:absolute;left:-3.24%'>§</span>UML™ 2.0
- Superstructure FTF currently has a large number of </span><span
- style='position:absolute;top:46.75%;left:15.73%;width:85.39%;height:4.0%'>unresolved
- issues, available at http://www.omg.org/issues/uml2-</span><span
- style='position:absolute;top:50.75%;left:15.73%;width:76.02%;height:4.0%'>superstructure-ftf.open.html&#13;</span>
- <div style='position:absolute;top:54.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:88.38%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.96%;width:97.24%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.05%'>§</span>Tentative finalization
- date for UML™ 2.0 Specification is April 2004</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0036.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0036.htm
deleted file mode 100644
index ecf5fd6..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0036.htm
+++ /dev/null
@@ -1,120 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Status - Compliance">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="664"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>9</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:54.68%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Poster Session<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s679938"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s679939" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s679938" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Status - Compliance</div>
- <div v:shape="_x0000_s679939" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:88.2%;height:4.0%'><span class=BB
- style='position:absolute;left:-2.97%'>§</span>Validation rules to be evaluated
- using EMF Switch-based validator </span><span style='position:absolute;
- top:30.75%;left:15.73%;width:76.02%;height:4.0%'>mechanism&#13;</span>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:92.5%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.83%;width:97.36%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.91%'>§</span>Validators are being
- implemented based on sets of OCL constraints&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>May correspond to
- compliance levels when defined</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0037.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0037.htm
deleted file mode 100644
index 534b9a7..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0037.htm
+++ /dev/null
@@ -1,120 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Milestones">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="665"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>10</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:54.68%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Poster Session<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s680962"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s680963" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s680962" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Milestones</div>
- <div v:shape="_x0000_s680963" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Release 1.0 of UML2 to
- coincide with Eclipse 3.0&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Will be based on EMF
- 2.0&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:81.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.21%;width:97.01%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.31%'>§</span>Depends on successful
- finalization of UML™ 2.0 specification</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0038.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0038.htm
deleted file mode 100644
index 2bff6cb..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0038.htm
+++ /dev/null
@@ -1,137 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Work Items">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="666"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>11</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:54.68%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Poster Session<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s681986"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s681987" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s681986" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Work Items</div>
- <div v:shape="_x0000_s681987" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Validation rules&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Resource migration
- mechanism&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Import/export from/to
- Rose (Unisys XMI)&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Unit tests&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Javadoc&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Bug fixes</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0039.htm b/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0039.htm
deleted file mode 100644
index 7dba6a0..0000000
--- a/uml2/docs/presentations/EclipseCon2004_PosterSession_files/slide0039.htm
+++ /dev/null
@@ -1,132 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_PosterSession.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: How Can You Help?">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="667"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>12</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:54.68%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Poster Session<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s683010"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s683011" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s683010" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>How Can You Help?</div>
- <div v:shape="_x0000_s683011" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Develop tools based on
- UML2&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Report bugs&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Participate in
- newsgroup discussions&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Write articles&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Become a UML2
- contributor</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange.html b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange.html
deleted file mode 100644
index 20c240e..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange.html
+++ /dev/null
@@ -1,85 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link rel=File-List href="EclipseCon2004_TechnologyExchange_files/filelist.xml">
-<link rel=Preview href="EclipseCon2004_TechnologyExchange_files/preview.wmf">
-<link rel=Edit-Time-Data
-href="EclipseCon2004_TechnologyExchange_files/editdata.mso">
-<title>Eclipse UML2 Project</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Subject>EclipseCon Technology Exchange</o:Subject>
-  <o:Author>Kenn Hussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>344</o:Revision>
-  <o:TotalTime>4906</o:TotalTime>
-  <o:Created>2002-08-23T15:26:08Z</o:Created>
-  <o:LastSaved>2004-02-10T19:57:52Z</o:LastSaved>
-  <o:Words>1047</o:Words>
-  <o:PresentationFormat>On-screen Show</o:PresentationFormat>
-  <o:Manager>Daniel Leroux</o:Manager>
-  <o:Company>Rational Software, IBM Software Group</o:Company>
-  <o:Bytes>253640</o:Bytes>
-  <o:Paragraphs>418</o:Paragraphs>
-  <o:Slides>30</o:Slides>
-  <o:Notes>1</o:Notes>
-  <o:Version>10.4219</o:Version>
- </o:DocumentProperties>
- <o:OfficeDocumentSettings>
-  <o:ShowReviewingToolbar/>
-  <o:PixelsPerInch>80</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
-</xml><![endif]-->
-<link rel=Presentation-XML
-href="EclipseCon2004_TechnologyExchange_files/pres.xml">
-<meta name=Description content="2/10/2004: Eclipse UML2 Project">
-<meta http-equiv=expires content=0>
-<![if !ppt]><script>
-<!--
-	var ver = 0, appVer = navigator.appVersion, msie = appVer.indexOf( "MSIE " )
-	var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0)
-	if( msie >= 0 )
-		ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) )
-	else
-		ver = parseInt( appVer )
-	browserSupported=0
-	if( !isMac && ver >= 4 && msie >= 0 ) {
-		browserSupported=1
-		window.location.replace( 'EclipseCon2004_TechnologyExchange_files/frame.htm'+document.location.hash )
-	}
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<script><!--
-
-if( browserSupported )
-	document.writeln('<div style="visibility:hidden">');
-
-//--></script><font face=Arial size=2><b>
-
-<p>This presentation contains content that your browser may not be able to show
-properly. This presentation was optimized for more recent versions of Microsoft
-Internet Explorer.</p>
-
-<p>If you would like to proceed anyway, click <a
-href="EclipseCon2004_TechnologyExchange_files/frame.htm">here</a>.</p>
-
-</b></font><script><!--
-
-if( browserSupported )
-	document.writeln('</div>');
-
-//--></script>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/buttons.gif b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/buttons.gif
deleted file mode 100644
index 1f2c73c..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/buttons.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/editdata.mso b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/editdata.mso
deleted file mode 100644
index 4ace505..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/editdata.mso
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/filelist.xml b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/filelist.xml
deleted file mode 100644
index 06f0d87..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/filelist.xml
+++ /dev/null
@@ -1,57 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:File HRef="master08.htm"/>
- <o:File HRef="master08.xml"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="master08_image001.jpg"/>
- <o:File HRef="master08_image002.jpg"/>
- <o:File HRef="master09.htm"/>
- <o:File HRef="master09.xml"/>
- <o:File HRef="master09_image003.jpg"/>
- <o:File HRef="master09_image004.jpg"/>
- <o:File HRef="master02.htm"/>
- <o:File HRef="pres.xml"/>
- <o:File HRef="editdata.mso"/>
- <o:File HRef="slide0028.htm"/>
- <o:File HRef="master09_image005.jpg"/>
- <o:File HRef="master09_image006.jpg"/>
- <o:File HRef="slide0035.htm"/>
- <o:File HRef="master08_image007.jpg"/>
- <o:File HRef="master08_image008.gif"/>
- <o:File HRef="slide0029.htm"/>
- <o:File HRef="slide0036.htm"/>
- <o:File HRef="slide0030.htm"/>
- <o:File HRef="slide0037.htm"/>
- <o:File HRef="slide0038.htm"/>
- <o:File HRef="slide0039.htm"/>
- <o:File HRef="slide0044.htm"/>
- <o:File HRef="slide0031.htm"/>
- <o:File HRef="slide0040.htm"/>
- <o:File HRef="slide0042.htm"/>
- <o:File HRef="slide0041.htm"/>
- <o:File HRef="slide0043.htm"/>
- <o:File HRef="slide0045.htm"/>
- <o:File HRef="slide0032.htm"/>
- <o:File HRef="slide0050.htm"/>
- <o:File HRef="slide0051.htm"/>
- <o:File HRef="slide0052.htm"/>
- <o:File HRef="slide0046.htm"/>
- <o:File HRef="slide0033.htm"/>
- <o:File HRef="slide0053.htm"/>
- <o:File HRef="slide0054.htm"/>
- <o:File HRef="slide0047.htm"/>
- <o:File HRef="slide0034.htm"/>
- <o:File HRef="slide0055.htm"/>
- <o:File HRef="slide0056.htm"/>
- <o:File HRef="slide0057.htm"/>
- <o:File HRef="slide0058.htm"/>
- <o:File HRef="slide0048.htm"/>
- <o:File HRef="master01.htm"/>
- <o:File HRef="master08_stylesheet.css"/>
- <o:File HRef="script.js"/>
- <o:MainFile HRef="../EclipseCon2004_TechnologyExchange.htm"/>
- <o:File HRef="fullscreen.htm"/>
- <o:File HRef="buttons.gif"/>
- <o:File HRef="frame.htm"/>
- <o:File HRef="outline.htm"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/frame.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/frame.htm
deleted file mode 100644
index a0eba31..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/frame.htm
+++ /dev/null
@@ -1,37 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<title>Eclipse UML2 Project</title>
-<![if !ppt]><script src=script.js></script><script>
-<!--
-var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
-function Load()
-{
-	str=document.location.hash,idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(str) PPTSld.location.replace(str);
-}
-//-->
-</script>
-<![endif]>
-</head>
-
-
-<frameset rows="*,25" border=0>
- <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust framespacing=1 frameborder=1>
-  <frame src=outline.htm title="Outline" name=PPTOtl>
-  <frame src=slide0028.htm title="Slide" name=PPTSld>
- </frameset>
- <frameset cols="25%,*" framespacing=1>
-  <frame src=outline.htm title="Outline
-Navigation Bar" name=PPTOtlNav scrolling=no noresize>
-  <frame src=outline.htm title="Slide
-Navigation Bar" name=PPTNav scrolling=no noresize>
- </frameset>
-</frameset>
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/fullscreen.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/fullscreen.htm
deleted file mode 100644
index ac8d798..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/fullscreen.htm
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<script src=script.js></script><script><!--
-var SCREEN_MODE   = "FullScreen";
-function Load() {
-	str=document.location.hash,idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(!str) str = "slide0028.htm";
-	PPTSld.location.replace(MHTMLPrefix+str);
-}
-function Unload() {
-	if ( document.body.PPTSldFrameset != null )
-		document.body.PPTSldFrameset.frames[1].document.body.resume();
-}
-//-->
-</script>
-</head>
-
-<frameset rows="*" frameborder=0 onload="Load()" onunload="Unload()">
- <frame name=PPTSld>
-</frameset>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master01.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master01.htm
deleted file mode 100644
index be9908b..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master01.htm
+++ /dev/null
@@ -1,197 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="103"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s105473" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s105474" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105474" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta14'>‹header›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105475" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1"/></v:shapetype>
-
-<div v:shape="_x0000_s105475" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-field-code:meta0'>‹date/time›</span><span style='font-size:67%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_m105476" style='position:absolute;left:91.75pt;top:54.5pt;
- width:363.5pt;height:272.625pt;v-text-anchor:middle' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter"/>
- <v:shadow obscured="t"/>
- <v:path gradientshapeok="t" fillok="f" o:connecttype="rect"/>
- <o:lock v:ext="edit" rotation="t" text="t"/>
- <p:placeholder type="slideImage" position="2"/></v:shapetype><v:shapetype
- id="_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
- width:437.5pt;height:327.125pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="body" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_m105477">
-
-<div class=N>Click to edit Master text styles&#13;</div>
-
-<div class=N1>Second level&#13;</div>
-
-<div class=N2>Third level&#13;</div>
-
-<div class=N3>Fourth level&#13;</div>
-
-<div class=N4>Fifth level</div>
-
-</div>
-
-<v:shapetype id="_x0000_s105478" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="4" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105478" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta15'>‹footer›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105479" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="5" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105479" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span style='font-size:67%;mso-field-code:
-meta16'>‹#›</span><span style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<p:notes id="28" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="647"/>
- </o:shapelayout><v:shape id="_x0000_s662530" type="#_x0000_m105476" style='position:absolute;
-  left:92pt;top:54.625pt;width:363.125pt;height:272.375pt' filled="t"
-  fillcolor="white" stroked="t" strokecolor="black" strokeweight="1pt">
-  <v:fill o:detectmouseclick="t" type="solid"/>
-  <v:stroke dashstyle="solid" filltype="solid" linestyle="single" endcap="flat"
-   o:forcedash="t"/>
-  <v:shadow on="f"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s662531"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt;mso-wrap-style:square;v-text-anchor:top'
-  filled="f" stroked="f">
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <v:shadow on="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-fit-shape-to-text:f' inset="2.58931mm,1.2947mm,2.58931mm,1.2947mm"/>
-  <p:placeholder type="body" position="1"/></v:shape></p:notes>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master02.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master02.htm
deleted file mode 100644
index e8b7ac3..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master02.htm
+++ /dev/null
@@ -1,141 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="530"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s542721" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s542722" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542722" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta14'>‹header›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542723" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542723" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-field-code:meta0'>‹date/time›</span><span style='font-size:67%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542724" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="2" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542724" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta15'>‹footer›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542725" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542725" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span style='font-size:67%;mso-field-code:
-meta16'>‹#›</span><span style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08.htm
deleted file mode 100644
index 6b587c8..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08.htm
+++ /dev/null
@@ -1,60 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m32774" class=T><span lang=EN-US style='mso-ansi-language:
-EN-US'>Click to edit Master title style</span></div>
-
-<div v:shape="_x0000_m32775">
-
-<div class=B><span lang=EN-US style='mso-ansi-language:EN-US'>Click to edit
-Master text styles&#13;</span></div>
-
-<div class=B1><span lang=EN-US style='mso-ansi-language:EN-US'>Second
-level&#13;</span></div>
-
-<div class=B2><span lang=EN-US style='mso-ansi-language:EN-US'>Third level&#13;</span></div>
-
-<div class=B3><span lang=EN-US style='mso-ansi-language:EN-US'>Fourth
-level&#13;</span></div>
-
-<div class=B4><span lang=EN-US style='mso-ansi-language:EN-US'>Fifth level</span></div>
-
-</div>
-
-<div v:shape="_x0000_s33016" class=O style='mso-line-spacing:"100 50 0"'><span
-lang=EN-US style='font-family:Arial;mso-hansi-font-family:Arial;font-size:56%;
-mso-ansi-language:EN-US;mso-field-code:meta16'><b>‹#›</b></span><span
-lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
-EN-US;mso-special-format:lastCR'><b>&#13;</b></span></div>
-
-<div v:shape="_x0000_s33019" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span lang=EN-US style='font-size:56%;mso-ansi-language:EN-US'><span
-style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
-style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
-</span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
-style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08.xml b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08.xml
deleted file mode 100644
index 05c0417..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08.xml
+++ /dev/null
@@ -1,102 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="32"/>
-  <o:regrouptable v:ext="edit">
-   <o:entry new="1" old="0"/>
-   <o:entry new="2" old="0"/>
-   <o:entry new="3" old="0"/>
-   <o:entry new="4" old="0"/>
-   <o:entry new="5" old="4"/>
-   <o:entry new="6" old="0"/>
-   <o:entry new="7" old="0"/>
-   <o:entry new="8" old="0"/>
-   <o:entry new="9" old="0"/>
-   <o:entry new="10" old="0"/>
-   <o:entry new="11" old="10"/>
-  </o:regrouptable>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s32769" o:bwmode="white" fillcolor="#322c72"/>
- <p:shaperange id="_x0000_m32774">
-  <v:shapetype id="_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-   width:649.25pt;height:39.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m32775">
-  <v:shapetype id="_x0000_m32775" style='position:absolute;left:87.625pt;top:139.875pt;
-   width:578.625pt;height:307.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="white [1]" stroked="f"
-   strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33014">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s33014" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master08_image001.jpg" o:title="dark4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33016">
-  <v:shapetype id="_x0000_s33016" style='position:absolute;left:12.125pt;top:508.875pt;
-   width:79.25pt;height:25.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33017">
-  <v:line id="_x0000_s33017" style='position:absolute;mso-wrap-style:none;
-   v-text-anchor:middle' from="114pt,506.875pt" to="114pt,522pt" o:bwmode="black"
-   o:userdrawn="t" strokecolor="white [1]">
-   <v:shadow color="#ccf [2]"/>
-  </v:line></p:shaperange>
- <p:shaperange id="_x0000_s33018">
-  <v:shape id="_x0000_s33018" type="#_x0000_t75" style='position:absolute;
-   left:576.75pt;top:0;width:143.25pt;height:46.5pt' o:userdrawn="t">
-   <v:imagedata src="master08_image002.jpg" o:title="dark3"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33019">
-  <v:rect id="_x0000_s33019" style='position:absolute;left:114pt;top:509.875pt;
-   width:407pt;height:19.25pt' o:bwmode="black" o:userdrawn="t" filled="f"
-   fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_image001.jpg b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_image001.jpg
deleted file mode 100644
index 86c4fa8..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_image001.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_image002.jpg b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_image002.jpg
deleted file mode 100644
index 2faf841..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_image002.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_image007.jpg b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_image007.jpg
deleted file mode 100644
index de7c2dd..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_image007.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_image008.gif b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_image008.gif
deleted file mode 100644
index f81d890..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_image008.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_stylesheet.css b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_stylesheet.css
deleted file mode 100644
index 98baeeb..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master08_stylesheet.css
+++ /dev/null
@@ -1,470 +0,0 @@
-body
-	{width:534px;
-	height:400px;}
-.TB
-	{mso-special-format:nobullet•;}
-.T
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#CCCCFF;
-	mso-color-index:2;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.BB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.NB
-	{mso-special-format:nobullet•;}
-.N
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N1B
-	{mso-special-format:nobullet•;}
-.N1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N2B
-	{mso-special-format:nobullet•;}
-.N2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N3B
-	{mso-special-format:nobullet•;}
-.N3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N4N
-	{mso-special-format:nobullet•;}
-.N4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.OB
-	{mso-special-format:nobullet•;}
-.O
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CBB
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:95%;
-	mso-line-spacing:"100 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CTB
-	{mso-special-format:nobullet•;}
-.CT
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HBB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QBB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.TblB
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl1B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl2B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl3B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl4B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.defaultB
-	{mso-special-format:nobullet•;}
-.default
-	{text-align:left;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-weight:normal;
-	font-style:normal;
-	text-decoration:none;
-	text-shadow:none;
-	text-effect:none;
-	mso-fareast-hint:no;
-	layout-flow:horizontal;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-text-raise:-25%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:0;
-	mso-text-indent-alt:0;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;
-	direction:ltr;
-	mso-word-wrap:1;
-	mso-vertical-align-special:baseline;
-	mso-ansi-language:EN-US;}
-a:link
-	{color:silver !important;}
-a:active
-	{color:#DFFF66 !important;}
-a:visited
-	{color:#D18213 !important;}
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09.htm
deleted file mode 100644
index af71b9c..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09.htm
+++ /dev/null
@@ -1,65 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m33800" class=CT><span lang=EN-US style='mso-ansi-language:
-EN-US'>Presentation Title</span></div>
-
-<div v:shape="_x0000_m33801" class=CB><span lang=EN-US style='mso-ansi-language:
-EN-US'>Presentation Subtitle<br>
-</span><span lang=EN-US style='mso-ansi-language:EN-US'>Subtitle Second Line</span></div>
-
-<div v:shape="_x0000_s33951" class=O style='text-align:right;mso-char-wrap:
-0;mso-kinsoku-overflow:0'><span lang=EN-US style='font-size:56%;mso-ansi-language:
-EN-US'>© 2002 IBM Corporation</span></div>
-
-<div v:shape="_x0000_s33912">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O style='mso-line-spacing:"98 20 0";mso-margin-left-alt:216'><span
-lang=EN-US style='mso-hansi-font-family:Arial;font-size:72%;mso-ansi-language:
-EN-US'>Confidential<span style='mso-spacerun:yes'>  </span>|<span
-style='mso-spacerun:yes'>  </span>Date<span style='mso-spacerun:yes'> 
-</span>|<span style='mso-spacerun:yes'>  </span>Other Information, if necessary</span></div>
-
-</div>
-
-<div v:shape="_x0000_s33968" class=O><span lang=EN-US style='font-size:78%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-<div v:shape="_x0000_s33969" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span lang=EN-US style='font-size:72%;mso-ansi-language:EN-US'>© 2004 IBM
-Corporation |<span style='mso-spacerun:yes'>  </span>Tuesday, February 3<span
-style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>Kenn
-Hussey</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09.xml b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09.xml
deleted file mode 100644
index b81a858..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09.xml
+++ /dev/null
@@ -1,115 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="33"/>
-  <o:regrouptable v:ext="edit">
-   <o:entry new="1" old="0"/>
-   <o:entry new="2" old="0"/>
-   <o:entry new="3" old="0"/>
-   <o:entry new="4" old="0"/>
-   <o:entry new="5" old="0"/>
-   <o:entry new="6" old="5"/>
-   <o:entry new="7" old="0"/>
-   <o:entry new="8" old="0"/>
-   <o:entry new="9" old="0"/>
-   <o:entry new="10" old="0"/>
-   <o:entry new="11" old="0"/>
-   <o:entry new="12" old="0"/>
-   <o:entry new="13" old="0"/>
-   <o:entry new="14" old="0"/>
-   <o:entry new="15" old="0"/>
-  </o:regrouptable>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s33793" o:bwmode="white" fillcolor="#322c72"/>
- <p:shaperange id="_x0000_m33800">
-  <v:shapetype id="_x0000_m33800" style='position:absolute;left:30.75pt;top:134.375pt;
-   width:626.375pt;height:115.75pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="centerTitle"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m33801">
-  <v:shapetype id="_x0000_m33801" style='position:absolute;left:153.5pt;top:261.375pt;
-   width:7in;height:109pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="subTitle" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33951">
-  <v:rect id="_x0000_s33951" style='position:absolute;left:576.75pt;top:493.75pt;
-   width:122pt;height:19.25pt' o:bwmode="white" o:userdrawn="t" filled="f"
-   fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect><v:rect id="_x0000_s33912" style='position:absolute;left:159.375pt;
-   top:490.25pt;width:324pt;height:24.125pt;v-text-anchor:middle' o:bwmode="black"
-   o:regroupid="15" o:userdrawn="t" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox inset="1.44pt,1.44pt,1.44pt,1.44pt"/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s33965">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s33965" type="#_x0000_t75" style='position:absolute;
-   left:0;top:0;width:10in;height:111.625pt' o:userdrawn="t">
-   <v:imagedata src="master09_image003.jpg" o:title="dark1"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33966">
-  <v:shape id="_x0000_s33966" type="#_x0000_t75" style='position:absolute;
-   left:0;top:418.5pt;width:10in;height:121.5pt' o:userdrawn="t">
-   <v:imagedata src="master09_image004.jpg" o:title="dark2"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33968">
-  <v:shapetype id="_x0000_s33968" style='position:absolute;left:542pt;top:20pt;
-   width:168pt;height:37.5pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33969">
-  <v:rect id="_x0000_s33969" style='position:absolute;left:3.5pt;top:495pt;
-   width:407pt;height:22.875pt' o:bwmode="black" o:userdrawn="t" filled="f"
-   fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09_image003.jpg b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09_image003.jpg
deleted file mode 100644
index 69207e0..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09_image003.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09_image004.jpg b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09_image004.jpg
deleted file mode 100644
index e8299a5..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09_image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09_image005.jpg b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09_image005.jpg
deleted file mode 100644
index 8539483..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09_image005.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09_image006.jpg b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09_image006.jpg
deleted file mode 100644
index d8632d9..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/master09_image006.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/outline.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/outline.htm
deleted file mode 100644
index 18e156b..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/outline.htm
+++ /dev/null
@@ -1,749 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<script src=script.js></script><script><!--
-if( !(IsWin("PPTOtl")||IsWin("PPTNav")||IsWin("PPTOtlNav")) )
-{
-	obj = GetObj("Main-File")
-	parent.location.href=obj.href
-}
-var gOtlHiliteClr="#ffffff",gOtlNormalClr="#000000",gOtlActiveClr="#ffff00",gSelected="",gTxtState=false,gChildEntryTable=new Array()
-function Load()
-{
-	if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
-	if( g_supportsPPTHTML ) {
-		if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true; return }
-		if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); parent.gOtlNavLoaded=true; return }
-	}
-}
-function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
-function LoadNav( oId,UpdFunc )
-{
-	document.ondragstart=CancelDrag
-	document.onselectstart=CancelDrag
-	document.body.style.margin=2
-	UpdFunc()
-	obj=document.all.item(oId)
-	obj.style.display="block"
-	obj.style.visibility="visible"
-	document.bgColor="threedface"
-	if( parent.frames["PPTNts"] )
-		notesBtn.style.display = ""
-	if( parent.gHasNarration )
-		nb_voiceBorder.style.display = ""
-}
-function LoadOtl()
-{
-	var otl=GetObj("OtlObj")
-	otl.style.display="block"
-	otl.style.visibility="visible"
-	if( gOtlActiveClr == "" ) gOtlActiveClr=document.linkColor
-	if( gOtlHiliteClr == "" ) gOtlHiliteClr=document.fgColor
-	if( gOtlNormalClr == "" )
-		gOtlNormalClr=document.bgColor
-	else
-		document.bgColor=gOtlNormalClr
-	InitArray()
-	if( ObjExists( parent.gCurSld ) ) {
-		ChangeState( parent.gCurSld,gOtlNormalClr,gOtlHiliteClr )
-		gSelected=parent.gCurSld
-	}
-	else gSelected = -1
-	UpdOtl()
-}
-function UpdOtl(){ UpdIdx(parent.gCurSld) }
-function UpdIdx( idx )
-{
-	if( gSelected != idx ) {
-		if( gSelected > 0 )
-			ChangeState( gSelected,gOtlHiliteClr,gOtlNormalClr )
-		if( ObjExists( idx ) ) {
-			gSelected = idx
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-		}
-		else gSelected = -1
-	}
-	if( gTxtState != parent.gOtlTxtExp ) {
-		state = "block"
-		if( !parent.gOtlTxtExp )
-			state="none"
-		for(ii=0; ii<gChildEntryTable.length; ii++) {
-			obj=gChildEntryTable[ii];
-			if( obj.id == null ) continue;
-			if( obj.id.indexOf("PPTC") >= 0 )
-				obj.style.display=state;
-		}
-		gTxtState=parent.gOtlTxtExp
-		if( ObjExists( gSelected ) )
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-	}
-}
-function InitArray()
-{
-	count=0
-	var list=GetTags(document,"DIV");
-	for(ii=0; ii<list.length; ii++) {
-		obj=list.item(ii)
-		if( obj.id == null ) continue
-		if( obj.id.indexOf("PPTC") >= 0 )
-			gChildEntryTable[count++]=obj
-	}
-}
-function ChangeState( idx,fgColor,bgColor )
-{
-	obj=GetObj("PPTL"+idx)
-	obj.style.color=fgColor
-	obj=GetObj("PPTP"+idx)
-	obj.style.backgroundColor=bgColor
-}
-function ChgClr( o,clr ){ if( o.id != "PPTL"+gSelected ) o.style.color=clr }
-function Over( src ){ ChgClr(GetLink(src),gOtlActiveClr) }
-function Out( src ){ ChgClr(GetLink(src),gOtlHiliteClr) }
-function Follow(src){ window.location.href = GetLink(src).href; }
-function ObjExists( ii ) { obj=GetObj("PPTP"+ii ); return( obj ) }
-function GoToSld( href ){ UpdIdx(parent.GetSldNum(href)); parent.GoToSld( href ) }
-function CancelDrag(){ window.event.cancelBubble=true;window.event.returnValue=false}
-function GetLink(src)
-{
-   if(src.tagName=="A") return src
-   else return GetTags(src,"A").item(0)
-}
-function UpdNav()
-{
-	txt = "<center>";
-	if( parent.GetHrefObj( parent.gCurSld ).mOrigVis == 1 )
-		txt += "Slide " + parent.GetCurSldNum() + " of " + parent.GetNumSlds()
-	else
-		txt += "Hidden Slide"
-	txt += "</center>";
-	nav_text.innerHTML = txt;
-	if( !parent.HasPrevSld() )
-		gBtnArr["nb_prev"].Enabled(0)
-	else
-		gBtnArr["nb_prev"].Enabled(1)
-	if( !parent.HasNextSld() )
-		gBtnArr["nb_next"].Enabled(0)
-	else
-		gBtnArr["nb_next"].Enabled(1)
-	gBtnArr["nb_nts"].SetEnabled()
-	gBtnArr["nb_nts"].SetFlag( parent.gHasNts )
-	gBtnArr["nb_sldshw"].Enabled(1)
-	gBtnArr["nb_voice"].Enabled(1)
-}
-function UpdOtlNav()
-{
-	gBtnArr["nb_otl"].SetEnabled();
-	if( parent.gOtlOpen )
-		gBtnArr["nb_otlTxt"].Enabled( true );
-	else
-		document.all.item("nb_otlTxtBorder").style.visibility = "hidden";
-}
-
-//--></script>
-<style>
-<!--.PTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;
-	padding-left:2px;
-	font-weight:bold;}
-.CTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;}
-a
-	{color:white;
-	text-decoration:none;}
-ul
-	{color:white;
-	margin-bottom:0px;
-	margin-left:20px;}
-.sldNum
-	{margin-top:5px;
-	color:white;}
-.button
-	{position:absolute;
-	width:32px;
-	height:20px;
-	border-style:solid;
-	border-width:1px;
-	border-color:threedface;}
--->
-</style>
-</head>
-
-<body onload="Load()" style='margin:2px'>
-
-<div id=NavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-<table id="notesBtn" style='position:absolute;display:none;width:70px' align=left cellpadding=0
- cellspacing=0>
- <td nowrap>
- <div id="nb_ntsElem" align=center style='position:relative;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt'><img src="notes_flag.gif"
- border=0 id="notes_flag" style='display:none'><span
-style='mso-spacerun:yes'>  </span>Notes</div>
- <div title="Show/Hide Notes" id="nb_nts" style='position:absolute;top:0%;
- left:0%;width:100%;height:100%'></div>
- </td>
-</table>
-
-<table style='position:relative;width:70px' align=right cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_sldshwText" title="Full
-Screen Slide Show" align=center style='position:relative;margin-left:20px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt;cursor:default'>Slide
-Show</div>
- <div id="nb_sldshwBorder" title="Full Screen Slide Show" style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_sldshw" style='position:relative;left:-254px'></div>
- </div>
- </td>
- <td>
- <div id="nb_voiceBorder" style='display:none;position:absolute;top:0;left:-40px;
- width:20px;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_voice" title="Pause/Play Narration" style='position:
- relative;left:-290px'></div>
- </div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_prevBorder" class=button style='left:-30px'>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_prev" title="Previous Slide" style='position:relative;
- left:0px'></div>
- </div>
- <span id="nav_text" style='position:relative;top:3px;width:100px;font-family:
- Arial;color:buttontext;font-size:9pt'></span>
- <div id="nb_nextBorder" class=button>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_next" title="Next Slide" style='position:relative;
- left:-90px'></div>
- </div>
- </td>
-</table>
-</div>
-
-<div id=OtlNavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-
-<table style='position:relative;width:70px' align=left cellpadding=0 cellspacing=0>
- <td nowrap><div title="Show/Hide
-Outline" id="nb_otl"
- style='position:absolute;top:0%;left:0%;width:100%;height:100%;cursor:default'>
- <div id="nb_otlElem" align=center style='position:relative;padding:3px;font-family:Arial;
- color:buttontext;font-size:9pt'>Outline</div></div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td>
- <div style='position:absolute;left:-18px;width:24px;height:20px;border-style:
- solid;border-width:1px;border-color:threedface' id="nb_otlTxtBorder">
- <div style='position:absolute;clip:rect(0px, 22px, 18px, 0px)'><img
- src=buttons.gif id="nb_otlTxt" title="Expand/Collapse Outline"
- style='position:relative;left:-157px'></div>
- </div>
- </td>
-</table>
-
-</div>
-
-<div id=OtlObj style='display:none;visibility:hidden;'>
-
-
-<table width="100%" style='font-family:Arial;font-size:9pt'>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>1</font></div>
-  </td>
-  <td width="100%">
-  <div id=PPTP1 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0028.htm');" id=PPTL1>Eclipse UML2 Project</a></font></div>
-  <div id=PPTC1 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Technology Exchange</li>
-   <br>
-   <br>
-   <li>EMF Technology in Practice</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>2</font></div>
-  </td>
-  <td>
-  <div id=PPTP2 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0035.htm');" id=PPTL2>Contents</a></font></div>
-  <div id=PPTC2 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>What is UML2?</li>
-   <br>
-   <br>
-   <li>EMF Customizations</li>
-   <br>
-   <br>
-   <li>Element Identification</li>
-   <br>
-   <br>
-   <li>Element Creation</li>
-   <br>
-   <br>
-   <li>Element Destruction</li>
-   <br>
-   <br>
-   <li>Element Retrieval</li>
-   <br>
-   <br>
-   <li>Element Validation</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>3</font></div>
-  </td>
-  <td>
-  <div id=PPTP3 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0029.htm');" id=PPTL3>What is UML2?</a></font></div>
-  <div id=PPTC3 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>An Eclipse Modeling Development Tools subcomponent at http://www.eclipse.org/modeling/mdt/?project=uml2#uml2</li>
-   <br>
-   <br>
-   <li>An EMF-based implementation of the UML™ 2.0 metamodel for the Eclipse
-       platform</li>
-   <br>
-   <br>
-   <li>Objectives are to provideÂ…</li>
-   <ul>
-    <li>a useable implementation of the metamodel to support the development of
-        modeling tools</li>
-    <li>a common XMI schema to facilitate interchange of semantic models</li>
-    <li>test cases as a means of validating the specification</li>
-    <li>validation rules as a means of defining and enforcing levels of
-        compliance</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>4</font></div>
-  </td>
-  <td>
-  <div id=PPTP4 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0036.htm');" id=PPTL4>EMF Customizations</a></font></div>
-  <div id=PPTC4 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>XMI resource to support identification of elements using Universally
-       Unique Identifiers (UUIDs)</li>
-   <br>
-   <br>
-   <li>JET templates to generate methods that facilitate element creation, destruction,
-       and retrieval</li>
-   <br>
-   <br>
-   <li>Switch classes to perform element validation operations</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>5</font></div>
-  </td>
-  <td>
-  <div id=PPTP5 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0030.htm');" id=PPTL5>Element Identification</a></font></div>
-  <div id=PPTC5 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Needed a way to uniquely identify elements across resources</li>
-   <br>
-   <br>
-   <li>Wanted to minimize the impact on disk and memory footprint</li>
-   <br>
-   <br>
-   <li>Implemented a custom XMI resource (Uml2ResourceImpl) to assign and
-       manage UUIDs generated in base 64 formatÂ…</li>
-   <ul>
-    <li>overrode ResourceImpl#getEObjectByID(String) to retrieve objects from idToEObectMap</li>
-    <li>overrode XMLResourceImpl#getID(EObject) to assign (and reassign)
-        automatically generated UUIDs</li>
-    <li>overrode ResourceImpl#detached(EObject) to preserve IDs when objects
-        (and their children) are detached from resources</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>6</font></div>
-  </td>
-  <td>
-  <div id=PPTP6 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0037.htm');" id=PPTL6>Overriding ResourceImpl#getEObjectByID(String)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>7</font></div>
-  </td>
-  <td>
-  <div id=PPTP7 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0038.htm');" id=PPTL7>Overriding XMLResourceImpl#getID(EObject)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>8</font></div>
-  </td>
-  <td>
-  <div id=PPTP8 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0039.htm');" id=PPTL8>Overriding ResourceImpl#detached(EObject)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>9</font></div>
-  </td>
-  <td>
-  <div id=PPTP9 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0044.htm');" id=PPTL9>Element Identification
-  Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>10</font></div>
-  </td>
-  <td>
-  <div id=PPTP10 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0031.htm');" id=PPTL10>Element Creation</a></font></div>
-  <div id=PPTC10 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Wanted to simplify the process of creating an element and adding/setting
-       it to a containment feature</li>
-   <br>
-   <br>
-   <li>Customized JET templates to generate convenient factory methods</li>
-   <ul>
-    <li>customized Interface.javajet to generate method declaration</li>
-    <li>customized Class.javajet to generate method implementation</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>11</font></div>
-  </td>
-  <td>
-  <div id=PPTP11 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0040.htm');" id=PPTL11>Customizing Interface.javajet
-  (Lists)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>12</font></div>
-  </td>
-  <td>
-  <div id=PPTP12 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0042.htm');" id=PPTL12>Customizing Interface.javajet
-  (non-Lists)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>13</font></div>
-  </td>
-  <td>
-  <div id=PPTP13 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0041.htm');" id=PPTL13>Customizing Class.javajet
-  (Lists)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>14</font></div>
-  </td>
-  <td>
-  <div id=PPTP14 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0043.htm');" id=PPTL14>Customizing Class.javajet
-  (non-Lists)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>15</font></div>
-  </td>
-  <td>
-  <div id=PPTP15 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0045.htm');" id=PPTL15>Element Creation
-  Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>16</font></div>
-  </td>
-  <td>
-  <div id=PPTP16 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0032.htm');" id=PPTL16>Element Destruction</a></font></div>
-  <div id=PPTC16 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Wanted a way to delete an element, including all of its children and all
-       cross references to it</li>
-   <br>
-   <br>
-   <li>Customized JET templates to generate destroy() method for top-level
-       types</li>
-   <ul>
-    <li>customized Interface.javajet to generate method declaration</li>
-    <li>customized Class.javajet to generate method implementation</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>17</font></div>
-  </td>
-  <td>
-  <div id=PPTP17 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0050.htm');" id=PPTL17>Customizing Interface.javajet</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>18</font></div>
-  </td>
-  <td>
-  <div id=PPTP18 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0051.htm');" id=PPTL18>Customizing Class.javajet</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>19</font></div>
-  </td>
-  <td>
-  <div id=PPTP19 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0052.htm');" id=PPTL19>Implementing destroyHelper(...)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>20</font></div>
-  </td>
-  <td>
-  <div id=PPTP20 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0046.htm');" id=PPTL20>Element Destruction
-  Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>21</font></div>
-  </td>
-  <td>
-  <div id=PPTP21 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0033.htm');" id=PPTL21>Element Retrieval</a></font></div>
-  <div id=PPTC21 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Wanted to simplify the process of retrieving named elements from lists</li>
-   <br>
-   <br>
-   <li>Customized JET templates to generate convenient factory methods</li>
-   <ul>
-    <li>customized Interface.javajet to generate method declaration</li>
-    <li>customized Class.javajet to generate method implementation</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>22</font></div>
-  </td>
-  <td>
-  <div id=PPTP22 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0053.htm');" id=PPTL22>Customizing Interface.javajet</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>23</font></div>
-  </td>
-  <td>
-  <div id=PPTP23 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0054.htm');" id=PPTL23>Customizing Class.javajet</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>24</font></div>
-  </td>
-  <td>
-  <div id=PPTP24 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0047.htm');" id=PPTL24>Element Retrieval
-  Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>25</font></div>
-  </td>
-  <td>
-  <div id=PPTP25 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0034.htm');" id=PPTL25>Element Validation</a></font></div>
-  <div id=PPTC25 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Wanted a way to perform validation operations on elements</li>
-   <br>
-   <br>
-   <li>Wanted to be able to evaluate different sets of constraints</li>
-   <br>
-   <br>
-   <li>Implemented custom Switch subclasses to execute validation rules</li>
-   <ul>
-    <li>implemented validate(EObject, IProgressMonitor) to invoke the switch
-        and return an outcome in the form of a status object</li>
-    <li>overrode Uml2Switch#defaultCase(EObject) to recursively invoke the
-        switch on the objectÂ’s contents</li>
-    <li>overrode Uml2Switch#doSwitch(EObject) to inform the progress monitor of
-        progress</li>
-    <li>overrode Uml2Switch#case*(*) for each type of element to which
-        constraints apply</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>26</font></div>
-  </td>
-  <td>
-  <div id=PPTP26 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0055.htm');" id=PPTL26>Implementing validate(...)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>27</font></div>
-  </td>
-  <td>
-  <div id=PPTP27 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0056.htm');" id=PPTL27>Overriding Uml2Switch#defaultCase(EObject)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>28</font></div>
-  </td>
-  <td>
-  <div id=PPTP28 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0057.htm');" id=PPTL28>Overriding Uml2Switch#doSwitch(EObject)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>29</font></div>
-  </td>
-  <td>
-  <div id=PPTP29 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0058.htm');" id=PPTL29>Overriding Uml2Switch#caseElement(Element)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>30</font></div>
-  </td>
-  <td>
-  <div id=PPTP30 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0048.htm');" id=PPTL30>Element Validation -
-  Example</a></font></div>
-  </td>
- </tr>
-</table>
-
-
-
-</div>
-
-<div style='display:none'><a href=master08.htm></a><a href=master08.xml></a><a
-href=preview.wmf></a><a href="master08_image001.jpg"></a><a
-href="master08_image002.jpg"></a><a href=master09.htm></a><a href=master09.xml></a><a
-href="master09_image003.jpg"></a><a href="master09_image004.jpg"></a><a
-href=master02.htm></a><a href=pres.xml></a><a href=editdata.mso></a><a
-href=slide0028.htm></a><a href="master09_image005.jpg"></a><a
-href="master09_image006.jpg"></a><a href=slide0035.htm></a><a
-href="master08_image007.jpg"></a><a href="master08_image008.gif"></a><a
-href=slide0029.htm></a><a href=slide0036.htm></a><a href=slide0030.htm></a><a
-href=slide0037.htm></a><a href=slide0038.htm></a><a href=slide0039.htm></a><a
-href=slide0044.htm></a><a href=slide0031.htm></a><a href=slide0040.htm></a><a
-href=slide0042.htm></a><a href=slide0041.htm></a><a href=slide0043.htm></a><a
-href=slide0045.htm></a><a href=slide0032.htm></a><a href=slide0050.htm></a><a
-href=slide0051.htm></a><a href=slide0052.htm></a><a href=slide0046.htm></a><a
-href=slide0033.htm></a><a href=slide0053.htm></a><a href=slide0054.htm></a><a
-href=slide0047.htm></a><a href=slide0034.htm></a><a href=slide0055.htm></a><a
-href=slide0056.htm></a><a href=slide0057.htm></a><a href=slide0058.htm></a><a
-href=slide0048.htm></a><a href=master01.htm></a><a
-href="master08_stylesheet.css"></a><a href=script.js></a><a
-href="../EclipseCon2004_TechnologyExchange.htm"></a><a href=fullscreen.htm></a><a
-href=buttons.gif></a><a href=frame.htm></a><a href=outline.htm></a></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/pres.xml b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/pres.xml
deleted file mode 100644
index 6f9e43a..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/pres.xml
+++ /dev/null
@@ -1,106 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <p:presentation sizeof="screen" notessizex="4376" notessizey="5816"
-  gridspacingx="23224" gridspacingy="23224">
-  <p:master id="8" slidesn="1C24AB8,8B769EC0" type="main" href="master08.htm"
-   xmlhref="master08.xml" template="1_Default Design" preserved="t"
-   layout="title_body" slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-    <p:colorscheme
-     colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
-   </p:schemes>
-  </p:master>
-  <p:master id="9" slidesn="1C24D0E,1F75CD10" type="title" href="master09.htm"
-   xmlhref="master09.xml" preserved="t" layout="title_subtitle"
-   slots="centerTitle,subTitle,dateTime,footer,slideNumber"/>
-  <p:master id="1" slidesn="1C24D43,1A7CCF90" type="notes" href="master01.htm"
-   layout="notes" slots="header,dateTime,slideImage,body,footer,slideNumber"/>
-  <p:master id="2" slidesn="1C2506F,D2141A80" type="handout" href="master02.htm"
-   layout="handout" slots="header,dateTime,footer,slideNumber"/>
-  <p:slide id="28" slidesn="1C1D9B1,B4E74A20" href="slide0028.htm"
-   masterhref="master09.htm" layout="title_subtitle"
-   slots="centerTitle,subTitle"/>
-  <p:slide id="35" slidesn="1C3E0FD,D3E82520" href="slide0035.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="29" slidesn="1C3C8A5,8AC9DCF0" href="slide0029.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="36" slidesn="1C3E100,6EE532F0" href="slide0036.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="30" slidesn="1C3E0F7,FD14D250" href="slide0030.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="37" slidesn="1C3E116,9CB5B4F0" href="slide0037.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="38" slidesn="1C3E119,9D8E3340" href="slide0038.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="39" slidesn="1C3E11A,58794E10" href="slide0039.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="44" slidesn="1C3E122,13E55480" href="slide0044.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="31" slidesn="1C3E0F8,DF33620" href="slide0031.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="40" slidesn="1C3E11C,A061E550" href="slide0040.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="42" slidesn="1C3E120,4994D6C0" href="slide0042.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="41" slidesn="1C3E11E,1D8FAED0" href="slide0041.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="43" slidesn="1C3E121,3EDFCA90" href="slide0043.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="45" slidesn="1C3E122,27BB7480" href="slide0045.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="32" slidesn="1C3E0F8,136AE670" href="slide0032.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="50" slidesn="1C3E125,57DC22B0" href="slide0050.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="51" slidesn="1C3E126,9B1CAB20" href="slide0051.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="52" slidesn="1C3E12C,E40613C0" href="slide0052.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="46" slidesn="1C3E122,45CCC050" href="slide0046.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="33" slidesn="1C3E0F8,1EBC3D30" href="slide0033.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="53" slidesn="1C3E131,38E6C200" href="slide0053.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="54" slidesn="1C3E132,561AD7C0" href="slide0054.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="47" slidesn="1C3E122,4E856AD0" href="slide0047.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="34" slidesn="1C3E0F8,2AD72580" href="slide0034.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="55" slidesn="1C3E150,EC412B0" href="slide0055.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="56" slidesn="1C3E151,E4B3B910" href="slide0056.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="57" slidesn="1C3E152,C0E13B60" href="slide0057.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="58" slidesn="1C3E153,25F25700" href="slide0058.htm"
-   layout="title_only" slots="title"/>
-  <p:slide id="48" slidesn="1C3E122,59F238D0" href="slide0048.htm"
-   layout="title_only" slots="title"/>
-  <p:viewstate type="slideView" slidehref="slide0058.htm" scale="75"
-   nosnaptogrid="t" snaptoshape="t" sorterscale="100" restoredleft="111"
-   restoredtop="947" horizbarstate="2" manualadjustleft="t" manualadjusttop="t"
-   hideoutlineicons="t"/>
-  <p:guide type="horizontal" position="1070"/>
-  <p:guide type="horizontal" position="3247"/>
-  <p:guide type="horizontal" position="2150"/>
-  <p:guide type="horizontal" position="4079"/>
-  <p:guide type="vertical" position="2880"/>
-  <p:guide type="vertical" position="1176"/>
-  <p:guide type="vertical" position="913"/>
-  <p:font name="Arial" charset="0" type="4"/>
-  <p:font name="Wingdings" charset="2" type="6" family="2"/>
-  <p:font name="Times" charset="0" type="10" family="18"/>
-  <p:font name="Courier New" charset="0" type="6" family="49"/>
-  <p:headersfooters slidenumber="t" formatid="0" noheader="t" nodate="t"/>
-  <p:headersfooters notes="t" slidenumber="t"/>
-  <p:pptdocumentsettings framecolors="WhiteTextOnBlack" hideslideanimation="t"
-   browsersupport="v4"/>
- </p:presentation>
- <o:shapedefaults v:ext="edit" spidmax="728068">
-  <o:colormru v:ext="edit" colors="#322c72,#2f2672,#302775,#322777,#312672,#2c2674,#2d2672,#302573"/>
-  <o:colormenu v:ext="edit" fillcolor="none" strokecolor="none [0]"/>
- </o:shapedefaults></xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/preview.wmf b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/preview.wmf
deleted file mode 100644
index fabed69..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/script.js b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/script.js
deleted file mode 100644
index b7ef246..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/script.js
+++ /dev/null
@@ -1,833 +0,0 @@
-function LoadSld()

-{

-	var sld=GetObj("SlideObj")

-	if( !g_supportsPPTHTML ) {

-		sld.style.visibility="visible"

-		return

-	}

-	if( MakeNotesVis() ) return

-	runAnimations = _InitAnimations();

-	if( IsWin("PPTSld") )

-		parent.SldUpdated(GetSldId())

-	g_origSz=parseInt(SlideObj.style.fontSize)

-	g_origH=sld.style.posHeight

-	g_origW=sld.style.posWidth

-	g_scaleHyperlinks=(document.all.tags("AREA").length>0)

-	if( g_scaleHyperlinks )

-		InitHLinkArray()

-	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )

-		document.body.scroll="no"

-	_RSW()

-	if( IsWin("PPTSld") && parent.IsFullScrMode() )

-		FullScrInit();

-	

-	MakeSldVis();

-	ChkAutoAdv()

-

-	if( runAnimations )

-	{

-		if( document.all("NSPlay") )

-			document.all("NSPlay").autoStart = false;

-		if( sld.filters && sld.filters.revealtrans )

-			setTimeout( "document.body.start()", sld.filters.revealtrans.duration * 1000 );

-		else

-			document.body.start();

-	}

-}

-function MakeSldVis()

-{

-	var fTrans=g_showAnimation && SldHasTrans()

-	if( fTrans )

-	{

-		if( g_bgSound ) {

-			idx=g_bgSound.indexOf(",");

-			pptSound.src=g_bgSound.substr( 0, idx );

-			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));

-		}

-		SlideObj.filters.revealtrans.Apply()

-    }

-	SlideObj.style.visibility="visible"

-	if( fTrans )

-		SlideObj.filters.revealtrans.Play()

-}

-function MakeNotesVis()

-{

-	if( !IsNts() ) return false

-	SlideObj.style.display="none"

-	nObj = document.all.item("NotesObj")

-	parent.SetHasNts(0)

-	if( nObj ) {

-		nObj.style.display=""

-		parent.SetHasNts(1)

-	}

-	return 1

-}

-function ChkAutoAdv()

-{

-	if(SldHasTrans())

-		SlideObj.onfilterchange=AutoAdv

-	else

-		AutoAdv()

-}

-function AutoAdv()

-{

-	if(!IsWin("PPTSld") || !gUseSldTimings )return

-	var sld=GetCurSld()

-	if( (sld.mAdvDelay>0) && !parent.IsFramesMode() )

-		setTimeout("parent.GoToNextSld()",sld.mAdvDelay)

-}

-function GetObj(id)

-{

-	if(g_supportsPPTHTML) return document.all(id);

-	else return document.getElementById(id);

-}

-function SldHasTrans() { return SlideObj.style.getAttribute("filter")!="" }

-function GetSldId() { return sId=location.href.substring(location.href.lastIndexOf('/')+1) }

-function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }

-function IsWin( name ) { return window.name == name }

-function IsNts() { return IsWin("PPTNts") }

-function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }

-function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }

-function SupportsPPTHTML()

-{

-	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0

-	if( msie >= 0 )

-		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )

-	else

-		ver=parseInt(appVer)

-	return( ver >= 4 && msie >= 0 )

-}

-function _RSW()

-{

-	if( !g_supportsPPTHTML || IsNts() ||

-	  ( !g_scaleInFrame && (!IsWin("PPTSld") || !parent.IsFullScrMode()) ) )

-		return

-        var padding=0;

-        if( IsWin("PPTSld") && parent.IsFramesMode() ) padding=6

-	cltWidth=document.body.clientWidth-padding

-	cltHeight=document.body.clientHeight-padding

-	factor=(1.0*cltWidth)/g_origW

-	if( cltHeight < g_origH*factor )

-		factor=(1.0*cltHeight)/g_origH

-	newSize = g_origSz * factor

-	if( newSize < 1 ) newSize=1

-	s=SlideObj.style

-	s.fontSize=newSize+"px"

-	s.posWidth=g_origW*factor

-	s.posHeight=g_origH*factor

-	s.posLeft=(cltWidth-s.posWidth+padding)/2

-	s.posTop=(cltHeight-s.posHeight+padding)/2

-	if( g_scaleHyperlinks )

-		ScaleHyperlinks( factor )

-}

-function _InitAnimations()

-{

-	animRuntimeInstalled = ''+document.body.localTime != 'undefined';

-	isFullScreen = (window.name == "PPTSld") && !parent.IsFramesMode();

-	g_animUseRuntime = g_showAnimation && animRuntimeInstalled && !(isFullScreen && parent.IsSldVisited());

-	if( g_animUseRuntime ) {

-		collSeq = document.all.tags("seq");

-		if( collSeq != null ) {

-			for(ii=0;ii<collSeq.length;ii++) {

-				if( collSeq[ii].getAttribute( "p:nodeType" ) == "mainSeq" ) {

-					g_animMainSequence = collSeq[ii];

-					break;

-				}

-			}

-		}

-		if( g_animItemsToHide ) {

-			for(jj = 0; jj < g_animItemsToHide.length; jj++) {

-				if( hideObj = GetObj(g_animItemsToHide[jj]) )

-					hideObj.runtimeStyle.visibility="hidden";

-			}

-		}

-		if( g_animInteractiveItems ){

-			for(jj = 0; jj < g_animInteractiveItems.length; jj++) {

-				if( triggerObj = GetObj(g_animInteractiveItems[jj]) )

-					triggerObj.runtimeStyle.cursor="hand";

-			}

-		}

-		if( gUseSldTimings && ''+g_animSlideTime != 'undefined' ) {

-			adjustedTime = document.body.calculateAutoAdvanceTimes( g_animSlideTime, g_animEffectTimings );

-			if( IsWin("PPTSld") && adjustedTime != g_animSlideTime ) {

-			   var sld = GetCurSld();

-			   sld.mAdvDelay = adjustedTime * 1000;

-			}

-		}

-	}

-	return g_animUseRuntime;

-}

-gSldJump = 0, gSldJumpTrack = 0, gSldJumpIdx = "";

-function _KPH()

-{

-	if( IsNts() ) return;

-	if( !parent.IsFramesMode() && event.keyCode == 27 && !HideMenu() )

-		parent.window.close( self );

-	else if( event.keyCode == 32 ) {

-		if( window.name == "PPTSld" )

-			parent.PPTSld.DocumentOnClick();

-		else

-			parent.GoToNextSld();

-	}

-	CatchNumKeys( parent, event );

-}

-function CatchNumKeys( win, event ) {

-	if( win.IsFullScrMode() && (48<=event.keyCode) && (event.keyCode<=57) ) {

-		gSldJump = 1;

-		gSldJumpIdx += (event.keyCode-48).toString();

-	}

-	if( win.IsFullScrMode() && gSldJump && event.keyCode == 13 ) {

-		var numSlds = parent.GetSldList().mList.length

-		if ( gSldJumpIdx > numSlds )

-			gSldJumpIdx = numSlds;

-		if ( gSldJumpIdx >= 0 ) {

-			if ( gSldJumpIdx == 0 )

-				gSldJumpIdx = 1;

-			var jumpTo = parseInt(gSldJumpIdx);

-			gSldJump = 0; gSldJumpIdx = "";

-			win.GoToSld( parent.GetSldList().mList[jumpTo-1].mSldHref )

-		}

-	}

-}

-function _KDH()

-{

-	if( event.keyCode == 8 ) {

-		event.returnValue = 0;

-		parent.GoToPrevSld();

-	}

-}

-function DocumentOnClick()

-{

-	if( IsNts() || parent.HideMenu() ) return;

-	if( ( g_allowAdvOnClick && !parent.IsFramesMode() ) ||

-	    (event && (event.keyCode==32) ) )

-		parent.GoToNextSld();

-}

-

-var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = 1, gId="", g_bgSound="",

-    g_scaleHyperlinks = false, g_allowAdvOnClick = 1, g_showInBrowser = 0, gLoopCont = 0, gUseSldTimings = 1;

-var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && ( (window.name=="PPTSld" && !parent.IsFramesMode()) || g_showInBrowser );var g_animManager = null;

-var g_animUseRuntime = false;

-var g_animItemsToHide, g_animInteractiveItems, g_animSlideTime;

-var g_animMainSequence = null;

-var ENDSHOW_MESG="End of slide show, click to exit.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=30, SCRIPT_HREF="script.js", FULLSCR_HREF="fullscreen.htm";

-var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = 0, gHasNarration = 0, gOtlOpen = true

-window.gPPTHTML=SupportsPPTHTML()

-var gMainDoc=new Array(new hrefList("slide0028.htm",1,-1,1),new hrefList("slide0035.htm",1,-1,1),new hrefList("slide0029.htm",1,-1,1),new hrefList("slide0036.htm",1,-1,1),new hrefList("slide0030.htm",1,-1,1),new hrefList("slide0037.htm",1,-1,1),new hrefList("slide0038.htm",1,-1,1),new hrefList("slide0039.htm",1,-1,1),new hrefList("slide0044.htm",1,-1,1),new hrefList("slide0031.htm",1,-1,1),new hrefList("slide0040.htm",1,-1,1),new hrefList("slide0042.htm",1,-1,1),new hrefList("slide0041.htm",1,-1,1),new hrefList("slide0043.htm",1,-1,1),new hrefList("slide0045.htm",1,-1,1),new hrefList("slide0032.htm",1,-1,1),new hrefList("slide0050.htm",1,-1,1),new hrefList("slide0051.htm",1,-1,1),new hrefList("slide0052.htm",1,-1,1),new hrefList("slide0046.htm",1,-1,1),new hrefList("slide0033.htm",1,-1,1),new hrefList("slide0053.htm",1,-1,1),new hrefList("slide0054.htm",1,-1,1),new hrefList("slide0047.htm",1,-1,1),new hrefList("slide0034.htm",1,-1,1),new hrefList("slide0055.htm",1,-1,1),new hrefList("slide0056.htm",1,-1,1),new hrefList("slide0057.htm",1,-1,1),new hrefList("slide0058.htm",1,-1,1),new hrefList("slide0048.htm",1,-1,1));

-function FullScrInit()

-{

-	g_allowAdvOnClick = GetCurSld().mAdvOnClk

-	document.body.style.backgroundColor="black"

-	document.oncontextmenu=parent._CM;

-	document.onkeydown = _KDH;

-	document.ondragstart=Cancel

-	document.onselectstart=Cancel

-	self.focus()

-}

-function Redirect( frmId )

-{

-	var str=document.location.hash,idx=str.indexOf('#'), sId=GetSldId()

-	if(idx>=0) str=str.substr(1);

-	if( window.name != frmId && ( sId != str) ) {

-		obj = GetObj("Main-File")

-		window.location.href=obj.href+"#"+sId

-		return 1

-	}

-	return 0

-}

-var MHTMLPrefix = CalculateMHTMLPrefix();

-function CalculateMHTMLPrefix()

-{

-	if ( document.location.protocol == 'mhtml:') {

-		href=new String(document.location.href)

-		Start=href.indexOf('!')+1

-		End=href.lastIndexOf('/')+1

-		if (End < Start)

-			return href.substring(0, Start)

-		else

-		return href.substring(0, End)

-	}

-	return '';

-}

-function GetTags(base,tag)

-{

-	if(g_supportsPPTHTML) return base.all.tags(tag);

-	else return base.getElementsByTagName(tag);

-}

-function UpdNtsPane(){ if(frames["PPTNts"]) PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }

-function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }

-function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }

-function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }

-function SetHasNts( fVal )

-{

-	if( gHasNts != fVal ) {

-		gHasNts=fVal

-		UpdNavPane()

-	}

-}

-function ToggleOtlText()

-{

-	gOtlTxtExp=!gOtlTxtExp

-	UpdOtlPane()

-}

-function ToggleOtlPane()

-{

-	frmset=document.all("PPTHorizAdjust")

-	frm=document.all("PPTOtl")

-	if( gOtlOpen )

-		frmset.cols="*,100%"

-	else

-		frmset.cols="25%,*"

-	gOtlOpen=!gOtlOpen

-	frm.noResize=!frm.noResize

-	UpdOtNavPane()

-}

-function ToggleNtsPane()

-{

-	frmset=document.all("PPTVertAdjust")

-	frm=document.all("PPTNts")

-	if( gNtsOpen )

-		frmset.rows="100%,*"

-	else

-		frmset.rows="*,20%"

-	gNtsOpen=!gNtsOpen

-	UpdNtsPane()

-}

-function ClearMedia()

-{

-	if (PPTSld.pptSound) PPTSld.pptSound.loop = 0;

-}

-function FullScreen()

-{

-	if ( PPTSld.g_animUseRuntime )

-		PPTSld.document.body.pause();

-	ClearMedia();

-	var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;

-	if(PPTNav.event.ctrlKey) {

-		var w = (window.screen.availWidth * 1.0) / 2.0

-		var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW

-		win = window.open( MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w + ",height=" + h );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-	else

-	{

-		win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-}

-function ToggleVNarration()

-{

-	rObj=PPTSld.document.all("NSPlay")

-	if( rObj && !PPTSld.g_animUseRuntime ) {

-		if( (rObj.playState == 1)||(rObj.playState == 0) )

-			rObj.Play()

-		else if( rObj.playState == 2 )

-			rObj.Pause()

-		else

-			return;

-	}

-	else if( PPTSld.g_animUseRuntime )

-	{

-		narObj = PPTSld.document.all("narrationID")

-		if( narObj )

-			narObj.togglePause()

-	}

-}

-function GetCurSldNum()

-{

-	obj=GetHrefObj(gCurSld)

-	if( obj.mOrigVis == 1 )

-		return obj.mSldIdx

-	else

-		return gCurSld

-}

-function GetNumSlds()

-{

-	if( GetHrefObj(gCurSld).mOrigVis == 1 )

-		return GetSldList().mNumVisSlds;

-	else

-		return GetSldList().mList.length

-}

-function GetSldNum( href )

-{

-	for(ii=0; ii<GetSldList().mList.length; ii++) {

-		if ( GetSldList().mList[ii].mSldHref == href )

-			return ii+1

-	}

-	return 1

-}

-function GetHrefObj( sldIdx ){ return GetSldList().mList[sldIdx-1] }

-function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }

-function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }

-function GoToNextSld()

-{

-	ii=gCurSld + 1

-	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {

-		if( ii<=GetSldList().mList.length ) {

-			obj=GetHrefObj(ii)

-			obj.mVis=1

-			GoToSldNum(ii)

-			return

-		}

-	}

-	else {

-		obj=GetHrefObj( ii )

-		while ( obj && ( obj.mOrigVis == 0 ) )

-			obj=GetHrefObj(++ii)

-		if( obj && obj.mOrigVis ) {

-			GoToSldNum(ii)

-			return

-		}

-	}

-	if( gSldStack.length > 1 )

-		PopSldList();

-	else if( !IsFramesMode() ) {

-                if( gLoopCont )

-			GoToFirst()

-                else

-			EndShow()

-	}

-}

-function GoToPrevSld()

-{

-	ii=gCurSld-1

-	if( ii > 0 ) {

-		obj=GetHrefObj(ii)

-		while ( obj && ( obj.mVis == 0 ) && ( ii>0 ) )

-			obj=GetHrefObj(--ii)

-        if( ii == 0 ) ii=1

-		GoToSldNum(ii)

-	}

-}

-function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }

-function GoToLast()

-{

-	ii=GetSldList().mList.length

-	if( ii != gCurSld )

-		GoToSld( GetHrefObj(ii).mSldHref )

-}

-function GoToSldNum( num )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	obj = GetHrefObj( num )

-	obj.mVis=1

-	gPrevSld=gCurSld

-	gCurSld = num;

-	PPTSld.location.replace(MHTMLPrefix+obj.mSldHref)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function GoToSld( href )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	GetHrefObj( GetSldNum(href) ).mVis=1

-	PPTSld.location.replace(MHTMLPrefix+href)

-}

-function SldUpdated( id )

-{

-	if( id == GetHrefObj(gCurSld).mSldHref ) return

-	gPrevSld=gCurSld

-	gCurSld=GetSldNum(id)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }

-function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }

-function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }

-function CloseWindow() {

-	if( HideMenu() ) return;

-	var event = PPTSld.event;

-	if( !IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) )

-		window.close( self );

-	CatchNumKeys( self, event );

-}

-function Unload() { gIsEndShow=0; }

-function SetupEndShow() {

-	gIsEndShow=1;

-	PPTSld.document.body.scroll="no";

-	PPTSld.document.onkeypress=CloseWindow;

-	PPTSld.document.onclick=CloseWindow;

-	PPTSld.document.oncontextmenu=_CM;

-}

-function EndShow()

-{

-	if( IsFramesMode() ) return

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	doc=PPTSld.document

-	doc.open()

-	doc.writeln('<html><body bgcolor=black onload=parent.SetupEndShow() onunload=parent.Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')

-	doc.close()

-}

-function SetSldVisited(){ GetSldList().mList[gCurSld-1].mVisited=true }

-function IsSldVisited(){ return GetSldList().mList[gCurSld-1].mVisited }

-function hrefList( sldHref, visible, advDelay, advClk )

-{

-	this.mSldHref= this.mNtsHref = sldHref

-	this.mOrigVis= this.mVis = visible

-	this.mVisited= false

-	this.mAdvDelay= advDelay

-	this.mAdvOnClk= advClk

-}

-function SldList(arr,curSld,fEnd)

-{

-	this.mCurSld = curSld;

-	this.mList = new Array();

-	var idx = 1;

-	for(ii=0;ii<arr.length;ii++) {

-		this.mList[ii] = new hrefList( arr[ii].mSldHref, arr[ii].mOrigVis, arr[ii].mAdvDelay, arr[ii].mAdvOnClk );

-		if( arr[ii].mOrigVis )

-			this.mList[ii].mSldIdx = idx++;

-	}

-	this.mNumVisSlds = idx-1;

-	this.fEndShow = fEnd;

-}

-function GetSldList() {	return gSldStack[gSldStack.length-1] }

-function GetCurSld() { return parent.GetSldList().mList[parent.gCurSld - 1] }

-gSldStack = new Array();

-gSldStack[0] = new SldList(gMainDoc,gCurSld,1)

-function ViewCustomShow(idx,fEnd)

-{

-	if( !IsFullScrMode() ) return;

-	var sldList = new Array();

-	var custShow = custShowList[idx-1];

-	var jj = 0;

-	for( ii=0;ii<custShow.length;ii++ ) {

-		if( custShow[ii] <= gMainDoc.length )

-			sldList[jj++] = gMainDoc[custShow[ii]-1];

-	}

-	if (sldList.length > 0) {

-	PushSldList(sldList,fEnd);

-	gCurSld = 1;

-	}

-	else

-		if( PPTSld.event ) PPTSld.event.cancelBubble=true

-}

-function PushSldList(arr,fEnd) {

-	var ii = gSldStack.length;

-	gSldStack[ii] = new SldList(arr,gCurSld,fEnd);

-	GoToSld( gSldStack[ii].mList[0].mSldHref );

-}

-function PopSldList() {

-	if (gSldStack[gSldStack.length-1].fEndShow)

-		EndShow()

-	else {

-	gCurSld = gSldStack[gSldStack.length-1].mCurSld;

-	gSldStack[gSldStack.length-1] = null;

-	gSldStack.length--;

-	var sldList = gSldStack[gSldStack.length-1];

-	GoToSld( sldList.mList[gCurSld - 1].mSldHref );

-	}

-}

-var custShowList=new Array();

-function ImgBtn( oId,bId,w,action )

-{

-	var t=this

-	t.Perform    = _IBP

-	t.SetActive  = _IBSetA

-	t.SetInactive= _IBSetI

-	t.SetPressed = _IBSetP

-	t.SetDisabled= _IBSetD

-	t.Enabled    = _IBSetE

-	t.ChangeIcon = null

-	t.UserAction = action

-	t.ChgState   = _IBUI

-	t.mObjId   = oId

-	t.mBorderId= bId

-	t.mWidth   = w

-	t.mIsOn    = t.mCurState = 0

-}

-function _IBSetA()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetI()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetP()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gShadowClr,gHiliteClr,2 )

-		obj.style.posLeft+=1; obj.style.posTop+=1

-	}

-}

-function _IBSetD()

-{

-	obj=this.ChgState( gFaceClr,gFaceClr,0 )

-	obj.style.posTop=0

-}

-function _IBSetE( state )

-{

-	var t=this

-	GetObj( t.mBorderId ).style.visibility="visible"

-	if( state != t.mIsOn ) {

-		t.mIsOn=state

-		if( state )

-			t.SetInactive()

-		else

-			t.SetDisabled()

-	}

-}

-function _IBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-		if( t.ChangeIcon ) {

-			obj=GetObj(t.mObjId)

-			if( t.ChangeIcon() )

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth

-			else

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth

-		}

-		t.SetActive()

-	}

-}

-function _IBUI( clr1,clr2,nextState )

-{

-	var t=this

-	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )

-	obj=GetObj( t.mObjId )

-	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop

-	t.mCurState=nextState

-	return obj

-}

-function TxtBtn( oId,oeId,action,chkState )

-{

-	var t=this

-	t.Perform    = _TBP

-	t.SetActive  = _TBSetA

-	t.SetInactive= _TBSetI

-	t.SetPressed = _TBSetP

-	t.SetDisabled= _TBSetD

-	t.SetEnabled = _TBSetE

-	t.GetState   = chkState

-	t.UserAction = action

-	t.ChgState   = _TBUI

-	t.mObjId      = oId

-	t.m_elementsId= oeId

-	t.mIsOn       = 1

-}

-function _TBSetA()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gHiliteClr,gShadowClr,0,0 )

-}

-function _TBSetI()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-}

-function _TBSetP()

-{

-	if( this.mIsOn )

-		this.ChgState( gShadowClr,gHiliteClr,1,1 )

-}

-function _TBSetD()

-{

-	this.ChgState( gFaceClr,gFaceClr,0,0 )

-	this.mIsOn = 0

-}

-function _TBSetE()

-{

-	var t=this

-	if( !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-	else

-		t.ChgState( gShadowClr,gHiliteClr,1,1 )

-	t.mIsOn = 1

-}

-function _TBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-        if( !t.GetState )

-            return

-		if( t.GetState() )

-			t.SetPressed()

-		else

-			t.SetActive()

-	}

-}

-function _TBUI( clr1,clr2,lOffset,tOffset )

-{

-	SetBorder( GetObj( this.mObjId ),clr1,clr2 )

-	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )

-}

-function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }

-function SetBorder( obj, upperLeft, lowerRight )

-{

-	s=obj.style;

-	s.borderStyle      = "solid"

-	s.borderWidth      = 1

-	s.borderLeftColor  = s.borderTopColor = upperLeft

-	s.borderBottomColor= s.borderRightColor = lowerRight

-}

-function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }

-function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }

-function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }

-function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }

-function BtnOnUp()

-{

-	b=GetBtnObj()

-	if( b != null )

-		b.Perform()

-	else

-		Upd()

-}

-function GetNtsState(){ return parent.gNtsOpen }

-function GetOtlState(){ return parent.gOtlOpen }

-function GetOtlTxtState(){ return parent.gOtlTxtExp }

-function NtsBtnSetFlag( fVal )

-{

-	s=document.all.item( this.m_flagId ).style

-	s.display="none"

-	if( fVal )

-		s.display=""

-	else

-		s.display="none"

-}

-function _BSetA_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetActive() }

-function _BSetI_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetInactive() }

-var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"

-var gBtnArr = new Array()

-gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_otlElem"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_nts"] = new TxtBtn( "nb_nts","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )

-gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )

-gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )

-gBtnArr["nb_sldshwBorder"] = new TxtBtn( "nb_sldshw","nb_sldshwBorder",parent.FullScreen,null )

-gBtnArr["nb_sldshwBorder"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwBorder"].SetInactive = _BSetI_Border;

-gBtnArr["nb_sldshwText"] = new TxtBtn( "nb_sldshw","nb_sldshwText",parent.FullScreen,null )

-gBtnArr["nb_sldshwText"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwText"].SetInactive = _BSetI_Border;

-gBtnArr["nb_voice"]  = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )

-gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )

-gBtnArr["nb_nts"].m_flagId= "notes_flag"

-gBtnArr["nb_nts"].SetFlag = NtsBtnSetFlag

-gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState

-var sNext="Next",sPrev="Previous",sEnd="End Show",sFont="Arial",sArrow="Arrow",sFreeform="Freeform",sRect="Rectangle",sOval="Oval"

-function ShowMenu()

-{

-	BuildMenu();

-	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

-	m = PPTSld.document.all.item("ctxtmenu")

-	m.style.pixelLeft=x

-	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )

-		m.style.pixelLeft=x-m.scrollWidth

-	m.style.pixelTop=y

-	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )

-		m.style.pixelTop=y-m.scrollHeight

-	m.style.display=""

-}

-function _CM()

-{

-	if( !parent.IsFullScrMode() ) return;

-	if(!PPTSld.event.ctrlKey) {

-		ShowMenu()

-		return false

-	} else

-		HideMenu()

-}

-function BuildMenu()

-{

-	if( PPTSld.document.all.item("ctxtmenu") ) return

-	var mObj=CreateItem( PPTSld.document.body )

-	mObj.id="ctxtmenu"

-	mObj.style.visibility="hidden"

-	var s=mObj.style

-	s.position="absolute"

-	s.cursor="default"

-	s.width="120px"

-	SetCMBorder(mObj,"menu","black")

-	var iObj=CreateItem( mObj )

-	SetCMBorder( iObj, "threedhighlight","threedshadow" )

-	iObj.style.padding=2

-	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )

-	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )

-	CreateSeparator( iObj )

-	CreateMenuItem( iObj,sEnd,M_End,M_True )

-	mObj.style.visibility="visible"

-}

-function Cancel() { window.event.cancelBubble=true; window.event.returnValue=false }

-function Highlight() { ChangeClr("activecaption","threedhighlight") }

-function Deselect() { ChangeClr("threedface","menutext") }

-function Perform()

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() )

-		e.Action()

-	else

-		PPTSld.event.cancelBubble=true

-}

-function ChangeClr( bg,clr )

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() ) {

-		e.style.backgroundColor=bg

-		e.style.color=clr

-	}

-}

-function M_HasPrevSld() { return( parent.HasPrevSld() ) }

-function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }

-function M_GoPrevSld() { if( gIsEndShow ) { history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }

-function M_True() { return true }

-function M_End() { window.close( self ) }

-function CreateMenuItem( node,text,action,eval )

-{

-	var e=CreateItem( node )

-	e.type="menuitem"

-	e.Action=action

-	e.IsActive=eval

-	e.innerHTML=text

-	if( !e.IsActive() )

-		e.style.color="threedshadow"

-	e.onclick=Perform

-	e.onmouseover=Highlight

-	e.onmouseout=Deselect

-	s=e.style;

-	s.fontFamily=sFont

-	s.fontSize="9pt"

-	s.paddingLeft=2

-}

-function CreateSeparator( node )

-{

-	var sObj=CreateItem( node )

-	SetCMBorder(sObj,"menu","menu")

-	var s=sObj.style

-	s.borderTopColor="threedshadow"

-	s.borderBottomColor="threedhighlight"

-	s.height=1

-	s.fontSize="0px"

-}

-function CreateItem( node )

-{

-	var elem=PPTSld.document.createElement("DIV")

-	node.insertBefore( elem )

-	return elem

-}

-function SetCMBorder( o,ltClr,rbClr )

-{

-	var s=o.style

-	s.backgroundColor="menu"

-	s.borderStyle="solid"

-	s.borderWidth=1

-	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr

-}

diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0028.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0028.htm
deleted file mode 100644
index ba64d54..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0028.htm
+++ /dev/null
@@ -1,117 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Eclipse UML2 Project">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:white;}
-.CT
-	{color:white;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="646"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master09.xml">
- <p:shaperange href="master09.xml#_x0000_s33793"/><![if !ppt]><p:shaperange
-  href="master09.xml#_x0000_s33951"/>
- <div v:shape="_x0000_s33951" class=O style='text-align:right;mso-char-wrap:
- 0;mso-kinsoku-overflow:0;position:absolute;top:92.25%;left:78.08%;width:18.16%;
- height:2.25%'><span lang=EN-US style='font-size:56%;mso-ansi-language:EN-US'>©
- 2002 IBM Corporation</span></div>
- <div v:shape="_x0000_s33912">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-line-spacing:"98 20 0";mso-margin-left-alt:216;
- position:absolute;top:91.75%;left:22.28%;width:51.87%;height:3.0%'><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:72%;mso-ansi-language:
- EN-US'>Confidential<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Date<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Other Information, if
- necessary</span></div>
- </div>
- <p:shaperange href="master09.xml#_x0000_s33965"/><![if !vml]><img border=0
- v:shapes="_x0000_s33965" src="master09_image005.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:20.75%'><![endif]><p:shaperange
-  href="master09.xml#_x0000_s33966"/><![if !vml]><img border=0
- v:shapes="_x0000_s33966" src="master09_image006.jpg" style='position:absolute;
- top:77.5%;left:0%;width:100.0%;height:22.5%'><![endif]><p:shaperange
-  href="master09.xml#_x0000_s33968"/><p:shaperange
-  href="master09.xml#_x0000_s33969"/>
- <div v:shape="_x0000_s33969" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:92.5%;left:1.49%;width:61.98%;height:3.0%'><span
- lang=EN-US style='font-size:72%;mso-ansi-language:EN-US'>© 2004 IBM
- Corporation |<span style='mso-spacerun:yes'>  </span>Tuesday, February 3<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Kenn Hussey</span></div>
- <![endif]><p:shaperange href="master09.xml#_x0000_m33801"/><v:shape id="_x0000_s661510"
-  type="#_x0000_m33801" style='position:absolute;left:153.125pt;top:261.5pt;
-  width:504.625pt;height:107.75pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="subTitle" position="1"/></v:shape><p:shaperange
-  href="master09.xml#_x0000_m33800"/><v:shape id="_x0000_s661511" type="#_x0000_m33800"
-  style='position:absolute;left:30.75pt;top:134.375pt;width:626.375pt;height:115.75pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="centerTitle"/></v:shape>
- <div v:shape="_x0000_s661510" class=CB>
- <div style='position:absolute;top:49.25%;left:22.28%;width:68.16%;height:4.5%'>Technology
- Exchange&#13;</div>
- <div style='position:absolute;top:53.75%;left:22.28%;width:68.16%;height:4.5%'>&#13;</div>
- <div style='position:absolute;top:58.25%;left:22.28%;width:68.16%;height:4.0%'><span
- style='font-size:90%'>EMF Technology in Practice</span></div>
- </div>
- <div v:shape="_x0000_s661511" class=CT style='position:absolute;top:25.5%;
- left:5.24%;width:85.2%;height:6.0%'>Eclipse UML2 Project</div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0029.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0029.htm
deleted file mode 100644
index 2554e00..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0029.htm
+++ /dev/null
@@ -1,140 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: What is UML2?">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="657"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>3</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s672770"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s672771" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s672770" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>What is UML2?</div>
- <div v:shape="_x0000_s672771">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:80.52%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.25%;width:96.97%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.35%'>§</span>An
- Eclipse Modeling Development Tools subcomponent at http://www.eclipse.org/modeling/mdt/?project=uml2#uml2&#13;</span></div>
- <div class=B style='position:absolute;top:30.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B><span style='position:absolute;top:34.75%;left:15.73%;width:86.89%;
- height:4.0%'><span class=BB style='position:absolute;left:-3.01%'>§</span>An
- EMF-based implementation of the UML™ 2.0 metamodel for the </span><span
- style='position:absolute;top:38.75%;left:15.73%;width:76.02%;height:4.0%'>Eclipse
- platform&#13;</span></div>
- <div class=B style='position:absolute;top:42.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:46.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Objectives
- are to provideÂ…&#13;</span></div>
- <div class=B1><span style='position:absolute;top:51.75%;left:21.34%;
- width:70.22%;height:3.5%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>a
- useable implementation of the metamodel to support the </span><span
- style='position:absolute;top:55.25%;left:21.34%;width:70.22%;height:3.5%'>development
- of modeling tools&#13;</span></div>
- <div class=B1 style='position:absolute;top:60.25%;left:18.35%;width:83.33%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.59%;width:96.17%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.73%'>§</span>a
- common XMI schema to facilitate interchange of semantic models&#13;</span></div>
- <div class=B1 style='position:absolute;top:65.25%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>test
- cases as a means of validating the specification&#13;</span></div>
- <div class=B1><span style='position:absolute;top:70.25%;left:21.34%;
- width:73.03%;height:3.5%'><span class=B1B style='position:absolute;left:-4.1%'>§</span>validation
- rules as a means of defining and enforcing levels of </span><span
- style='position:absolute;top:73.75%;left:21.34%;width:70.22%;height:3.5%'>compliance</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0030.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0030.htm
deleted file mode 100644
index b60689f..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0030.htm
+++ /dev/null
@@ -1,142 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Element Identification">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="658"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>5</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s673794"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s673795" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s673794" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Element Identification</div>
- <div v:shape="_x0000_s673795">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:84.26%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.11%;width:96.88%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.21%'>§</span>Needed
- a way to uniquely identify elements across resources&#13;</span></div>
- <div class=B style='position:absolute;top:30.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:34.75%;left:13.1%;width:83.14%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.15%;width:97.07%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.24%'>§</span>Wanted
- to minimize the impact on disk and memory footprint&#13;</span></div>
- <div class=B style='position:absolute;top:38.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B><span style='position:absolute;top:42.5%;left:15.73%;width:84.08%;
- height:4.25%'><span class=BB style='position:absolute;left:-3.11%'>§</span>Implemented
- a custom XMI resource (<span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New"'>Uml2ResourceImpl</span>) to </span><span style='position:absolute;
- top:46.75%;left:15.73%;width:77.34%;height:4.0%'>assign and manage UUIDs
- generated in base 64 formatÂ…&#13;</span></div>
- <div class=B1><span style='position:absolute;top:51.5%;left:21.34%;width:80.14%;
- height:3.75%'><span class=B1B style='position:absolute;left:-3.73%'>§</span>overrode
- <span style='font-family:"Courier New";mso-ascii-font-family:"Courier New"'>ResourceImpl#getEObjectByID(String)</span>
- to retrieve </span><span style='position:absolute;top:55.0%;left:21.34%;
- width:70.22%;height:3.75%'>objects from <span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New"'>idToEObectMap&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:60.0%;left:21.34%;width:77.15%;
- height:3.75%'><span class=B1B style='position:absolute;left:-3.88%'>§</span>overrode
- <span style='font-family:"Courier New";mso-ascii-font-family:"Courier New"'>XMLResourceImpl#getID(EObject)</span>
- to assign (and </span><span style='position:absolute;top:63.75%;left:21.34%;
- width:70.22%;height:3.5%'>reassign) automatically generated UUIDs&#13;</span></div>
- <div class=B1><span style='position:absolute;top:68.75%;left:21.34%;
- width:78.46%;height:3.75%'><span class=B1B style='position:absolute;
- left:-3.81%'>§</span>overrode <span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New"'>ResourceImpl#detached(EObject)</span> to
- preserve IDs </span><span style='position:absolute;top:72.5%;left:21.34%;
- width:73.59%;height:3.5%'>when objects (and their children) are detached from
- resources</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0031.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0031.htm
deleted file mode 100644
index b49e2f5..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0031.htm
+++ /dev/null
@@ -1,125 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Element Creation">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="659"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>10</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s674818"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s674819" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s674818" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Element Creation</div>
- <div v:shape="_x0000_s674819">
- <div class=B><span style='position:absolute;top:26.75%;left:15.73%;width:77.34%;
- height:4.0%'><span class=BB style='position:absolute;left:-3.38%'>§</span>Wanted
- to simplify the process of creating an element and </span><span
- style='position:absolute;top:30.75%;left:15.73%;width:76.02%;height:4.0%'>adding/setting
- it to a containment feature&#13;</span></div>
- <div class=B style='position:absolute;top:34.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:38.75%;left:13.1%;width:91.94%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.85%;width:97.35%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.92%'>§</span>Customized
- JET templates to generate convenient factory methods&#13;</span></div>
- <div class=B1 style='position:absolute;top:43.5%;left:18.35%;width:82.58%;
- height:3.75%'><span style='position:absolute;top:0%;left:3.62%;width:96.14%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.77%'>§</span>customized
- <span style='font-family:"Courier New";mso-ascii-font-family:"Courier New"'>Interface.javajet</span>
- to generate method declaration&#13;</span></div>
- <div class=B1 style='position:absolute;top:48.5%;left:18.35%;width:81.08%;
- height:3.75%'><span style='position:absolute;top:0%;left:3.69%;width:96.07%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.84%'>§</span>customized
- <span style='font-family:"Courier New";mso-ascii-font-family:"Courier New"'>Class.javajet</span>
- to generate method implementation</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0032.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0032.htm
deleted file mode 100644
index 651be84..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0032.htm
+++ /dev/null
@@ -1,126 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Element Destruction">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="660"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>16</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s675842"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s675843" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s675842" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Element Destruction</div>
- <div v:shape="_x0000_s675843">
- <div class=B><span style='position:absolute;top:26.75%;left:15.73%;width:88.95%;
- height:4.0%'><span class=BB style='position:absolute;left:-2.94%'>§</span>Wanted
- a way to delete an element, including all of its children and </span><span
- style='position:absolute;top:30.75%;left:15.73%;width:76.02%;height:4.0%'>all
- cross references to it&#13;</span></div>
- <div class=B style='position:absolute;top:34.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B><span style='position:absolute;top:38.5%;left:15.73%;width:90.07%;
- height:4.25%'><span class=BB style='position:absolute;left:-2.91%'>§</span>Customized
- JET templates to generate <span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New"'>destroy()</span> method for top-</span><span style='position:
- absolute;top:42.75%;left:15.73%;width:76.02%;height:4.0%'>level types&#13;</span></div>
- <div class=B1 style='position:absolute;top:47.5%;left:18.35%;width:82.58%;
- height:3.75%'><span style='position:absolute;top:0%;left:3.62%;width:96.14%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.77%'>§</span>customized
- <span style='font-family:"Courier New";mso-ascii-font-family:"Courier New"'>Interface.javajet</span>
- to generate method declaration&#13;</span></div>
- <div class=B1 style='position:absolute;top:52.5%;left:18.35%;width:81.08%;
- height:3.75%'><span style='position:absolute;top:0%;left:3.69%;width:96.07%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.84%'>§</span>customized
- <span style='font-family:"Courier New";mso-ascii-font-family:"Courier New"'>Class.javajet</span>
- to generate method implementation</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0033.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0033.htm
deleted file mode 100644
index 8521a67..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0033.htm
+++ /dev/null
@@ -1,124 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Element Retrieval">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="661"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>21</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s676866"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s676867" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s676866" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Element Retrieval</div>
- <div v:shape="_x0000_s676867">
- <div class=B><span style='position:absolute;top:26.75%;left:15.73%;width:87.45%;
- height:4.0%'><span class=BB style='position:absolute;left:-2.99%'>§</span>Wanted
- to simplify the process of retrieving named elements from </span><span
- style='position:absolute;top:30.75%;left:15.73%;width:76.02%;height:4.0%'>lists&#13;</span></div>
- <div class=B style='position:absolute;top:34.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:38.75%;left:13.1%;width:91.94%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.85%;width:97.35%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.92%'>§</span>Customized
- JET templates to generate convenient factory methods&#13;</span></div>
- <div class=B1 style='position:absolute;top:43.5%;left:18.35%;width:82.58%;
- height:3.75%'><span style='position:absolute;top:0%;left:3.62%;width:96.14%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.77%'>§</span>customized
- <span style='font-family:"Courier New";mso-ascii-font-family:"Courier New"'>Interface.javajet</span>
- to generate method declaration&#13;</span></div>
- <div class=B1 style='position:absolute;top:48.5%;left:18.35%;width:81.08%;
- height:3.75%'><span style='position:absolute;top:0%;left:3.69%;width:96.07%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.84%'>§</span>customized
- <span style='font-family:"Courier New";mso-ascii-font-family:"Courier New"'>Class.javajet</span>
- to generate method implementation</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0034.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0034.htm
deleted file mode 100644
index 11c26c2..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0034.htm
+++ /dev/null
@@ -1,145 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Element Validation">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="662"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>25</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s677890"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s677891" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s677890" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Element Validation</div>
- <div v:shape="_x0000_s677891">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:81.64%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.21%;width:97.01%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.3%'>§</span>Wanted
- a way to perform validation operations on elements&#13;</span></div>
- <div class=B style='position:absolute;top:30.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:34.75%;left:13.1%;width:79.21%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.3%;width:96.92%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.41%'>§</span>Wanted
- to be able to evaluate different sets of constraints&#13;</span></div>
- <div class=B style='position:absolute;top:38.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:42.75%;left:13.1%;width:91.38%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.86%;width:97.33%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.94%'>§</span>Implemented
- custom Switch subclasses to execute validation rules&#13;</span></div>
- <div class=B1><span style='position:absolute;top:47.5%;left:21.34%;width:83.7%;
- height:3.75%'><span class=B1B style='position:absolute;left:-3.57%'>§</span>implemented
- <span style='font-family:"Courier New";mso-ascii-font-family:"Courier New"'>validate(EObject,
- IProgressMonitor)</span> to invoke </span><span style='position:absolute;
- top:51.25%;left:21.34%;width:73.97%;height:3.5%'>the switch and return an
- outcome in the form of a status object&#13;</span></div>
- <div class=B1><span style='position:absolute;top:56.0%;left:21.34%;width:77.71%;
- height:3.75%'><span class=B1B style='position:absolute;left:-3.85%'>§</span>overrode
- <span style='font-family:"Courier New";mso-ascii-font-family:"Courier New"'>Uml2Switch#defaultCase(EObject)</span>
- to recursively </span><span style='position:absolute;top:59.75%;left:21.34%;
- width:70.22%;height:3.5%'>invoke the switch on the objectÂ’s contents&#13;</span></div>
- <div class=B1><span style='position:absolute;top:64.75%;left:21.34%;
- width:83.14%;height:3.75%'><span class=B1B style='position:absolute;
- left:-3.6%'>§</span>overrode <span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New"'>Uml2Switch#doSwitch(EObject)</span> to
- inform the progress </span><span style='position:absolute;top:68.5%;
- left:21.34%;width:70.22%;height:3.5%'>monitor of progress&#13;</span></div>
- <div class=B1><span style='position:absolute;top:73.25%;left:21.34%;
- width:81.83%;height:3.75%'><span class=B1B style='position:absolute;
- left:-3.66%'>§</span>overrode <span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New"'>Uml2Switch#case*(*)</span> for each type
- of element to which </span><span style='position:absolute;top:77.0%;
- left:21.34%;width:70.22%;height:3.5%'>constraints apply</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0035.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0035.htm
deleted file mode 100644
index caf42d9..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0035.htm
+++ /dev/null
@@ -1,140 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="663"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O style='mso-line-spacing:"100 50 0";
- position:absolute;top:95.0%;left:2.62%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>2</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span
- lang=EN-US style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s678914"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s678915" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s678914" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s678915" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>What is UML2?&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>EMF Customizations&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Element
- Identification&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Element Creation&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Element
- Destruction&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Element Retrieval&#13;</span></div>
- <div style='position:absolute;top:70.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:74.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Element Validation</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0036.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0036.htm
deleted file mode 100644
index 4af8bfa..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0036.htm
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: EMF Customizations">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="664"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>4</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s679938"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s679939" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s679938" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>EMF Customizations</div>
- <div v:shape="_x0000_s679939" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:89.51%;height:4.0%'><span class=BB
- style='position:absolute;left:-2.92%'>§</span>XMI resource to support <i>identification</i>
- of elements using Universally </span><span style='position:absolute;
- top:30.75%;left:15.73%;width:76.02%;height:4.0%'>Unique Identifiers
- (UUIDs)&#13;</span>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:38.75%;left:15.73%;width:89.13%;height:
- 4.0%'><span class=BB style='position:absolute;left:-2.94%'>§</span>JET
- templates to generate methods that facilitate element <i>creation</i>, </span><span
- style='position:absolute;top:42.75%;left:15.73%;width:76.02%;height:4.0%'><i>destruction</i>,
- and <i>retrieval&#13;</i></span>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Switch classes to
- perform element <i>validation</i> operations</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0037.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0037.htm
deleted file mode 100644
index 3cad020..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0037.htm
+++ /dev/null
@@ -1,121 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description
-content="2/10/2004: Overriding ResourceImpl#getEObjectByID(String)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="665"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>6</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s680962"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s680967" style='position:absolute;
-  left:25.125pt;top:129.375pt;width:340.75pt;height:50.375pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s680962" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:103.55%;height:5.5%'><span style='font-size:86%'>Overriding </span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-hansi-font-family:"Courier New";font-size:86%'>ResourceImpl#getEObjectByID(String)</span></div>
- <div v:shape="_x0000_s680967" class=O>
- <div style='position:absolute;top:24.75%;left:4.49%;width:54.49%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>protected</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>EObject getEObjectByID(String id) {&#13;</span></div>
- <div style='position:absolute;top:27.5%;left:4.49%;width:53.37%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(EObject) idToEObjectMap.get(id);&#13;</span></div>
- <div style='position:absolute;top:30.0%;left:4.49%;width:45.5%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0038.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0038.htm
deleted file mode 100644
index 524df8b..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0038.htm
+++ /dev/null
@@ -1,197 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description
-content="2/10/2004: Overriding XMLResourceImpl#getID(EObject)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="667"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>7</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s683010"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s683012" style='position:absolute;
-  left:27pt;top:135.125pt;width:485.75pt;height:266pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s683010" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:91.76%;height:5.5%'><span style='font-size:86%'>Overriding </span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-hansi-font-family:"Courier New";font-size:86%'>XMLResourceImpl#getID(EObject)</span></div>
- <div v:shape="_x0000_s683012" class=O>
- <div style='position:absolute;top:25.75%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>String getID(EObject eObject) {&#13;</span></div>
- <div style='position:absolute;top:28.5%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>String id = </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><b>super</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'>.getID(eObject);&#13;</span></div>
- <div style='position:absolute;top:31.0%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:33.75%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>if</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span style='mso-spacerun:yes'> </span>(</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>null</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>== id) {&#13;</span></div>
- <div style='position:absolute;top:36.5%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:39.0%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>        </span>synchronized</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(detachedEObjectToIDMap) {&#13;</span></div>
- <div style='position:absolute;top:41.75%;left:4.68%;width:78.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>            </span>id = (String)
- detachedEObjectToIDMap.remove(eObject);&#13;</span></div>
- <div style='position:absolute;top:44.5%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>}&#13;</span></div>
- <div style='position:absolute;top:47.0%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:49.75%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>        </span>if</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span style='mso-spacerun:yes'> </span>(</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>null</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>== id) {&#13;</span></div>
- <div style='position:absolute;top:52.5%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>            </span>id = UUID.generate();&#13;</span></div>
- <div style='position:absolute;top:55.0%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>}&#13;</span></div>
- <div style='position:absolute;top:57.75%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:60.5%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>setID(eObject, id);&#13;</span></div>
- <div style='position:absolute;top:63.0%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:65.75%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:68.5%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span style='mso-spacerun:yes'> </span>id;&#13;</span></div>
- <div style='position:absolute;top:71.0%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0039.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0039.htm
deleted file mode 100644
index 539be79..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0039.htm
+++ /dev/null
@@ -1,178 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description
-content="2/10/2004: Overriding ResourceImpl#detached(EObject)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="669"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>8</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s685058"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s685060" style='position:absolute;
-  left:26pt;top:129.875pt;width:587.25pt;height:194.125pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s685058" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:91.76%;height:5.5%'><span style='font-size:86%'>Overriding </span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-hansi-font-family:"Courier New";font-size:86%'>ResourceImpl#detached(EObject)</span></div>
- <div v:shape="_x0000_s685060" class=O>
- <div style='position:absolute;top:24.75%;left:4.68%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><b>void</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>detached(EObject eObject) {&#13;</span></div>
- <div style='position:absolute;top:27.5%;left:4.68%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:30.25%;left:4.68%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>synchronized</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(detachedEObjectToIDMap) {&#13;</span></div>
- <div style='position:absolute;top:32.75%;left:4.68%;width:79.96%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>detachedEObjectToIDMap.put(eObject, </span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>super</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>.getID(eObject));&#13;</span></div>
- <div style='position:absolute;top:35.5%;left:4.68%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:38.25%;left:4.68%;width:95.69%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>        </span>for</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(Iterator children = eObject.eAllContents();
- children.hasNext();) {&#13;</span></div>
- <div style='position:absolute;top:40.75%;left:4.68%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>            </span>EObject child = (EObject)
- children.next();&#13;</span></div>
- <div style='position:absolute;top:43.5%;left:4.68%;width:79.96%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>            </span>detachedEObjectToIDMap.put(child, </span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>super</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>.getID(child));&#13;</span></div>
- <div style='position:absolute;top:46.0%;left:4.68%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>}&#13;</span></div>
- <div style='position:absolute;top:48.75%;left:4.68%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:51.5%;left:4.68%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:54.0%;left:4.68%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>super</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'>.detached(eObject);&#13;</span></div>
- <div style='position:absolute;top:56.75%;left:4.68%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0040.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0040.htm
deleted file mode 100644
index 34a187c..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0040.htm
+++ /dev/null
@@ -1,200 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description
-content="2/10/2004: Customizing Interface.javajet (Lists)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="671"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>11</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s687106"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s687108" style='position:absolute;
-  left:25pt;top:133.75pt;width:630.75pt;height:309.125pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s687106" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:88.76%;height:6.5%'>Customizing <span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";mso-hansi-font-family:"Courier New"'>Interface.javajet</span>
- (Lists)</div>
- <div v:shape="_x0000_s687108" class=O>
- <div style='position:absolute;top:25.5%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%if
- (genFeature.isChangeable() &amp;&amp; genFeature.isContains()) {%&gt;&#13;</span></div>
- <div style='position:absolute;top:28.25%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>&lt;%if (genFeature.isListType())
- {%&gt;&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>/**&#13;</span></div>
- <div style='position:absolute;top:33.5%;left:4.49%;width:102.99%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* Creates a {@link
- &lt;%=genFeature.getQualifiedListItemType()%&gt;} and appends it to&#13;</span></div>
- <div style='position:absolute;top:36.25%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* the
- '&lt;em&gt;&lt;b&gt;&lt;%=genFeature.getFormattedName()%&gt;&lt;/b&gt;&lt;/em&gt;‘&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*
- &lt;%=genFeature.getFeatureKind()%&gt;.&#13;</span></div>
- <div style='position:absolute;top:41.5%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:44.25%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @param eClass The Ecore class of the
- {@link&#13;</span></div>
- <div style='position:absolute;top:49.5%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*
- &lt;%=genFeature.getQualifiedListItemType()%&gt;} to create.&#13;</span></div>
- <div style='position:absolute;top:52.25%;left:4.49%;width:89.7%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @return The new {@link
- &lt;%=genFeature.getQualifiedListItemType()%&gt;}.&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @see
- #&lt;%=genFeature.getGetAccessor()%&gt;()&#13;</span></div>
- <div style='position:absolute;top:57.5%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @generated&#13;</span></div>
- <div style='position:absolute;top:60.25%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*/&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:4.49%;width:87.26%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>   
- </span>&lt;%=genModel.getImportedName(genFeature.getQualifiedListItemType())%&gt;&#13;</span></div>
- <div style='position:absolute;top:65.5%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>create&lt;%=genFeature.getCapName()%&gt;(&#13;</span></div>
- <div style='position:absolute;top:68.25%;left:4.49%;width:91.94%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>&lt;%=genModel.getImportedName(&quot;org.eclipse.emf.ecore.EClass&quot;)%&gt;
- eClass);&#13;</span></div>
- <div style='position:absolute;top:70.75%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>&lt;%} else {%&gt;&#13;</span></div>
- <div style='position:absolute;top:73.5%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>...&#13;</span></div>
- <div style='position:absolute;top:76.0%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>&lt;%}%&gt;&#13;</span></div>
- <div style='position:absolute;top:78.75%;left:4.49%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%}%&gt;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0041.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0041.htm
deleted file mode 100644
index 1bf9c26..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0041.htm
+++ /dev/null
@@ -1,198 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Customizing Class.javajet (Lists)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="673"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>13</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s689154"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s689156" style='position:absolute;
-  left:29pt;top:133.5pt;width:594.5pt;height:309.125pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s689154" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:88.38%;height:6.5%'>Customizing <span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";mso-hansi-font-family:"Courier New"'>Class.javajet</span>
- (Lists)</div>
- <div v:shape="_x0000_s689156" class=O>
- <div style='position:absolute;top:25.5%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%if
- (genFeature.isChangeable() &amp;&amp; genFeature.isContains()) {%&gt;&#13;</span></div>
- <div style='position:absolute;top:28.25%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>&lt;%if (genFeature.isListType())
- {%&gt;&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>/**&#13;</span></div>
- <div style='position:absolute;top:33.5%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:36.25%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @generated&#13;</span></div>
- <div style='position:absolute;top:41.5%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*/&#13;</span></div>
- <div style='position:absolute;top:44.0%;left:5.05%;width:95.69%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>public
- &lt;%=genModel.getImportedName(genFeature.getQualifiedListItemType())%&gt;&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>create&lt;%=genFeature.getCapName()%&gt;(&#13;</span></div>
- <div style='position:absolute;top:49.5%;left:5.05%;width:93.25%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>&lt;%=genModel.getImportedName(&quot;org.eclipse.emf.ecore.EClass&quot;)%&gt;
- eClass) {&#13;</span></div>
- <div style='position:absolute;top:52.0%;left:5.05%;width:91.94%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>       
- </span>&lt;%=genModel.getImportedName(genFeature.getQualifiedListItemType())%&gt;&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>          </span>&lt;%=genFeature.getUncapName()%&gt;
- =&#13;</span></div>
- <div style='position:absolute;top:57.5%;left:5.05%;width:96.81%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>         
- </span>(&lt;%=genModel.getImportedName(genFeature.getQualifiedListItemType())%&gt;)&#13;</span></div>
- <div style='position:absolute;top:60.0%;left:5.05%;width:82.39%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>         
- </span>eClass.getEPackage().getEFactoryInstance().create(eClass);&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:5.05%;width:95.69%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>       
- </span>&lt;%=genFeature.getGetAccessor()%&gt;().add(&lt;%=genFeature.getUncapName()%&gt;);&#13;</span></div>
- <div style='position:absolute;top:65.5%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>return
- &lt;%=genFeature.getUncapName()%&gt;;&#13;</span></div>
- <div style='position:absolute;top:68.0%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:70.75%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>&lt;%} else {%&gt;&#13;</span></div>
- <div style='position:absolute;top:73.5%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>...&#13;</span></div>
- <div style='position:absolute;top:76.0%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>&lt;%}%&gt;&#13;</span></div>
- <div style='position:absolute;top:78.75%;left:5.05%;width:80.71%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%}%&gt;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0042.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0042.htm
deleted file mode 100644
index 4cb3e34..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0042.htm
+++ /dev/null
@@ -1,195 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description
-content="2/10/2004: Customizing Interface.javajet (non-Lists)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="675"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>12</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s691202"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s691204" style='position:absolute;
-  left:23.375pt;top:131.75pt;width:652.5pt;height:294.75pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s691202" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:98.12%;height:6.5%'>Customizing <span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";mso-hansi-font-family:"Courier New"'>Interface.javajet</span>
- (non-Lists)</div>
- <div v:shape="_x0000_s691204" class=O>
- <div style='position:absolute;top:25.25%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%if
- (genFeature.isChangeable() &amp;&amp; genFeature.isContains()) {%&gt;&#13;</span></div>
- <div style='position:absolute;top:27.75%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>&lt;%if (genFeature.isListType())
- {%&gt;&#13;</span></div>
- <div style='position:absolute;top:30.5%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>...&#13;</span></div>
- <div style='position:absolute;top:33.25%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>&lt;%} else {%&gt;&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>/**&#13;</span></div>
- <div style='position:absolute;top:38.5%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* Creates a {@link
- &lt;%=genFeature.getType()%&gt;} and sets the&#13;</span></div>
- <div style='position:absolute;top:41.25%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*
- '&lt;em&gt;&lt;b&gt;&lt;%=genFeature.getFormattedName()%&gt;&lt;/b&gt;&lt;/em&gt;‘&#13;</span></div>
- <div style='position:absolute;top:43.75%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*
- &lt;%=genFeature.getFeatureKind()%&gt;.&#13;</span></div>
- <div style='position:absolute;top:46.5%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:49.0%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:51.75%;left:4.3%;width:106.55%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @param eClass The Ecore class of the
- {@link &lt;%=genFeature.getType()%&gt;} to create.&#13;</span></div>
- <div style='position:absolute;top:54.5%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @return The new {@link
- &lt;%=genFeature.getType()%&gt;}.&#13;</span></div>
- <div style='position:absolute;top:57.0%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @see
- #&lt;%=genFeature.getGetAccessor()%&gt;()&#13;</span></div>
- <div style='position:absolute;top:59.75%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @generated&#13;</span></div>
- <div style='position:absolute;top:62.5%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*/&#13;</span></div>
- <div style='position:absolute;top:65.0%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>   
- </span>&lt;%=genFeature.getImportedType()%&gt;&#13;</span></div>
- <div style='position:absolute;top:67.75%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>create&lt;%=genFeature.getCapName()%&gt;(&#13;</span></div>
- <div style='position:absolute;top:70.5%;left:4.3%;width:91.94%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>&lt;%=genModel.getImportedName(&quot;org.eclipse.emf.ecore.EClass&quot;)%&gt;
- eClass);&#13;</span></div>
- <div style='position:absolute;top:73.0%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>&lt;%}%&gt;&#13;</span></div>
- <div style='position:absolute;top:75.75%;left:4.3%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%}%&gt;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0043.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0043.htm
deleted file mode 100644
index e286c8e..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0043.htm
+++ /dev/null
@@ -1,195 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description
-content="2/10/2004: Customizing Class.javajet (non-Lists)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="677"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>14</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s693250"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s693252" style='position:absolute;
-  left:28pt;top:139.25pt;width:587.25pt;height:294.75pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s693250" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:88.38%;height:6.5%'>Customizing <span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";mso-hansi-font-family:"Courier New"'>Class.javajet</span>
- (non-Lists)</div>
- <div v:shape="_x0000_s693252" class=O>
- <div style='position:absolute;top:26.5%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%if
- (genFeature.isChangeable() &amp;&amp; genFeature.isContains()) {%&gt;&#13;</span></div>
- <div style='position:absolute;top:29.25%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>&lt;%if (genFeature.isListType())
- {%&gt;&#13;</span></div>
- <div style='position:absolute;top:32.0%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>...&#13;</span></div>
- <div style='position:absolute;top:34.5%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>&lt;%} else {%&gt;&#13;</span></div>
- <div style='position:absolute;top:37.25%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>/**&#13;</span></div>
- <div style='position:absolute;top:39.75%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:42.5%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:45.25%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @generated&#13;</span></div>
- <div style='position:absolute;top:47.75%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*/&#13;</span></div>
- <div style='position:absolute;top:50.5%;left:4.86%;width:95.69%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>public
- &lt;%=genModel.getImportedName(genFeature.getQualifiedListItemType())%&gt;&#13;</span></div>
- <div style='position:absolute;top:53.25%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>create&lt;%=genFeature.getCapName()%&gt;(&#13;</span></div>
- <div style='position:absolute;top:55.75%;left:4.86%;width:93.25%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>&lt;%=genModel.getImportedName(&quot;org.eclipse.emf.ecore.EClass&quot;)%&gt;
- eClass) {&#13;</span></div>
- <div style='position:absolute;top:58.5%;left:4.86%;width:89.7%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>       
- </span>&lt;%=genFeature.getImportedType()%&gt;
- &lt;%=genFeature.getUncapName()%&gt; =&#13;</span></div>
- <div style='position:absolute;top:61.25%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>         
- </span>(&lt;%=genFeature.getImportedType()%&gt;)&#13;</span></div>
- <div style='position:absolute;top:63.75%;left:4.86%;width:82.39%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>         
- </span>eClass.getEPackage().getEFactoryInstance().create(eClass);&#13;</span></div>
- <div style='position:absolute;top:66.5%;left:4.86%;width:93.25%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>       
- </span>set&lt;%=genFeature.getAccessorName()%&gt;(&lt;%=genFeature.getUncapName()%&gt;);&#13;</span></div>
- <div style='position:absolute;top:69.25%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>return
- &lt;%=genFeature.getUncapName()%&gt;;&#13;</span></div>
- <div style='position:absolute;top:71.75%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:74.5%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>&lt;%}%&gt;&#13;</span></div>
- <div style='position:absolute;top:77.25%;left:4.86%;width:79.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%}%&gt;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0044.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0044.htm
deleted file mode 100644
index 9b85c2e..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0044.htm
+++ /dev/null
@@ -1,163 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Element Identification Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="679"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>9</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s695298"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s695306" style='position:absolute;
-  left:27pt;top:2in;width:427.75pt;height:194.125pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s695298" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Element Identification Example</div>
- <div v:shape="_x0000_s695306" class=O>
- <div style='position:absolute;top:27.5%;left:4.68%;width:57.49%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;?xml
- version=&quot;1.0&quot; encoding=&quot;ASCII&quot;?&gt;&#13;</span></div>
- <div style='position:absolute;top:30.0%;left:4.68%;width:57.49%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;org.eclipse.uml2:Model&#13;</span></div>
- <div style='position:absolute;top:32.75%;left:4.68%;width:57.49%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>xmi:version=&quot;2.0&quot;&#13;</span></div>
- <div style='position:absolute;top:35.5%;left:4.68%;width:57.49%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> 
- </span>xmlns:xmi=&quot;http://www.omg.org/XMI&quot;&#13;</span></div>
- <div style='position:absolute;top:38.0%;left:4.68%;width:66.66%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> 
- </span>xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;&#13;</span></div>
- <div style='position:absolute;top:40.75%;left:4.68%;width:69.1%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> 
- </span>xmlns:org.eclipse.uml2=&quot;http:///org/eclipse/uml2.ecore&quot;&#13;</span></div>
- <div style='position:absolute;top:43.5%;left:4.68%;width:57.49%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>xmi:id=&quot;</span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><b>lBlTUCzaEdiDT-UwQ8NmeA==</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&quot;&#13;</span></div>
- <div style='position:absolute;top:46.0%;left:4.68%;width:57.49%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>name=&quot;UML&quot;&gt;&#13;</span></div>
- <div style='position:absolute;top:48.75%;left:4.68%;width:57.49%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>&lt;ownedMember&#13;</span></div>
- <div style='position:absolute;top:51.5%;left:4.68%;width:57.49%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>xsi:type=&quot;org.eclipse.uml2:PrimitiveType&quot;&#13;</span></div>
- <div style='position:absolute;top:54.0%;left:4.68%;width:57.49%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>      </span>xmi:id=&quot;</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>me60ASzaEdiDT-UwQ8NmeA==</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&quot;&#13;</span></div>
- <div style='position:absolute;top:56.75%;left:4.68%;width:57.49%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>      </span>name=&quot;Boolean&quot;/&gt;&#13;</span></div>
- <div style='position:absolute;top:59.5%;left:4.68%;width:57.49%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;/org.eclipse.uml2:Model&gt;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0045.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0045.htm
deleted file mode 100644
index 9d6d4e1..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0045.htm
+++ /dev/null
@@ -1,129 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Element Creation Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="681"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>15</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s697346"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s697348" style='position:absolute;
-  left:28pt;top:155pt;width:623.5pt;height:122.25pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s697346" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Element Creation Example</div>
- <div v:shape="_x0000_s697348" class=O>
- <div style='position:absolute;top:29.5%;left:4.86%;width:101.68%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>Property
- property =
- clazz.createOwnedAttribute(Uml2Package.eINSTANCE.getProperty());&#13;</span></div>
- <div style='position:absolute;top:32.25%;left:4.86%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:34.75%;left:4.86%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:37.5%;left:4.86%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>// instead
- of&#13;</span></div>
- <div style='position:absolute;top:40.0%;left:4.86%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:4.86%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:45.5%;left:4.86%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>Property
- property = Uml2Factory.eINSTANCE.createProperty();&#13;</span></div>
- <div style='position:absolute;top:48.0%;left:4.86%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>clazz.getOwnedAttributes().add(property);</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0046.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0046.htm
deleted file mode 100644
index ac03362..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0046.htm
+++ /dev/null
@@ -1,126 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Element Destruction Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="682"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>20</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s698370"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s698372" style='position:absolute;
-  left:30pt;top:153.25pt;width:333.5pt;height:122.25pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s698370" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Element Destruction Example</div>
- <div v:shape="_x0000_s698372" class=O>
- <div style='position:absolute;top:29.25%;left:5.24%;width:44.56%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>property.destroy();&#13;</span></div>
- <div style='position:absolute;top:31.75%;left:5.24%;width:44.56%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:34.5%;left:5.24%;width:44.56%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:37.25%;left:5.24%;width:44.56%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>// instead
- of&#13;</span></div>
- <div style='position:absolute;top:39.75%;left:5.24%;width:44.56%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:42.5%;left:5.24%;width:44.56%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:45.0%;left:5.24%;width:53.37%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>clazz.getOwnedAttributes().remove(property);&#13;</span></div>
- <div style='position:absolute;top:47.75%;left:5.24%;width:44.56%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>// ...</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0047.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0047.htm
deleted file mode 100644
index 696ba30..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0047.htm
+++ /dev/null
@@ -1,178 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Element Retrieval Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="683"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>24</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s699394"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s699396" style='position:absolute;
-  left:27pt;top:144.25pt;width:485.75pt;height:266pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s699394" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Element Retrieval Example</div>
- <div v:shape="_x0000_s699396" class=O>
- <div style='position:absolute;top:27.5%;left:4.68%;width:70.22%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>Property
- property = clazz.getOwnedAttribute(&quot;myProperty&quot;);&#13;</span></div>
- <div style='position:absolute;top:30.25%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:32.75%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:35.5%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>// instead of
- &#13;</span></div>
- <div style='position:absolute;top:38.25%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:40.75%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:43.5%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>Property
- property = </span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>null</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>;&#13;</span></div>
- <div style='position:absolute;top:46.0%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:48.75%;left:4.68%;width:78.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>for</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(Iterator attributes =
- clazz.getOwnedAttributes().iterator();&#13;</span></div>
- <div style='position:absolute;top:51.5%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>  </span>attributes.hasNext();) {&#13;</span></div>
- <div style='position:absolute;top:54.0%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:56.75%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>Property attribute = (Property)
- attributes.next();&#13;</span></div>
- <div style='position:absolute;top:59.5%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:62.0%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>if</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(&quot;myProperty&quot;.equals(attribute.getName()))
- {&#13;</span></div>
- <div style='position:absolute;top:64.75%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>property = attribute;&#13;</span></div>
- <div style='position:absolute;top:67.5%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>        </span>break</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>;&#13;</span></div>
- <div style='position:absolute;top:70.0%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:72.75%;left:4.68%;width:65.54%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0048.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0048.htm
deleted file mode 100644
index 067a05c..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0048.htm
+++ /dev/null
@@ -1,168 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Element Validation - Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="684"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>30</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s700418"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s700420" style='position:absolute;
-  left:30.625pt;top:152pt;width:630.75pt;height:179.75pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s700418" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Element Validation - Example</div>
- <div v:shape="_x0000_s700420" class=O>
- <div style='position:absolute;top:29.0%;left:5.24%;width:102.99%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>IStatus status
- = Uml2Validator.INSTANCE.validate(element, </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><b>new</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>NullProgressMonitor() {&#13;</span></div>
- <div style='position:absolute;top:31.5%;left:5.24%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>public</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span style='mso-spacerun:yes'> </span></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>void</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>subTask(String name) {&#13;</span></div>
- <div style='position:absolute;top:34.25%;left:5.24%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>System.out.println(name);&#13;</span></div>
- <div style='position:absolute;top:37.0%;left:5.24%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:39.5%;left:5.24%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>});&#13;</span></div>
- <div style='position:absolute;top:42.25%;left:5.24%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:45.0%;left:5.24%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>if</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(IStatus.OK != status.getSeverity()) {&#13;</span></div>
- <div style='position:absolute;top:47.5%;left:5.24%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:50.25%;left:5.24%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>for</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span style='mso-spacerun:yes'> </span>(</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>int</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>i = 0; i &lt; status.getChildren().length;
- i++) {&#13;</span></div>
- <div style='position:absolute;top:52.75%;left:5.24%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>       
- </span>System.err.println(status.getChildren()[i].getMessage());&#13;</span></div>
- <div style='position:absolute;top:55.5%;left:5.24%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:58.25%;left:5.24%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0050.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0050.htm
deleted file mode 100644
index d01c862..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0050.htm
+++ /dev/null
@@ -1,167 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Customizing Interface.javajet">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="687"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>17</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s703490"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s703492" style='position:absolute;
-  left:27pt;top:144.25pt;width:609pt;height:222.875pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s703490" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:88.38%;height:6.5%'>Customizing <span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";mso-hansi-font-family:"Courier New"'>Interface.javajet</span></div>
- <div v:shape="_x0000_s703492" class=O>
- <div style='position:absolute;top:27.5%;left:4.68%;width:82.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%if
- (genClass.getBaseGenClasses().isEmpty()) {%&gt;&#13;</span></div>
- <div style='position:absolute;top:30.25%;left:4.68%;width:82.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>/**&#13;</span></div>
- <div style='position:absolute;top:32.75%;left:4.68%;width:94.38%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* Destroys this model object by removing
- all usage cross references to it&#13;</span></div>
- <div style='position:absolute;top:35.5%;left:4.68%;width:99.25%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* (from within its resource set) and
- removing it from its containing resource&#13;</span></div>
- <div style='position:absolute;top:38.25%;left:4.68%;width:82.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* or object.&#13;</span></div>
- <div style='position:absolute;top:40.75%;left:4.68%;width:82.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;p&gt;&#13;</span></div>
- <div style='position:absolute;top:43.5%;left:4.68%;width:87.26%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* Note that this operation can be
- expensive (since it traverses all&#13;</span></div>
- <div style='position:absolute;top:46.0%;left:4.68%;width:94.38%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* containment hierarchies) and doesn't
- guarantee that all references will&#13;</span></div>
- <div style='position:absolute;top:48.75%;left:4.68%;width:90.82%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* be removed (since references can exist
- in other resources that don't&#13;</span></div>
- <div style='position:absolute;top:51.5%;left:4.68%;width:82.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* belong to the same resource set).&#13;</span></div>
- <div style='position:absolute;top:54.0%;left:4.68%;width:82.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;/p&gt;&#13;</span></div>
- <div style='position:absolute;top:56.75%;left:4.68%;width:82.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @generated&#13;</span></div>
- <div style='position:absolute;top:59.5%;left:4.68%;width:82.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*/&#13;</span></div>
- <div style='position:absolute;top:62.0%;left:4.68%;width:82.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>void destroy();&#13;</span></div>
- <div style='position:absolute;top:64.75%;left:4.68%;width:82.77%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%}%&gt;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0051.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0051.htm
deleted file mode 100644
index 1f65c3c..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0051.htm
+++ /dev/null
@@ -1,151 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Customizing Class.javajet">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="689"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>18</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s705538"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s705540" style='position:absolute;
-  left:25pt;top:141.625pt;width:645.25pt;height:179.75pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s705538" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:88.38%;height:6.5%'>Customizing <span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";mso-hansi-font-family:"Courier New"'>Class.javajet</span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s705540" class=O>
- <div style='position:absolute;top:27.0%;left:4.49%;width:87.82%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%if
- (genClass.getBaseGenClasses().isEmpty()) {%&gt;&#13;</span></div>
- <div style='position:absolute;top:29.75%;left:4.49%;width:87.82%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>/**&#13;</span></div>
- <div style='position:absolute;top:32.25%;left:4.49%;width:87.82%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:35.0%;left:4.49%;width:87.82%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:37.75%;left:4.49%;width:87.82%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @generated&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:4.49%;width:87.82%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*/&#13;</span></div>
- <div style='position:absolute;top:43.0%;left:4.49%;width:87.82%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>public void destroy() {&#13;</span></div>
- <div style='position:absolute;top:45.75%;left:4.49%;width:105.24%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>destroyHelper(this, null ==
- eResource() ? null : eResource().getResourceSet());&#13;</span></div>
- <div style='position:absolute;top:48.25%;left:4.49%;width:87.82%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:51.0%;left:4.49%;width:87.82%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:53.5%;left:4.49%;width:87.82%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>...&#13;</span></div>
- <div style='position:absolute;top:56.25%;left:4.49%;width:87.82%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%}%&gt;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0052.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0052.htm
deleted file mode 100644
index 3ad71b1..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0052.htm
+++ /dev/null
@@ -1,194 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Implementing destroyHelper(...)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="691"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>19</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s707586"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s707588" style='position:absolute;
-  left:28pt;top:147pt;width:630.75pt;height:237.25pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s707586" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:88.38%;height:6.5%'>Implementing <span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";mso-hansi-font-family:"Courier New"'>destroyHelper(...)</span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s707588" class=O>
- <div style='position:absolute;top:28.0%;left:4.86%;width:95.69%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>protected</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><b>static</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span style='mso-spacerun:yes'> </span></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>void</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>destroyHelper(EObject eObject, ResourceSet
- resourceSet) {&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:4.86%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:33.25%;left:4.86%;width:102.99%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>for</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(Iterator eContents =
- eObject.eContents().iterator(); eContents.hasNext();) {&#13;</span></div>
- <div style='position:absolute;top:36.0%;left:4.86%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>destroyHelper((EObject)
- eContents.next(), resourceSet);&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:4.86%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:41.25%;left:4.86%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:44.0%;left:4.86%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>EcoreUtil.remove(eObject);&#13;</span></div>
- <div style='position:absolute;top:46.5%;left:4.86%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:49.25%;left:4.86%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>if</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span style='mso-spacerun:yes'> </span>(</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>null</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>!= resourceSet) {&#13;</span></div>
- <div style='position:absolute;top:52.0%;left:4.86%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:54.5%;left:4.86%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>        </span>for</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(Iterator settings =
- EcoreUtil.UsageCrossReferencer.&#13;</span></div>
- <div style='position:absolute;top:57.25%;left:4.86%;width:85.95%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>          </span>find(eObject,
- resourceSet).iterator(); settings.hasNext();) {&#13;</span></div>
- <div style='position:absolute;top:60.0%;left:4.86%;width:101.68%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>           
- </span>EcoreUtil.remove((EStructuralFeature.Setting) settings.next(),
- eObject);&#13;</span></div>
- <div style='position:absolute;top:62.5%;left:4.86%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>}&#13;</span></div>
- <div style='position:absolute;top:65.25%;left:4.86%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:68.0%;left:4.86%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0053.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0053.htm
deleted file mode 100644
index 77be064..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0053.htm
+++ /dev/null
@@ -1,197 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Customizing Interface.javajet">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="694"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>22</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s710658"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s710660" style='position:absolute;
-  left:33pt;top:147.375pt;width:630.75pt;height:294.75pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s710658" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:88.38%;height:6.5%'>Customizing <span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";mso-hansi-font-family:"Courier New"'>Interface.javajet</span></div>
- <div v:shape="_x0000_s710660" class=O>
- <div style='position:absolute;top:28.0%;left:5.61%;width:87.26%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%if
- (genFeature.isListType() &amp;&amp; null !=
- ((org.eclipse.emf.ecore.EClass)&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:5.61%;width:93.25%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> 
- </span>genFeature.getEcoreFeature().getEType()).getEStructuralFeature(&quot;name&quot;))
- {%&gt;&#13;</span></div>
- <div style='position:absolute;top:33.5%;left:5.61%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>/**&#13;</span></div>
- <div style='position:absolute;top:36.0%;left:5.61%;width:96.81%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* Retrieves the {@link
- &lt;%=genFeature.getQualifiedListItemType()%&gt;} with the&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:5.61%;width:100.56%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* specified name from the
- '&lt;em&gt;&lt;b&gt;&lt;%=genFeature.getFormattedName()%&gt;&lt;/b&gt;&lt;/em&gt;‘&#13;</span></div>
- <div style='position:absolute;top:41.25%;left:5.61%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*
- &lt;%=genFeature.getFeatureKind()%&gt;.&#13;</span></div>
- <div style='position:absolute;top:44.0%;left:5.61%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:5.61%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:49.25%;left:5.61%;width:102.99%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @param name The name of the {@link
- &lt;%=genFeature.getQualifiedListItemType()%&gt;}&#13;</span></div>
- <div style='position:absolute;top:52.0%;left:5.61%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*<span
- style='mso-spacerun:yes'>             </span>to retrieve.&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:5.61%;width:94.38%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @return The {@link
- &lt;%=genFeature.getQualifiedListItemType()%&gt;} with the&#13;</span></div>
- <div style='position:absolute;top:57.25%;left:5.61%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*<span style='mso-spacerun:yes'>        
- </span>specified name, or &lt;code&gt;null&lt;/code&gt;.&#13;</span></div>
- <div style='position:absolute;top:60.0%;left:5.61%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @see
- #&lt;%=genFeature.getGetAccessor()%&gt;()&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:5.61%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @generated&#13;</span></div>
- <div style='position:absolute;top:65.25%;left:5.61%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*/&#13;</span></div>
- <div style='position:absolute;top:68.0%;left:5.61%;width:87.26%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>   
- </span>&lt;%=genModel.getImportedName(genFeature.getQualifiedListItemType())%&gt;&#13;</span></div>
- <div style='position:absolute;top:70.75%;left:5.61%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>get&lt;%=genFeature.getCapName()%&gt;(&#13;</span></div>
- <div style='position:absolute;top:73.25%;left:5.61%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>&lt;%=genModel.getImportedName(&quot;java.lang.String&quot;)%&gt;
- name);&#13;</span></div>
- <div style='position:absolute;top:76.0%;left:5.61%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>      </span>&#13;</span></div>
- <div style='position:absolute;top:78.75%;left:5.61%;width:85.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%}%&gt;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0054.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0054.htm
deleted file mode 100644
index f0fa68f..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0054.htm
+++ /dev/null
@@ -1,211 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Customizing Class.javajet">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="696"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>23</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s712706"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s712708" style='position:absolute;
-  left:30.625pt;top:145.75pt;width:623.5pt;height:337.875pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s712706" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:88.38%;height:6.5%'>Customizing <span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";mso-hansi-font-family:"Courier New"'>Class.javajet</span></div>
- <div v:shape="_x0000_s712708" class=O>
- <div style='position:absolute;top:27.75%;left:5.24%;width:87.26%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%if
- (genFeature.isListType() &amp;&amp; null !=
- ((org.eclipse.emf.ecore.EClass)&#13;</span></div>
- <div style='position:absolute;top:30.5%;left:5.24%;width:93.25%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> 
- </span>genFeature.getEcoreFeature().getEType()).getEStructuralFeature(&quot;name&quot;))
- {%&gt;&#13;</span></div>
- <div style='position:absolute;top:33.0%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>/**&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:38.5%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:41.0%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>* @generated&#13;</span></div>
- <div style='position:absolute;top:43.75%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     </span>*/&#13;</span></div>
- <div style='position:absolute;top:46.5%;left:5.24%;width:95.69%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>public
- &lt;%=genModel.getImportedName(genFeature.getQualifiedListItemType())%&gt;&#13;</span></div>
- <div style='position:absolute;top:49.0%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>get&lt;%=genFeature.getCapName()%&gt;(&#13;</span></div>
- <div style='position:absolute;top:51.75%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>&lt;%=genModel.getImportedName(&quot;java.lang.String&quot;)%&gt; name)
- {&#13;</span></div>
- <div style='position:absolute;top:54.5%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>for
- (&lt;%=genModel.getImportedName(&quot;java.util.Iterator&quot;)%&gt; i =&#13;</span></div>
- <div style='position:absolute;top:57.0%;left:5.24%;width:88.38%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>         
- </span>&lt;%=genFeature.getGetAccessor()%&gt;().iterator(); i.hasNext(); )
- {&#13;</span></div>
- <div style='position:absolute;top:59.75%;left:5.24%;width:96.81%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>           
- </span>&lt;%=genModel.getImportedName(genFeature.getQualifiedListItemType())%&gt;&#13;</span></div>
- <div style='position:absolute;top:62.25%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>             
- </span>&lt;%=genFeature.getUncapName()%&gt; =&#13;</span></div>
- <div style='position:absolute;top:65.0%;left:5.24%;width:101.68%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>             
- </span>(&lt;%=genModel.getImportedName(genFeature.getQualifiedListItemType())%&gt;)&#13;</span></div>
- <div style='position:absolute;top:67.75%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>              </span>i.next();<span
- style='mso-spacerun:yes'>   </span>&#13;</span></div>
- <div style='position:absolute;top:70.25%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>            </span>if
- (name.equals(&lt;%=genFeature.getUncapName()%&gt;.getName()))&#13;</span></div>
- <div style='position:absolute;top:73.0%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>              </span>return
- &lt;%=genFeature.getUncapName()%&gt;;&#13;</span></div>
- <div style='position:absolute;top:75.75%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>}&#13;</span></div>
- <div style='position:absolute;top:78.25%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>&#13;</span></div>
- <div style='position:absolute;top:81.0%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>return null;&#13;</span></div>
- <div style='position:absolute;top:83.75%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}<span style='mso-spacerun:yes'>    
- </span>&#13;</span></div>
- <div style='position:absolute;top:86.25%;left:5.24%;width:84.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>&lt;%}%&gt;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0055.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0055.htm
deleted file mode 100644
index 7e8ac41..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0055.htm
+++ /dev/null
@@ -1,211 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description content="2/10/2004: Implementing validate(...)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="698"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>26</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s714754"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s714756" style='position:absolute;
-  left:26pt;top:141.625pt;width:558.25pt;height:266pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s714754" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:88.38%;height:6.5%'>Implementing <span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";mso-hansi-font-family:"Courier New"'>validate(...)</span></div>
- <div v:shape="_x0000_s714756" class=O>
- <div style='position:absolute;top:27.0%;left:4.68%;width:90.82%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>IStatus validate(EObject object,
- IProgressMonitor progressMonitor) {&#13;</span></div>
- <div style='position:absolute;top:29.75%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>status = </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><b>new</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>MultiStatus(Uml2StatusConstants.PLUGIN_ID,&#13;</span></div>
- <div style='position:absolute;top:32.25%;left:4.68%;width:83.52%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>      </span>Uml2StatusConstants.UNSPECIFIED,
- String.valueOf(object), </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><b>null</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'>);&#13;</span></div>
- <div style='position:absolute;top:35.0%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>this</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'>.progressMonitor = </span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>null</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>== progressMonitor ?&#13;</span></div>
- <div style='position:absolute;top:37.75%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>      </span></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><b>new</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>NullProgressMonitor() : progressMonitor;&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:43.0%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>getProgressMonitor().beginTask(&#13;</span></div>
- <div style='position:absolute;top:45.75%;left:4.68%;width:78.83%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>     
- </span>Uml2EditPlugin.INSTANCE.getString(&quot;_UI_Validating_message&quot;,&#13;</span></div>
- <div style='position:absolute;top:48.25%;left:4.68%;width:79.96%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>      </span></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><b>new</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span style='mso-spacerun:yes'> </span>Object[]
- { getText(object)}), IProgressMonitor.UNKNOWN);&#13;</span></div>
- <div style='position:absolute;top:51.0%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:53.5%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>try</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span style='mso-spacerun:yes'> </span>{&#13;</span></div>
- <div style='position:absolute;top:56.25%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>doSwitch(object);&#13;</span></div>
- <div style='position:absolute;top:59.0%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>} </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><b>finally</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span style='mso-spacerun:yes'> </span>{&#13;</span></div>
- <div style='position:absolute;top:61.5%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>getProgressMonitor().done();&#13;</span></div>
- <div style='position:absolute;top:64.25%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:67.0%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:69.5%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>getStatus();&#13;</span></div>
- <div style='position:absolute;top:72.25%;left:4.68%;width:75.65%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0056.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0056.htm
deleted file mode 100644
index 0c1832a..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0056.htm
+++ /dev/null
@@ -1,163 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description
-content="2/10/2004: Overriding Uml2Switch#defaultCase(EObject)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="700"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>27</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s716802"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s716804" style='position:absolute;
-  left:31pt;top:144.125pt;width:478.5pt;height:179.75pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s716802" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:94.0%;height:5.5%'><span style='font-size:86%'>Overriding </span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-hansi-font-family:"Courier New";font-size:86%'>Uml2Switch#defaultCase(EObject)</span></div>
- <div v:shape="_x0000_s716804" class=O>
- <div style='position:absolute;top:27.5%;left:5.24%;width:64.6%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>Object defaultCase(EObject object) {&#13;</span></div>
- <div style='position:absolute;top:30.0%;left:5.24%;width:64.6%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:32.75%;left:5.24%;width:66.66%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>if</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(modelPackage ==
- object.eClass().eContainer()) {&#13;</span></div>
- <div style='position:absolute;top:35.5%;left:5.24%;width:64.6%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:38.0%;left:5.24%;width:77.52%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>        </span>for</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(Iterator eContents =
- object.eContents().iterator();&#13;</span></div>
- <div style='position:absolute;top:40.75%;left:5.24%;width:64.6%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>          </span>eContents.hasNext();) {&#13;</span></div>
- <div style='position:absolute;top:43.5%;left:5.24%;width:64.6%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>            </span>doSwitch((EObject)
- eContents.next());&#13;</span></div>
- <div style='position:absolute;top:46.0%;left:5.24%;width:64.6%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>}&#13;</span></div>
- <div style='position:absolute;top:48.75%;left:5.24%;width:64.6%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:51.5%;left:5.24%;width:64.6%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:54.0%;left:5.24%;width:64.6%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>getStatus();&#13;</span></div>
- <div style='position:absolute;top:56.75%;left:5.24%;width:64.6%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0057.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0057.htm
deleted file mode 100644
index fb106d7..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0057.htm
+++ /dev/null
@@ -1,164 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description
-content="2/10/2004: Overriding Uml2Switch#doSwitch(EObject)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="702"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>28</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s718850"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s718852" style='position:absolute;
-  left:29pt;top:153.125pt;width:514.75pt;height:179.75pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s718850" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:101.31%;height:6.5%'>Overriding <span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";mso-hansi-font-family:"Courier New"'>Uml2Switch#doSwitch(EObject)</span></div>
- <div v:shape="_x0000_s718852" class=O>
- <div style='position:absolute;top:29.0%;left:5.05%;width:69.66%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>Object doSwitch(EObject theEObject) {&#13;</span></div>
- <div style='position:absolute;top:31.75%;left:5.05%;width:69.66%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:34.5%;left:5.05%;width:69.66%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>if</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(!getProgressMonitor().isCanceled()) {&#13;</span></div>
- <div style='position:absolute;top:37.0%;left:5.05%;width:69.66%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>getProgressMonitor().subTask(&#13;</span></div>
- <div style='position:absolute;top:39.75%;left:5.05%;width:83.52%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>         
- </span>Uml2EditPlugin.INSTANCE.getString(&quot;_UI_Validating_message&quot;,&#13;</span></div>
- <div style='position:absolute;top:42.5%;left:5.05%;width:69.66%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>          </span></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><b>new</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span style='mso-spacerun:yes'> </span>Object[]
- { getText(theEObject)}));&#13;</span></div>
- <div style='position:absolute;top:45.0%;left:5.05%;width:69.66%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:47.75%;left:5.05%;width:69.66%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>        </span>super</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>.doSwitch(theEObject);&#13;</span></div>
- <div style='position:absolute;top:50.5%;left:5.05%;width:69.66%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:53.0%;left:5.05%;width:69.66%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:55.75%;left:5.05%;width:69.66%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>getStatus();&#13;</span></div>
- <div style='position:absolute;top:58.5%;left:5.05%;width:69.66%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0058.htm b/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0058.htm
deleted file mode 100644
index 8a74d84..0000000
--- a/uml2/docs/presentations/EclipseCon2004_TechnologyExchange_files/slide0058.htm
+++ /dev/null
@@ -1,221 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2004_TechnologyExchange.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse UML2 Project</title>
-<meta name=Description
-content="2/10/2004: Overriding Uml2Switch#caseElement(Element)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><p:slidetransition advancetime="0" flag="1"/><o:shapelayout
- v:ext="edit">
- <o:idmap v:ext="edit" data="704"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>29</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image008.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33018"/><![if !vml]><img border=0
- v:shapes="_x0000_s33018" src="master08_image002.jpg" style='position:absolute;
- top:0%;left:80.14%;width:19.85%;height:8.5%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33019"/>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:55.43%;height:2.25%'><span lang=EN-US
- style='font-size:56%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>Eclipse UML2 Project<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Technology Exchange<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2004 IBM Corporation</span></div>
- </div>
- <![endif]><p:shaperange href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s720898"
-  type="#_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s720901" style='position:absolute;
-  left:26pt;top:137pt;width:652.5pt;height:337.875pt;mso-wrap-style:none'
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s720898" class=T style='position:absolute;top:13.0%;
- left:2.62%;width:94.0%;height:5.5%'><span style='font-size:86%'>Overriding </span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-hansi-font-family:"Courier New";font-size:86%'>Uml2Switch#caseElement(Element)</span></div>
- <div v:shape="_x0000_s720901" class=O>
- <div style='position:absolute;top:26.25%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>Object caseElement(Element object) {&#13;</span></div>
- <div style='position:absolute;top:28.75%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:31.5%;left:4.68%;width:101.68%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>for</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(Iterator features =
- object.eClass().getEAllStructuralFeatures().iterator();&#13;</span></div>
- <div style='position:absolute;top:34.0%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>      </span>features.hasNext();) {&#13;</span></div>
- <div style='position:absolute;top:36.75%;left:4.68%;width:89.7%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>EStructuralFeature feature =
- (EStructuralFeature) features.next();&#13;</span></div>
- <div style='position:absolute;top:39.5%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:42.0%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>        </span>if</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(feature.isMany()) {&#13;</span></div>
- <div style='position:absolute;top:44.75%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:47.5%;left:4.68%;width:101.68%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>            </span>if</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>(EStructuralFeature.UNBOUNDED_MULTIPLICITY !=
- feature.getUpperBound()&#13;</span></div>
- <div style='position:absolute;top:50.0%;left:4.68%;width:106.55%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>              </span>&amp;&amp; ((Collection)
- object.eGet(feature)).size() &gt; feature.getUpperBound()) {&#13;</span></div>
- <div style='position:absolute;top:52.75%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>                </span>getStatus().add(&#13;</span></div>
- <div style='position:absolute;top:55.5%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>                 
- </span>Uml2ValidationStatus.createWarning(&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>                   
- </span>Uml2StatusConstants.FEATURE_UPPER_BOUND,&#13;</span></div>
- <div style='position:absolute;top:60.75%;left:4.68%;width:104.11%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>                   
- </span>Uml2EditPlugin.INSTANCE.getString(&quot;_UI_FeatureUpperBound_message&quot;,&#13;</span></div>
- <div style='position:absolute;top:63.5%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>                      </span></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>new</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'> </span>Object[] { getText(feature)}),&#13;</span></div>
- <div style='position:absolute;top:66.0%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>                    </span>object,&#13;</span></div>
- <div style='position:absolute;top:68.75%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>                    </span>feature));&#13;</span></div>
- <div style='position:absolute;top:71.5%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>            </span>}&#13;</span></div>
- <div style='position:absolute;top:74.0%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>        </span>}&#13;</span></div>
- <div style='position:absolute;top:76.75%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:79.5%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:82.0%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;position:relative;
- top:.37em;mso-text-raise:-25%'><span style='mso-spacerun:yes'> </span></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'><b>null</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>;&#13;</span></div>
- <div style='position:absolute;top:84.75%;left:4.68%;width:88.76%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;position:relative;top:.37em;mso-text-raise:-25%'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint.html
deleted file mode 100644
index b61b755..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint.html
+++ /dev/null
@@ -1,81 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link rel=File-List href="EclipseCon2005_ProjectSprint_files/filelist.xml">
-<link rel=Preview href="EclipseCon2005_ProjectSprint_files/preview.wmf">
-<link rel=Edit-Time-Data href="EclipseCon2005_ProjectSprint_files/editdata.mso">
-<title>IBM blue-and-black template with image</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Subject>IBM Presentation System</o:Subject>
-  <o:Author>Kenn Hussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>357</o:Revision>
-  <o:TotalTime>4654</o:TotalTime>
-  <o:Created>2002-08-23T15:26:08Z</o:Created>
-  <o:LastSaved>2005-03-07T13:24:03Z</o:LastSaved>
-  <o:Words>489</o:Words>
-  <o:PresentationFormat>On-screen Show</o:PresentationFormat>
-  <o:Company>IBM Rational Software</o:Company>
-  <o:Bytes>164864</o:Bytes>
-  <o:Paragraphs>115</o:Paragraphs>
-  <o:Slides>15</o:Slides>
-  <o:Notes>1</o:Notes>
-  <o:Version>10.6714</o:Version>
- </o:DocumentProperties>
- <o:OfficeDocumentSettings>
-  <o:PixelsPerInch>80</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
-</xml><![endif]-->
-<link rel=Presentation-XML href="EclipseCon2005_ProjectSprint_files/pres.xml">
-<meta name=Description content="3/7/2005: UML2 Project Sprint">
-<meta http-equiv=expires content=0>
-<![if !ppt]><script>
-<!--
-	var ver = 0, appVer = navigator.appVersion, msie = appVer.indexOf( "MSIE " )
-	var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0)
-	if( msie >= 0 )
-		ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) )
-	else
-		ver = parseInt( appVer )
-	browserSupported=0
-	if( !isMac && ver >= 4 && msie >= 0 ) {
-		browserSupported=1
-		window.location.replace( 'EclipseCon2005_ProjectSprint_files/frame.html'+document.location.hash )
-	}
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<script><!--
-
-if( browserSupported )
-	document.writeln('<div style="visibility:hidden">');
-
-//--></script><font face=Arial size=2><b>
-
-<p>This presentation contains content that your browser may not be able to show
-properly. This presentation was optimized for more recent versions of Microsoft
-Internet Explorer.</p>
-
-<p>If you would like to proceed anyway, click <a
-href="EclipseCon2005_ProjectSprint_files/frame.html">here</a>.</p>
-
-</b></font><script><!--
-
-if( browserSupported )
-	document.writeln('</div>');
-
-//--></script>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/buttons.gif b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/buttons.gif
deleted file mode 100644
index 1f2c73c..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/buttons.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/editdata.mso b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/editdata.mso
deleted file mode 100644
index 9b4a647..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/editdata.mso
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/filelist.xml b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/filelist.xml
deleted file mode 100644
index 18616ff..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/filelist.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:File HRef="master08.html"/>
- <o:File HRef="master08.xml"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="master08_image001.jpg"/>
- <o:File HRef="master08_image002.jpg"/>
- <o:File HRef="master09.html"/>
- <o:File HRef="master09.xml"/>
- <o:File HRef="master09_image003.jpg"/>
- <o:File HRef="master02.html"/>
- <o:File HRef="pres.xml"/>
- <o:File HRef="editdata.mso"/>
- <o:File HRef="slide0043.html"/>
- <o:File HRef="master09_image004.jpg"/>
- <o:File HRef="master09_image005.jpg"/>
- <o:File HRef="slide0048.html"/>
- <o:File HRef="master08_image006.jpg"/>
- <o:File HRef="master08_image007.gif"/>
- <o:File HRef="master08_image008.jpg"/>
- <o:File HRef="slide0049.html"/>
- <o:File HRef="slide0050.html"/>
- <o:File HRef="slide0051.html"/>
- <o:File HRef="slide0052.html"/>
- <o:File HRef="slide0053.html"/>
- <o:File HRef="slide0054.html"/>
- <o:File HRef="slide0055.html"/>
- <o:File HRef="slide0056.html"/>
- <o:File HRef="slide0058.html"/>
- <o:File HRef="slide0060.html"/>
- <o:File HRef="slide0059.html"/>
- <o:File HRef="slide0061.html"/>
- <o:File HRef="slide0057.html"/>
- <o:File HRef="master01.html"/>
- <o:File HRef="master08_stylesheet.css"/>
- <o:File HRef="script.js"/>
- <o:MainFile HRef="../EclipseCon2005_ProjectSprint.html"/>
- <o:File HRef="fullscreen.html"/>
- <o:File HRef="buttons.gif"/>
- <o:File HRef="frame.html"/>
- <o:File HRef="outline.html"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/frame.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/frame.html
deleted file mode 100644
index 7a6dac5..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/frame.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<title>IBM blue-and-black template with image</title>
-<![if !ppt]><script src=script.js></script><script>
-<!--
-var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
-function Load()
-{
-	str=document.location.hash,idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(str) PPTSld.location.replace(str);
-}
-//-->
-</script>
-<![endif]>
-</head>
-
-
-<frameset rows="*,25" border=0>
- <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust framespacing=1 frameborder=1>
-  <frame src=outline.html title="Outline" name=PPTOtl>
-  <frame src=slide0043.html title="Slide" name=PPTSld>
- </frameset>
- <frameset cols="25%,*" framespacing=1>
-  <frame src=outline.html title="Outline
-Navigation Bar" name=PPTOtlNav scrolling=no noresize>
-  <frame src=outline.html title="Slide
-Navigation Bar" name=PPTNav scrolling=no noresize>
- </frameset>
-</frameset>
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/fullscreen.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/fullscreen.html
deleted file mode 100644
index 920a4be..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/fullscreen.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<script src=script.js></script><script><!--
-var SCREEN_MODE   = "FullScreen";
-function Load() {
-	str=document.location.hash,idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(!str) str = "slide0043.html";
-	PPTSld.location.replace(MHTMLPrefix+str);
-}
-function Unload() {
-	if ( document.body.PPTSldFrameset != null )
-		document.body.PPTSldFrameset.frames[1].document.body.resume();
-}
-//-->
-</script>
-</head>
-
-<frameset rows="*" frameborder=0 onload="Load()" onunload="Unload()">
- <frame name=PPTSld>
-</frameset>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master01.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master01.html
deleted file mode 100644
index c7aed1f..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master01.html
+++ /dev/null
@@ -1,191 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="103"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s105473" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s105474" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105474" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta14'>‹header›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105475" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1"/></v:shapetype>
-
-<div v:shape="_x0000_s105475" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-field-code:meta0'>‹date/time›</span><span style='font-size:67%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_m105476" style='position:absolute;left:91.75pt;top:54.5pt;
- width:363.5pt;height:272.625pt;v-text-anchor:middle' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter"/>
- <v:shadow obscured="t"/>
- <v:path gradientshapeok="t" fillok="f" o:connecttype="rect"/>
- <o:lock v:ext="edit" rotation="t" text="t"/>
- <p:placeholder type="slideImage" position="2"/></v:shapetype><v:shapetype
- id="_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
- width:437.5pt;height:327.125pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="body" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_m105477">
-
-<div class=N>Click to edit Master text styles&#13;</div>
-
-<div class=N1>Second level&#13;</div>
-
-<div class=N2>Third level&#13;</div>
-
-<div class=N3>Fourth level&#13;</div>
-
-<div class=N4>Fifth level</div>
-
-</div>
-
-<v:shapetype id="_x0000_s105478" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="4" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105478" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta15'>‹footer›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105479" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="5" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105479" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span style='font-size:67%;mso-field-code:
-meta16'>‹#›</span><span style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<p:notes id="43" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="680"/>
- </o:shapelayout><v:shape id="_x0000_s696322" type="#_x0000_m105476" style='position:absolute;
-  left:91.75pt;top:54.5pt;width:363.5pt;height:272.625pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s696323"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape></p:notes>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master02.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master02.html
deleted file mode 100644
index 45269a7..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master02.html
+++ /dev/null
@@ -1,141 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="530"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s542721" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s542722" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542722" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta14'>‹header›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542723" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542723" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-field-code:meta0'>‹date/time›</span><span style='font-size:67%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542724" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="2" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542724" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span style='font-size:67%;mso-field-code:meta15'>‹footer›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542725" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542725" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span style='font-size:67%;mso-field-code:
-meta16'>‹#›</span><span style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08.html
deleted file mode 100644
index 61d9848..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08.html
+++ /dev/null
@@ -1,54 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m32774" class=T>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m32775">
-
-<div class=B>Click to edit Master text styles&#13;</div>
-
-<div class=B1>Second level&#13;</div>
-
-<div class=B2>Third level&#13;</div>
-
-<div class=B3>Fourth level&#13;</div>
-
-<div class=B4>Fifth level</div>
-
-</div>
-
-<div v:shape="_x0000_s33016" class=O style='mso-line-spacing:"100 50 0"'><span
-style='font-family:Arial;mso-hansi-font-family:Arial;font-size:56%;mso-field-code:
-meta16'><b>‹#›</b></span><span style='mso-hansi-font-family:Arial;font-size:
-56%;mso-special-format:lastCR'><b>&#13;</b></span></div>
-
-<div v:shape="_x0000_s33019" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span style='font-size:56%'>UML2 Project Sprint<span
-style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>Kenn
-Hussey<span style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
-</span>© 2005 by IBM; made available under the EPL v1.0</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08.xml b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08.xml
deleted file mode 100644
index fb7b7c6..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="32"/>
-  <o:regrouptable v:ext="edit">
-   <o:entry new="1" old="0"/>
-   <o:entry new="2" old="0"/>
-   <o:entry new="3" old="0"/>
-   <o:entry new="4" old="0"/>
-   <o:entry new="5" old="4"/>
-   <o:entry new="6" old="0"/>
-   <o:entry new="7" old="0"/>
-   <o:entry new="8" old="0"/>
-   <o:entry new="9" old="0"/>
-   <o:entry new="10" old="0"/>
-   <o:entry new="11" old="10"/>
-  </o:regrouptable>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s32769" o:bwmode="white" fillcolor="#322c72"/>
- <p:shaperange id="_x0000_m32774">
-  <v:shapetype id="_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-   width:649.25pt;height:39.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m32775">
-  <v:shapetype id="_x0000_m32775" style='position:absolute;left:87.625pt;top:139.875pt;
-   width:578.625pt;height:307.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="white [1]" stroked="f"
-   strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33014">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s33014" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master08_image001.jpg" o:title="dark4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33016">
-  <v:shapetype id="_x0000_s33016" style='position:absolute;left:12.125pt;top:508.875pt;
-   width:79.25pt;height:25.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33017">
-  <v:line id="_x0000_s33017" style='position:absolute;mso-wrap-style:none;
-   v-text-anchor:middle' from="114pt,506.875pt" to="114pt,522pt" o:bwmode="black"
-   o:userdrawn="t" strokecolor="white [1]">
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:rect id="_x0000_s33019" style='position:absolute;left:114pt;
-   top:509.875pt;width:606pt;height:19.25pt' o:bwmode="black" o:userdrawn="t"
-   filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s33021">
-  <v:shape id="_x0000_s33021" type="#_x0000_t75" style='position:absolute;
-   left:0;top:0;width:10in;height:55.375pt'>
-   <v:imagedata src="master08_image002.jpg" o:title="" cropright="21855f"/>
-  </v:shape></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image001.jpg b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image001.jpg
deleted file mode 100644
index 86c4fa8..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image001.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image002.jpg b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image002.jpg
deleted file mode 100644
index 256f2af..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image002.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image006.jpg b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image006.jpg
deleted file mode 100644
index de7c2dd..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image006.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image007.gif b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image007.gif
deleted file mode 100644
index f81d890..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image007.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image008.jpg b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image008.jpg
deleted file mode 100644
index 14fd7e6..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_image008.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_stylesheet.css b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_stylesheet.css
deleted file mode 100644
index 98baeeb..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master08_stylesheet.css
+++ /dev/null
@@ -1,470 +0,0 @@
-body
-	{width:534px;
-	height:400px;}
-.TB
-	{mso-special-format:nobullet•;}
-.T
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#CCCCFF;
-	mso-color-index:2;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.BB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.NB
-	{mso-special-format:nobullet•;}
-.N
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N1B
-	{mso-special-format:nobullet•;}
-.N1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N2B
-	{mso-special-format:nobullet•;}
-.N2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N3B
-	{mso-special-format:nobullet•;}
-.N3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N4N
-	{mso-special-format:nobullet•;}
-.N4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.OB
-	{mso-special-format:nobullet•;}
-.O
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CBB
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:95%;
-	mso-line-spacing:"100 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CTB
-	{mso-special-format:nobullet•;}
-.CT
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HBB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QBB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.TblB
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl1B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl2B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl3B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl4B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.defaultB
-	{mso-special-format:nobullet•;}
-.default
-	{text-align:left;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-weight:normal;
-	font-style:normal;
-	text-decoration:none;
-	text-shadow:none;
-	text-effect:none;
-	mso-fareast-hint:no;
-	layout-flow:horizontal;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-text-raise:-25%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:0;
-	mso-text-indent-alt:0;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;
-	direction:ltr;
-	mso-word-wrap:1;
-	mso-vertical-align-special:baseline;
-	mso-ansi-language:EN-US;}
-a:link
-	{color:silver !important;}
-a:active
-	{color:#DFFF66 !important;}
-a:visited
-	{color:#D18213 !important;}
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09.html
deleted file mode 100644
index 1057201..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09.html
+++ /dev/null
@@ -1,60 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m33800" class=CT>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m33801" class=CB>Click to edit Master subtitle style</div>
-
-<div v:shape="_x0000_s33951" class=O style='text-align:right;mso-char-wrap:
-0;mso-kinsoku-overflow:0'><span style='font-size:56%'>© 2002 IBM Corporation</span></div>
-
-<div v:shape="_x0000_s33912">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O style='mso-line-spacing:"98 20 0";mso-margin-left-alt:216'><span
-style='mso-hansi-font-family:Arial;font-size:72%'>Confidential<span
-style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
-</span>Date<span style='mso-spacerun:yes'>  </span>|<span
-style='mso-spacerun:yes'>  </span>Other Information, if necessary</span></div>
-
-</div>
-
-<div v:shape="_x0000_s33968" class=O><span style='font-size:78%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-<div v:shape="_x0000_s33969" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span style='font-size:72%'>© 2005 by IBM; made available under the EPL
-v1.0<span style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
-</span>February 28</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09.xml b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09.xml
deleted file mode 100644
index c7d7940..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09.xml
+++ /dev/null
@@ -1,115 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="33"/>
-  <o:regrouptable v:ext="edit">
-   <o:entry new="1" old="0"/>
-   <o:entry new="2" old="0"/>
-   <o:entry new="3" old="0"/>
-   <o:entry new="4" old="0"/>
-   <o:entry new="5" old="0"/>
-   <o:entry new="6" old="5"/>
-   <o:entry new="7" old="0"/>
-   <o:entry new="8" old="0"/>
-   <o:entry new="9" old="0"/>
-   <o:entry new="10" old="0"/>
-   <o:entry new="11" old="0"/>
-   <o:entry new="12" old="0"/>
-   <o:entry new="13" old="0"/>
-   <o:entry new="14" old="0"/>
-   <o:entry new="15" old="0"/>
-  </o:regrouptable>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s33793" o:bwmode="white" fillcolor="#322c72"/>
- <p:shaperange id="_x0000_s33971">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s33971" type="#_x0000_t75" style='position:absolute;
-   left:0;top:0;width:10in;height:55.375pt' o:userdrawn="t">
-   <v:imagedata src="master08_image002.jpg" o:title="" cropright="21855f"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_m33800">
-  <v:shapetype id="_x0000_m33800" style='position:absolute;left:30.75pt;top:134.375pt;
-   width:626.375pt;height:115.75pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="centerTitle"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m33801">
-  <v:shapetype id="_x0000_m33801" style='position:absolute;left:153.5pt;top:261.375pt;
-   width:7in;height:109pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="subTitle" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33951">
-  <v:rect id="_x0000_s33951" style='position:absolute;left:576.75pt;top:493.75pt;
-   width:122pt;height:31.25pt' o:bwmode="white" o:userdrawn="t" filled="f"
-   fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect><v:rect id="_x0000_s33912" style='position:absolute;left:159.375pt;
-   top:490.25pt;width:324pt;height:24.125pt;v-text-anchor:middle' o:bwmode="black"
-   o:regroupid="15" o:userdrawn="t" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox inset="1.44pt,1.44pt,1.44pt,1.44pt"/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s33966">
-  <v:shape id="_x0000_s33966" type="#_x0000_t75" style='position:absolute;
-   left:0;top:418.5pt;width:10in;height:121.5pt' o:userdrawn="t">
-   <v:imagedata src="master09_image003.jpg" o:title="dark2"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33968">
-  <v:shapetype id="_x0000_s33968" style='position:absolute;left:542pt;top:20pt;
-   width:168pt;height:37.5pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33969">
-  <v:rect id="_x0000_s33969" style='position:absolute;left:3.5pt;top:495pt;
-   width:716.5pt;height:22.875pt' o:bwmode="black" o:userdrawn="t" filled="f"
-   fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09_image003.jpg b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09_image003.jpg
deleted file mode 100644
index e8299a5..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09_image003.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09_image004.jpg b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09_image004.jpg
deleted file mode 100644
index 14fd7e6..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09_image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09_image005.jpg b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09_image005.jpg
deleted file mode 100644
index d8632d9..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/master09_image005.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/outline.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/outline.html
deleted file mode 100644
index 17378b5..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/outline.html
+++ /dev/null
@@ -1,664 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<script src=script.js></script><script><!--
-if( !(IsWin("PPTOtl")||IsWin("PPTNav")||IsWin("PPTOtlNav")) )
-{
-	obj = GetObj("Main-File")
-	parent.location.href=obj.href
-}
-var gOtlHiliteClr="#ffffff",gOtlNormalClr="#000000",gOtlActiveClr="#ffff00",gSelected="",gTxtState=false,gChildEntryTable=new Array()
-function Load()
-{
-	if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
-	if( g_supportsPPTHTML ) {
-		if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true; return }
-		if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); parent.gOtlNavLoaded=true; return }
-	}
-}
-function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
-function LoadNav( oId,UpdFunc )
-{
-	document.ondragstart=CancelDrag
-	document.onselectstart=CancelDrag
-	document.body.style.margin=2
-	UpdFunc()
-	obj=document.all.item(oId)
-	obj.style.display="block"
-	obj.style.visibility="visible"
-	document.bgColor="threedface"
-	if( parent.frames["PPTNts"] )
-		notesBtn.style.display = ""
-	if( parent.gHasNarration )
-		nb_voiceBorder.style.display = ""
-}
-function LoadOtl()
-{
-	var otl=GetObj("OtlObj")
-	otl.style.display="block"
-	otl.style.visibility="visible"
-	if( gOtlActiveClr == "" ) gOtlActiveClr=document.linkColor
-	if( gOtlHiliteClr == "" ) gOtlHiliteClr=document.fgColor
-	if( gOtlNormalClr == "" )
-		gOtlNormalClr=document.bgColor
-	else
-		document.bgColor=gOtlNormalClr
-	InitArray()
-	if( ObjExists( parent.gCurSld ) ) {
-		ChangeState( parent.gCurSld,gOtlNormalClr,gOtlHiliteClr )
-		gSelected=parent.gCurSld
-	}
-	else gSelected = -1
-	UpdOtl()
-}
-function UpdOtl(){ UpdIdx(parent.gCurSld) }
-function UpdIdx( idx )
-{
-	if( gSelected != idx ) {
-		if( gSelected > 0 )
-			ChangeState( gSelected,gOtlHiliteClr,gOtlNormalClr )
-		if( ObjExists( idx ) ) {
-			gSelected = idx
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-		}
-		else gSelected = -1
-	}
-	if( gTxtState != parent.gOtlTxtExp ) {
-		state = "block"
-		if( !parent.gOtlTxtExp )
-			state="none"
-		for(ii=0; ii<gChildEntryTable.length; ii++) {
-			obj=gChildEntryTable[ii];
-			if( obj.id == null ) continue;
-			if( obj.id.indexOf("PPTC") >= 0 )
-				obj.style.display=state;
-		}
-		gTxtState=parent.gOtlTxtExp
-		if( ObjExists( gSelected ) )
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-	}
-}
-function InitArray()
-{
-	count=0
-	var list=GetTags(document,"DIV");
-	for(ii=0; ii<list.length; ii++) {
-		obj=list.item(ii)
-		if( obj.id == null ) continue
-		if( obj.id.indexOf("PPTC") >= 0 )
-			gChildEntryTable[count++]=obj
-	}
-}
-function ChangeState( idx,fgColor,bgColor )
-{
-	obj=GetObj("PPTL"+idx)
-	obj.style.color=fgColor
-	obj=GetObj("PPTP"+idx)
-	obj.style.backgroundColor=bgColor
-}
-function ChgClr( o,clr ){ if( o.id != "PPTL"+gSelected ) o.style.color=clr }
-function Over( src ){ ChgClr(GetLink(src),gOtlActiveClr) }
-function Out( src ){ ChgClr(GetLink(src),gOtlHiliteClr) }
-function Follow(src){ window.location.href = GetLink(src).href; }
-function ObjExists( ii ) { obj=GetObj("PPTP"+ii ); return( obj ) }
-function GoToSld( href ){ UpdIdx(parent.GetSldNum(href)); parent.GoToSld( href ) }
-function CancelDrag(){ window.event.cancelBubble=true;window.event.returnValue=false}
-function GetLink(src)
-{
-   if(src.tagName=="A") return src
-   else return GetTags(src,"A").item(0)
-}
-function UpdNav()
-{
-	txt = "<center>";
-	if( parent.GetHrefObj( parent.gCurSld ).mOrigVis == 1 )
-		txt += "Slide " + parent.GetCurSldNum() + " of " + parent.GetNumSlds()
-	else
-		txt += "Hidden Slide"
-	txt += "</center>";
-	nav_text.innerHTML = txt;
-	if( !parent.HasPrevSld() )
-		gBtnArr["nb_prev"].Enabled(0)
-	else
-		gBtnArr["nb_prev"].Enabled(1)
-	if( !parent.HasNextSld() )
-		gBtnArr["nb_next"].Enabled(0)
-	else
-		gBtnArr["nb_next"].Enabled(1)
-	gBtnArr["nb_nts"].SetEnabled()
-	gBtnArr["nb_nts"].SetFlag( parent.gHasNts )
-	gBtnArr["nb_sldshw"].Enabled(1)
-	gBtnArr["nb_voice"].Enabled(1)
-}
-function UpdOtlNav()
-{
-	gBtnArr["nb_otl"].SetEnabled();
-	if( parent.gOtlOpen )
-		gBtnArr["nb_otlTxt"].Enabled( true );
-	else
-		document.all.item("nb_otlTxtBorder").style.visibility = "hidden";
-}
-
-//--></script>
-<style>
-<!--.PTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;
-	padding-left:2px;
-	font-weight:bold;}
-.CTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;}
-a
-	{color:white;
-	text-decoration:none;}
-ul
-	{color:white;
-	margin-bottom:0px;
-	margin-left:20px;}
-.sldNum
-	{margin-top:5px;
-	color:white;}
-.button
-	{position:absolute;
-	width:32px;
-	height:20px;
-	border-style:solid;
-	border-width:1px;
-	border-color:threedface;}
--->
-</style>
-</head>
-
-<body onload="Load()" style='margin:2px'>
-
-<div id=NavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-<table id="notesBtn" style='position:absolute;display:none;width:70px' align=left cellpadding=0
- cellspacing=0>
- <td nowrap>
- <div id="nb_ntsElem" align=center style='position:relative;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt'><img src="notes_flag.gif"
- border=0 id="notes_flag" style='display:none'><span
-style='mso-spacerun:yes'>  </span>Notes</div>
- <div title="Show/Hide Notes" id="nb_nts" style='position:absolute;top:0%;
- left:0%;width:100%;height:100%'></div>
- </td>
-</table>
-
-<table style='position:relative;width:70px' align=right cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_sldshwText" title="Full
-Screen Slide Show" align=center style='position:relative;margin-left:20px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt;cursor:default'>Slide
-Show</div>
- <div id="nb_sldshwBorder" title="Full Screen Slide Show" style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_sldshw" style='position:relative;left:-254px'></div>
- </div>
- </td>
- <td>
- <div id="nb_voiceBorder" style='display:none;position:absolute;top:0;left:-40px;
- width:20px;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_voice" title="Pause/Play Narration" style='position:
- relative;left:-290px'></div>
- </div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_prevBorder" class=button style='left:-30px'>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_prev" title="Previous Slide" style='position:relative;
- left:0px'></div>
- </div>
- <span id="nav_text" style='position:relative;top:3px;width:100px;font-family:
- Arial;color:buttontext;font-size:9pt'></span>
- <div id="nb_nextBorder" class=button>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_next" title="Next Slide" style='position:relative;
- left:-90px'></div>
- </div>
- </td>
-</table>
-</div>
-
-<div id=OtlNavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-
-<table style='position:relative;width:70px' align=left cellpadding=0 cellspacing=0>
- <td nowrap><div title="Show/Hide
-Outline" id="nb_otl"
- style='position:absolute;top:0%;left:0%;width:100%;height:100%;cursor:default'>
- <div id="nb_otlElem" align=center style='position:relative;padding:3px;font-family:Arial;
- color:buttontext;font-size:9pt'>Outline</div></div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td>
- <div style='position:absolute;left:-18px;width:24px;height:20px;border-style:
- solid;border-width:1px;border-color:threedface' id="nb_otlTxtBorder">
- <div style='position:absolute;clip:rect(0px, 22px, 18px, 0px)'><img
- src=buttons.gif id="nb_otlTxt" title="Expand/Collapse Outline"
- style='position:relative;left:-157px'></div>
- </div>
- </td>
-</table>
-
-</div>
-
-<div id=OtlObj style='display:none;visibility:hidden;'>
-
-
-<table width="100%" style='font-family:Arial;font-size:9pt'>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>1</font></div>
-  </td>
-  <td width="100%">
-  <div id=PPTP1 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0043.html');" id=PPTL1>UML2 Project Sprint</a></font></div>
-  <div id=PPTC1 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Kenn Hussey</li>
-   <li>UML2 Project Lead</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>2</font></div>
-  </td>
-  <td>
-  <div id=PPTP2 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0048.html');" id=PPTL2>Contents</a></font></div>
-  <div id=PPTC2 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Overview</li>
-   <li>Goals</li>
-   <li>Challenges</li>
-   <li>Status</li>
-   <li>Milestones</li>
-   <li>Development Plans</li>
-   <li>How Can You Help?</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>3</font></div>
-  </td>
-  <td>
-  <div id=PPTP3 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0049.html');" id=PPTL3>Overview</a></font></div>
-  <div id=PPTC3 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>An Eclipse Modeling Development Tools subcomponent at http://www.eclipse.org/modeling/mdt/?project=uml2#uml2</li>
-   <br>
-   <br>
-   <li>An EMF-based implementation of the UML™ 2.0 metamodel for the Eclipse
-       platform</li>
-   <br>
-   <br>
-   <li>Project lead is Kenn Hussey (khussey@ca.ibm.com)</li>
-   <br>
-   <br>
-   <li>Users include IBM (Rational Software Architect) and Omondo (EclipseUML2)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>4</font></div>
-  </td>
-  <td>
-  <div id=PPTP4 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0050.html');" id=PPTL4>Goals</a></font></div>
-  <div id=PPTC4 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Provide a useable implementation of the metamodel to support the
-       development of modeling tools</li>
-   <br>
-   <br>
-   <li>Provide a common XMI schema to facilitate interchange of semantic models</li>
-   <br>
-   <br>
-   <li>Provide test cases as a means of validating the specification and
-       implementation</li>
-   <br>
-   <br>
-   <li>Provide validation rules as a means of defining and enforcing levels of
-       compliance</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>5</font></div>
-  </td>
-  <td>
-  <div id=PPTP5 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0051.html');" id=PPTL5>Challenges</a></font></div>
-  <div id=PPTC5 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Since the specification isnÂ’t finalized, the API is a moving target</li>
-   <br>
-   <br>
-   <li>Aspects of the standard metamodel (redefinition, subsets/supersets) make
-       the mapping to Java and XMI difficult</li>
-   <br>
-   <br>
-   <li>There are a number of errors in the specification which, until fixed,
-       make the API and XMI schema difficult to use</li>
-   <br>
-   <br>
-   <li>Compliance points for UML™ 2.0 are a subject of much debate within the
-       modeling community</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>6</font></div>
-  </td>
-  <td>
-  <div id=PPTP6 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0052.html');" id=PPTL6>Status – Metamodel</a></font></div>
-  <div id=PPTC6 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>EMF-generated API based on a collapsed version of the metamodel in which
-       package merges and a majority of the redefinitions have been factored
-       out</li>
-   <br>
-   <br>
-   <li>Includes mechanisms to support derived union, redefines, and subsets
-       constraints</li>
-   <br>
-   <br>
-   <li>Generated using a customized Ecore “builder” and JET templates</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>7</font></div>
-  </td>
-  <td>
-  <div id=PPTP7 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0053.html');" id=PPTL7>Status – Interchange</a></font></div>
-  <div id=PPTC7 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Default XMI schema generated using EMF</li>
-   <br>
-   <br>
-   <li>Defines one namespace (http://www.eclipse.org/uml2/1.0.0/UML) for all
-       elements, thus supporting interchange</li>
-   <br>
-   <br>
-   <li>Elements identified using Universally Unique Identifiers (UUIDs)</li>
-   <br>
-   <br>
-   <li>Will support import/export from/to OMG XMI for UML™ 2.0 once the
-       specification is finalized</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>8</font></div>
-  </td>
-  <td>
-  <div id=PPTP8 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0054.html');" id=PPTL8>Status – Specification</a></font></div>
-  <div id=PPTC8 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML™ 2.0 Superstructure FTF has delivered final draft and report to OMG</li>
-   <br>
-   <br>
-   <li>Errors discovered while using the API and/or XMI schema are now being
-       fixed and submitted as issues to the UML™ 2.0 Superstructure and
-       Infrastructure Revision Task Force (RTF)</li>
-   <br>
-   <br>
-   <li>UML™ 2.0 Superstructure and Infrastructure RTF already has a number of
-       open issues, available at http://www.omg.org/issues/uml2-rtf.open.html</li>
-   <br>
-   <br>
-   <li>Finalization date for UML™ 2.0 Specification is TBD (soon!)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>9</font></div>
-  </td>
-  <td>
-  <div id=PPTP9 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0055.html');" id=PPTL9>Status – Compliance</a></font></div>
-  <div id=PPTC9 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Validation rules evaluated using EMF validator mechanism</li>
-   <br>
-   <br>
-   <li>Validators implemented based on sets of OCL constraints</li>
-   <br>
-   <br>
-   <li>Correspond to compliance levels</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>10</font></div>
-  </td>
-  <td>
-  <div id=PPTP10 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0056.html');" id=PPTL10>Milestones</a></font></div>
-  <div id=PPTC10 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Maintenance release 1.0.2 to coincide with Eclipse 3.0.2 and EMF 2.0.2</li>
-   <br>
-   <br>
-   <li>Release 1.1 to coincide with Eclipse 3.1 and EMF 2.1</li>
-   <br>
-   <br>
-   <li>Release 2.0 to coincide with Eclipse 3.2 and EMF 2.x</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>11</font></div>
-  </td>
-  <td>
-  <div id=PPTP11 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0058.html');" id=PPTL11>Development Plans –
-  1.1</a></font></div>
-  <div id=PPTC11 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Theme: Release Currency</li>
-   <ul>
-    <li>Eclipse 3.1 / EMF 2.1 Compatibility</li>
-   </ul>
-   <br>
-   <li>Theme: Built To Last</li>
-   <ul>
-    <li>Migration Framework</li>
-    <li>Resource Localization</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>12</font></div>
-  </td>
-  <td>
-  <div id=PPTP12 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0060.html');" id=PPTL12>Development Plans –
-  1.1 (Continued)</a></font></div>
-  <div id=PPTC12 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Theme: Simple To Use</li>
-   <ul>
-    <li>Update Site Support</li>
-    <li>Instance Creation Support</li>
-    <li>More Examples</li>
-    <li>EMF Generator Extensions</li>
-    <li>Improved Documentation</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>13</font></div>
-  </td>
-  <td>
-  <div id=PPTP13 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0059.html');" id=PPTL13>Development Plans –
-  2.0</a></font></div>
-  <div id=PPTC13 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Theme: Release Currency</li>
-   <ul>
-    <li>Eclipse 3.2 / EMF 2.x Compatibility</li>
-   </ul>
-   <br>
-   <li>Theme: Completeness</li>
-   <ul>
-    <li>UML™ 2.0 Conformance</li>
-    <li>UML™ 2.0 Interchange</li>
-    <li>Validation Rules</li>
-    <li>Unit Tests</li>
-   </ul>
-   <br>
-   <li>Theme: Built To Last</li>
-   <ul>
-    <li>Reduced Memory Footprint</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>14</font></div>
-  </td>
-  <td>
-  <div id=PPTP14 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0061.html');" id=PPTL14>Development Plans –
-  2.0 (Continued)</a></font></div>
-  <div id=PPTC14 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Theme: Simple To Use</li>
-   <ul>
-    <li>Resource Fragments</li>
-    <li>Derived Features</li>
-    <li>Javadoc</li>
-    <li>Improved Convenience Methods</li>
-    <li>Enhanced Icons</li>
-   </ul>
-   <br>
-   <li>Theme: Broadening The Community</li>
-   <ul>
-    <li>Tools</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>15</font></div>
-  </td>
-  <td>
-  <div id=PPTP15 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0057.html');" id=PPTL15>How Can You Help?</a></font></div>
-  <div id=PPTC15 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Develop tools based on UML2</li>
-   <br>
-   <br>
-   <li>Report bugs</li>
-   <br>
-   <br>
-   <li>Participate in newsgroup discussions</li>
-   <br>
-   <br>
-   <li>Write articles</li>
-   <br>
-   <br>
-   <li>Become a UML2 contributor!</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
-</table>
-
-
-
-</div>
-
-<div style='display:none'><a href=master08.html></a><a href=master08.xml></a><a
-href=preview.wmf></a><a href="master08_image001.jpg"></a><a
-href="master08_image002.jpg"></a><a href=master09.html></a><a
-href=master09.xml></a><a href="master09_image003.jpg"></a><a
-href=master02.html></a><a href=pres.xml></a><a href=editdata.mso></a><a
-href=slide0043.html></a><a href="master09_image004.jpg"></a><a
-href="master09_image005.jpg"></a><a href=slide0048.html></a><a
-href="master08_image006.jpg"></a><a href="master08_image007.gif"></a><a
-href="master08_image008.jpg"></a><a href=slide0049.html></a><a
-href=slide0050.html></a><a href=slide0051.html></a><a href=slide0052.html></a><a
-href=slide0053.html></a><a href=slide0054.html></a><a href=slide0055.html></a><a
-href=slide0056.html></a><a href=slide0058.html></a><a href=slide0060.html></a><a
-href=slide0059.html></a><a href=slide0061.html></a><a href=slide0057.html></a><a
-href=master01.html></a><a href="master08_stylesheet.css"></a><a href=script.js></a><a
-href="../EclipseCon2005_ProjectSprint.html"></a><a href=fullscreen.html></a><a
-href=buttons.gif></a><a href=frame.html></a><a href=outline.html></a></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/pres.xml b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/pres.xml
deleted file mode 100644
index a9f36e1..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/pres.xml
+++ /dev/null
@@ -1,78 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <p:presentation sizeof="screen" notessizex="4376" notessizey="5816"
-  gridspacingx="49152" gridspacingy="49152" advisor="34">
-  <p:master id="8" slidesn="1C24AB8,8B769EC0" type="main" href="master08.html"
-   xmlhref="master08.xml" template="1_Default Design" layout="title_body"
-   slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-    <p:colorscheme
-     colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
-   </p:schemes>
-  </p:master>
-  <p:master id="9" slidesn="1C24D0E,1F75CD10" type="title" href="master09.html"
-   xmlhref="master09.xml" layout="title_subtitle"
-   slots="centerTitle,subTitle,dateTime,footer,slideNumber"/>
-  <p:master id="1" slidesn="1C24D43,1A7CCF90" type="notes" href="master01.html"
-   layout="notes" slots="header,dateTime,slideImage,body,footer,slideNumber"/>
-  <p:master id="2" slidesn="1C2506F,D2141A80" type="handout"
-   href="master02.html" layout="handout"
-   slots="header,dateTime,footer,slideNumber"/>
-  <p:slide id="43" slidesn="1C51834,B423D3A0" href="slide0043.html"
-   masterhref="master09.html" layout="title_subtitle"
-   slots="centerTitle,subTitle"/>
-  <p:slide id="48" slidesn="1C51836,DE5266D0" href="slide0048.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="49" slidesn="0,0" href="slide0049.html" layout="title_body"
-   slots="title,body"/>
-  <p:slide id="50" slidesn="0,0" href="slide0050.html" layout="title_body"
-   slots="title,body"/>
-  <p:slide id="51" slidesn="0,0" href="slide0051.html" layout="title_body"
-   slots="title,body"/>
-  <p:slide id="52" slidesn="0,0" href="slide0052.html" layout="title_body"
-   slots="title,body"/>
-  <p:slide id="53" slidesn="0,0" href="slide0053.html" layout="title_body"
-   slots="title,body"/>
-  <p:slide id="54" slidesn="0,0" href="slide0054.html" layout="title_body"
-   slots="title,body"/>
-  <p:slide id="55" slidesn="0,0" href="slide0055.html" layout="title_body"
-   slots="title,body"/>
-  <p:slide id="56" slidesn="0,0" href="slide0056.html" layout="title_body"
-   slots="title,body"/>
-  <p:slide id="58" slidesn="0,0" href="slide0058.html" layout="title_body"
-   slots="title,body"/>
-  <p:slide id="60" slidesn="0,0" href="slide0060.html" layout="title_body"
-   slots="title,body"/>
-  <p:slide id="59" slidesn="0,0" href="slide0059.html" layout="title_body"
-   slots="title,body"/>
-  <p:slide id="61" slidesn="0,0" href="slide0061.html" layout="title_body"
-   slots="title,body"/>
-  <p:slide id="57" slidesn="0,0" href="slide0057.html" layout="title_body"
-   slots="title,body"/>
-  <p:viewstate type="slideView" slidehref="slide0059.html" scale="66"
-   nosnaptogrid="t" snaptoshape="t" sorterscale="100" restoredleft="158"
-   restoredtop="946" manualadjustleft="t" manualadjusttop="t"
-   hideoutlineicons="t"/>
-  <p:guide type="horizontal" position="1070"/>
-  <p:guide type="horizontal" position="3247"/>
-  <p:guide type="horizontal" position="2150"/>
-  <p:guide type="horizontal" position="4079"/>
-  <p:guide type="vertical" position="2880"/>
-  <p:guide type="vertical" position="1176"/>
-  <p:guide type="vertical" position="913"/>
-  <p:tag name="___PPT2001" type="binary" datasize="68" dataoffset="0"/>
-  <p:tag name="___PPTMac11" type="binary" datasize="2298" dataoffset="1"/>
-  <p:font name="Arial" charset="0" type="4"/>
-  <p:font name="Wingdings" charset="2" type="6" family="2"/>
-  <p:font name="Times" charset="0" type="10" family="18"/>
-  <p:headersfooters slidenumber="t" formatid="0" noheader="t" nodate="t"/>
-  <p:headersfooters notes="t" slidenumber="t"/>
-  <p:pptdocumentsettings framecolors="WhiteTextOnBlack" hideslideanimation="t"
-   browsersupport="v4"/>
- </p:presentation>
- <o:shapedefaults v:ext="edit" spidmax="715778">
-  <o:colormru v:ext="edit" colors="#322c72,#2f2672,#302775,#322777,#312672,#2c2674,#2d2672,#302573"/>
-  <o:colormenu v:ext="edit" fillcolor="none" strokecolor="none [0]"/>
- </o:shapedefaults></xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/preview.wmf b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/preview.wmf
deleted file mode 100644
index ce5f917..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/script.js b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/script.js
deleted file mode 100644
index 9669062..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/script.js
+++ /dev/null
@@ -1,833 +0,0 @@
-function LoadSld()

-{

-	var sld=GetObj("SlideObj")

-	if( !g_supportsPPTHTML ) {

-		sld.style.visibility="visible"

-		return

-	}

-	if( MakeNotesVis() ) return

-	runAnimations = _InitAnimations();

-	if( IsWin("PPTSld") )

-		parent.SldUpdated(GetSldId())

-	g_origSz=parseInt(SlideObj.style.fontSize)

-	g_origH=sld.style.posHeight

-	g_origW=sld.style.posWidth

-	g_scaleHyperlinks=(document.all.tags("AREA").length>0)

-	if( g_scaleHyperlinks )

-		InitHLinkArray()

-	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )

-		document.body.scroll="no"

-	_RSW()

-	if( IsWin("PPTSld") && parent.IsFullScrMode() )

-		FullScrInit();

-	

-	MakeSldVis();

-	ChkAutoAdv()

-

-	if( runAnimations )

-	{

-		if( document.all("NSPlay") )

-			document.all("NSPlay").autoStart = false;

-		if( sld.filters && sld.filters.revealtrans )

-			setTimeout( "document.body.start()", sld.filters.revealtrans.duration * 1000 );

-		else

-			document.body.start();

-	}

-}

-function MakeSldVis()

-{

-	var fTrans=g_showAnimation && SldHasTrans()

-	if( fTrans )

-	{

-		if( g_bgSound ) {

-			idx=g_bgSound.indexOf(",");

-			pptSound.src=g_bgSound.substr( 0, idx );

-			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));

-		}

-		SlideObj.filters.revealtrans.Apply()

-    }

-	SlideObj.style.visibility="visible"

-	if( fTrans )

-		SlideObj.filters.revealtrans.Play()

-}

-function MakeNotesVis()

-{

-	if( !IsNts() ) return false

-	SlideObj.style.display="none"

-	nObj = document.all.item("NotesObj")

-	parent.SetHasNts(0)

-	if( nObj ) {

-		nObj.style.display=""

-		parent.SetHasNts(1)

-	}

-	return 1

-}

-function ChkAutoAdv()

-{

-	if(SldHasTrans())

-		SlideObj.onfilterchange=AutoAdv

-	else

-		AutoAdv()

-}

-function AutoAdv()

-{

-	if(!IsWin("PPTSld") || !gUseSldTimings )return

-	var sld=GetCurSld()

-	if( (sld.mAdvDelay>0) && !parent.IsFramesMode() )

-		setTimeout("parent.GoToNextSld()",sld.mAdvDelay)

-}

-function GetObj(id)

-{

-	if(g_supportsPPTHTML) return document.all(id);

-	else return document.getElementById(id);

-}

-function SldHasTrans() { return SlideObj.style.getAttribute("filter")!="" }

-function GetSldId() { return sId=location.href.substring(location.href.lastIndexOf('/')+1) }

-function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }

-function IsWin( name ) { return window.name == name }

-function IsNts() { return IsWin("PPTNts") }

-function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }

-function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }

-function SupportsPPTHTML()

-{

-	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0

-	if( msie >= 0 )

-		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )

-	else

-		ver=parseInt(appVer)

-	return( ver >= 4 && msie >= 0 )

-}

-function _RSW()

-{

-	if( !g_supportsPPTHTML || IsNts() ||

-	  ( !g_scaleInFrame && (!IsWin("PPTSld") || !parent.IsFullScrMode()) ) )

-		return

-        var padding=0;

-        if( IsWin("PPTSld") && parent.IsFramesMode() ) padding=6

-	cltWidth=document.body.clientWidth-padding

-	cltHeight=document.body.clientHeight-padding

-	factor=(1.0*cltWidth)/g_origW

-	if( cltHeight < g_origH*factor )

-		factor=(1.0*cltHeight)/g_origH

-	newSize = g_origSz * factor

-	if( newSize < 1 ) newSize=1

-	s=SlideObj.style

-	s.fontSize=newSize+"px"

-	s.posWidth=g_origW*factor

-	s.posHeight=g_origH*factor

-	s.posLeft=(cltWidth-s.posWidth+padding)/2

-	s.posTop=(cltHeight-s.posHeight+padding)/2

-	if( g_scaleHyperlinks )

-		ScaleHyperlinks( factor )

-}

-function _InitAnimations()

-{

-	animRuntimeInstalled = ''+document.body.localTime != 'undefined';

-	isFullScreen = (window.name == "PPTSld") && !parent.IsFramesMode();

-	g_animUseRuntime = g_showAnimation && animRuntimeInstalled && !(isFullScreen && parent.IsSldVisited());

-	if( g_animUseRuntime ) {

-		collSeq = document.all.tags("seq");

-		if( collSeq != null ) {

-			for(ii=0;ii<collSeq.length;ii++) {

-				if( collSeq[ii].getAttribute( "p:nodeType" ) == "mainSeq" ) {

-					g_animMainSequence = collSeq[ii];

-					break;

-				}

-			}

-		}

-		if( g_animItemsToHide ) {

-			for(jj = 0; jj < g_animItemsToHide.length; jj++) {

-				if( hideObj = GetObj(g_animItemsToHide[jj]) )

-					hideObj.runtimeStyle.visibility="hidden";

-			}

-		}

-		if( g_animInteractiveItems ){

-			for(jj = 0; jj < g_animInteractiveItems.length; jj++) {

-				if( triggerObj = GetObj(g_animInteractiveItems[jj]) )

-					triggerObj.runtimeStyle.cursor="hand";

-			}

-		}

-		if( gUseSldTimings && ''+g_animSlideTime != 'undefined' ) {

-			adjustedTime = document.body.calculateAutoAdvanceTimes( g_animSlideTime, g_animEffectTimings );

-			if( IsWin("PPTSld") && adjustedTime != g_animSlideTime ) {

-			   var sld = GetCurSld();

-			   sld.mAdvDelay = adjustedTime * 1000;

-			}

-		}

-	}

-	return g_animUseRuntime;

-}

-gSldJump = 0, gSldJumpTrack = 0, gSldJumpIdx = "";

-function _KPH()

-{

-	if( IsNts() ) return;

-	if( !parent.IsFramesMode() && event.keyCode == 27 && !HideMenu() )

-		parent.window.close( self );

-	else if( event.keyCode == 32 ) {

-		if( window.name == "PPTSld" )

-			parent.PPTSld.DocumentOnClick();

-		else

-			parent.GoToNextSld();

-	}

-	CatchNumKeys( parent, event );

-}

-function CatchNumKeys( win, event ) {

-	if( win.IsFullScrMode() && (48<=event.keyCode) && (event.keyCode<=57) ) {

-		gSldJump = 1;

-		gSldJumpIdx += (event.keyCode-48).toString();

-	}

-	if( win.IsFullScrMode() && gSldJump && event.keyCode == 13 ) {

-		var numSlds = parent.GetSldList().mList.length

-		if ( gSldJumpIdx > numSlds )

-			gSldJumpIdx = numSlds;

-		if ( gSldJumpIdx >= 0 ) {

-			if ( gSldJumpIdx == 0 )

-				gSldJumpIdx = 1;

-			var jumpTo = parseInt(gSldJumpIdx);

-			gSldJump = 0; gSldJumpIdx = "";

-			win.GoToSld( parent.GetSldList().mList[jumpTo-1].mSldHref )

-		}

-	}

-}

-function _KDH()

-{

-	if( event.keyCode == 8 ) {

-		event.returnValue = 0;

-		parent.GoToPrevSld();

-	}

-}

-function DocumentOnClick()

-{

-	if( IsNts() || parent.HideMenu() ) return;

-	if( ( g_allowAdvOnClick && !parent.IsFramesMode() ) ||

-	    (event && (event.keyCode==32) ) )

-		parent.GoToNextSld();

-}

-

-var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = 1, gId="", g_bgSound="",

-    g_scaleHyperlinks = false, g_allowAdvOnClick = 1, g_showInBrowser = 0, gLoopCont = 0, gUseSldTimings = 1;

-var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && ( (window.name=="PPTSld" && !parent.IsFramesMode()) || g_showInBrowser );var g_animManager = null;

-var g_animUseRuntime = false;

-var g_animItemsToHide, g_animInteractiveItems, g_animSlideTime;

-var g_animMainSequence = null;

-var ENDSHOW_MESG="End of slide show, click to exit.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=15, SCRIPT_HREF="script.js", FULLSCR_HREF="fullscreen.html";

-var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = 0, gHasNarration = 0, gOtlOpen = true

-window.gPPTHTML=SupportsPPTHTML()

-var gMainDoc=new Array(new hrefList("slide0043.html",1,-1,1),new hrefList("slide0048.html",1,-1,1),new hrefList("slide0049.html",1,-1,1),new hrefList("slide0050.html",1,-1,1),new hrefList("slide0051.html",1,-1,1),new hrefList("slide0052.html",1,-1,1),new hrefList("slide0053.html",1,-1,1),new hrefList("slide0054.html",1,-1,1),new hrefList("slide0055.html",1,-1,1),new hrefList("slide0056.html",1,-1,1),new hrefList("slide0058.html",1,-1,1),new hrefList("slide0060.html",1,-1,1),new hrefList("slide0059.html",1,-1,1),new hrefList("slide0061.html",1,-1,1),new hrefList("slide0057.html",1,-1,1));

-function FullScrInit()

-{

-	g_allowAdvOnClick = GetCurSld().mAdvOnClk

-	document.body.style.backgroundColor="black"

-	document.oncontextmenu=parent._CM;

-	document.onkeydown = _KDH;

-	document.ondragstart=Cancel

-	document.onselectstart=Cancel

-	self.focus()

-}

-function Redirect( frmId )

-{

-	var str=document.location.hash,idx=str.indexOf('#'), sId=GetSldId()

-	if(idx>=0) str=str.substr(1);

-	if( window.name != frmId && ( sId != str) ) {

-		obj = GetObj("Main-File")

-		window.location.href=obj.href+"#"+sId

-		return 1

-	}

-	return 0

-}

-var MHTMLPrefix = CalculateMHTMLPrefix();

-function CalculateMHTMLPrefix()

-{

-	if ( document.location.protocol == 'mhtml:') {

-		href=new String(document.location.href)

-		Start=href.indexOf('!')+1

-		End=href.lastIndexOf('/')+1

-		if (End < Start)

-			return href.substring(0, Start)

-		else

-		return href.substring(0, End)

-	}

-	return '';

-}

-function GetTags(base,tag)

-{

-	if(g_supportsPPTHTML) return base.all.tags(tag);

-	else return base.getElementsByTagName(tag);

-}

-function UpdNtsPane(){ if(frames["PPTNts"]) PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }

-function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }

-function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }

-function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }

-function SetHasNts( fVal )

-{

-	if( gHasNts != fVal ) {

-		gHasNts=fVal

-		UpdNavPane()

-	}

-}

-function ToggleOtlText()

-{

-	gOtlTxtExp=!gOtlTxtExp

-	UpdOtlPane()

-}

-function ToggleOtlPane()

-{

-	frmset=document.all("PPTHorizAdjust")

-	frm=document.all("PPTOtl")

-	if( gOtlOpen )

-		frmset.cols="*,100%"

-	else

-		frmset.cols="25%,*"

-	gOtlOpen=!gOtlOpen

-	frm.noResize=!frm.noResize

-	UpdOtNavPane()

-}

-function ToggleNtsPane()

-{

-	frmset=document.all("PPTVertAdjust")

-	frm=document.all("PPTNts")

-	if( gNtsOpen )

-		frmset.rows="100%,*"

-	else

-		frmset.rows="*,20%"

-	gNtsOpen=!gNtsOpen

-	UpdNtsPane()

-}

-function ClearMedia()

-{

-	if (PPTSld.pptSound) PPTSld.pptSound.loop = 0;

-}

-function FullScreen()

-{

-	if ( PPTSld.g_animUseRuntime )

-		PPTSld.document.body.pause();

-	ClearMedia();

-	var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;

-	if(PPTNav.event.ctrlKey) {

-		var w = (window.screen.availWidth * 1.0) / 2.0

-		var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW

-		win = window.open( MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w + ",height=" + h );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-	else

-	{

-		win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-}

-function ToggleVNarration()

-{

-	rObj=PPTSld.document.all("NSPlay")

-	if( rObj && !PPTSld.g_animUseRuntime ) {

-		if( (rObj.playState == 1)||(rObj.playState == 0) )

-			rObj.Play()

-		else if( rObj.playState == 2 )

-			rObj.Pause()

-		else

-			return;

-	}

-	else if( PPTSld.g_animUseRuntime )

-	{

-		narObj = PPTSld.document.all("narrationID")

-		if( narObj )

-			narObj.togglePause()

-	}

-}

-function GetCurSldNum()

-{

-	obj=GetHrefObj(gCurSld)

-	if( obj.mOrigVis == 1 )

-		return obj.mSldIdx

-	else

-		return gCurSld

-}

-function GetNumSlds()

-{

-	if( GetHrefObj(gCurSld).mOrigVis == 1 )

-		return GetSldList().mNumVisSlds;

-	else

-		return GetSldList().mList.length

-}

-function GetSldNum( href )

-{

-	for(ii=0; ii<GetSldList().mList.length; ii++) {

-		if ( GetSldList().mList[ii].mSldHref == href )

-			return ii+1

-	}

-	return 1

-}

-function GetHrefObj( sldIdx ){ return GetSldList().mList[sldIdx-1] }

-function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }

-function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }

-function GoToNextSld()

-{

-	ii=gCurSld + 1

-	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {

-		if( ii<=GetSldList().mList.length ) {

-			obj=GetHrefObj(ii)

-			obj.mVis=1

-			GoToSldNum(ii)

-			return

-		}

-	}

-	else {

-		obj=GetHrefObj( ii )

-		while ( obj && ( obj.mOrigVis == 0 ) )

-			obj=GetHrefObj(++ii)

-		if( obj && obj.mOrigVis ) {

-			GoToSldNum(ii)

-			return

-		}

-	}

-	if( gSldStack.length > 1 )

-		PopSldList();

-	else if( !IsFramesMode() ) {

-                if( gLoopCont )

-			GoToFirst()

-                else

-			EndShow()

-	}

-}

-function GoToPrevSld()

-{

-	ii=gCurSld-1

-	if( ii > 0 ) {

-		obj=GetHrefObj(ii)

-		while ( obj && ( obj.mVis == 0 ) && ( ii>0 ) )

-			obj=GetHrefObj(--ii)

-        if( ii == 0 ) ii=1

-		GoToSldNum(ii)

-	}

-}

-function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }

-function GoToLast()

-{

-	ii=GetSldList().mList.length

-	if( ii != gCurSld )

-		GoToSld( GetHrefObj(ii).mSldHref )

-}

-function GoToSldNum( num )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	obj = GetHrefObj( num )

-	obj.mVis=1

-	gPrevSld=gCurSld

-	gCurSld = num;

-	PPTSld.location.replace(MHTMLPrefix+obj.mSldHref)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function GoToSld( href )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	GetHrefObj( GetSldNum(href) ).mVis=1

-	PPTSld.location.replace(MHTMLPrefix+href)

-}

-function SldUpdated( id )

-{

-	if( id == GetHrefObj(gCurSld).mSldHref ) return

-	gPrevSld=gCurSld

-	gCurSld=GetSldNum(id)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }

-function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }

-function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }

-function CloseWindow() {

-	if( HideMenu() ) return;

-	var event = PPTSld.event;

-	if( !IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) )

-		window.close( self );

-	CatchNumKeys( self, event );

-}

-function Unload() { gIsEndShow=0; }

-function SetupEndShow() {

-	gIsEndShow=1;

-	PPTSld.document.body.scroll="no";

-	PPTSld.document.onkeypress=CloseWindow;

-	PPTSld.document.onclick=CloseWindow;

-	PPTSld.document.oncontextmenu=_CM;

-}

-function EndShow()

-{

-	if( IsFramesMode() ) return

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	doc=PPTSld.document

-	doc.open()

-	doc.writeln('<html><body bgcolor=black onload=parent.SetupEndShow() onunload=parent.Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')

-	doc.close()

-}

-function SetSldVisited(){ GetSldList().mList[gCurSld-1].mVisited=true }

-function IsSldVisited(){ return GetSldList().mList[gCurSld-1].mVisited }

-function hrefList( sldHref, visible, advDelay, advClk )

-{

-	this.mSldHref= this.mNtsHref = sldHref

-	this.mOrigVis= this.mVis = visible

-	this.mVisited= false

-	this.mAdvDelay= advDelay

-	this.mAdvOnClk= advClk

-}

-function SldList(arr,curSld,fEnd)

-{

-	this.mCurSld = curSld;

-	this.mList = new Array();

-	var idx = 1;

-	for(ii=0;ii<arr.length;ii++) {

-		this.mList[ii] = new hrefList( arr[ii].mSldHref, arr[ii].mOrigVis, arr[ii].mAdvDelay, arr[ii].mAdvOnClk );

-		if( arr[ii].mOrigVis )

-			this.mList[ii].mSldIdx = idx++;

-	}

-	this.mNumVisSlds = idx-1;

-	this.fEndShow = fEnd;

-}

-function GetSldList() {	return gSldStack[gSldStack.length-1] }

-function GetCurSld() { return parent.GetSldList().mList[parent.gCurSld - 1] }

-gSldStack = new Array();

-gSldStack[0] = new SldList(gMainDoc,gCurSld,1)

-function ViewCustomShow(idx,fEnd)

-{

-	if( !IsFullScrMode() ) return;

-	var sldList = new Array();

-	var custShow = custShowList[idx-1];

-	var jj = 0;

-	for( ii=0;ii<custShow.length;ii++ ) {

-		if( custShow[ii] <= gMainDoc.length )

-			sldList[jj++] = gMainDoc[custShow[ii]-1];

-	}

-	if (sldList.length > 0) {

-	PushSldList(sldList,fEnd);

-	gCurSld = 1;

-	}

-	else

-		if( PPTSld.event ) PPTSld.event.cancelBubble=true

-}

-function PushSldList(arr,fEnd) {

-	var ii = gSldStack.length;

-	gSldStack[ii] = new SldList(arr,gCurSld,fEnd);

-	GoToSld( gSldStack[ii].mList[0].mSldHref );

-}

-function PopSldList() {

-	if (gSldStack[gSldStack.length-1].fEndShow)

-		EndShow()

-	else {

-	gCurSld = gSldStack[gSldStack.length-1].mCurSld;

-	gSldStack[gSldStack.length-1] = null;

-	gSldStack.length--;

-	var sldList = gSldStack[gSldStack.length-1];

-	GoToSld( sldList.mList[gCurSld - 1].mSldHref );

-	}

-}

-var custShowList=new Array();

-function ImgBtn( oId,bId,w,action )

-{

-	var t=this

-	t.Perform    = _IBP

-	t.SetActive  = _IBSetA

-	t.SetInactive= _IBSetI

-	t.SetPressed = _IBSetP

-	t.SetDisabled= _IBSetD

-	t.Enabled    = _IBSetE

-	t.ChangeIcon = null

-	t.UserAction = action

-	t.ChgState   = _IBUI

-	t.mObjId   = oId

-	t.mBorderId= bId

-	t.mWidth   = w

-	t.mIsOn    = t.mCurState = 0

-}

-function _IBSetA()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetI()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetP()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gShadowClr,gHiliteClr,2 )

-		obj.style.posLeft+=1; obj.style.posTop+=1

-	}

-}

-function _IBSetD()

-{

-	obj=this.ChgState( gFaceClr,gFaceClr,0 )

-	obj.style.posTop=0

-}

-function _IBSetE( state )

-{

-	var t=this

-	GetObj( t.mBorderId ).style.visibility="visible"

-	if( state != t.mIsOn ) {

-		t.mIsOn=state

-		if( state )

-			t.SetInactive()

-		else

-			t.SetDisabled()

-	}

-}

-function _IBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-		if( t.ChangeIcon ) {

-			obj=GetObj(t.mObjId)

-			if( t.ChangeIcon() )

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth

-			else

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth

-		}

-		t.SetActive()

-	}

-}

-function _IBUI( clr1,clr2,nextState )

-{

-	var t=this

-	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )

-	obj=GetObj( t.mObjId )

-	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop

-	t.mCurState=nextState

-	return obj

-}

-function TxtBtn( oId,oeId,action,chkState )

-{

-	var t=this

-	t.Perform    = _TBP

-	t.SetActive  = _TBSetA

-	t.SetInactive= _TBSetI

-	t.SetPressed = _TBSetP

-	t.SetDisabled= _TBSetD

-	t.SetEnabled = _TBSetE

-	t.GetState   = chkState

-	t.UserAction = action

-	t.ChgState   = _TBUI

-	t.mObjId      = oId

-	t.m_elementsId= oeId

-	t.mIsOn       = 1

-}

-function _TBSetA()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gHiliteClr,gShadowClr,0,0 )

-}

-function _TBSetI()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-}

-function _TBSetP()

-{

-	if( this.mIsOn )

-		this.ChgState( gShadowClr,gHiliteClr,1,1 )

-}

-function _TBSetD()

-{

-	this.ChgState( gFaceClr,gFaceClr,0,0 )

-	this.mIsOn = 0

-}

-function _TBSetE()

-{

-	var t=this

-	if( !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-	else

-		t.ChgState( gShadowClr,gHiliteClr,1,1 )

-	t.mIsOn = 1

-}

-function _TBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-        if( !t.GetState )

-            return

-		if( t.GetState() )

-			t.SetPressed()

-		else

-			t.SetActive()

-	}

-}

-function _TBUI( clr1,clr2,lOffset,tOffset )

-{

-	SetBorder( GetObj( this.mObjId ),clr1,clr2 )

-	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )

-}

-function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }

-function SetBorder( obj, upperLeft, lowerRight )

-{

-	s=obj.style;

-	s.borderStyle      = "solid"

-	s.borderWidth      = 1

-	s.borderLeftColor  = s.borderTopColor = upperLeft

-	s.borderBottomColor= s.borderRightColor = lowerRight

-}

-function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }

-function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }

-function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }

-function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }

-function BtnOnUp()

-{

-	b=GetBtnObj()

-	if( b != null )

-		b.Perform()

-	else

-		Upd()

-}

-function GetNtsState(){ return parent.gNtsOpen }

-function GetOtlState(){ return parent.gOtlOpen }

-function GetOtlTxtState(){ return parent.gOtlTxtExp }

-function NtsBtnSetFlag( fVal )

-{

-	s=document.all.item( this.m_flagId ).style

-	s.display="none"

-	if( fVal )

-		s.display=""

-	else

-		s.display="none"

-}

-function _BSetA_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetActive() }

-function _BSetI_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetInactive() }

-var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"

-var gBtnArr = new Array()

-gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_otlElem"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_nts"] = new TxtBtn( "nb_nts","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )

-gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )

-gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )

-gBtnArr["nb_sldshwBorder"] = new TxtBtn( "nb_sldshw","nb_sldshwBorder",parent.FullScreen,null )

-gBtnArr["nb_sldshwBorder"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwBorder"].SetInactive = _BSetI_Border;

-gBtnArr["nb_sldshwText"] = new TxtBtn( "nb_sldshw","nb_sldshwText",parent.FullScreen,null )

-gBtnArr["nb_sldshwText"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwText"].SetInactive = _BSetI_Border;

-gBtnArr["nb_voice"]  = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )

-gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )

-gBtnArr["nb_nts"].m_flagId= "notes_flag"

-gBtnArr["nb_nts"].SetFlag = NtsBtnSetFlag

-gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState

-var sNext="Next",sPrev="Previous",sEnd="End Show",sFont="Arial",sArrow="Arrow",sFreeform="Freeform",sRect="Rectangle",sOval="Oval"

-function ShowMenu()

-{

-	BuildMenu();

-	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

-	m = PPTSld.document.all.item("ctxtmenu")

-	m.style.pixelLeft=x

-	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )

-		m.style.pixelLeft=x-m.scrollWidth

-	m.style.pixelTop=y

-	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )

-		m.style.pixelTop=y-m.scrollHeight

-	m.style.display=""

-}

-function _CM()

-{

-	if( !parent.IsFullScrMode() ) return;

-	if(!PPTSld.event.ctrlKey) {

-		ShowMenu()

-		return false

-	} else

-		HideMenu()

-}

-function BuildMenu()

-{

-	if( PPTSld.document.all.item("ctxtmenu") ) return

-	var mObj=CreateItem( PPTSld.document.body )

-	mObj.id="ctxtmenu"

-	mObj.style.visibility="hidden"

-	var s=mObj.style

-	s.position="absolute"

-	s.cursor="default"

-	s.width="120px"

-	SetCMBorder(mObj,"menu","black")

-	var iObj=CreateItem( mObj )

-	SetCMBorder( iObj, "threedhighlight","threedshadow" )

-	iObj.style.padding=2

-	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )

-	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )

-	CreateSeparator( iObj )

-	CreateMenuItem( iObj,sEnd,M_End,M_True )

-	mObj.style.visibility="visible"

-}

-function Cancel() { window.event.cancelBubble=true; window.event.returnValue=false }

-function Highlight() { ChangeClr("activecaption","threedhighlight") }

-function Deselect() { ChangeClr("threedface","menutext") }

-function Perform()

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() )

-		e.Action()

-	else

-		PPTSld.event.cancelBubble=true

-}

-function ChangeClr( bg,clr )

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() ) {

-		e.style.backgroundColor=bg

-		e.style.color=clr

-	}

-}

-function M_HasPrevSld() { return( parent.HasPrevSld() ) }

-function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }

-function M_GoPrevSld() { if( gIsEndShow ) { history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }

-function M_True() { return true }

-function M_End() { window.close( self ) }

-function CreateMenuItem( node,text,action,eval )

-{

-	var e=CreateItem( node )

-	e.type="menuitem"

-	e.Action=action

-	e.IsActive=eval

-	e.innerHTML=text

-	if( !e.IsActive() )

-		e.style.color="threedshadow"

-	e.onclick=Perform

-	e.onmouseover=Highlight

-	e.onmouseout=Deselect

-	s=e.style;

-	s.fontFamily=sFont

-	s.fontSize="9pt"

-	s.paddingLeft=2

-}

-function CreateSeparator( node )

-{

-	var sObj=CreateItem( node )

-	SetCMBorder(sObj,"menu","menu")

-	var s=sObj.style

-	s.borderTopColor="threedshadow"

-	s.borderBottomColor="threedhighlight"

-	s.height=1

-	s.fontSize="0px"

-}

-function CreateItem( node )

-{

-	var elem=PPTSld.document.createElement("DIV")

-	node.insertBefore( elem )

-	return elem

-}

-function SetCMBorder( o,ltClr,rbClr )

-{

-	var s=o.style

-	s.backgroundColor="menu"

-	s.borderStyle="solid"

-	s.borderWidth=1

-	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr

-}

diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0043.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0043.html
deleted file mode 100644
index 2b25fc8..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0043.html
+++ /dev/null
@@ -1,113 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: UML2 Project Sprint">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:white;}
-.CT
-	{color:white;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="674"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master09.xml">
- <p:shaperange href="master09.xml#_x0000_s33793"/><![if !ppt]><p:shaperange
-  href="master09.xml#_x0000_s33971"/><![if !vml]><img border=0
- v:shapes="_x0000_s33971" src="master09_image004.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><p:shaperange
-  href="master09.xml#_x0000_s33951"/>
- <div v:shape="_x0000_s33951" class=O style='text-align:right;mso-char-wrap:
- 0;mso-kinsoku-overflow:0;position:absolute;top:92.25%;left:78.08%;width:18.16%;
- height:2.25%'><span style='font-size:56%'>© 2002 IBM Corporation</span></div>
- <div v:shape="_x0000_s33912">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-line-spacing:"98 20 0";mso-margin-left-alt:216;
- position:absolute;top:91.75%;left:22.28%;width:51.87%;height:3.0%'><span
- style='mso-hansi-font-family:Arial;font-size:72%'>Confidential<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Date<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Other Information, if necessary</span></div>
- </div>
- <p:shaperange href="master09.xml#_x0000_s33966"/><![if !vml]><img border=0
- v:shapes="_x0000_s33966" src="master09_image005.jpg" style='position:absolute;
- top:77.5%;left:0%;width:100.0%;height:22.5%'><![endif]><p:shaperange
-  href="master09.xml#_x0000_s33968"/><p:shaperange
-  href="master09.xml#_x0000_s33969"/>
- <div v:shape="_x0000_s33969" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:92.5%;left:1.49%;width:97.75%;height:3.0%'><span
- style='font-size:72%'>© 2005 by IBM; made available under the EPL v1.0<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>February 28</span></div>
- <![endif]><p:shaperange href="master09.xml#_x0000_m33800"/><v:shape id="_x0000_s690180"
-  type="#_x0000_m33800" style='position:absolute;left:30.75pt;top:134.375pt;
-  width:626.375pt;height:115.75pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="centerTitle"/></v:shape><p:shaperange
-  href="master09.xml#_x0000_m33801"/><v:shape id="_x0000_s690181" type="#_x0000_m33801"
-  style='position:absolute;left:153.5pt;top:261.375pt;width:7in;height:109pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="subTitle" position="1"/></v:shape>
- <div v:shape="_x0000_s690180" class=CT style='position:absolute;top:25.5%;
- left:5.24%;width:85.2%;height:6.0%'>UML2 Project Sprint</div>
- <div v:shape="_x0000_s690181" class=CB>
- <div style='position:absolute;top:49.25%;left:22.28%;width:68.16%;height:5.25%'><span
- style='font-size:120%'>Kenn Hussey&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:22.28%;width:68.16%;height:4.5%'>UML2
- Project Lead</div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0048.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0048.html
deleted file mode 100644
index 068a929..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0048.html
+++ /dev/null
@@ -1,123 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="684"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O style='mso-line-spacing:"100 50 0";
- position:absolute;top:95.0%;left:2.62%;width:9.17%;height:2.25%'><span
- style='mso-hansi-font-family:Arial;font-size:56%;mso-field-code:meta16'><b>2</b></span><span
- style='mso-hansi-font-family:Arial;font-size:56%;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='font-size:56%'>UML2 Project Sprint<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>Kenn Hussey<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'>  </span>©
- 2005 by IBM; made available under the EPL v1.0</span></div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s700418" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s700419" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s700418" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s700419" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:133%'>Overview&#13;</span></span></div>
- <div style='position:absolute;top:32.25%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:133%'>Goals&#13;</span></span></div>
- <div style='position:absolute;top:37.5%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:133%'>Challenges&#13;</span></span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:133%'>Status&#13;</span></span></div>
- <div style='position:absolute;top:48.25%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:133%'>Milestones&#13;</span></span></div>
- <div style='position:absolute;top:53.5%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:133%'>Development Plans&#13;</span></span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:133%'>How Can You Help?</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0049.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0049.html
deleted file mode 100644
index f55a7a8..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0049.html
+++ /dev/null
@@ -1,147 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: Overview">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="685"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;mso-field-code:meta16'><b>3</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%'>UML2
- Project Sprint<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Kenn Hussey<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>© 2005 by IBM; made available
- under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s701442" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s701443" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s701442" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Overview</div>
- <div v:shape="_x0000_s701443" class=B>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:26.5%;left:15.73%;width:76.02%;height:5.25%'><span style='font-size:133%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span><span style='font-size:133%'>An Eclipse Tools
- subproject at </span></span><span style='position:absolute;top:31.25%;
- left:15.73%;width:76.02%;height:5.25%'><span style='font-size:133%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/modeling/mdt/?project=uml2#uml2"/><a
- href="http://www.eclipse.org/modeling/mdt/?project=uml2#uml2" target="_blank"
- onclick="window.event.cancelBubble=true;">http://www.eclipse.org/modeling/mdt/?project=uml2#uml2</a></span><span
- style='font-size:133%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:36.0%;left:13.1%;
- width:78.46%;height:5.25%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='font-size:133%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span><span style='font-size:133%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:40.75%;left:15.73%;width:82.58%;height:5.25%'><span style='font-size:133%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.17%;font-family:
- Wingdings'>§</span></span><span style='font-size:133%'>An EMF-based
- implementation of the UML™ 2.0 </span></span><span style='position:absolute;
- top:45.5%;left:15.73%;width:76.02%;height:5.25%'><span style='font-size:133%'>metamodel
- for the Eclipse platform&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:50.25%;left:13.1%;
- width:78.46%;height:5.25%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='font-size:133%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span><span style='font-size:133%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:55.25%;left:15.73%;width:76.02%;height:5.25%'><span style='font-size:133%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span><span style='font-size:133%'>Project lead is Kenn
- Hussey </span></span><span style='position:absolute;top:60.0%;left:15.73%;
- width:76.02%;height:5.25%'><span style='font-size:133%'>(</span><span
- style='font-size:133%'><p:onmouseclick hyperlinktype="url"
-  href="mailto:khussey@ca.ibm.com"/><a href="mailto:khussey@ca.ibm.com"
- target="_blank" onclick="window.event.cancelBubble=true;">khussey@ca.ibm.com</a></span><span
- style='font-size:133%'>)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:64.75%;left:13.1%;
- width:78.46%;height:5.25%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='font-size:133%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span><span style='font-size:133%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:69.5%;left:15.73%;width:84.64%;height:5.25%'><span style='font-size:133%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.09%;font-family:
- Wingdings'>§</span></span><span style='font-size:133%'>Users include IBM
- (Rational Software Architect) </span></span><span style='position:absolute;
- top:74.25%;left:15.73%;width:76.02%;height:5.25%'><span style='font-size:133%'>and
- Omondo (EclipseUML2)</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0050.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0050.html
deleted file mode 100644
index 3c8548e..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0050.html
+++ /dev/null
@@ -1,132 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: Goals">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="686"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;mso-field-code:meta16'><b>4</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%'>UML2
- Project Sprint<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Kenn Hussey<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>© 2005 by IBM; made available
- under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s702466" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s702467" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s702466" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Goals</div>
- <div v:shape="_x0000_s702467" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:80.71%;height:4.5%'><span style='font-size:111%'><span
- class=BB style='position:absolute;left:-3.24%'>§</span></span><span
- style='font-size:111%'>Provide a useable implementation of the metamodel to </span></span><span
- style='position:absolute;top:31.25%;left:15.73%;width:76.02%;height:4.5%'><span
- style='font-size:111%'>support the development of modeling tools&#13;</span></span>
- <div style='position:absolute;top:35.75%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:40.25%;left:15.73%;width:86.32%;height:
- 4.5%'><span style='font-size:111%'><span class=BB style='position:absolute;
- left:-3.03%'>§</span></span><span style='font-size:111%'>Provide a common XMI
- schema to facilitate interchange of </span></span><span style='position:absolute;
- top:44.5%;left:15.73%;width:76.02%;height:4.5%'><span style='font-size:111%'>semantic
- models&#13;</span></span>
- <div style='position:absolute;top:49.0%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:53.5%;left:15.73%;width:89.13%;height:4.5%'><span
- style='font-size:111%'><span class=BB style='position:absolute;left:-2.94%'>§</span></span><span
- style='font-size:111%'>Provide test cases as a means of validating the
- specification </span></span><span style='position:absolute;top:58.0%;
- left:15.73%;width:76.02%;height:4.5%'><span style='font-size:111%'>and
- implementation&#13;</span></span>
- <div style='position:absolute;top:62.5%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:66.75%;left:15.73%;width:90.26%;height:
- 4.5%'><span style='font-size:111%'><span class=BB style='position:absolute;
- left:-2.9%'>§</span></span><span style='font-size:111%'>Provide validation
- rules as a means of defining and enforcing </span></span><span
- style='position:absolute;top:71.25%;left:15.73%;width:76.02%;height:4.5%'><span
- style='font-size:111%'>levels of compliance</span></span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0051.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0051.html
deleted file mode 100644
index 00a0d3b..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0051.html
+++ /dev/null
@@ -1,133 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: Challenges">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="687"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;mso-field-code:meta16'><b>5</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%'>UML2
- Project Sprint<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Kenn Hussey<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>© 2005 by IBM; made available
- under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s703490" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s703491" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s703490" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Challenges</div>
- <div v:shape="_x0000_s703491" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:83.89%;height:4.5%'><span style='font-size:111%'><span
- class=BB style='position:absolute;left:-3.12%'>§</span></span><span
- style='font-size:111%'>Since the specification isnÂ’t finalized, the API is a
- moving </span></span><span style='position:absolute;top:31.25%;left:15.73%;
- width:76.02%;height:4.5%'><span style='font-size:111%'>target&#13;</span></span>
- <div style='position:absolute;top:35.75%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:40.25%;left:15.73%;width:76.02%;height:
- 4.5%'><span style='font-size:111%'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%'>Aspects of the
- standard metamodel (redefinition, </span></span><span style='position:absolute;
- top:44.5%;left:15.73%;width:81.46%;height:4.5%'><span style='font-size:111%'>subsets/supersets)
- make the mapping to Java and XMI </span></span><span style='position:absolute;
- top:49.0%;left:15.73%;width:76.02%;height:4.5%'><span style='font-size:111%'>difficult&#13;</span></span>
- <div style='position:absolute;top:53.5%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:58.0%;left:15.73%;width:88.57%;height:4.5%'><span
- style='font-size:111%'><span class=BB style='position:absolute;left:-2.95%'>§</span></span><span
- style='font-size:111%'>There are a number of errors in the specification
- which, until </span></span><span style='position:absolute;top:62.5%;
- left:15.73%;width:76.21%;height:4.5%'><span style='font-size:111%'>fixed, make
- the API and XMI schema difficult to use&#13;</span></span>
- <div style='position:absolute;top:66.75%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:71.25%;left:15.73%;width:89.7%;height:4.5%'><span
- style='font-size:111%'><span class=BB style='position:absolute;left:-2.92%'>§</span></span><span
- style='font-size:111%'>Compliance points for UML™ 2.0 are a subject of much
- debate </span></span><span style='position:absolute;top:75.75%;left:15.73%;
- width:76.02%;height:4.5%'><span style='font-size:111%'>within the modeling
- community</span></span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0052.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0052.html
deleted file mode 100644
index b208457..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0052.html
+++ /dev/null
@@ -1,124 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: Status – Metamodel">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="688"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;mso-field-code:meta16'><b>6</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%'>UML2
- Project Sprint<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Kenn Hussey<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>© 2005 by IBM; made available
- under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s704514" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s704515" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s704514" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Status – Metamodel</div>
- <div v:shape="_x0000_s704515" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:82.95%;height:4.5%'><span style='font-size:111%'><span
- class=BB style='position:absolute;left:-3.16%'>§</span></span><span
- style='font-size:111%'>EMF-generated API based on a collapsed version of the </span></span><span
- style='position:absolute;top:31.25%;left:15.73%;width:86.32%;height:4.5%'><span
- style='font-size:111%'>metamodel in which package merges and a majority of the
- </span></span><span style='position:absolute;top:35.75%;left:15.73%;
- width:76.02%;height:4.5%'><span style='font-size:111%'>redefinitions have been
- factored out&#13;</span></span>
- <div style='position:absolute;top:40.25%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:44.5%;left:15.73%;width:85.39%;height:4.5%'><span
- style='font-size:111%'><span class=BB style='position:absolute;left:-3.07%'>§</span></span><span
- style='font-size:111%'>Includes mechanisms to support derived union,
- redefines, </span></span><span style='position:absolute;top:49.0%;left:15.73%;
- width:76.02%;height:4.5%'><span style='font-size:111%'>and subsets
- constraints&#13;</span></span>
- <div style='position:absolute;top:53.5%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:58.0%;left:15.73%;width:81.46%;height:4.5%'><span
- style='font-size:111%'><span class=BB style='position:absolute;left:-3.21%'>§</span></span><span
- style='font-size:111%'>Generated using a customized Ecore “builder” and JET </span></span><span
- style='position:absolute;top:62.5%;left:15.73%;width:76.02%;height:4.5%'><span
- style='font-size:111%'>templates</span></span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0053.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0053.html
deleted file mode 100644
index 8f0e5ae..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0053.html
+++ /dev/null
@@ -1,133 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: Status – Interchange">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="689"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;mso-field-code:meta16'><b>7</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%'>UML2
- Project Sprint<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Kenn Hussey<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>© 2005 by IBM; made available
- under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s705538" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s705539" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s705538" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Status – Interchange</div>
- <div v:shape="_x0000_s705539" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:111%'>Default XMI schema generated using EMF&#13;</span></span></div>
- <div style='position:absolute;top:31.25%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:35.75%;left:15.73%;width:76.02%;height:
- 4.5%'><span style='font-size:111%'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%'>Defines one namespace
- </span></span><span style='position:absolute;top:40.25%;left:15.73%;
- width:91.01%;height:4.5%'><span style='font-size:111%'>(</span><span
- style='font-size:111%'>http://www.eclipse.org/uml2/1.0.0/UML</span><span
- style='font-size:111%'>) for all elements, thus </span></span><span
- style='position:absolute;top:44.5%;left:15.73%;width:76.02%;height:4.5%'><span
- style='font-size:111%'>supporting interchange&#13;</span></span>
- <div style='position:absolute;top:49.0%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:53.5%;left:15.73%;width:81.46%;height:4.5%'><span
- style='font-size:111%'><span class=BB style='position:absolute;left:-3.21%'>§</span></span><span
- style='font-size:111%'>Elements identified using Universally Unique
- Identifiers </span></span><span style='position:absolute;top:58.0%;left:15.73%;
- width:76.02%;height:4.5%'><span style='font-size:111%'>(UUIDs)&#13;</span></span>
- <div style='position:absolute;top:62.5%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:66.75%;left:15.73%;width:83.14%;height:
- 4.5%'><span style='font-size:111%'><span class=BB style='position:absolute;
- left:-3.15%'>§</span></span><span style='font-size:111%'>Will support
- import/export from/to OMG XMI for UML™ 2.0 </span></span><span
- style='position:absolute;top:71.25%;left:15.73%;width:76.02%;height:4.5%'><span
- style='font-size:111%'>once the specification is finalized</span></span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0054.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0054.html
deleted file mode 100644
index 802fe36..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0054.html
+++ /dev/null
@@ -1,136 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: Status – Specification">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="690"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;mso-field-code:meta16'><b>8</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%'>UML2
- Project Sprint<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Kenn Hussey<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>© 2005 by IBM; made available
- under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s706562" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s706563" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s706562" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Status – Specification</div>
- <div v:shape="_x0000_s706563" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:84.45%;height:4.5%'><span style='font-size:111%'><span
- class=BB style='position:absolute;left:-3.1%'>§</span></span><span
- style='font-size:111%'>UML™ 2.0 Superstructure FTF has delivered final draft
- and </span></span><span style='position:absolute;top:31.25%;left:15.73%;
- width:76.02%;height:4.5%'><span style='font-size:111%'>report to OMG&#13;</span></span>
- <div style='position:absolute;top:35.75%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:40.25%;left:15.73%;width:91.01%;height:
- 4.5%'><span style='font-size:111%'><span class=BB style='position:absolute;
- left:-2.88%'>§</span></span><span style='font-size:111%'>Errors discovered
- while using the API and/or XMI schema are </span></span><span
- style='position:absolute;top:44.5%;left:15.73%;width:82.77%;height:4.5%'><span
- style='font-size:111%'>now being fixed and submitted as issues to the UML™ 2.0 </span></span><span
- style='position:absolute;top:49.0%;left:15.73%;width:89.88%;height:4.5%'><span
- style='font-size:111%'>Superstructure and Infrastructure Revision Task Force
- (RTF)&#13;</span></span>
- <div style='position:absolute;top:53.5%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:58.0%;left:15.73%;width:90.82%;height:4.5%'><span
- style='font-size:111%'><span class=BB style='position:absolute;left:-2.88%'>§</span></span><span
- style='font-size:111%'>UML™ 2.0 Superstructure and Infrastructure RTF already
- has a </span></span><span style='position:absolute;top:62.5%;left:15.73%;
- width:76.02%;height:4.5%'><span style='font-size:111%'>number of open issues,
- available at </span></span><span style='position:absolute;top:66.75%;
- left:15.73%;width:76.02%;height:4.5%'><span style='font-size:111%'>http://www.omg.org/issues/uml2-rtf.open.html&#13;</span></span>
- <div style='position:absolute;top:71.25%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:75.75%;left:13.1%;width:87.26%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.0%;width:97.21%;height:100.0%'><span
- style='font-size:111%'><span class=BB style='position:absolute;left:-3.09%'>§</span></span><span
- style='font-size:111%'>Finalization date for UML™ 2.0 Specification is TBD
- (soon!)</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0055.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0055.html
deleted file mode 100644
index ded58d1..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0055.html
+++ /dev/null
@@ -1,125 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: Status – Compliance">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="691"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;mso-field-code:meta16'><b>9</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%'>UML2
- Project Sprint<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Kenn Hussey<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>© 2005 by IBM; made available
- under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s707586" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s707587" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s707586" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Status – Compliance</div>
- <div v:shape="_x0000_s707587" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:89.13%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.26%;height:100.0%'><span
- style='font-size:111%'><span class=BB style='position:absolute;left:-3.02%'>§</span></span><span
- style='font-size:111%'>Validation rules evaluated using EMF validator
- mechanism&#13;</span></span></div>
- <div style='position:absolute;top:31.25%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:35.75%;left:13.1%;width:87.64%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.99%;width:97.22%;height:100.0%'><span
- style='font-size:111%'><span class=BB style='position:absolute;left:-3.07%'>§</span></span><span
- style='font-size:111%'>Validators implemented based on sets of OCL
- constraints&#13;</span></span></div>
- <div style='position:absolute;top:40.25%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:44.5%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:111%'>Correspond to compliance levels&#13;</span></span></div>
- <div style='position:absolute;top:49.0%;left:13.1%;width:78.46%;height:4.5%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:111%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:111%;mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0056.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0056.html
deleted file mode 100644
index 5153eb0..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0056.html
+++ /dev/null
@@ -1,120 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: Milestones">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="692"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;mso-field-code:meta16'><b>10</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%'>UML2
- Project Sprint<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Kenn Hussey<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>© 2005 by IBM; made available
- under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s708610" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s708611" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s708610" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Milestones</div>
- <div v:shape="_x0000_s708611" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:89.88%;height:5.25%'><span style='font-size:133%'><span
- class=BB style='position:absolute;left:-2.91%'>§</span></span><span
- style='font-size:133%'>Maintenance release 1.0.2 to coincide with Eclipse </span></span><span
- style='position:absolute;top:32.25%;left:15.73%;width:76.02%;height:5.25%'><span
- style='font-size:133%'>3.0.2 and EMF 2.0.2&#13;</span></span>
- <div style='position:absolute;top:37.5%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:133%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:42.75%;left:15.73%;width:88.01%;height:
- 5.25%'><span style='font-size:133%'><span class=BB style='position:absolute;
- left:-2.97%'>§</span></span><span style='font-size:133%'>Release 1.1 to
- coincide with Eclipse 3.1 and EMF </span></span><span style='position:absolute;
- top:48.25%;left:15.73%;width:76.02%;height:5.25%'><span style='font-size:133%'>2.1&#13;</span></span>
- <div style='position:absolute;top:53.5%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:133%;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:58.75%;left:15.73%;width:88.01%;height:
- 5.25%'><span style='font-size:133%'><span class=BB style='position:absolute;
- left:-2.97%'>§</span></span><span style='font-size:133%'>Release 2.0 to
- coincide with Eclipse 3.2 and EMF </span></span><span style='position:absolute;
- top:64.0%;left:15.73%;width:76.02%;height:5.25%'><span style='font-size:133%'>2.x</span></span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0057.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0057.html
deleted file mode 100644
index b24c9b0..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0057.html
+++ /dev/null
@@ -1,134 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: How Can You Help?">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="693"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;mso-field-code:meta16'><b>15</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%'>UML2
- Project Sprint<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Kenn Hussey<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>© 2005 by IBM; made available
- under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s709634" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s709635" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s709634" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>How Can You Help?</div>
- <div v:shape="_x0000_s709635" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:133%'>Develop tools based on UML2&#13;</span></span></div>
- <div style='position:absolute;top:32.25%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:133%;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:37.5%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:133%'>Report bugs&#13;</span></span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:133%;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:48.25%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:133%'>Participate in newsgroup discussions&#13;</span></span></div>
- <div style='position:absolute;top:53.5%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:133%;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:133%'>Write articles&#13;</span></span></div>
- <div style='position:absolute;top:64.0%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.44%'>§</span></span><span style='font-size:133%;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:69.5%;left:13.1%;width:78.46%;height:5.25%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='font-size:133%'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='font-size:133%'>Become a UML2 contributor!</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0058.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0058.html
deleted file mode 100644
index 7e9f732..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0058.html
+++ /dev/null
@@ -1,127 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: Development Plans – 1.1">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="694"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;mso-field-code:meta16'><b>11</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%'>UML2
- Project Sprint<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Kenn Hussey<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>© 2005 by IBM; made available
- under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s710658" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s710659" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s710658" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Development Plans – 1.1</div>
- <div v:shape="_x0000_s710659">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='font-size:111%'><span class=BB style='position:
- absolute;left:-3.44%'>§</span></span><span style='font-size:111%'>Theme:
- Release Currency&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Eclipse 3.1
- / EMF 2.1 Compatibility&#13;</span></span></div>
- <div class=B style='position:absolute;top:36.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:41.0%;left:13.1%;width:78.46%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='font-size:111%'><span class=BB style='position:
- absolute;left:-3.44%'>§</span></span><span style='font-size:111%'>Theme: Built
- To Last&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:46.25%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Migration
- Framework&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:52.0%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Resource
- Localization</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0059.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0059.html
deleted file mode 100644
index 02e9bbd..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0059.html
+++ /dev/null
@@ -1,151 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: Development Plans – 2.0">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="695"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;mso-field-code:meta16'><b>13</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%'>UML2
- Project Sprint<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Kenn Hussey<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>© 2005 by IBM; made available
- under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s711682" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s711683" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s711682" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Development Plans – 2.0</div>
- <div v:shape="_x0000_s711683">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='font-size:111%'><span class=BB style='position:
- absolute;left:-3.44%'>§</span></span><span style='font-size:111%'>Theme:
- Release Currency&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Eclipse 3.2
- / EMF 2.x Compatibility&#13;</span></span></div>
- <div class=B style='position:absolute;top:36.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:41.0%;left:13.1%;width:78.46%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='font-size:111%'><span class=BB style='position:
- absolute;left:-3.44%'>§</span></span><span style='font-size:111%'>Theme:
- Completeness&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:46.25%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>UML™ 2.0
- Conformance&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:52.0%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>UML™ 2.0
- Interchange&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:57.5%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Validation
- Rules&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:63.0%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Unit
- Tests&#13;</span></span></div>
- <div class=B style='position:absolute;top:67.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:71.75%;left:13.1%;width:78.46%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='font-size:111%'><span class=BB style='position:
- absolute;left:-3.44%'>§</span></span><span style='font-size:111%'>Theme: Built
- To Last&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:77.25%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Reduced
- Memory Footprint</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0060.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0060.html
deleted file mode 100644
index 63f9bf0..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0060.html
+++ /dev/null
@@ -1,128 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: Development Plans – 1.1 (Continued)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="696"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;mso-field-code:meta16'><b>12</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%'>UML2
- Project Sprint<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Kenn Hussey<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>© 2005 by IBM; made available
- under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s712706" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s712707" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s712706" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Development Plans – 1.1 (Continued)</div>
- <div v:shape="_x0000_s712707">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='font-size:111%'><span class=BB style='position:
- absolute;left:-3.44%'>§</span></span><span style='font-size:111%'>Theme:
- Simple To Use&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Update Site
- Support&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:37.75%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Instance
- Creation Support&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:43.5%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>More
- Examples&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:49.0%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>EMF
- Generator Extensions&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:54.75%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Improved
- Documentation</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0061.html b/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0061.html
deleted file mode 100644
index f576ad9..0000000
--- a/uml2/docs/presentations/EclipseCon2005_ProjectSprint_files/slide0061.html
+++ /dev/null
@@ -1,140 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2005_ProjectSprint.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>IBM blue-and-black template with image</title>
-<meta name=Description content="3/7/2005: Development Plans – 2.0 (Continued)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="697"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33014"/><![if !vml]><img border=0
- v:shapes="_x0000_s33014" src="master08_image006.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33016"/>
- <div v:shape="_x0000_s33016" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span style='mso-hansi-font-family:Arial;
- font-size:56%;mso-field-code:meta16'><b>14</b></span><span style='mso-hansi-font-family:
- Arial;font-size:56%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33017"/><![if !vml]><img border=0
- v:shapes="_x0000_s33017" src="master08_image007.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33019" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span style='font-size:56%'>UML2
- Project Sprint<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Kenn Hussey<span style='mso-spacerun:yes'> 
- </span>|<span style='mso-spacerun:yes'>  </span>© 2005 by IBM; made available
- under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33021"/><![if !vml]><img border=0
- v:shapes="_x0000_s33021" src="master08_image008.jpg" style='position:absolute;
- top:0%;left:0%;width:100.0%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s713730" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s713731" type="#_x0000_m32775"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s713730" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Development Plans – 2.0 (Continued)</div>
- <div v:shape="_x0000_s713731">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='font-size:111%'><span class=BB style='position:
- absolute;left:-3.44%'>§</span></span><span style='font-size:111%'>Theme:
- Simple To Use&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Resource
- Fragments&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:37.75%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Derived
- Features&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:43.5%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Javadoc&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:49.0%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Improved
- Convenience Methods&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:54.75%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Enhanced
- Icons&#13;</span></span></div>
- <div class=B style='position:absolute;top:59.25%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:63.25%;left:13.1%;width:78.46%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='font-size:111%'><span class=BB style='position:
- absolute;left:-3.44%'>§</span></span><span style='font-size:111%'>Theme:
- Broadening The Community&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:68.75%;left:18.35%;width:73.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='font-size:113%'><span class=B1B style='position:
- absolute;left:-4.26%'>§</span></span><span style='font-size:113%'>Tools</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk.html
deleted file mode 100644
index 6f662de..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk.html
+++ /dev/null
@@ -1,82 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link rel=File-List href="EclipseCon2006_ShortTalk_files/filelist.xml">
-<link rel=Preview href="EclipseCon2006_ShortTalk_files/preview.wmf">
-<link rel=Edit-Time-Data href="EclipseCon2006_ShortTalk_files/editdata.mso">
-<title>What's New in UML2?</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Subject>Short Talk</o:Subject>
-  <o:Author>Kenn Hussey</o:Author>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>367</o:Revision>
-  <o:TotalTime>15554</o:TotalTime>
-  <o:Created>2002-08-23T15:26:08Z</o:Created>
-  <o:LastSaved>2006-04-17T19:13:32Z</o:LastSaved>
-  <o:Words>486</o:Words>
-  <o:PresentationFormat>On-screen Show</o:PresentationFormat>
-  <o:Company>IBM Rational Software</o:Company>
-  <o:Bytes>93212</o:Bytes>
-  <o:Paragraphs>122</o:Paragraphs>
-  <o:Slides>14</o:Slides>
-  <o:Notes>1</o:Notes>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
- <o:OfficeDocumentSettings>
-  <o:ShowReviewingToolbar/>
-  <o:PixelsPerInch>80</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
-</xml><![endif]-->
-<link rel=Presentation-XML href="EclipseCon2006_ShortTalk_files/pres.xml">
-<meta name=Description content="4/17/2006: WhatÂ’s New in UML2?">
-<meta http-equiv=expires content=0>
-<![if !ppt]><script>
-<!--
-	var ver = 0, appVer = navigator.appVersion, msie = appVer.indexOf( "MSIE " )
-	var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0)
-	if( msie >= 0 )
-		ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) )
-	else
-		ver = parseInt( appVer )
-	browserSupported=0
-	if( !isMac && ver >= 4 && msie >= 0 ) {
-		browserSupported=1
-		window.location.replace( 'EclipseCon2006_ShortTalk_files/frame.html'+document.location.hash )
-	}
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<script><!--
-
-if( browserSupported )
-	document.writeln('<div style="visibility:hidden">');
-
-//--></script><font face=Arial size=2><b>
-
-<p>This presentation contains content that your browser may not be able to show
-properly. This presentation was optimized for more recent versions of Microsoft
-Internet Explorer.</p>
-
-<p>If you would like to proceed anyway, click <a
-href="EclipseCon2006_ShortTalk_files/frame.html">here</a>.</p>
-
-</b></font><script><!--
-
-if( browserSupported )
-	document.writeln('</div>');
-
-//--></script>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/buttons.gif b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/buttons.gif
deleted file mode 100644
index 1f2c73c..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/buttons.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/editdata.mso b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/editdata.mso
deleted file mode 100644
index 6d4c5eb..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/editdata.mso
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/filelist.xml b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/filelist.xml
deleted file mode 100644
index 0b9db15..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/filelist.xml
+++ /dev/null
@@ -1,40 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:File HRef="master08.html"/>
- <o:File HRef="master08.xml"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="master08_image001.jpg"/>
- <o:File HRef="master08_image002.jpg"/>
- <o:File HRef="master09.html"/>
- <o:File HRef="master09.xml"/>
- <o:File HRef="master02.html"/>
- <o:File HRef="pres.xml"/>
- <o:File HRef="editdata.mso"/>
- <o:File HRef="slide0028.html"/>
- <o:File HRef="master09_image003.jpg"/>
- <o:File HRef="master09_image004.jpg"/>
- <o:File HRef="slide0029.html"/>
- <o:File HRef="master08_image005.jpg"/>
- <o:File HRef="master08_image006.gif"/>
- <o:File HRef="master08_image007.jpg"/>
- <o:File HRef="slide0030.html"/>
- <o:File HRef="slide0031.html"/>
- <o:File HRef="slide0032.html"/>
- <o:File HRef="slide0033.html"/>
- <o:File HRef="slide0034.html"/>
- <o:File HRef="slide0035.html"/>
- <o:File HRef="slide0036.html"/>
- <o:File HRef="slide0037.html"/>
- <o:File HRef="slide0038.html"/>
- <o:File HRef="slide0040.html"/>
- <o:File HRef="slide0039.html"/>
- <o:File HRef="slide0041.html"/>
- <o:File HRef="master01.html"/>
- <o:File HRef="master08_stylesheet.css"/>
- <o:File HRef="script.js"/>
- <o:MainFile HRef="../EclipseCon2006_ShortTalk.html"/>
- <o:File HRef="fullscreen.html"/>
- <o:File HRef="buttons.gif"/>
- <o:File HRef="frame.html"/>
- <o:File HRef="outline.html"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/frame.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/frame.html
deleted file mode 100644
index fe79bb9..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/frame.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<title>What's New in UML2?</title>
-<![if !ppt]><script src=script.js></script><script>
-<!--
-var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
-function Load()
-{
-	str=document.location.hash,idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(str) PPTSld.location.replace(str);
-}
-//-->
-</script>
-<![endif]>
-</head>
-
-
-<frameset rows="*,25" border=0>
- <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust framespacing=1 frameborder=1>
-  <frame src=outline.html title="Outline" name=PPTOtl>
-  <frame src=slide0028.html title="Slide" name=PPTSld>
- </frameset>
- <frameset cols="25%,*" framespacing=1>
-  <frame src=outline.html title="Outline
-Navigation Bar" name=PPTOtlNav scrolling=no noresize>
-  <frame src=outline.html title="Slide
-Navigation Bar" name=PPTNav scrolling=no noresize>
- </frameset>
-</frameset>
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/fullscreen.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/fullscreen.html
deleted file mode 100644
index 8e4abfd..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/fullscreen.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<script src=script.js></script><script><!--
-var SCREEN_MODE   = "FullScreen";
-function Load() {
-	str=document.location.hash,idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(!str) str = "slide0028.html";
-	PPTSld.location.replace(MHTMLPrefix+str);
-}
-function Unload() {
-	if ( document.body.PPTSldFrameset != null )
-		document.body.PPTSldFrameset.frames[1].document.body.resume();
-}
-//-->
-</script>
-</head>
-
-<frameset rows="*" frameborder=0 onload="Load()" onunload="Unload()">
- <frame name=PPTSld>
-</frameset>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master01.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master01.html
deleted file mode 100644
index 2322c64..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master01.html
+++ /dev/null
@@ -1,207 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="103"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s105473" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s105474" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105474" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;
-mso-field-code:meta14'>‹header›</span><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105475" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1"/></v:shapetype>
-
-<div v:shape="_x0000_s105475" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-field-code:meta0'>‹date/time›</span><span
-lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_m105476" style='position:absolute;left:91.75pt;top:54.5pt;
- width:363.5pt;height:272.625pt;v-text-anchor:middle' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter"/>
- <v:shadow obscured="t"/>
- <v:path gradientshapeok="t" fillok="f" o:connecttype="rect"/>
- <o:lock v:ext="edit" rotation="t" text="t"/>
- <p:placeholder type="slideImage" position="2"/></v:shapetype><v:shapetype
- id="_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
- width:437.5pt;height:327.125pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="body" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_m105477">
-
-<div class=N><span lang=EN-US style='mso-ansi-language:EN-US'>Click to edit
-Master text styles&#13;</span></div>
-
-<div class=N1><span lang=EN-US style='mso-ansi-language:EN-US'>Second
-level&#13;</span></div>
-
-<div class=N2><span lang=EN-US style='mso-ansi-language:EN-US'>Third level&#13;</span></div>
-
-<div class=N3><span lang=EN-US style='mso-ansi-language:EN-US'>Fourth
-level&#13;</span></div>
-
-<div class=N4><span lang=EN-US style='mso-ansi-language:EN-US'>Fifth level</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105478" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="4" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105478" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;
-mso-field-code:meta15'>‹footer›</span><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105479" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="5" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105479" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-field-code:meta16'>‹#›</span><span lang=EN-US
-style='font-size:67%;mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<p:notes id="28" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="647"/>
- </o:shapelayout><v:shape id="_x0000_s662530" type="#_x0000_m105476" style='position:absolute;
-  left:92pt;top:54.625pt;width:363.125pt;height:272.375pt' filled="t"
-  fillcolor="white" stroked="t" strokecolor="black" strokeweight="1pt">
-  <v:fill o:detectmouseclick="t" type="solid"/>
-  <v:stroke dashstyle="solid" filltype="solid" linestyle="single" endcap="flat"
-   o:forcedash="t"/>
-  <v:shadow on="f"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s662531"
-  type="#_x0000_m105477" style='position:absolute;left:54.75pt;top:345.375pt;
-  width:437.5pt;height:327.125pt;mso-wrap-style:square;v-text-anchor:top'
-  filled="f" stroked="f">
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <v:shadow on="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <v:textbox style='layout-flow:horizontal;mso-fit-shape-to-text:f' inset="2.58931mm,1.2947mm,2.58931mm,1.2947mm"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s662531" class=N><span lang=EN-US style='mso-ansi-language:
- EN-US;mso-special-format:lastCR'>&#13;</span></div>
-</p:notes>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master02.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master02.html
deleted file mode 100644
index 81d4140..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master02.html
+++ /dev/null
@@ -1,145 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="530"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s542721" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s542722" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542722" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;
-mso-field-code:meta14'>‹header›</span><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542723" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542723" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-field-code:meta0'>‹date/time›</span><span
-lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542724" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="2" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542724" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;
-mso-field-code:meta15'>‹footer›</span><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542725" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542725" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-field-code:meta16'>‹#›</span><span lang=EN-US
-style='font-size:67%;mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08.html
deleted file mode 100644
index 17be1d6..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m32774" class=T><span lang=EN-US style='mso-ansi-language:
-EN-US'>Click to edit Master title style</span></div>
-
-<div v:shape="_x0000_m32775">
-
-<div class=B><span lang=EN-US style='mso-ansi-language:EN-US'>Click to edit
-Master text styles&#13;</span></div>
-
-<div class=B1><span lang=EN-US style='mso-ansi-language:EN-US'>Second
-level&#13;</span></div>
-
-<div class=B2><span lang=EN-US style='mso-ansi-language:EN-US'>Third level&#13;</span></div>
-
-<div class=B3><span lang=EN-US style='mso-ansi-language:EN-US'>Fourth
-level&#13;</span></div>
-
-<div class=B4><span lang=EN-US style='mso-ansi-language:EN-US'>Fifth level</span></div>
-
-</div>
-
-<div v:shape="_x0000_s33022" class=O style='mso-line-spacing:"100 50 0"'><span
-lang=EN-US style='font-family:Arial;mso-hansi-font-family:Arial;font-size:56%;
-color:black;mso-color-index:0;mso-ansi-language:EN-US;mso-field-code:meta16'><b>‹#›</b></span><span
-lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;color:black;
-mso-color-index:0;mso-ansi-language:EN-US;mso-special-format:lastCR'><b>&#13;</b></span></div>
-
-<div v:shape="_x0000_s33024" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span lang=EN-US style='font-size:56%;color:black;mso-color-index:0;
-mso-ansi-language:EN-US'><span style='mso-spacerun:yes'> </span>WhatÂ’s New in
-UML2<span style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
-</span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
-style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
-v1.0</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08.xml b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08.xml
deleted file mode 100644
index e98afbe..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="32"/>
-  <o:regrouptable v:ext="edit">
-   <o:entry new="1" old="0"/>
-   <o:entry new="2" old="0"/>
-   <o:entry new="3" old="0"/>
-   <o:entry new="4" old="0"/>
-   <o:entry new="5" old="4"/>
-   <o:entry new="6" old="0"/>
-   <o:entry new="7" old="0"/>
-   <o:entry new="8" old="0"/>
-   <o:entry new="9" old="0"/>
-   <o:entry new="10" old="0"/>
-   <o:entry new="11" old="10"/>
-  </o:regrouptable>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s32769" o:bwmode="white" fillcolor="white [1]"/>
- <p:shaperange id="_x0000_m32774">
-  <v:shapetype id="_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-   width:649.25pt;height:39.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m32775">
-  <v:shapetype id="_x0000_m32775" style='position:absolute;left:52.125pt;top:139.875pt;
-   width:609.25pt;height:307.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33020">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s33020" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master08_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33022">
-  <v:shapetype id="_x0000_s33022" style='position:absolute;left:12.125pt;top:508.875pt;
-   width:79.25pt;height:25.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33023">
-  <v:line id="_x0000_s33023" style='position:absolute;mso-wrap-style:none;
-   v-text-anchor:middle' from="114pt,506.875pt" to="114pt,522pt" o:bwmode="black"
-   o:userdrawn="t" strokecolor="black [0]">
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:rect id="_x0000_s33024" style='position:absolute;left:114pt;
-   top:509.875pt;width:606pt;height:19.25pt' o:bwmode="black" o:userdrawn="t"
-   filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s33026">
-  <v:shape id="_x0000_s33026" type="#_x0000_t75" style='position:absolute;
-   left:15pt;top:5pt;width:484pt;height:55.375pt' o:userdrawn="t">
-   <v:imagedata src="master08_image002.jpg" o:title="eclipsecon-ppt-banner"/>
-  </v:shape></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image001.jpg b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image001.jpg
deleted file mode 100644
index 6218aec..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image001.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image002.jpg b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image002.jpg
deleted file mode 100644
index 692ca44..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image002.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image005.jpg b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image005.jpg
deleted file mode 100644
index df11cf0..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image005.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image006.gif b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image006.gif
deleted file mode 100644
index 96b138a..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image006.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image007.jpg b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image007.jpg
deleted file mode 100644
index e558aaf..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_image007.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_stylesheet.css b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_stylesheet.css
deleted file mode 100644
index 84ba21e..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master08_stylesheet.css
+++ /dev/null
@@ -1,507 +0,0 @@
-body
-	{width:534px;
-	height:400px;}
-.TB
-	{mso-special-format:nobullet•;}
-.T
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#2F2672;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.BB
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:95%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.NB
-	{mso-special-format:nobullet•;}
-.N
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N1B
-	{mso-special-format:nobullet•;}
-.N1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N2B
-	{mso-special-format:nobullet•;}
-.N2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N3B
-	{mso-special-format:nobullet•;}
-.N3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N4N
-	{mso-special-format:nobullet•;}
-.N4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.OB
-	{mso-special-format:nobullet•;}
-.O
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CBB
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:114%;
-	mso-line-spacing:"100 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 25 15";
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CTB
-	{mso-special-format:nobullet•;}
-.CT
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HBB
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QBB
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.TblB
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl1B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl2B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl3B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl4B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.defaultB
-	{mso-special-format:nobullet•;}
-.default
-	{text-align:left;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-weight:normal;
-	font-style:normal;
-	text-decoration:none;
-	text-shadow:none;
-	text-effect:none;
-	mso-fareast-hint:no;
-	layout-flow:horizontal;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-text-raise:0%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:0;
-	mso-text-indent-alt:0;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;
-	direction:ltr;
-	mso-word-wrap:1;
-	mso-vertical-align-special:baseline;
-	mso-ansi-language:EN-US;}
-a:link
-	{color:silver !important;}
-a:active
-	{color:#DFFF66 !important;}
-a:visited
-	{color:#D18213 !important;}
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master09.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master09.html
deleted file mode 100644
index e66a3d4..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master09.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m33800" class=CT><span lang=EN-US style='mso-ansi-language:
-EN-US'>WhatÂ’s New in UML2</span></div>
-
-<div v:shape="_x0000_m33801" class=CB>
-
-<div><span lang=EN-US style='mso-ansi-language:EN-US'>Short Talk&#13;</span></div>
-
-<span lang=EN-US style='mso-ansi-language:EN-US'><br>
-</span><span lang=EN-US style='mso-ansi-language:EN-US'>Kenn Hussey</span></div>
-
-<div v:shape="_x0000_s33972" class=O><span lang=EN-US style='font-size:78%;
-color:black;mso-color-index:0;mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-<div v:shape="_x0000_s33975" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span lang=EN-US style='font-size:72%;color:black;mso-color-index:0;
-mso-ansi-language:EN-US'>© 2006 by IBM; made available under the EPL v1.0
-|<span style='mso-spacerun:yes'>  </span>Tuesday, March 21</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master09.xml b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master09.xml
deleted file mode 100644
index dc35ce7..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master09.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="33"/>
-  <o:regrouptable v:ext="edit">
-   <o:entry new="1" old="0"/>
-   <o:entry new="2" old="0"/>
-   <o:entry new="3" old="0"/>
-   <o:entry new="4" old="0"/>
-   <o:entry new="5" old="0"/>
-   <o:entry new="6" old="5"/>
-   <o:entry new="7" old="0"/>
-   <o:entry new="8" old="0"/>
-   <o:entry new="9" old="0"/>
-   <o:entry new="10" old="0"/>
-   <o:entry new="11" old="0"/>
-   <o:entry new="12" old="0"/>
-   <o:entry new="13" old="0"/>
-   <o:entry new="14" old="0"/>
-   <o:entry new="15" old="0"/>
-  </o:regrouptable>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s33793" o:bwmode="white" fillcolor="white [1]"/>
- <p:shaperange id="_x0000_s33977">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s33977" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master08_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_m33800">
-  <v:shapetype id="_x0000_m33800" style='position:absolute;left:30.75pt;top:134.375pt;
-   width:626.375pt;height:115.75pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="centerTitle"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m33801">
-  <v:shapetype id="_x0000_m33801" style='position:absolute;left:153.5pt;top:261.375pt;
-   width:7in;height:109pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="subTitle" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33972">
-  <v:shapetype id="_x0000_s33972" style='position:absolute;left:542pt;top:19pt;
-   width:168pt;height:37.5pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33975">
-  <v:rect id="_x0000_s33975" style='position:absolute;left:5.5pt;top:508.375pt;
-   width:716.5pt;height:22.875pt' o:bwmode="black" o:userdrawn="t" filled="f"
-   fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s33978">
-  <v:shape id="_x0000_s33978" type="#_x0000_t75" style='position:absolute;
-   left:15pt;top:5pt;width:484pt;height:55.375pt' o:userdrawn="t">
-   <v:imagedata src="master08_image002.jpg" o:title="eclipsecon-ppt-banner"/>
-  </v:shape></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master09_image003.jpg b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master09_image003.jpg
deleted file mode 100644
index df11cf0..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master09_image003.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master09_image004.jpg b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master09_image004.jpg
deleted file mode 100644
index e558aaf..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/master09_image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/outline.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/outline.html
deleted file mode 100644
index fdc2706..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/outline.html
+++ /dev/null
@@ -1,661 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<script src=script.js></script><script><!--
-if( !(IsWin("PPTOtl")||IsWin("PPTNav")||IsWin("PPTOtlNav")) )
-{
-	obj = GetObj("Main-File")
-	parent.location.href=obj.href
-}
-var gOtlHiliteClr="#ffffff",gOtlNormalClr="#000000",gOtlActiveClr="#ffff00",gSelected="",gTxtState=false,gChildEntryTable=new Array()
-function Load()
-{
-	if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
-	if( g_supportsPPTHTML ) {
-		if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true; return }
-		if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); parent.gOtlNavLoaded=true; return }
-	}
-}
-function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
-function LoadNav( oId,UpdFunc )
-{
-	document.ondragstart=CancelDrag
-	document.onselectstart=CancelDrag
-	document.body.style.margin=2
-	UpdFunc()
-	obj=document.all.item(oId)
-	obj.style.display="block"
-	obj.style.visibility="visible"
-	document.bgColor="threedface"
-	if( parent.frames["PPTNts"] )
-		notesBtn.style.display = ""
-	if( parent.gHasNarration )
-		nb_voiceBorder.style.display = ""
-}
-function LoadOtl()
-{
-	var otl=GetObj("OtlObj")
-	otl.style.display="block"
-	otl.style.visibility="visible"
-	if( gOtlActiveClr == "" ) gOtlActiveClr=document.linkColor
-	if( gOtlHiliteClr == "" ) gOtlHiliteClr=document.fgColor
-	if( gOtlNormalClr == "" )
-		gOtlNormalClr=document.bgColor
-	else
-		document.bgColor=gOtlNormalClr
-	InitArray()
-	if( ObjExists( parent.gCurSld ) ) {
-		ChangeState( parent.gCurSld,gOtlNormalClr,gOtlHiliteClr )
-		gSelected=parent.gCurSld
-	}
-	else gSelected = -1
-	UpdOtl()
-}
-function UpdOtl(){ UpdIdx(parent.gCurSld) }
-function UpdIdx( idx )
-{
-	if( gSelected != idx ) {
-		if( gSelected > 0 )
-			ChangeState( gSelected,gOtlHiliteClr,gOtlNormalClr )
-		if( ObjExists( idx ) ) {
-			gSelected = idx
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-		}
-		else gSelected = -1
-	}
-	if( gTxtState != parent.gOtlTxtExp ) {
-		state = "block"
-		if( !parent.gOtlTxtExp )
-			state="none"
-		for(ii=0; ii<gChildEntryTable.length; ii++) {
-			obj=gChildEntryTable[ii];
-			if( obj.id == null ) continue;
-			if( obj.id.indexOf("PPTC") >= 0 )
-				obj.style.display=state;
-		}
-		gTxtState=parent.gOtlTxtExp
-		if( ObjExists( gSelected ) )
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-	}
-}
-function InitArray()
-{
-	count=0
-	var list=GetTags(document,"DIV");
-	for(ii=0; ii<list.length; ii++) {
-		obj=list.item(ii)
-		if( obj.id == null ) continue
-		if( obj.id.indexOf("PPTC") >= 0 )
-			gChildEntryTable[count++]=obj
-	}
-}
-function ChangeState( idx,fgColor,bgColor )
-{
-	obj=GetObj("PPTL"+idx)
-	obj.style.color=fgColor
-	obj=GetObj("PPTP"+idx)
-	obj.style.backgroundColor=bgColor
-}
-function ChgClr( o,clr ){ if( o.id != "PPTL"+gSelected ) o.style.color=clr }
-function Over( src ){ ChgClr(GetLink(src),gOtlActiveClr) }
-function Out( src ){ ChgClr(GetLink(src),gOtlHiliteClr) }
-function Follow(src){ window.location.href = GetLink(src).href; }
-function ObjExists( ii ) { obj=GetObj("PPTP"+ii ); return( obj ) }
-function GoToSld( href ){ UpdIdx(parent.GetSldNum(href)); parent.GoToSld( href ) }
-function CancelDrag(){ window.event.cancelBubble=true;window.event.returnValue=false}
-function GetLink(src)
-{
-   if(src.tagName=="A") return src
-   else return GetTags(src,"A").item(0)
-}
-function UpdNav()
-{
-	txt = "<center>";
-	if( parent.GetHrefObj( parent.gCurSld ).mOrigVis == 1 )
-		txt += "Slide " + parent.GetCurSldNum() + " of " + parent.GetNumSlds()
-	else
-		txt += "Hidden Slide"
-	txt += "</center>";
-	nav_text.innerHTML = txt;
-	if( !parent.HasPrevSld() )
-		gBtnArr["nb_prev"].Enabled(0)
-	else
-		gBtnArr["nb_prev"].Enabled(1)
-	if( !parent.HasNextSld() )
-		gBtnArr["nb_next"].Enabled(0)
-	else
-		gBtnArr["nb_next"].Enabled(1)
-	gBtnArr["nb_nts"].SetEnabled()
-	gBtnArr["nb_nts"].SetFlag( parent.gHasNts )
-	gBtnArr["nb_sldshw"].Enabled(1)
-	gBtnArr["nb_voice"].Enabled(1)
-}
-function UpdOtlNav()
-{
-	gBtnArr["nb_otl"].SetEnabled();
-	if( parent.gOtlOpen )
-		gBtnArr["nb_otlTxt"].Enabled( true );
-	else
-		document.all.item("nb_otlTxtBorder").style.visibility = "hidden";
-}
-
-//--></script>
-<style>
-<!--.PTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;
-	padding-left:2px;
-	font-weight:bold;}
-.CTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;}
-a
-	{color:white;
-	text-decoration:none;}
-ul
-	{color:white;
-	margin-bottom:0px;
-	margin-left:20px;}
-.sldNum
-	{margin-top:5px;
-	color:white;}
-.button
-	{position:absolute;
-	width:32px;
-	height:20px;
-	border-style:solid;
-	border-width:1px;
-	border-color:threedface;}
--->
-</style>
-</head>
-
-<body onload="Load()" style='margin:2px'>
-
-<div id=NavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-<table id="notesBtn" style='position:absolute;display:none;width:70px' align=left cellpadding=0
- cellspacing=0>
- <td nowrap>
- <div id="nb_ntsElem" align=center style='position:relative;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt'><img src="notes_flag.gif"
- border=0 id="notes_flag" style='display:none'><span
-style='mso-spacerun:yes'>  </span>Notes</div>
- <div title="Show/Hide Notes" id="nb_nts" style='position:absolute;top:0%;
- left:0%;width:100%;height:100%'></div>
- </td>
-</table>
-
-<table style='position:relative;width:70px' align=right cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_sldshwText" title="Full
-Screen Slide Show" align=center style='position:relative;margin-left:20px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt;cursor:default'>Slide
-Show</div>
- <div id="nb_sldshwBorder" title="Full Screen Slide Show" style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_sldshw" style='position:relative;left:-254px'></div>
- </div>
- </td>
- <td>
- <div id="nb_voiceBorder" style='display:none;position:absolute;top:0;left:-40px;
- width:20px;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_voice" title="Pause/Play Narration" style='position:
- relative;left:-290px'></div>
- </div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_prevBorder" class=button style='left:-30px'>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_prev" title="Previous Slide" style='position:relative;
- left:0px'></div>
- </div>
- <span id="nav_text" style='position:relative;top:3px;width:100px;font-family:
- Arial;color:buttontext;font-size:9pt'></span>
- <div id="nb_nextBorder" class=button>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_next" title="Next Slide" style='position:relative;
- left:-90px'></div>
- </div>
- </td>
-</table>
-</div>
-
-<div id=OtlNavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-
-<table style='position:relative;width:70px' align=left cellpadding=0 cellspacing=0>
- <td nowrap><div title="Show/Hide
-Outline" id="nb_otl"
- style='position:absolute;top:0%;left:0%;width:100%;height:100%;cursor:default'>
- <div id="nb_otlElem" align=center style='position:relative;padding:3px;font-family:Arial;
- color:buttontext;font-size:9pt'>Outline</div></div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td>
- <div style='position:absolute;left:-18px;width:24px;height:20px;border-style:
- solid;border-width:1px;border-color:threedface' id="nb_otlTxtBorder">
- <div style='position:absolute;clip:rect(0px, 22px, 18px, 0px)'><img
- src=buttons.gif id="nb_otlTxt" title="Expand/Collapse Outline"
- style='position:relative;left:-157px'></div>
- </div>
- </td>
-</table>
-
-</div>
-
-<div id=OtlObj style='display:none;visibility:hidden;'>
-
-
-<table width="100%" style='font-family:Arial;font-size:9pt'>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>1</font></div>
-  </td>
-  <td width="100%">
-  <div id=PPTP1 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0028.html');" id=PPTL1>WhatÂ’s New in UML2?</a></font></div>
-  <div id=PPTC1 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Short Talk</li>
-   <br>
-   <br>
-   <li>Kenn Hussey</li>
-   <li>IBM Rational Software</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>2</font></div>
-  </td>
-  <td>
-  <div id=PPTP2 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0029.html');" id=PPTL2>Contents</a></font></div>
-  <div id=PPTC2 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Overview</li>
-   <br>
-   <br>
-   <li>Goals</li>
-   <br>
-   <br>
-   <li>Challenges</li>
-   <br>
-   <br>
-   <li>Status</li>
-   <br>
-   <br>
-   <li>Milestones</li>
-   <br>
-   <br>
-   <li>2.0 Development Plan</li>
-   <br>
-   <br>
-   <li>How Can You Help?</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>3</font></div>
-  </td>
-  <td>
-  <div id=PPTP3 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0030.html');" id=PPTL3>Overview</a></font></div>
-  <div id=PPTC3 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>An Eclipse Modeling Development Tools subcomponent at http://www.eclipse.org/modeling/mdt/?project=uml2#uml2</li>
-   <br>
-   <br>
-   <li>An EMF-based implementation of the UML™ 2.1 metamodel for the Eclipse
-       platform</li>
-   <br>
-   <br>
-   <li>Project lead is Kenn Hussey (khussey@ca.ibm.com)</li>
-   <br>
-   <br>
-   <li>Users include IBM, Omondo, Metamatrix, Â…</li>
-   <br>
-   <br>
-   <li>Estimated 85,000 downloads in January 2006</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>4</font></div>
-  </td>
-  <td>
-  <div id=PPTP4 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0031.html');" id=PPTL4>Goals</a></font></div>
-  <div id=PPTC4 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Provide a useable implementation of the UML metamodel to support the
-       development of modeling tools</li>
-   <br>
-   <br>
-   <li>Provide a common XMI schema to facilitate interchange of semantic models</li>
-   <br>
-   <br>
-   <li>Provide test cases as a means of validating the specification and
-       implementation</li>
-   <br>
-   <br>
-   <li>Provide validation rules as a means of defining and enforcing levels of compliance</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>5</font></div>
-  </td>
-  <td>
-  <div id=PPTP5 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0032.html');" id=PPTL5>Challenges</a></font></div>
-  <div id=PPTC5 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Since the specification has been at various stages of finalization, the
-       API has been a moving target</li>
-   <br>
-   <br>
-   <li>Aspects of the standard metamodel (redefinition, subsets/supersets,
-       unions) made the mapping to Java™ and XMI non-trivial</li>
-   <br>
-   <br>
-   <li>There were a number of errors in the specification which, until fixed,
-       made the API and XMI schema difficult to use</li>
-   <br>
-   <br>
-   <li>Compliance points for UML are a subject of debate within the modeling
-       community</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>6</font></div>
-  </td>
-  <td>
-  <div id=PPTP6 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0033.html');" id=PPTL6>Status – Metamodel</a></font></div>
-  <div id=PPTC6 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>EMF-generated API based on a merged version of the metamodel in which
-       package merges and most redefinitions have been factored out</li>
-   <br>
-   <br>
-   <li>Includes mechanisms to support derived union, redefines, and subsets
-       constraints</li>
-   <br>
-   <br>
-   <li>Generated using customized code generator and JET templates</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>7</font></div>
-  </td>
-  <td>
-  <div id=PPTP7 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0034.html');" id=PPTL7>Status – Interchange</a></font></div>
-  <div id=PPTC7 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Default XMI schema generated using EMF</li>
-   <br>
-   <br>
-   <li>Defines one namespace (http://www.eclipse.org/uml2/2.0.0/UML) for all
-       elements, thus supporting interchange</li>
-   <br>
-   <br>
-   <li>Elements identified using Universally Unique Identifiers (UUIDs)</li>
-   <br>
-   <br>
-   <li>Will support import/export from/to OMG XMI for UML once the 2.1
-       specification is finalized</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>8</font></div>
-  </td>
-  <td>
-  <div id=PPTP8 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0035.html');" id=PPTL8>Status – Specification</a></font></div>
-  <div id=PPTC8 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Errors discovered while developing the API and XMI schema were fixed and
-       submitted as issues to the UML 2.1 Superstructure and Infrastructure
-       Revision Task Force (RTF)</li>
-   <br>
-   <br>
-   <li>UML 2.1 Superstructure and Infrastructure RTF has delivered final draft
-       and report to OMG</li>
-   <br>
-   <br>
-   <li>Release date for UML 2.1 Specification is TBD (soon!)</li>
-   <br>
-   <br>
-   <li>UML 2.2 Superstructure and Infrastructure RTF is being chartered – open
-       issues available at http://www.omg.org/issues/uml2-rtf.open.html</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>9</font></div>
-  </td>
-  <td>
-  <div id=PPTP9 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0036.html');" id=PPTL9>Status – Compliance</a></font></div>
-  <div id=PPTC9 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Validation rules evaluated using EMF validator mechanism</li>
-   <br>
-   <br>
-   <li>Validators implemented based on sets of OCL constraints</li>
-   <br>
-   <br>
-   <li>Correspond to compliance levels</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>10</font></div>
-  </td>
-  <td>
-  <div id=PPTP10 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0037.html');" id=PPTL10>Milestones</a></font></div>
-  <div id=PPTC10 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>2004</li>
-   <ul>
-    <li>June – 1.0</li>
-    <li>September – 1.0.1</li>
-   </ul>
-   <li>2005</li>
-   <ul>
-    <li>March – 1.0.2</li>
-    <li>June – 1.0.3</li>
-    <li>July – 1.1.0</li>
-    <li>September – 1.1.1</li>
-   </ul>
-   <li>2006</li>
-   <ul>
-    <li>June – 2.0</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>11</font></div>
-  </td>
-  <td>
-  <div id=PPTP11 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0038.html');" id=PPTL11>2.0 Development Plan</a></font></div>
-  <div id=PPTC11 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Theme: Release Currency</li>
-   <ul>
-    <li>Eclipse 3.2 / EMF 2.2 Compatibility</li>
-   </ul>
-   <br>
-   <li>Theme: Completeness</li>
-   <ul>
-    <li>UML 2.1 Conformance</li>
-    <li>UML 2.1 Interchange</li>
-    <li>UML2 2.0 Migration</li>
-    <li>Validation Rules</li>
-    <li>Unit Tests</li>
-    <li>OCL Support</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>12</font></div>
-  </td>
-  <td>
-  <div id=PPTP12 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0040.html');" id=PPTL12>2.0 Development Plan</a></font></div>
-  <div id=PPTC12 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Theme: Built to Last</li>
-   <ul>
-    <li>Reduced Memory Footprint</li>
-   </ul>
-   <br>
-   <li>Theme: Simple to Use</li>
-   <ul>
-    <li>Improved Convenience Methods</li>
-    <li>Improved Documentation</li>
-    <li>Enhanced Icons</li>
-   </ul>
-   <br>
-   <li>Theme: Broadening the Community</li>
-   <ul>
-    <li>Tools</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>13</font></div>
-  </td>
-  <td>
-  <div id=PPTP13 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0039.html');" id=PPTL13>How Can You Help?</a></font></div>
-  <div id=PPTC13 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Develop tools based on UML2</li>
-   <br>
-   <br>
-   <li>Report bugs</li>
-   <br>
-   <br>
-   <li>Participate in newsgroup discussions</li>
-   <br>
-   <br>
-   <li>Write articles</li>
-   <br>
-   <br>
-   <li>Become a UML2 contributor!</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>14</font></div>
-  </td>
-  <td>
-  <div id=PPTP14 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0041.html');" id=PPTL14>Legal Notices</a></font></div>
-  <div id=PPTC14 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML is a trademark of the Object Management Group</li>
-   <br>
-   <br>
-   <li>Java and all Java-based trademarks are trademarks of Sun Microsystems,
-       Inc. in the United States, other countries, or both</li>
-   <br>
-   <br>
-   <li>Other company, product, or service names may be trademarks or service
-       marks of others</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
-</table>
-
-
-
-</div>
-
-<div style='display:none'><a href=master08.html></a><a href=master08.xml></a><a
-href=preview.wmf></a><a href="master08_image001.jpg"></a><a
-href="master08_image002.jpg"></a><a href=master09.html></a><a
-href=master09.xml></a><a href=master02.html></a><a href=pres.xml></a><a
-href=editdata.mso></a><a href=slide0028.html></a><a href="master09_image003.jpg"></a><a
-href="master09_image004.jpg"></a><a href=slide0029.html></a><a
-href="master08_image005.jpg"></a><a href="master08_image006.gif"></a><a
-href="master08_image007.jpg"></a><a href=slide0030.html></a><a
-href=slide0031.html></a><a href=slide0032.html></a><a href=slide0033.html></a><a
-href=slide0034.html></a><a href=slide0035.html></a><a href=slide0036.html></a><a
-href=slide0037.html></a><a href=slide0038.html></a><a href=slide0040.html></a><a
-href=slide0039.html></a><a href=slide0041.html></a><a href=master01.html></a><a
-href="master08_stylesheet.css"></a><a href=script.js></a><a
-href="../EclipseCon2006_ShortTalk.html"></a><a href=fullscreen.html></a><a
-href=buttons.gif></a><a href=frame.html></a><a href=outline.html></a></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/pres.xml b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/pres.xml
deleted file mode 100644
index e06cbfb..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/pres.xml
+++ /dev/null
@@ -1,73 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <p:presentation sizeof="screen" notessizex="4376" notessizey="5816"
-  gridspacingx="23224" gridspacingy="23224">
-  <p:master id="8" slidesn="1C24AB8,8B769EC0" type="main" href="master08.html"
-   xmlhref="master08.xml" template="1_Default Design" preserved="t"
-   layout="title_body" slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-    <p:colorscheme
-     colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
-   </p:schemes>
-  </p:master>
-  <p:master id="9" slidesn="1C24D0E,1F75CD10" type="title" href="master09.html"
-   xmlhref="master09.xml" preserved="t" layout="title_subtitle"
-   slots="centerTitle,subTitle,dateTime,footer,slideNumber"/>
-  <p:master id="1" slidesn="1C24D43,1A7CCF90" type="notes" href="master01.html"
-   layout="notes" slots="header,dateTime,slideImage,body,footer,slideNumber"/>
-  <p:master id="2" slidesn="1C2506F,D2141A80" type="handout"
-   href="master02.html" layout="handout"
-   slots="header,dateTime,footer,slideNumber"/>
-  <p:slide id="28" slidesn="1C1D9B1,B4E74A20" href="slide0028.html"
-   masterhref="master09.html" layout="title_subtitle"
-   slots="centerTitle,subTitle"/>
-  <p:slide id="29" slidesn="1C3C8BA,EEFAEC40" href="slide0029.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="30" slidesn="1C631AA,B46D2B0" href="slide0030.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="31" slidesn="1C631AA,C3410F20" href="slide0031.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="32" slidesn="1C631AB,265D5FA0" href="slide0032.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="33" slidesn="1C631AB,8FA59540" href="slide0033.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="34" slidesn="1C631AB,E204ECA0" href="slide0034.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="35" slidesn="1C631AC,5D4F6CA0" href="slide0035.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="36" slidesn="1C631AC,F1A8B820" href="slide0036.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="37" slidesn="1C631AD,109A2AC0" href="slide0037.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="38" slidesn="1C6324C,69B01AD0" href="slide0038.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="40" slidesn="1C63263,AC37FFA0" href="slide0040.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="39" slidesn="1C6324C,9B14E920" href="slide0039.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="41" slidesn="1C63317,96176DA0" href="slide0041.html"
-   layout="title_body" slots="title,body"/>
-  <p:viewstate type="slideView" scale="75" nosnaptogrid="t" snaptoshape="t"
-   sorterscale="100" restoredleft="156" restoredtop="946" manualadjustleft="t"
-   manualadjusttop="t" hideoutlineicons="t"/>
-  <p:guide type="horizontal" position="1070"/>
-  <p:guide type="horizontal" position="3247"/>
-  <p:guide type="horizontal" position="2150"/>
-  <p:guide type="horizontal" position="4079"/>
-  <p:guide type="vertical" position="2880"/>
-  <p:guide type="vertical" position="1176"/>
-  <p:guide type="vertical" position="913"/>
-  <p:font name="Arial" charset="0" type="4"/>
-  <p:font name="Wingdings" charset="2" type="6" family="2"/>
-  <p:font name="Times" charset="0" type="10" family="18"/>
-  <p:headersfooters slidenumber="t" formatid="0" noheader="t" nodate="t"/>
-  <p:headersfooters notes="t" slidenumber="t"/>
-  <p:pptdocumentsettings framecolors="WhiteTextOnBlack" hideslideanimation="t"
-   browsersupport="v4"/>
- </p:presentation>
- <o:shapedefaults v:ext="edit" spidmax="687108">
-  <o:colormru v:ext="edit" colors="#322c72,#2f2672,#302775,#322777,#312672,#2c2674,#2d2672,#302573"/>
-  <o:colormenu v:ext="edit" fillcolor="none [5]" strokecolor="none [0]"/>
- </o:shapedefaults></xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/preview.wmf b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/preview.wmf
deleted file mode 100644
index b5db438..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/script.js b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/script.js
deleted file mode 100644
index 9ccfda7..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/script.js
+++ /dev/null
@@ -1,833 +0,0 @@
-function LoadSld()

-{

-	var sld=GetObj("SlideObj")

-	if( !g_supportsPPTHTML ) {

-		sld.style.visibility="visible"

-		return

-	}

-	if( MakeNotesVis() ) return

-	runAnimations = _InitAnimations();

-	if( IsWin("PPTSld") )

-		parent.SldUpdated(GetSldId())

-	g_origSz=parseInt(SlideObj.style.fontSize)

-	g_origH=sld.style.posHeight

-	g_origW=sld.style.posWidth

-	g_scaleHyperlinks=(document.all.tags("AREA").length>0)

-	if( g_scaleHyperlinks )

-		InitHLinkArray()

-	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )

-		document.body.scroll="no"

-	_RSW()

-	if( IsWin("PPTSld") && parent.IsFullScrMode() )

-		FullScrInit();

-	

-	MakeSldVis();

-	ChkAutoAdv()

-

-	if( runAnimations )

-	{

-		if( document.all("NSPlay") )

-			document.all("NSPlay").autoStart = false;

-		if( sld.filters && sld.filters.revealtrans )

-			setTimeout( "document.body.start()", sld.filters.revealtrans.duration * 1000 );

-		else

-			document.body.start();

-	}

-}

-function MakeSldVis()

-{

-	var fTrans=g_showAnimation && SldHasTrans()

-	if( fTrans )

-	{

-		if( g_bgSound ) {

-			idx=g_bgSound.indexOf(",");

-			pptSound.src=g_bgSound.substr( 0, idx );

-			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));

-		}

-		SlideObj.filters.revealtrans.Apply()

-    }

-	SlideObj.style.visibility="visible"

-	if( fTrans )

-		SlideObj.filters.revealtrans.Play()

-}

-function MakeNotesVis()

-{

-	if( !IsNts() ) return false

-	SlideObj.style.display="none"

-	nObj = document.all.item("NotesObj")

-	parent.SetHasNts(0)

-	if( nObj ) {

-		nObj.style.display=""

-		parent.SetHasNts(1)

-	}

-	return 1

-}

-function ChkAutoAdv()

-{

-	if(SldHasTrans())

-		SlideObj.onfilterchange=AutoAdv

-	else

-		AutoAdv()

-}

-function AutoAdv()

-{

-	if(!IsWin("PPTSld") || !gUseSldTimings )return

-	var sld=GetCurSld()

-	if( (sld.mAdvDelay>0) && !parent.IsFramesMode() )

-		setTimeout("parent.GoToNextSld()",sld.mAdvDelay)

-}

-function GetObj(id)

-{

-	if(g_supportsPPTHTML) return document.all(id);

-	else return document.getElementById(id);

-}

-function SldHasTrans() { return SlideObj.style.getAttribute("filter")!="" }

-function GetSldId() { return sId=location.href.substring(location.href.lastIndexOf('/')+1) }

-function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }

-function IsWin( name ) { return window.name == name }

-function IsNts() { return IsWin("PPTNts") }

-function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }

-function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }

-function SupportsPPTHTML()

-{

-	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0

-	if( msie >= 0 )

-		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )

-	else

-		ver=parseInt(appVer)

-	return( ver >= 4 && msie >= 0 )

-}

-function _RSW()

-{

-	if( !g_supportsPPTHTML || IsNts() ||

-	  ( !g_scaleInFrame && (!IsWin("PPTSld") || !parent.IsFullScrMode()) ) )

-		return

-        var padding=0;

-        if( IsWin("PPTSld") && parent.IsFramesMode() ) padding=6

-	cltWidth=document.body.clientWidth-padding

-	cltHeight=document.body.clientHeight-padding

-	factor=(1.0*cltWidth)/g_origW

-	if( cltHeight < g_origH*factor )

-		factor=(1.0*cltHeight)/g_origH

-	newSize = g_origSz * factor

-	if( newSize < 1 ) newSize=1

-	s=SlideObj.style

-	s.fontSize=newSize+"px"

-	s.posWidth=g_origW*factor

-	s.posHeight=g_origH*factor

-	s.posLeft=(cltWidth-s.posWidth+padding)/2

-	s.posTop=(cltHeight-s.posHeight+padding)/2

-	if( g_scaleHyperlinks )

-		ScaleHyperlinks( factor )

-}

-function _InitAnimations()

-{

-	animRuntimeInstalled = ''+document.body.localTime != 'undefined';

-	isFullScreen = (window.name == "PPTSld") && !parent.IsFramesMode();

-	g_animUseRuntime = g_showAnimation && animRuntimeInstalled && !(isFullScreen && parent.IsSldVisited());

-	if( g_animUseRuntime ) {

-		collSeq = document.all.tags("seq");

-		if( collSeq != null ) {

-			for(ii=0;ii<collSeq.length;ii++) {

-				if( collSeq[ii].getAttribute( "p:nodeType" ) == "mainSeq" ) {

-					g_animMainSequence = collSeq[ii];

-					break;

-				}

-			}

-		}

-		if( g_animItemsToHide ) {

-			for(jj = 0; jj < g_animItemsToHide.length; jj++) {

-				if( hideObj = GetObj(g_animItemsToHide[jj]) )

-					hideObj.runtimeStyle.visibility="hidden";

-			}

-		}

-		if( g_animInteractiveItems ){

-			for(jj = 0; jj < g_animInteractiveItems.length; jj++) {

-				if( triggerObj = GetObj(g_animInteractiveItems[jj]) )

-					triggerObj.runtimeStyle.cursor="hand";

-			}

-		}

-		if( gUseSldTimings && ''+g_animSlideTime != 'undefined' ) {

-			adjustedTime = document.body.calculateAutoAdvanceTimes( g_animSlideTime, g_animEffectTimings );

-			if( IsWin("PPTSld") && adjustedTime != g_animSlideTime ) {

-			   var sld = GetCurSld();

-			   sld.mAdvDelay = adjustedTime * 1000;

-			}

-		}

-	}

-	return g_animUseRuntime;

-}

-gSldJump = 0, gSldJumpTrack = 0, gSldJumpIdx = "";

-function _KPH()

-{

-	if( IsNts() ) return;

-	if( !parent.IsFramesMode() && event.keyCode == 27 && !HideMenu() )

-		parent.window.close( self );

-	else if( event.keyCode == 32 ) {

-		if( window.name == "PPTSld" )

-			parent.PPTSld.DocumentOnClick();

-		else

-			parent.GoToNextSld();

-	}

-	CatchNumKeys( parent, event );

-}

-function CatchNumKeys( win, event ) {

-	if( win.IsFullScrMode() && (48<=event.keyCode) && (event.keyCode<=57) ) {

-		gSldJump = 1;

-		gSldJumpIdx += (event.keyCode-48).toString();

-	}

-	if( win.IsFullScrMode() && gSldJump && event.keyCode == 13 ) {

-		var numSlds = parent.GetSldList().mList.length

-		if ( gSldJumpIdx > numSlds )

-			gSldJumpIdx = numSlds;

-		if ( gSldJumpIdx >= 0 ) {

-			if ( gSldJumpIdx == 0 )

-				gSldJumpIdx = 1;

-			var jumpTo = parseInt(gSldJumpIdx);

-			gSldJump = 0; gSldJumpIdx = "";

-			win.GoToSld( parent.GetSldList().mList[jumpTo-1].mSldHref )

-		}

-	}

-}

-function _KDH()

-{

-	if( event.keyCode == 8 ) {

-		event.returnValue = 0;

-		parent.GoToPrevSld();

-	}

-}

-function DocumentOnClick()

-{

-	if( IsNts() || parent.HideMenu() ) return;

-	if( ( g_allowAdvOnClick && !parent.IsFramesMode() ) ||

-	    (event && (event.keyCode==32) ) )

-		parent.GoToNextSld();

-}

-

-var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = 1, gId="", g_bgSound="",

-    g_scaleHyperlinks = false, g_allowAdvOnClick = 1, g_showInBrowser = 0, gLoopCont = 0, gUseSldTimings = 1;

-var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && ( (window.name=="PPTSld" && !parent.IsFramesMode()) || g_showInBrowser );var g_animManager = null;

-var g_animUseRuntime = false;

-var g_animItemsToHide, g_animInteractiveItems, g_animSlideTime;

-var g_animMainSequence = null;

-var ENDSHOW_MESG="End of slide show, click to exit.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=14, SCRIPT_HREF="script.js", FULLSCR_HREF="fullscreen.html";

-var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = 0, gHasNarration = 0, gOtlOpen = true

-window.gPPTHTML=SupportsPPTHTML()

-var gMainDoc=new Array(new hrefList("slide0028.html",1,-1,1),new hrefList("slide0029.html",1,-1,1),new hrefList("slide0030.html",1,-1,1),new hrefList("slide0031.html",1,-1,1),new hrefList("slide0032.html",1,-1,1),new hrefList("slide0033.html",1,-1,1),new hrefList("slide0034.html",1,-1,1),new hrefList("slide0035.html",1,-1,1),new hrefList("slide0036.html",1,-1,1),new hrefList("slide0037.html",1,-1,1),new hrefList("slide0038.html",1,-1,1),new hrefList("slide0040.html",1,-1,1),new hrefList("slide0039.html",1,-1,1),new hrefList("slide0041.html",1,-1,1));

-function FullScrInit()

-{

-	g_allowAdvOnClick = GetCurSld().mAdvOnClk

-	document.body.style.backgroundColor="black"

-	document.oncontextmenu=parent._CM;

-	document.onkeydown = _KDH;

-	document.ondragstart=Cancel

-	document.onselectstart=Cancel

-	self.focus()

-}

-function Redirect( frmId )

-{

-	var str=document.location.hash,idx=str.indexOf('#'), sId=GetSldId()

-	if(idx>=0) str=str.substr(1);

-	if( window.name != frmId && ( sId != str) ) {

-		obj = GetObj("Main-File")

-		window.location.href=obj.href+"#"+sId

-		return 1

-	}

-	return 0

-}

-var MHTMLPrefix = CalculateMHTMLPrefix();

-function CalculateMHTMLPrefix()

-{

-	if ( document.location.protocol == 'mhtml:') {

-		href=new String(document.location.href)

-		Start=href.indexOf('!')+1

-		End=href.lastIndexOf('/')+1

-		if (End < Start)

-			return href.substring(0, Start)

-		else

-		return href.substring(0, End)

-	}

-	return '';

-}

-function GetTags(base,tag)

-{

-	if(g_supportsPPTHTML) return base.all.tags(tag);

-	else return base.getElementsByTagName(tag);

-}

-function UpdNtsPane(){ if(frames["PPTNts"]) PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }

-function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }

-function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }

-function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }

-function SetHasNts( fVal )

-{

-	if( gHasNts != fVal ) {

-		gHasNts=fVal

-		UpdNavPane()

-	}

-}

-function ToggleOtlText()

-{

-	gOtlTxtExp=!gOtlTxtExp

-	UpdOtlPane()

-}

-function ToggleOtlPane()

-{

-	frmset=document.all("PPTHorizAdjust")

-	frm=document.all("PPTOtl")

-	if( gOtlOpen )

-		frmset.cols="*,100%"

-	else

-		frmset.cols="25%,*"

-	gOtlOpen=!gOtlOpen

-	frm.noResize=!frm.noResize

-	UpdOtNavPane()

-}

-function ToggleNtsPane()

-{

-	frmset=document.all("PPTVertAdjust")

-	frm=document.all("PPTNts")

-	if( gNtsOpen )

-		frmset.rows="100%,*"

-	else

-		frmset.rows="*,20%"

-	gNtsOpen=!gNtsOpen

-	UpdNtsPane()

-}

-function ClearMedia()

-{

-	if (PPTSld.pptSound) PPTSld.pptSound.loop = 0;

-}

-function FullScreen()

-{

-	if ( PPTSld.g_animUseRuntime )

-		PPTSld.document.body.pause();

-	ClearMedia();

-	var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;

-	if(PPTNav.event.ctrlKey) {

-		var w = (window.screen.availWidth * 1.0) / 2.0

-		var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW

-		win = window.open( MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w + ",height=" + h );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-	else

-	{

-		win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-}

-function ToggleVNarration()

-{

-	rObj=PPTSld.document.all("NSPlay")

-	if( rObj && !PPTSld.g_animUseRuntime ) {

-		if( (rObj.playState == 1)||(rObj.playState == 0) )

-			rObj.Play()

-		else if( rObj.playState == 2 )

-			rObj.Pause()

-		else

-			return;

-	}

-	else if( PPTSld.g_animUseRuntime )

-	{

-		narObj = PPTSld.document.all("narrationID")

-		if( narObj )

-			narObj.togglePause()

-	}

-}

-function GetCurSldNum()

-{

-	obj=GetHrefObj(gCurSld)

-	if( obj.mOrigVis == 1 )

-		return obj.mSldIdx

-	else

-		return gCurSld

-}

-function GetNumSlds()

-{

-	if( GetHrefObj(gCurSld).mOrigVis == 1 )

-		return GetSldList().mNumVisSlds;

-	else

-		return GetSldList().mList.length

-}

-function GetSldNum( href )

-{

-	for(ii=0; ii<GetSldList().mList.length; ii++) {

-		if ( GetSldList().mList[ii].mSldHref == href )

-			return ii+1

-	}

-	return 1

-}

-function GetHrefObj( sldIdx ){ return GetSldList().mList[sldIdx-1] }

-function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }

-function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }

-function GoToNextSld()

-{

-	ii=gCurSld + 1

-	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {

-		if( ii<=GetSldList().mList.length ) {

-			obj=GetHrefObj(ii)

-			obj.mVis=1

-			GoToSldNum(ii)

-			return

-		}

-	}

-	else {

-		obj=GetHrefObj( ii )

-		while ( obj && ( obj.mOrigVis == 0 ) )

-			obj=GetHrefObj(++ii)

-		if( obj && obj.mOrigVis ) {

-			GoToSldNum(ii)

-			return

-		}

-	}

-	if( gSldStack.length > 1 )

-		PopSldList();

-	else if( !IsFramesMode() ) {

-                if( gLoopCont )

-			GoToFirst()

-                else

-			EndShow()

-	}

-}

-function GoToPrevSld()

-{

-	ii=gCurSld-1

-	if( ii > 0 ) {

-		obj=GetHrefObj(ii)

-		while ( obj && ( obj.mVis == 0 ) && ( ii>0 ) )

-			obj=GetHrefObj(--ii)

-        if( ii == 0 ) ii=1

-		GoToSldNum(ii)

-	}

-}

-function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }

-function GoToLast()

-{

-	ii=GetSldList().mList.length

-	if( ii != gCurSld )

-		GoToSld( GetHrefObj(ii).mSldHref )

-}

-function GoToSldNum( num )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	obj = GetHrefObj( num )

-	obj.mVis=1

-	gPrevSld=gCurSld

-	gCurSld = num;

-	PPTSld.location.replace(MHTMLPrefix+obj.mSldHref)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function GoToSld( href )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	GetHrefObj( GetSldNum(href) ).mVis=1

-	PPTSld.location.replace(MHTMLPrefix+href)

-}

-function SldUpdated( id )

-{

-	if( id == GetHrefObj(gCurSld).mSldHref ) return

-	gPrevSld=gCurSld

-	gCurSld=GetSldNum(id)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }

-function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }

-function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }

-function CloseWindow() {

-	if( HideMenu() ) return;

-	var event = PPTSld.event;

-	if( !IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) )

-		window.close( self );

-	CatchNumKeys( self, event );

-}

-function Unload() { gIsEndShow=0; }

-function SetupEndShow() {

-	gIsEndShow=1;

-	PPTSld.document.body.scroll="no";

-	PPTSld.document.onkeypress=CloseWindow;

-	PPTSld.document.onclick=CloseWindow;

-	PPTSld.document.oncontextmenu=_CM;

-}

-function EndShow()

-{

-	if( IsFramesMode() ) return

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	doc=PPTSld.document

-	doc.open()

-	doc.writeln('<html><body bgcolor=black onload=parent.SetupEndShow() onunload=parent.Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')

-	doc.close()

-}

-function SetSldVisited(){ GetSldList().mList[gCurSld-1].mVisited=true }

-function IsSldVisited(){ return GetSldList().mList[gCurSld-1].mVisited }

-function hrefList( sldHref, visible, advDelay, advClk )

-{

-	this.mSldHref= this.mNtsHref = sldHref

-	this.mOrigVis= this.mVis = visible

-	this.mVisited= false

-	this.mAdvDelay= advDelay

-	this.mAdvOnClk= advClk

-}

-function SldList(arr,curSld,fEnd)

-{

-	this.mCurSld = curSld;

-	this.mList = new Array();

-	var idx = 1;

-	for(ii=0;ii<arr.length;ii++) {

-		this.mList[ii] = new hrefList( arr[ii].mSldHref, arr[ii].mOrigVis, arr[ii].mAdvDelay, arr[ii].mAdvOnClk );

-		if( arr[ii].mOrigVis )

-			this.mList[ii].mSldIdx = idx++;

-	}

-	this.mNumVisSlds = idx-1;

-	this.fEndShow = fEnd;

-}

-function GetSldList() {	return gSldStack[gSldStack.length-1] }

-function GetCurSld() { return parent.GetSldList().mList[parent.gCurSld - 1] }

-gSldStack = new Array();

-gSldStack[0] = new SldList(gMainDoc,gCurSld,1)

-function ViewCustomShow(idx,fEnd)

-{

-	if( !IsFullScrMode() ) return;

-	var sldList = new Array();

-	var custShow = custShowList[idx-1];

-	var jj = 0;

-	for( ii=0;ii<custShow.length;ii++ ) {

-		if( custShow[ii] <= gMainDoc.length )

-			sldList[jj++] = gMainDoc[custShow[ii]-1];

-	}

-	if (sldList.length > 0) {

-	PushSldList(sldList,fEnd);

-	gCurSld = 1;

-	}

-	else

-		if( PPTSld.event ) PPTSld.event.cancelBubble=true

-}

-function PushSldList(arr,fEnd) {

-	var ii = gSldStack.length;

-	gSldStack[ii] = new SldList(arr,gCurSld,fEnd);

-	GoToSld( gSldStack[ii].mList[0].mSldHref );

-}

-function PopSldList() {

-	if (gSldStack[gSldStack.length-1].fEndShow)

-		EndShow()

-	else {

-	gCurSld = gSldStack[gSldStack.length-1].mCurSld;

-	gSldStack[gSldStack.length-1] = null;

-	gSldStack.length--;

-	var sldList = gSldStack[gSldStack.length-1];

-	GoToSld( sldList.mList[gCurSld - 1].mSldHref );

-	}

-}

-var custShowList=new Array();

-function ImgBtn( oId,bId,w,action )

-{

-	var t=this

-	t.Perform    = _IBP

-	t.SetActive  = _IBSetA

-	t.SetInactive= _IBSetI

-	t.SetPressed = _IBSetP

-	t.SetDisabled= _IBSetD

-	t.Enabled    = _IBSetE

-	t.ChangeIcon = null

-	t.UserAction = action

-	t.ChgState   = _IBUI

-	t.mObjId   = oId

-	t.mBorderId= bId

-	t.mWidth   = w

-	t.mIsOn    = t.mCurState = 0

-}

-function _IBSetA()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetI()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetP()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gShadowClr,gHiliteClr,2 )

-		obj.style.posLeft+=1; obj.style.posTop+=1

-	}

-}

-function _IBSetD()

-{

-	obj=this.ChgState( gFaceClr,gFaceClr,0 )

-	obj.style.posTop=0

-}

-function _IBSetE( state )

-{

-	var t=this

-	GetObj( t.mBorderId ).style.visibility="visible"

-	if( state != t.mIsOn ) {

-		t.mIsOn=state

-		if( state )

-			t.SetInactive()

-		else

-			t.SetDisabled()

-	}

-}

-function _IBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-		if( t.ChangeIcon ) {

-			obj=GetObj(t.mObjId)

-			if( t.ChangeIcon() )

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth

-			else

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth

-		}

-		t.SetActive()

-	}

-}

-function _IBUI( clr1,clr2,nextState )

-{

-	var t=this

-	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )

-	obj=GetObj( t.mObjId )

-	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop

-	t.mCurState=nextState

-	return obj

-}

-function TxtBtn( oId,oeId,action,chkState )

-{

-	var t=this

-	t.Perform    = _TBP

-	t.SetActive  = _TBSetA

-	t.SetInactive= _TBSetI

-	t.SetPressed = _TBSetP

-	t.SetDisabled= _TBSetD

-	t.SetEnabled = _TBSetE

-	t.GetState   = chkState

-	t.UserAction = action

-	t.ChgState   = _TBUI

-	t.mObjId      = oId

-	t.m_elementsId= oeId

-	t.mIsOn       = 1

-}

-function _TBSetA()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gHiliteClr,gShadowClr,0,0 )

-}

-function _TBSetI()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-}

-function _TBSetP()

-{

-	if( this.mIsOn )

-		this.ChgState( gShadowClr,gHiliteClr,1,1 )

-}

-function _TBSetD()

-{

-	this.ChgState( gFaceClr,gFaceClr,0,0 )

-	this.mIsOn = 0

-}

-function _TBSetE()

-{

-	var t=this

-	if( !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-	else

-		t.ChgState( gShadowClr,gHiliteClr,1,1 )

-	t.mIsOn = 1

-}

-function _TBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-        if( !t.GetState )

-            return

-		if( t.GetState() )

-			t.SetPressed()

-		else

-			t.SetActive()

-	}

-}

-function _TBUI( clr1,clr2,lOffset,tOffset )

-{

-	SetBorder( GetObj( this.mObjId ),clr1,clr2 )

-	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )

-}

-function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }

-function SetBorder( obj, upperLeft, lowerRight )

-{

-	s=obj.style;

-	s.borderStyle      = "solid"

-	s.borderWidth      = 1

-	s.borderLeftColor  = s.borderTopColor = upperLeft

-	s.borderBottomColor= s.borderRightColor = lowerRight

-}

-function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }

-function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }

-function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }

-function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }

-function BtnOnUp()

-{

-	b=GetBtnObj()

-	if( b != null )

-		b.Perform()

-	else

-		Upd()

-}

-function GetNtsState(){ return parent.gNtsOpen }

-function GetOtlState(){ return parent.gOtlOpen }

-function GetOtlTxtState(){ return parent.gOtlTxtExp }

-function NtsBtnSetFlag( fVal )

-{

-	s=document.all.item( this.m_flagId ).style

-	s.display="none"

-	if( fVal )

-		s.display=""

-	else

-		s.display="none"

-}

-function _BSetA_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetActive() }

-function _BSetI_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetInactive() }

-var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"

-var gBtnArr = new Array()

-gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_otlElem"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_nts"] = new TxtBtn( "nb_nts","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )

-gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )

-gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )

-gBtnArr["nb_sldshwBorder"] = new TxtBtn( "nb_sldshw","nb_sldshwBorder",parent.FullScreen,null )

-gBtnArr["nb_sldshwBorder"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwBorder"].SetInactive = _BSetI_Border;

-gBtnArr["nb_sldshwText"] = new TxtBtn( "nb_sldshw","nb_sldshwText",parent.FullScreen,null )

-gBtnArr["nb_sldshwText"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwText"].SetInactive = _BSetI_Border;

-gBtnArr["nb_voice"]  = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )

-gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )

-gBtnArr["nb_nts"].m_flagId= "notes_flag"

-gBtnArr["nb_nts"].SetFlag = NtsBtnSetFlag

-gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState

-var sNext="Next",sPrev="Previous",sEnd="End Show",sFont="Arial",sArrow="Arrow",sFreeform="Freeform",sRect="Rectangle",sOval="Oval"

-function ShowMenu()

-{

-	BuildMenu();

-	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

-	m = PPTSld.document.all.item("ctxtmenu")

-	m.style.pixelLeft=x

-	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )

-		m.style.pixelLeft=x-m.scrollWidth

-	m.style.pixelTop=y

-	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )

-		m.style.pixelTop=y-m.scrollHeight

-	m.style.display=""

-}

-function _CM()

-{

-	if( !parent.IsFullScrMode() ) return;

-	if(!PPTSld.event.ctrlKey) {

-		ShowMenu()

-		return false

-	} else

-		HideMenu()

-}

-function BuildMenu()

-{

-	if( PPTSld.document.all.item("ctxtmenu") ) return

-	var mObj=CreateItem( PPTSld.document.body )

-	mObj.id="ctxtmenu"

-	mObj.style.visibility="hidden"

-	var s=mObj.style

-	s.position="absolute"

-	s.cursor="default"

-	s.width="120px"

-	SetCMBorder(mObj,"menu","black")

-	var iObj=CreateItem( mObj )

-	SetCMBorder( iObj, "threedhighlight","threedshadow" )

-	iObj.style.padding=2

-	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )

-	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )

-	CreateSeparator( iObj )

-	CreateMenuItem( iObj,sEnd,M_End,M_True )

-	mObj.style.visibility="visible"

-}

-function Cancel() { window.event.cancelBubble=true; window.event.returnValue=false }

-function Highlight() { ChangeClr("activecaption","threedhighlight") }

-function Deselect() { ChangeClr("threedface","menutext") }

-function Perform()

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() )

-		e.Action()

-	else

-		PPTSld.event.cancelBubble=true

-}

-function ChangeClr( bg,clr )

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() ) {

-		e.style.backgroundColor=bg

-		e.style.color=clr

-	}

-}

-function M_HasPrevSld() { return( parent.HasPrevSld() ) }

-function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }

-function M_GoPrevSld() { if( gIsEndShow ) { history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }

-function M_True() { return true }

-function M_End() { window.close( self ) }

-function CreateMenuItem( node,text,action,eval )

-{

-	var e=CreateItem( node )

-	e.type="menuitem"

-	e.Action=action

-	e.IsActive=eval

-	e.innerHTML=text

-	if( !e.IsActive() )

-		e.style.color="threedshadow"

-	e.onclick=Perform

-	e.onmouseover=Highlight

-	e.onmouseout=Deselect

-	s=e.style;

-	s.fontFamily=sFont

-	s.fontSize="9pt"

-	s.paddingLeft=2

-}

-function CreateSeparator( node )

-{

-	var sObj=CreateItem( node )

-	SetCMBorder(sObj,"menu","menu")

-	var s=sObj.style

-	s.borderTopColor="threedshadow"

-	s.borderBottomColor="threedhighlight"

-	s.height=1

-	s.fontSize="0px"

-}

-function CreateItem( node )

-{

-	var elem=PPTSld.document.createElement("DIV")

-	node.insertBefore( elem )

-	return elem

-}

-function SetCMBorder( o,ltClr,rbClr )

-{

-	var s=o.style

-	s.backgroundColor="menu"

-	s.borderStyle="solid"

-	s.borderWidth=1

-	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr

-}

diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0028.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0028.html
deleted file mode 100644
index f214942..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0028.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: WhatÂ’s New in UML2?">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:black;}
-.CT
-	{color:black;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="646"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master09.xml">
- <p:shaperange href="master09.xml#_x0000_s33793"/><![if !ppt]><p:shaperange
-  href="master09.xml#_x0000_s33977"/><![if !vml]><img border=0
- v:shapes="_x0000_s33977" src="master09_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master09.xml#_x0000_s33972"/><p:shaperange
-  href="master09.xml#_x0000_s33975"/>
- <div v:shape="_x0000_s33975" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:95.0%;left:1.68%;width:97.75%;height:3.0%'><span
- lang=EN-US style='font-size:72%;color:black;mso-color-index:0;mso-ansi-language:
- EN-US'>© 2006 by IBM; made available under the EPL v1.0 |<span
- style='mso-spacerun:yes'>  </span>Tuesday, March 21</span></div>
- <p:shaperange href="master09.xml#_x0000_s33978"/><![if !vml]><img border=0
- v:shapes="_x0000_s33978" src="master09_image004.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master09.xml#_x0000_m33801"/><v:shape id="_x0000_s661510" type="#_x0000_m33801"
-  style='position:absolute;left:153.125pt;top:261.5pt;width:504.625pt;height:107.75pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="subTitle" position="1"/></v:shape><p:shaperange
-  href="master09.xml#_x0000_m33800"/><v:shape id="_x0000_s661511" type="#_x0000_m33800"
-  style='position:absolute;left:30.75pt;top:134.375pt;width:626.375pt;height:115.75pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="centerTitle"/></v:shape>
- <div v:shape="_x0000_s661510" class=CB>
- <div style='position:absolute;top:49.25%;left:22.28%;width:68.16%;height:4.5%'><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Short Talk&#13;</span></div>
- <div style='position:absolute;top:53.75%;left:22.28%;width:68.16%;height:4.5%'><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US;display:none'>&#13;</span></div>
- <div style='position:absolute;top:58.25%;left:22.28%;width:68.16%;height:4.5%'><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Kenn Hussey&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:22.28%;width:68.16%;height:4.5%'><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>IBM Rational Software</span></div>
- </div>
- <div v:shape="_x0000_s661511" class=CT style='position:absolute;top:25.5%;
- left:5.24%;width:85.2%;height:6.0%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>WhatÂ’s New in UML2?</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0029.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0029.html
deleted file mode 100644
index c8d57f1..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0029.html
+++ /dev/null
@@ -1,170 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="657"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O style='mso-line-spacing:"100 50 0";
- position:absolute;top:95.0%;left:2.62%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;color:black;
- mso-color-index:0;mso-ansi-language:EN-US;mso-field-code:meta16'><b>2</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;color:black;
- mso-color-index:0;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- lang=EN-US style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:
- EN-US'><span style='mso-spacerun:yes'> </span>WhatÂ’s New in UML2<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
- v1.0</span></div>
- <p:shaperange href="master08.xml#_x0000_s33026"/><![if !vml]><img border=0
- v:shapes="_x0000_s33026" src="master08_image007.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s672770" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s672771" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s672770" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>Contents</span></div>
- <div v:shape="_x0000_s672771" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Overview&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span lang=EN-US style='mso-ansi-language:EN-US;
- display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:34.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Goals&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:38.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span lang=EN-US style='mso-ansi-language:EN-US;
- display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:42.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Challenges&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:46.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span lang=EN-US style='mso-ansi-language:EN-US;
- display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:50.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Status&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:54.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span lang=EN-US style='mso-ansi-language:EN-US;
- display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:58.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Milestones&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span lang=EN-US style='mso-ansi-language:EN-US;
- display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>2.0 Development Plan&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:70.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span lang=EN-US style='mso-ansi-language:EN-US;
- display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:74.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>How Can You Help?</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0030.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0030.html
deleted file mode 100644
index 9ab6735..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0030.html
+++ /dev/null
@@ -1,139 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: Overview">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="660"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>3</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in UML2<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
- v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33026"/><![if !vml]><img border=0
- v:shapes="_x0000_s33026" src="master08_image007.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s675842" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s675843" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s675842" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Overview</div>
- <div v:shape="_x0000_s675843" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:89.13%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.73%;width:97.26%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.8%'>§</span>An Eclipse Tools
- subproject at <p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/?project=uml2#uml2"/><a href="http://www.eclipse.org/modeling/mdt/?project=uml2#uml2"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>http://www.eclipse.org/modeling/mdt/?project=uml2#uml2</a>&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:35.75%;left:10.67%;width:94.19%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.58%'>§</span>An
- EMF-based implementation of the UML<span style='font-family:Arial;mso-hansi-font-family:
- Arial'>™</span> 2.1 metamodel for </span><span style='position:absolute;
- top:40.25%;left:10.67%;width:80.33%;height:4.5%'>the Eclipse platform&#13;</span>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Project lead is Kenn
- Hussey (<p:onmouseclick hyperlinktype="url" href="mailto:khussey@ca.ibm.com"/><a
- href="mailto:khussey@ca.ibm.com" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>khussey@ca.ibm.com</a>)&#13;</span></div>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Users include IBM,
- Omondo, Metamatrix, Â…&#13;</span></div>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Estimated 85,000
- downloads in January 2006</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0031.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0031.html
deleted file mode 100644
index c1abcfe..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0031.html
+++ /dev/null
@@ -1,128 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: Goals">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="661"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>4</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in UML2<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
- v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33026"/><![if !vml]><img border=0
- v:shapes="_x0000_s33026" src="master08_image007.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s676866" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s676867" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s676866" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Goals</div>
- <div v:shape="_x0000_s676867" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:88.76%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.74%'>§</span>Provide a useable implementation
- of the UML <i>metamodel</i> to </span><span style='position:absolute;
- top:31.25%;left:10.67%;width:80.33%;height:4.5%'>support the development of
- modeling tools&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:86.32%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.81%'>§</span>Provide a
- common XMI schema to facilitate <i>interchange</i> of </span><span
- style='position:absolute;top:44.5%;left:10.67%;width:80.33%;height:4.5%'>semantic
- models&#13;</span>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:53.5%;left:10.67%;width:95.5%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.54%'>§</span>Provide test cases as a
- means of validating the <i>specification</i> and </span><span
- style='position:absolute;top:58.0%;left:10.67%;width:80.33%;height:4.5%'>implementation&#13;</span>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:66.75%;left:10.67%;width:90.26%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.69%'>§</span>Provide
- validation rules as a means of defining and enforcing </span><span
- style='position:absolute;top:71.25%;left:10.67%;width:80.33%;height:4.5%'>levels
- of <i>compliance</i></span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0032.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0032.html
deleted file mode 100644
index d390242..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0032.html
+++ /dev/null
@@ -1,131 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: Challenges">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="662"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>5</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in UML2<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
- v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33026"/><![if !vml]><img border=0
- v:shapes="_x0000_s33026" src="master08_image007.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s677890" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s677891" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s677890" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Challenges</div>
- <div v:shape="_x0000_s677891" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:95.31%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.55%'>§</span>Since the specification has been
- at various stages of finalization, </span><span style='position:absolute;
- top:31.25%;left:10.67%;width:80.33%;height:4.5%'>the API has been a moving
- target&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:80.33%;height:
- 4.5%'><span class=BB style='position:absolute;left:-3.03%'>§</span>Aspects of
- the standard metamodel (redefinition, </span><span style='position:absolute;
- top:44.5%;left:10.67%;width:89.7%;height:4.5%'>subsets/supersets, unions) made
- the mapping to Java<span style='font-family:Arial;mso-hansi-font-family:Arial'>™</span>
- and </span><span style='position:absolute;top:49.0%;left:10.67%;width:80.33%;
- height:4.5%'>XMI non-trivial&#13;</span>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:58.0%;left:10.67%;width:91.01%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.67%'>§</span>There were a number of
- errors in the specification which, until </span><span style='position:absolute;
- top:62.5%;left:10.67%;width:80.33%;height:4.5%'>fixed, made the API and XMI
- schema difficult to use&#13;</span>
- <div style='position:absolute;top:66.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:71.25%;left:10.67%;width:90.07%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.7%'>§</span>Compliance
- points for UML are a subject of debate within the </span><span
- style='position:absolute;top:75.75%;left:10.67%;width:80.33%;height:4.5%'>modeling
- community</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0033.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0033.html
deleted file mode 100644
index e49362b..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0033.html
+++ /dev/null
@@ -1,121 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: Status – Metamodel">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="663"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>6</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in UML2<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
- v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33026"/><![if !vml]><img border=0
- v:shapes="_x0000_s33026" src="master08_image007.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s678914" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s678915" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s678914" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Status – Metamodel</div>
- <div v:shape="_x0000_s678915" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:80.33%;height:4.5%'><span class=BB
- style='position:absolute;left:-3.03%'>§</span>EMF-generated API based on a
- merged version of the </span><span style='position:absolute;top:31.25%;
- left:10.67%;width:88.76%;height:4.5%'>metamodel in which package merges and
- most redefinitions </span><span style='position:absolute;top:35.75%;
- left:10.67%;width:80.33%;height:4.5%'>have been factored out&#13;</span>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:44.5%;left:10.67%;width:91.76%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.65%'>§</span>Includes mechanisms to
- support derived union, redefines, and </span><span style='position:absolute;
- top:49.0%;left:10.67%;width:80.33%;height:4.5%'>subsets constraints&#13;</span>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:8.23%;width:97.19%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.5%;width:97.3%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.57%'>§</span>Generated using
- customized code generator and JET templates</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0034.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0034.html
deleted file mode 100644
index b0e3345..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0034.html
+++ /dev/null
@@ -1,138 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: Status – Interchange">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="664"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>7</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in UML2<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
- v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33026"/><![if !vml]><img border=0
- v:shapes="_x0000_s33026" src="master08_image007.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s679938" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s679939" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s679938" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Status – Interchange</div>
- <div v:shape="_x0000_s679939" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span>Default XMI schema
- generated using EMF&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:34.5%;left:10.67%;width:96.25%;height:4.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.52%;font-family:Wingdings'>§</span>Defines
- one namespace (http://www.eclipse.org/uml2/2.0.0/UML) </span><span
- style='position:absolute;top:38.5%;left:10.67%;width:80.33%;height:4.5%'>for
- all elements, thus supporting interchange&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:42.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:46.5%;left:8.23%;
- width:96.81%;height:4.5%'><span style='position:absolute;top:0%;left:2.51%;
- width:97.48%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-2.57%;font-family:Wingdings'>§</span>Elements identified using
- Universally Unique Identifiers (UUIDs)&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:50.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:54.5%;left:10.67%;width:91.38%;height:4.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.66%;font-family:Wingdings'>§</span>Will
- support import/export from/to OMG XMI for UML once the </span><span
- style='position:absolute;top:58.5%;left:10.67%;width:80.33%;height:4.5%'>2.1
- specification is finalized</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0035.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0035.html
deleted file mode 100644
index 682bba7..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0035.html
+++ /dev/null
@@ -1,131 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: Status – Specification">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="665"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>8</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in UML2<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
- v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33026"/><![if !vml]><img border=0
- v:shapes="_x0000_s33026" src="master08_image007.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s680962" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s680963" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s680962" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Status – Specification</div>
- <div v:shape="_x0000_s680963" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:89.7%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.71%'>§</span>Errors discovered while
- developing the API and XMI schema </span><span style='position:absolute;
- top:31.25%;left:10.67%;width:80.33%;height:4.5%'>were fixed and submitted as
- issues to the UML 2.1 </span><span style='position:absolute;top:35.75%;
- left:10.67%;width:89.88%;height:4.5%'>Superstructure and Infrastructure
- Revision Task Force (RTF)&#13;</span>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:44.5%;left:10.67%;width:90.63%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.68%'>§</span>UML 2.1 Superstructure
- and Infrastructure RTF has delivered </span><span style='position:absolute;
- top:49.0%;left:10.67%;width:80.33%;height:4.5%'>final draft and report to
- OMG&#13;</span>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Release date for UML
- 2.1 Specification is TBD (soon!)&#13;</span></div>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:66.75%;left:10.67%;width:82.39%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.95%'>§</span>UML 2.2
- Superstructure and Infrastructure RTF is being </span><span style='position:
- absolute;top:71.25%;left:10.67%;width:80.33%;height:4.5%'>chartered – open
- issues available at </span><span style='position:absolute;top:75.75%;
- left:10.67%;width:80.33%;height:4.5%'>http://www.omg.org/issues/uml2-rtf.open.html</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0036.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0036.html
deleted file mode 100644
index 5d3d143..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0036.html
+++ /dev/null
@@ -1,119 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: Status – Compliance">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="666"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>9</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in UML2<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
- v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33026"/><![if !vml]><img border=0
- v:shapes="_x0000_s33026" src="master08_image007.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s681986" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s681987" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s681986" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Status – Compliance</div>
- <div v:shape="_x0000_s681987" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:89.13%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.73%;width:97.26%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.8%'>§</span>Validation rules
- evaluated using EMF validator mechanism&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:8.23%;width:87.64%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.77%;width:97.22%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.85%'>§</span>Validators implemented
- based on sets of OCL constraints&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Correspond to
- compliance levels</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0037.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0037.html
deleted file mode 100644
index 9ae55e7..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0037.html
+++ /dev/null
@@ -1,138 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: Milestones">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="667"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>10</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in UML2<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
- v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33026"/><![if !vml]><img border=0
- v:shapes="_x0000_s33026" src="master08_image007.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s683010" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s683011" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s683010" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Milestones</div>
- <div v:shape="_x0000_s683011">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>2004&#13;</span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>June
- – 1.0&#13;</span></div>
- <div class=B1 style='position:absolute;top:37.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>September
- – 1.0.1&#13;</span></div>
- <div class=B style='position:absolute;top:42.5%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>2005&#13;</span></div>
- <div class=B1 style='position:absolute;top:48.0%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>March
- – 1.0.2&#13;</span></div>
- <div class=B1 style='position:absolute;top:53.5%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>June
- – 1.0.3&#13;</span></div>
- <div class=B1 style='position:absolute;top:59.0%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>July
- – 1.1.0&#13;</span></div>
- <div class=B1 style='position:absolute;top:64.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>September
- – 1.1.1&#13;</span></div>
- <div class=B style='position:absolute;top:69.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>2006&#13;</span></div>
- <div class=B1 style='position:absolute;top:74.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>June
- – 2.0</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0038.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0038.html
deleted file mode 100644
index b899367..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0038.html
+++ /dev/null
@@ -1,141 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: 2.0 Development Plan">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="668"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>11</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in UML2<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
- v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33026"/><![if !vml]><img border=0
- v:shapes="_x0000_s33026" src="master08_image007.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s684034" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s684035" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s684034" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>2.0 Development Plan</div>
- <div v:shape="_x0000_s684035">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>Theme:
- Release Currency&#13;</span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>Eclipse
- 3.2 / EMF 2.2 Compatibility&#13;</span></div>
- <div class=B style='position:absolute;top:37.0%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:41.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>Theme:
- Completeness&#13;</span></div>
- <div class=B1 style='position:absolute;top:46.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>UML
- 2.1 Conformance&#13;</span></div>
- <div class=B1 style='position:absolute;top:52.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>UML
- 2.1 Interchange&#13;</span></div>
- <div class=B1 style='position:absolute;top:58.0%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>UML2
- 2.0 Migration&#13;</span></div>
- <div class=B1 style='position:absolute;top:63.5%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>Validation
- Rules&#13;</span></div>
- <div class=B1 style='position:absolute;top:69.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>Unit
- Tests&#13;</span></div>
- <div class=B1 style='position:absolute;top:74.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>OCL
- Support</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0039.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0039.html
deleted file mode 100644
index 61c2e6d..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0039.html
+++ /dev/null
@@ -1,143 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: How Can You Help?">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="669"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>13</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in UML2<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
- v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33026"/><![if !vml]><img border=0
- v:shapes="_x0000_s33026" src="master08_image007.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s685058" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s685059" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s685058" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>How Can You Help?</div>
- <div v:shape="_x0000_s685059" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span>Develop tools based on
- UML2&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:34.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span>Report bugs&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:38.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:42.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span>Participate in newsgroup
- discussions&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:46.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:50.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span>Write articles&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:54.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:58.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.03%;font-family:Wingdings'>§</span>Become a UML2 contributor!</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0040.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0040.html
deleted file mode 100644
index 8efc7e5..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0040.html
+++ /dev/null
@@ -1,140 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: 2.0 Development Plan">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="670"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>12</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in UML2<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
- v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33026"/><![if !vml]><img border=0
- v:shapes="_x0000_s33026" src="master08_image007.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s686082" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s686083" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s686082" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>2.0 Development Plan</div>
- <div v:shape="_x0000_s686083">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>Theme:
- Built to Last&#13;</span></div>
- <div class=B1 style='position:absolute;top:32.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>Reduced
- Memory Footprint&#13;</span></div>
- <div class=B style='position:absolute;top:37.0%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:41.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>Theme:
- Simple to Use&#13;</span></div>
- <div class=B1 style='position:absolute;top:46.75%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>Improved
- Convenience Methods&#13;</span></div>
- <div class=B1 style='position:absolute;top:52.25%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>Improved
- Documentation&#13;</span></div>
- <div class=B1 style='position:absolute;top:58.0%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>Enhanced
- Icons&#13;</span></div>
- <div class=B style='position:absolute;top:62.5%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:67.0%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.03%'>§</span>Theme:
- Broadening the Community&#13;</span></div>
- <div class=B1 style='position:absolute;top:72.5%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.27%'>§</span>Tools</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0041.html b/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0041.html
deleted file mode 100644
index 4de6ab2..0000000
--- a/uml2/docs/presentations/EclipseCon2006_ShortTalk_files/slide0041.html
+++ /dev/null
@@ -1,119 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2006_ShortTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What's New in UML2?</title>
-<meta name=Description content="4/17/2006: Legal Notices">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="671"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>14</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>WhatÂ’s New in UML2<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Short Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© 2006 by IBM; made available under the EPL
- v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33026"/><![if !vml]><img border=0
- v:shapes="_x0000_s33026" src="master08_image007.jpg" style='position:absolute;
- top:1.0%;left:2.05%;width:67.22%;height:10.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s687106" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s687107" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s687106" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Legal Notices</div>
- <div v:shape="_x0000_s687107" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>UML is a trademark of
- the Object Management Group&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:35.75%;left:10.67%;width:87.45%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.78%'>§</span>Java and
- all Java-based trademarks are trademarks of Sun </span><span style='position:
- absolute;top:40.25%;left:10.67%;width:93.82%;height:4.5%'>Microsystems, Inc.
- in the United States, other countries, or both&#13;</span>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:49.0%;left:10.67%;width:92.5%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.63%'>§</span>Other company, product,
- or service names may be trademarks </span><span style='position:absolute;
- top:53.5%;left:10.67%;width:80.33%;height:4.5%'>or service marks of others</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk.html b/uml2/docs/presentations/EclipseCon2007_LongTalk.html
deleted file mode 100644
index 9be636b..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk.html
+++ /dev/null
@@ -1,82 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link rel=File-List href="EclipseCon2007_LongTalk_files/filelist.xml">
-<link rel=Preview href="EclipseCon2007_LongTalk_files/preview.wmf">
-<link rel=Edit-Time-Data href="EclipseCon2007_LongTalk_files/editdata.mso">
-<link rel=OLE-Object-Data href="EclipseCon2007_LongTalk_files/oledata.mso">
-<title>What do YOU want UML to be?</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Subject>Long Talk</o:Subject>
-  <o:Author>Kenn Hussey</o:Author>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>412</o:Revision>
-  <o:TotalTime>7455</o:TotalTime>
-  <o:Created>2002-08-23T15:26:08Z</o:Created>
-  <o:LastSaved>2007-03-08T19:08:53Z</o:LastSaved>
-  <o:Words>3112</o:Words>
-  <o:PresentationFormat>On-screen Show</o:PresentationFormat>
-  <o:Company>IBM Rational Software</o:Company>
-  <o:Bytes>1022979</o:Bytes>
-  <o:Paragraphs>900</o:Paragraphs>
-  <o:Slides>101</o:Slides>
-  <o:Version>10.6825</o:Version>
- </o:DocumentProperties>
- <o:OfficeDocumentSettings>
-  <o:ShowReviewingToolbar/>
-  <o:PixelsPerInch>80</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
-</xml><![endif]-->
-<link rel=Presentation-XML href="EclipseCon2007_LongTalk_files/pres.xml">
-<meta name=Description content="3/8/2007: What do YOU want UML™ to be?">
-<meta http-equiv=expires content=0>
-<![if !ppt]><script>
-<!--
-	var ver = 0, appVer = navigator.appVersion, msie = appVer.indexOf( "MSIE " )
-	var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0)
-	if( msie >= 0 )
-		ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) )
-	else
-		ver = parseInt( appVer )
-	browserSupported=0
-	if( !isMac && ver >= 4 && msie >= 0 ) {
-		browserSupported=1
-		window.location.replace( 'EclipseCon2007_LongTalk_files/frame.html'+document.location.hash )
-	}
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<script><!--
-
-if( browserSupported )
-	document.writeln('<div style="visibility:hidden">');
-
-//--></script><font face=Arial size=2><b>
-
-<p>This presentation contains content that your browser may not be able to show
-properly. This presentation was optimized for more recent versions of Microsoft
-Internet Explorer.</p>
-
-<p>If you would like to proceed anyway, click <a
-href="EclipseCon2007_LongTalk_files/frame.html">here</a>.</p>
-
-</b></font><script><!--
-
-if( browserSupported )
-	document.writeln('</div>');
-
-//--></script>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/buttons.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/buttons.gif
deleted file mode 100644
index 1f2c73c..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/buttons.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/editdata.mso b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/editdata.mso
deleted file mode 100644
index 71460f1..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/editdata.mso
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/filelist.xml b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/filelist.xml
deleted file mode 100644
index 96db230..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/filelist.xml
+++ /dev/null
@@ -1,209 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:File HRef="master08.html"/>
- <o:File HRef="master08.xml"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="master08_image001.jpg"/>
- <o:File HRef="master08_image002.jpg"/>
- <o:File HRef="master09.html"/>
- <o:File HRef="master09.xml"/>
- <o:File HRef="master02.html"/>
- <o:File HRef="pres.xml"/>
- <o:File HRef="editdata.mso"/>
- <o:File HRef="slide0030.html"/>
- <o:File HRef="master09_image003.jpg"/>
- <o:File HRef="master09_image004.jpg"/>
- <o:File HRef="slide0029.html"/>
- <o:File HRef="master08_image005.jpg"/>
- <o:File HRef="master08_image006.gif"/>
- <o:File HRef="master08_image007.jpg"/>
- <o:File HRef="slide0117.html"/>
- <o:File HRef="slide0032.html"/>
- <o:File HRef="slide0033.html"/>
- <o:File HRef="slide0034.html"/>
- <o:File HRef="slide0118.html"/>
- <o:File HRef="slide0036.html"/>
- <o:File HRef="slide0119.html"/>
- <o:File HRef="slide0035.html"/>
- <o:File HRef="slide0048.html"/>
- <o:File HRef="slide0037.html"/>
- <o:File HRef="slide0037_image008.png"/>
- <o:File HRef="slide0037_image009.gif"/>
- <o:File HRef="slide0049.html"/>
- <o:File HRef="slide0038.html"/>
- <o:File HRef="slide0038_image010.png"/>
- <o:File HRef="slide0038_image011.gif"/>
- <o:File HRef="slide0050.html"/>
- <o:File HRef="slide0039.html"/>
- <o:File HRef="slide0039_image012.png"/>
- <o:File HRef="slide0039_image013.gif"/>
- <o:File HRef="slide0040.html"/>
- <o:File HRef="slide0040_image014.gif"/>
- <o:File HRef="slide0051.html"/>
- <o:File HRef="slide0041.html"/>
- <o:File HRef="slide0041_image015.png"/>
- <o:File HRef="slide0041_image016.gif"/>
- <o:File HRef="slide0042.html"/>
- <o:File HRef="slide0042_image017.gif"/>
- <o:File HRef="slide0052.html"/>
- <o:File HRef="slide0043.html"/>
- <o:File HRef="slide0043_image018.png"/>
- <o:File HRef="slide0043_image019.gif"/>
- <o:File HRef="slide0044.html"/>
- <o:File HRef="slide0044_image020.gif"/>
- <o:File HRef="slide0045.html"/>
- <o:File HRef="slide0045_image021.png"/>
- <o:File HRef="slide0045_image022.gif"/>
- <o:File HRef="slide0120.html"/>
- <o:File HRef="slide0046.html"/>
- <o:File HRef="slide0053.html"/>
- <o:File HRef="slide0047.html"/>
- <o:File HRef="slide0054.html"/>
- <o:File HRef="slide0054_image023.png"/>
- <o:File HRef="slide0054_image024.gif"/>
- <o:File HRef="slide0055.html"/>
- <o:File HRef="slide0055_image025.png"/>
- <o:File HRef="slide0055_image026.gif"/>
- <o:File HRef="slide0121.html"/>
- <o:File HRef="slide0056.html"/>
- <o:File HRef="slide0057.html"/>
- <o:File HRef="slide0057_image027.png"/>
- <o:File HRef="slide0057_image028.gif"/>
- <o:File HRef="slide0059.html"/>
- <o:File HRef="slide0058.html"/>
- <o:File HRef="slide0058_image029.png"/>
- <o:File HRef="slide0058_image030.gif"/>
- <o:File HRef="slide0060.html"/>
- <o:File HRef="slide0122.html"/>
- <o:File HRef="slide0061.html"/>
- <o:File HRef="slide0062.html"/>
- <o:File HRef="slide0062_image031.png"/>
- <o:File HRef="slide0062_image032.gif"/>
- <o:File HRef="slide0064.html"/>
- <o:File HRef="slide0063.html"/>
- <o:File HRef="slide0065.html"/>
- <o:File HRef="slide0065_image033.png"/>
- <o:File HRef="slide0065_image034.gif"/>
- <o:File HRef="slide0066.html"/>
- <o:File HRef="slide0123.html"/>
- <o:File HRef="slide0067.html"/>
- <o:File HRef="slide0068.html"/>
- <o:File HRef="slide0068_image035.png"/>
- <o:File HRef="slide0068_image036.gif"/>
- <o:File HRef="slide0069.html"/>
- <o:File HRef="slide0069_image037.png"/>
- <o:File HRef="slide0069_image038.gif"/>
- <o:File HRef="slide0070.html"/>
- <o:File HRef="slide0071.html"/>
- <o:File HRef="slide0124.html"/>
- <o:File HRef="slide0115.html"/>
- <o:File HRef="slide0125.html"/>
- <o:File HRef="slide0116.html"/>
- <o:File HRef="slide0072.html"/>
- <o:File HRef="slide0073.html"/>
- <o:File HRef="slide0074.html"/>
- <o:File HRef="slide0074_image039.png"/>
- <o:File HRef="slide0074_image040.gif"/>
- <o:File HRef="slide0126.html"/>
- <o:File HRef="slide0075.html"/>
- <o:File HRef="slide0076.html"/>
- <o:File HRef="slide0076_image041.png"/>
- <o:File HRef="slide0076_image042.gif"/>
- <o:File HRef="slide0083.html"/>
- <o:File HRef="slide0083_image043.png"/>
- <o:File HRef="oledata.mso"/>
- <o:File HRef="slide0083_image044.jpg"/>
- <o:File HRef="slide0084.html"/>
- <o:File HRef="slide0085.html"/>
- <o:File HRef="slide0110.html"/>
- <o:File HRef="slide0110_image045.gif"/>
- <o:File HRef="slide0127.html"/>
- <o:File HRef="slide0077.html"/>
- <o:File HRef="slide0086.html"/>
- <o:File HRef="slide0086_image046.png"/>
- <o:File HRef="slide0086_image047.gif"/>
- <o:File HRef="slide0078.html"/>
- <o:File HRef="slide0078_image048.png"/>
- <o:File HRef="slide0078_image049.jpg"/>
- <o:File HRef="slide0087.html"/>
- <o:File HRef="slide0087_image050.png"/>
- <o:File HRef="slide0087_image051.jpg"/>
- <o:File HRef="slide0087_image052.png"/>
- <o:File HRef="slide0087_image053.gif"/>
- <o:File HRef="slide0088.html"/>
- <o:File HRef="slide0088_image054.png"/>
- <o:File HRef="slide0088_image055.jpg"/>
- <o:File HRef="slide0088_image056.png"/>
- <o:File HRef="slide0088_image057.jpg"/>
- <o:File HRef="slide0089.html"/>
- <o:File HRef="slide0090.html"/>
- <o:File HRef="slide0111.html"/>
- <o:File HRef="slide0111_image058.gif"/>
- <o:File HRef="slide0128.html"/>
- <o:File HRef="slide0079.html"/>
- <o:File HRef="slide0091.html"/>
- <o:File HRef="slide0091_image059.png"/>
- <o:File HRef="slide0091_image060.gif"/>
- <o:File HRef="slide0080.html"/>
- <o:File HRef="slide0080_image061.png"/>
- <o:File HRef="slide0080_image062.jpg"/>
- <o:File HRef="slide0103.html"/>
- <o:File HRef="slide0103_image063.png"/>
- <o:File HRef="slide0103_image064.jpg"/>
- <o:File HRef="slide0101.html"/>
- <o:File HRef="slide0101_image065.png"/>
- <o:File HRef="slide0101_image066.jpg"/>
- <o:File HRef="slide0102.html"/>
- <o:File HRef="slide0092.html"/>
- <o:File HRef="slide0092_image067.png"/>
- <o:File HRef="slide0092_image068.jpg"/>
- <o:File HRef="slide0092_image069.png"/>
- <o:File HRef="slide0092_image070.jpg"/>
- <o:File HRef="slide0093.html"/>
- <o:File HRef="slide0094.html"/>
- <o:File HRef="slide0112.html"/>
- <o:File HRef="slide0112_image071.gif"/>
- <o:File HRef="slide0129.html"/>
- <o:File HRef="slide0081.html"/>
- <o:File HRef="slide0097.html"/>
- <o:File HRef="slide0097_image072.png"/>
- <o:File HRef="slide0097_image073.gif"/>
- <o:File HRef="slide0096.html"/>
- <o:File HRef="slide0096_image074.png"/>
- <o:File HRef="slide0096_image075.jpg"/>
- <o:File HRef="slide0104.html"/>
- <o:File HRef="slide0104_image076.png"/>
- <o:File HRef="slide0104_image077.jpg"/>
- <o:File HRef="slide0098.html"/>
- <o:File HRef="slide0098_image078.png"/>
- <o:File HRef="slide0098_image079.jpg"/>
- <o:File HRef="slide0105.html"/>
- <o:File HRef="slide0105_image080.png"/>
- <o:File HRef="slide0105_image081.jpg"/>
- <o:File HRef="slide0106.html"/>
- <o:File HRef="slide0106_image082.png"/>
- <o:File HRef="slide0106_image083.jpg"/>
- <o:File HRef="slide0107.html"/>
- <o:File HRef="slide0108.html"/>
- <o:File HRef="slide0109.html"/>
- <o:File HRef="slide0082.html"/>
- <o:File HRef="slide0082_image084.png"/>
- <o:File HRef="slide0082_image085.jpg"/>
- <o:File HRef="slide0082_image086.png"/>
- <o:File HRef="slide0082_image087.jpg"/>
- <o:File HRef="slide0099.html"/>
- <o:File HRef="slide0100.html"/>
- <o:File HRef="slide0113.html"/>
- <o:File HRef="slide0113_image088.gif"/>
- <o:File HRef="slide0130.html"/>
- <o:File HRef="slide0114.html"/>
- <o:File HRef="slide0031.html"/>
- <o:File HRef="master01.html"/>
- <o:File HRef="master08_stylesheet.css"/>
- <o:File HRef="script.js"/>
- <o:MainFile HRef="../EclipseCon2007_LongTalk.html"/>
- <o:File HRef="fullscreen.html"/>
- <o:File HRef="buttons.gif"/>
- <o:File HRef="frame.html"/>
- <o:File HRef="outline.html"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/frame.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/frame.html
deleted file mode 100644
index 97d6c37..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/frame.html
+++ /dev/null
@@ -1,37 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<title>What do YOU want UML to be?</title>
-<![if !ppt]><script src=script.js></script><script>
-<!--
-var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
-function Load()
-{
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(str) PPTSld.location.replace(escape(str));
-}
-//-->
-</script>
-<![endif]>
-</head>
-
-
-<frameset rows="*,25" border=0>
- <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust framespacing=1 frameborder=1>
-  <frame src=outline.html title="Outline" name=PPTOtl>
-  <frame src=slide0030.html title="Slide" name=PPTSld>
- </frameset>
- <frameset cols="25%,*" framespacing=1>
-  <frame src=outline.html title="Outline
-Navigation Bar" name=PPTOtlNav scrolling=no noresize>
-  <frame src=outline.html title="Slide
-Navigation Bar" name=PPTNav scrolling=no noresize>
- </frameset>
-</frameset>
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/fullscreen.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/fullscreen.html
deleted file mode 100644
index 24763a3..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/fullscreen.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<script src=script.js></script><script><!--
-var SCREEN_MODE   = "FullScreen";
-function Load() {
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(!str) str = "slide0030.html";
-	PPTSld.location.replace(MHTMLPrefix+escape(str));
-}
-function Unload() {
-	if ( document.body.PPTSldFrameset != null )
-		document.body.PPTSldFrameset.frames[1].document.body.resume();
-}
-//-->
-</script>
-</head>
-
-<frameset rows="*" frameborder=0 onload="Load()" onunload="Unload()">
- <frame name=PPTSld>
-</frameset>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master01.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master01.html
deleted file mode 100644
index 8c204ff..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master01.html
+++ /dev/null
@@ -1,183 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="103"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s105473" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s105474" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105474" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;
-mso-field-code:meta14'>‹header›</span><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105475" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1"/></v:shapetype>
-
-<div v:shape="_x0000_s105475" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-field-code:meta0'>‹date/time›</span><span
-lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105476" style='position:absolute;left:91.75pt;top:54.5pt;
- width:363.5pt;height:272.625pt;v-text-anchor:middle' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter"/>
- <v:shadow obscured="t"/>
- <v:path gradientshapeok="t" fillok="f" o:connecttype="rect"/>
- <o:lock v:ext="edit" rotation="t" text="t"/>
- <p:placeholder type="slideImage" position="2"/></v:shapetype><v:shapetype
- id="_x0000_s105477" style='position:absolute;left:54.75pt;top:345.375pt;
- width:437.5pt;height:327.125pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="body" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105477">
-
-<div class=N><span lang=EN-US style='mso-ansi-language:EN-US'>Click to edit
-Master text styles&#13;</span></div>
-
-<div class=N1><span lang=EN-US style='mso-ansi-language:EN-US'>Second
-level&#13;</span></div>
-
-<div class=N2><span lang=EN-US style='mso-ansi-language:EN-US'>Third level&#13;</span></div>
-
-<div class=N3><span lang=EN-US style='mso-ansi-language:EN-US'>Fourth
-level&#13;</span></div>
-
-<div class=N4><span lang=EN-US style='mso-ansi-language:EN-US'>Fifth level</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105478" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="4" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105478" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;
-mso-field-code:meta15'>‹footer›</span><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s105479" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="5" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s105479" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-field-code:meta16'>‹#›</span><span lang=EN-US
-style='font-size:67%;mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master02.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master02.html
deleted file mode 100644
index fd88378..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master02.html
+++ /dev/null
@@ -1,145 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="530"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s542721" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s542722" style='position:absolute;
- left:0;top:0;width:237pt;height:36.375pt' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542722" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;
-mso-field-code:meta14'>‹header›</span><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542723" style='position:absolute;left:309.875pt;top:0;
- width:237pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="dateTime" position="1" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542723" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-field-code:meta0'>‹date/time›</span><span
-lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542724" style='position:absolute;left:0;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="footer" position="2" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542724" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O><span lang=EN-US style='font-size:67%;mso-ansi-language:EN-US;
-mso-field-code:meta15'>‹footer›</span><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s542725" style='position:absolute;left:309.875pt;top:690.5pt;
- width:237pt;height:36.375pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.56819mm,1.2841mm,2.56819mm,1.2841mm"/>
- <p:placeholder type="slideNumber" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s542725" style='tab-interval:1.0104in'>
-
-<div class=O1 style='mso-margin-left-alt:291;mso-text-indent-alt:291'></div>
-
-<div class=O2 style='mso-margin-left-alt:582;mso-text-indent-alt:582'></div>
-
-<div class=O3 style='mso-margin-left-alt:874;mso-text-indent-alt:874'></div>
-
-<div class=O4 style='mso-margin-left-alt:1165;mso-text-indent-alt:1165'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:67%;
-mso-ansi-language:EN-US;mso-field-code:meta16'>‹#›</span><span lang=EN-US
-style='font-size:67%;mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08.html
deleted file mode 100644
index 0374aa0..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08.html
+++ /dev/null
@@ -1,61 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m32774" class=T><span lang=EN-US style='mso-ansi-language:
-EN-US'>Click to edit Master title style</span></div>
-
-<div v:shape="_x0000_m32775">
-
-<div class=B><span lang=EN-US style='mso-ansi-language:EN-US'>Click to edit
-Master text styles&#13;</span></div>
-
-<div class=B1><span lang=EN-US style='mso-ansi-language:EN-US'>Second
-level&#13;</span></div>
-
-<div class=B2><span lang=EN-US style='mso-ansi-language:EN-US'>Third level&#13;</span></div>
-
-<div class=B3><span lang=EN-US style='mso-ansi-language:EN-US'>Fourth
-level&#13;</span></div>
-
-<div class=B4><span lang=EN-US style='mso-ansi-language:EN-US'>Fifth level</span></div>
-
-</div>
-
-<div v:shape="_x0000_s33022" class=O style='mso-line-spacing:"100 50 0"'><span
-lang=EN-US style='font-family:Arial;mso-hansi-font-family:Arial;font-size:56%;
-color:black;mso-color-index:0;mso-ansi-language:EN-US;mso-field-code:meta16'><b>‹#›</b></span><span
-lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;color:black;
-mso-color-index:0;mso-ansi-language:EN-US;mso-special-format:lastCR'><b>&#13;</b></span></div>
-
-<div v:shape="_x0000_s33024" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span lang=EN-US style='font-size:56%;color:black;mso-color-index:0;
-mso-ansi-language:EN-US'><span style='mso-spacerun:yes'> </span>What do YOU
-want UML to be?<span style='mso-spacerun:yes'>  </span>|<span
-style='mso-spacerun:yes'>  </span>Long Talk<span style='mso-spacerun:yes'> 
-</span>|<span style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.;
-made available under the EPL v1.0</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08.xml b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08.xml
deleted file mode 100644
index c579bf5..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="32"/>
-  <o:regrouptable v:ext="edit">
-   <o:entry new="1" old="0"/>
-   <o:entry new="2" old="0"/>
-   <o:entry new="3" old="0"/>
-   <o:entry new="4" old="0"/>
-   <o:entry new="5" old="4"/>
-   <o:entry new="6" old="0"/>
-   <o:entry new="7" old="0"/>
-   <o:entry new="8" old="0"/>
-   <o:entry new="9" old="0"/>
-   <o:entry new="10" old="0"/>
-   <o:entry new="11" old="10"/>
-  </o:regrouptable>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s32769" o:bwmode="white" fillcolor="white [1]"/>
- <p:shaperange id="_x0000_m32774">
-  <v:shapetype id="_x0000_m32774" style='position:absolute;left:12.125pt;top:68.625pt;
-   width:649.25pt;height:39.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m32775">
-  <v:shapetype id="_x0000_m32775" style='position:absolute;left:52.125pt;top:139.875pt;
-   width:609.25pt;height:307.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33020">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s33020" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master08_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s33022">
-  <v:shapetype id="_x0000_s33022" style='position:absolute;left:12.125pt;top:508.875pt;
-   width:79.25pt;height:25.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33023">
-  <v:line id="_x0000_s33023" style='position:absolute;mso-wrap-style:none;
-   v-text-anchor:middle' from="114pt,506.875pt" to="114pt,522pt" o:bwmode="black"
-   o:userdrawn="t" strokecolor="black [0]">
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:rect id="_x0000_s33024" style='position:absolute;left:114pt;
-   top:509.875pt;width:606pt;height:19.25pt' o:bwmode="black" o:userdrawn="t"
-   filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s33027">
-  <v:shape id="_x0000_s33027" type="#_x0000_t75" style='position:absolute;
-   left:14.75pt;top:6.125pt;width:407.5pt;height:50.375pt' o:userdrawn="t">
-   <v:imagedata src="master08_image002.jpg" o:title="728x90_nodate"/>
-  </v:shape></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image001.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image001.jpg
deleted file mode 100644
index 6218aec..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image001.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image002.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image002.jpg
deleted file mode 100644
index 531f5d4..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image002.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image005.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image005.jpg
deleted file mode 100644
index df11cf0..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image005.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image006.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image006.gif
deleted file mode 100644
index 96b138a..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image006.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image007.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image007.jpg
deleted file mode 100644
index 239c7d5..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_image007.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_stylesheet.css b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_stylesheet.css
deleted file mode 100644
index 1b984f1..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master08_stylesheet.css
+++ /dev/null
@@ -1,508 +0,0 @@
-body
-	{width:534px;
-	height:400px;}
-.TB
-	{mso-special-format:nobullet•;}
-.T
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#2F2672;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.BB
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:95%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.B4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.NB
-	{mso-special-format:nobullet•;}
-.N
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N1B
-	{mso-special-format:nobullet•;}
-.N1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N2B
-	{mso-special-format:nobullet•;}
-.N2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N3B
-	{mso-special-format:nobullet•;}
-.N3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N4N
-	{mso-special-format:nobullet•;}
-.N4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.OB
-	{mso-special-format:nobullet•;}
-.O
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CBB
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:114%;
-	mso-line-spacing:"100 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 25 15";
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.CB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CTB
-	{mso-special-format:nobullet•;}
-.CT
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HBB
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.HB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QBB
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB1B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB2B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB3B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB4B
-	{mso-special-format:bullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.QB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:66%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.TblB
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl1B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl2B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl3B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl4B
-	{mso-special-format:nobullet§;
-	color:black;
-	mso-color-index:0;
-	font-family:Wingdings;}
-.Tbl4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.defaultB
-	{mso-special-format:nobullet•;}
-.default
-	{text-align:left;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-weight:normal;
-	font-style:normal;
-	text-decoration:none;
-	text-shadow:none;
-	text-effect:none;
-	mso-fareast-hint:no;
-	layout-flow:horizontal;
-	color:black;
-	mso-color-index:0;
-	font-size:85%;
-	mso-text-raise:0%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:0;
-	mso-text-indent-alt:0;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;
-	direction:ltr;
-	mso-word-wrap:1;
-	mso-vertical-align-special:baseline;
-	mso-ansi-language:EN-US;}
-a:link
-	{color:silver !important;}
-a:active
-	{color:#DFFF66 !important;}
-a:visited
-	{color:#D18213 !important;}
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master09.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master09.html
deleted file mode 100644
index d68692e..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master09.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m33800" class=CT><span lang=EN-US style='mso-ansi-language:
-EN-US'>What do YOU want UML to be?</span></div>
-
-<div v:shape="_x0000_m33801" class=CB>
-
-<div><span lang=EN-US style='mso-ansi-language:EN-US'>Long Talk&#13;</span></div>
-
-<span lang=EN-US style='mso-ansi-language:EN-US'><br>
-</span><span lang=EN-US style='mso-ansi-language:EN-US'>Kenn Hussey&#13;</span>
-
-<div><span lang=EN-US style='mso-ansi-language:EN-US'>IBM Rational Software</span></div>
-
-</div>
-
-<div v:shape="_x0000_s33972" class=O><span lang=EN-US style='font-size:78%;
-color:black;mso-color-index:0;mso-ansi-language:EN-US;mso-special-format:lastCR'>&#13;</span></div>
-
-<div v:shape="_x0000_s33975" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span lang=EN-US style='font-size:72%;color:black;mso-color-index:0;
-mso-ansi-language:EN-US'>© Copyright 2007 by IBM Corp.; made available under
-the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>March 6, 2007</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master09.xml b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master09.xml
deleted file mode 100644
index 2aaba9e..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master09.xml
+++ /dev/null
@@ -1,100 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="33"/>
-  <o:regrouptable v:ext="edit">
-   <o:entry new="1" old="0"/>
-   <o:entry new="2" old="0"/>
-   <o:entry new="3" old="0"/>
-   <o:entry new="4" old="0"/>
-   <o:entry new="5" old="0"/>
-   <o:entry new="6" old="5"/>
-   <o:entry new="7" old="0"/>
-   <o:entry new="8" old="0"/>
-   <o:entry new="9" old="0"/>
-   <o:entry new="10" old="0"/>
-   <o:entry new="11" old="0"/>
-   <o:entry new="12" old="0"/>
-   <o:entry new="13" old="0"/>
-   <o:entry new="14" old="0"/>
-   <o:entry new="15" old="0"/>
-  </o:regrouptable>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s33793" o:bwmode="white" fillcolor="white [1]"/>
- <p:shaperange id="_x0000_s33977">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s33977" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master08_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_m33800">
-  <v:shapetype id="_x0000_m33800" style='position:absolute;left:30.75pt;top:134.375pt;
-   width:626.375pt;height:115.75pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="centerTitle"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m33801">
-  <v:shapetype id="_x0000_m33801" style='position:absolute;left:153.5pt;top:261.375pt;
-   width:7in;height:109pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="subTitle" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33972">
-  <v:shapetype id="_x0000_s33972" style='position:absolute;left:542pt;top:19pt;
-   width:168pt;height:37.5pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s33975">
-  <v:rect id="_x0000_s33975" style='position:absolute;left:5.5pt;top:508.375pt;
-   width:716.5pt;height:22.875pt' o:bwmode="black" o:userdrawn="t" filled="f"
-   fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s33980">
-  <v:shape id="_x0000_s33980" type="#_x0000_t75" style='position:absolute;
-   left:14.75pt;top:6.125pt;width:407.5pt;height:50.375pt' o:userdrawn="t">
-   <v:imagedata src="master08_image002.jpg" o:title="728x90_nodate"/>
-  </v:shape></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master09_image003.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master09_image003.jpg
deleted file mode 100644
index df11cf0..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master09_image003.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master09_image004.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master09_image004.jpg
deleted file mode 100644
index 239c7d5..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/master09_image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/oledata.mso b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/oledata.mso
deleted file mode 100644
index e4d6e6a..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/oledata.mso
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/outline.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/outline.html
deleted file mode 100644
index e7684cd..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/outline.html
+++ /dev/null
@@ -1,2137 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<script src=script.js></script><script><!--
-if( !(IsWin("PPTOtl")||IsWin("PPTNav")||IsWin("PPTOtlNav")) )
-{
-	obj = GetObj("Main-File")
-	parent.location.href=obj.href
-}
-var gOtlHiliteClr="#ffffff",gOtlNormalClr="#000000",gOtlActiveClr="#ffff00",gSelected="",gTxtState=false,gChildEntryTable=new Array()
-function Load()
-{
-	if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
-	if( g_supportsPPTHTML ) {
-		if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true; return }
-		if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); parent.gOtlNavLoaded=true; return }
-	}
-}
-function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
-function LoadNav( oId,UpdFunc )
-{
-	document.ondragstart=CancelDrag
-	document.onselectstart=CancelDrag
-	document.body.style.margin=2
-	UpdFunc()
-	obj=document.all.item(oId)
-	obj.style.display="block"
-	obj.style.visibility="visible"
-	document.bgColor="threedface"
-	if( parent.frames["PPTNts"] )
-		notesBtn.style.display = ""
-	if( parent.gHasNarration )
-		nb_voiceBorder.style.display = ""
-}
-function LoadOtl()
-{
-	var otl=GetObj("OtlObj")
-	otl.style.display="block"
-	otl.style.visibility="visible"
-	if( gOtlActiveClr == "" ) gOtlActiveClr=document.linkColor
-	if( gOtlHiliteClr == "" ) gOtlHiliteClr=document.fgColor
-	if( gOtlNormalClr == "" )
-		gOtlNormalClr=document.bgColor
-	else
-		document.bgColor=gOtlNormalClr
-	InitArray()
-	if( ObjExists( parent.gCurSld ) ) {
-		ChangeState( parent.gCurSld,gOtlNormalClr,gOtlHiliteClr )
-		gSelected=parent.gCurSld
-	}
-	else gSelected = -1
-	UpdOtl()
-}
-function UpdOtl(){ UpdIdx(parent.gCurSld) }
-function UpdIdx( idx )
-{
-	if( gSelected != idx ) {
-		if( gSelected > 0 )
-			ChangeState( gSelected,gOtlHiliteClr,gOtlNormalClr )
-		if( ObjExists( idx ) ) {
-			gSelected = idx
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-		}
-		else gSelected = -1
-	}
-	if( gTxtState != parent.gOtlTxtExp ) {
-		state = "block"
-		if( !parent.gOtlTxtExp )
-			state="none"
-		for(ii=0; ii<gChildEntryTable.length; ii++) {
-			obj=gChildEntryTable[ii];
-			if( obj.id == null ) continue;
-			if( obj.id.indexOf("PPTC") >= 0 )
-				obj.style.display=state;
-		}
-		gTxtState=parent.gOtlTxtExp
-		if( ObjExists( gSelected ) )
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-	}
-}
-function InitArray()
-{
-	count=0
-	var list=GetTags(document,"DIV");
-	for(ii=0; ii<list.length; ii++) {
-		obj=list.item(ii)
-		if( obj.id == null ) continue
-		if( obj.id.indexOf("PPTC") >= 0 )
-			gChildEntryTable[count++]=obj
-	}
-}
-function ChangeState( idx,fgColor,bgColor )
-{
-	obj=GetObj("PPTL"+idx)
-	obj.style.color=fgColor
-	obj=GetObj("PPTP"+idx)
-	obj.style.backgroundColor=bgColor
-}
-function ChgClr( o,clr ){ if( o.id != "PPTL"+gSelected ) o.style.color=clr }
-function Over( src ){ ChgClr(GetLink(src),gOtlActiveClr) }
-function Out( src ){ ChgClr(GetLink(src),gOtlHiliteClr) }
-function Follow(src){ window.location.href = GetLink(src).href; }
-function ObjExists( ii ) { obj=GetObj("PPTP"+ii ); return( obj ) }
-function GoToSld( href ){ UpdIdx(parent.GetSldNum(href)); parent.GoToSld( href ) }
-function CancelDrag(){ window.event.cancelBubble=true;window.event.returnValue=false}
-function GetLink(src)
-{
-   if(src.tagName=="A") return src
-   else return GetTags(src,"A").item(0)
-}
-function UpdNav()
-{
-	txt = "<center>";
-	if( parent.GetHrefObj( parent.gCurSld ).mOrigVis == 1 )
-		txt += "Slide " + parent.GetCurSldNum() + " of " + parent.GetNumSlds()
-	else
-		txt += "Hidden Slide"
-	txt += "</center>";
-	nav_text.innerHTML = txt;
-	if( !parent.HasPrevSld() )
-		gBtnArr["nb_prev"].Enabled(0)
-	else
-		gBtnArr["nb_prev"].Enabled(1)
-	if( !parent.HasNextSld() )
-		gBtnArr["nb_next"].Enabled(0)
-	else
-		gBtnArr["nb_next"].Enabled(1)
-	gBtnArr["nb_nts"].SetEnabled()
-	gBtnArr["nb_nts"].SetFlag( parent.gHasNts )
-	gBtnArr["nb_sldshw"].Enabled(1)
-	gBtnArr["nb_voice"].Enabled(1)
-}
-function UpdOtlNav()
-{
-	gBtnArr["nb_otl"].SetEnabled();
-	if( parent.gOtlOpen )
-		gBtnArr["nb_otlTxt"].Enabled( true );
-	else
-		document.all.item("nb_otlTxtBorder").style.visibility = "hidden";
-}
-
-//--></script>
-<style>
-<!--.PTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;
-	padding-left:2px;
-	font-weight:bold;}
-.CTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;}
-a
-	{color:white;
-	text-decoration:none;}
-ul
-	{color:white;
-	margin-bottom:0px;
-	margin-left:20px;}
-.sldNum
-	{margin-top:5px;
-	color:white;}
-.button
-	{position:absolute;
-	width:32px;
-	height:20px;
-	border-style:solid;
-	border-width:1px;
-	border-color:threedface;}
--->
-</style>
-</head>
-
-<body onload="Load()" style='margin:2px'>
-
-<div id=NavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-<table id="notesBtn" style='position:absolute;display:none;width:70px' align=left cellpadding=0
- cellspacing=0>
- <td nowrap>
- <div id="nb_ntsElem" align=center style='position:relative;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt'><img src="notes_flag.gif"
- border=0 id="notes_flag" style='display:none'><span
-style='mso-spacerun:yes'>  </span>Notes</div>
- <div title="Show/Hide Notes" id="nb_nts" style='position:absolute;top:0%;
- left:0%;width:100%;height:100%'></div>
- </td>
-</table>
-
-<table style='position:relative;width:70px' align=right cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_sldshwText" title="Full
-Screen Slide Show" align=center style='position:relative;margin-left:20px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt;cursor:default'>Slide
-Show</div>
- <div id="nb_sldshwBorder" title="Full Screen Slide Show" style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_sldshw" style='position:relative;left:-254px'></div>
- </div>
- </td>
- <td>
- <div id="nb_voiceBorder" style='display:none;position:absolute;top:0;left:-40px;
- width:20px;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_voice" title="Pause/Play Narration" style='position:
- relative;left:-290px'></div>
- </div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_prevBorder" class=button style='left:-30px'>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_prev" title="Previous Slide" style='position:relative;
- left:0px'></div>
- </div>
- <span id="nav_text" style='position:relative;top:3px;width:100px;font-family:
- Arial;color:buttontext;font-size:9pt'></span>
- <div id="nb_nextBorder" class=button>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_next" title="Next Slide" style='position:relative;
- left:-90px'></div>
- </div>
- </td>
-</table>
-</div>
-
-<div id=OtlNavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-
-<table style='position:relative;width:70px' align=left cellpadding=0 cellspacing=0>
- <td nowrap><div title="Show/Hide
-Outline" id="nb_otl"
- style='position:absolute;top:0%;left:0%;width:100%;height:100%;cursor:default'>
- <div id="nb_otlElem" align=center style='position:relative;padding:3px;font-family:Arial;
- color:buttontext;font-size:9pt'>Outline</div></div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td>
- <div style='position:absolute;left:-18px;width:24px;height:20px;border-style:
- solid;border-width:1px;border-color:threedface' id="nb_otlTxtBorder">
- <div style='position:absolute;clip:rect(0px, 22px, 18px, 0px)'><img
- src=buttons.gif id="nb_otlTxt" title="Expand/Collapse Outline"
- style='position:relative;left:-157px'></div>
- </div>
- </td>
-</table>
-
-</div>
-
-<div id=OtlObj style='display:none;visibility:hidden;'>
-
-
-<table width="100%" style='font-family:Arial;font-size:9pt'>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>1</font></div>
-  </td>
-  <td width="100%">
-  <div id=PPTP1 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0030.html');" id=PPTL1>What do YOU want UML™
-  to be?</a></font></div>
-  <div id=PPTC1 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Long Talk</li>
-   <br>
-   <br>
-   <li>Kenn Hussey</li>
-   <li>IBM Rational Software</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>2</font></div>
-  </td>
-  <td>
-  <div id=PPTP2 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0029.html');" id=PPTL2>Contents</a></font></div>
-  <div id=PPTC2 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>3</font></div>
-  </td>
-  <td>
-  <div id=PPTP3 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0117.html');" id=PPTL3>Contents</a></font></div>
-  <div id=PPTC3 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>4</font></div>
-  </td>
-  <td>
-  <div id=PPTP4 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0032.html');" id=PPTL4>Background – What is
-  UML?</a></font></div>
-  <div id=PPTC4 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Unified Modeling Language, an Object Management Group (OMG) standard</li>
-   <br>
-   <br>
-   <li>A language for specifying, visualizing, and documenting models of
-       software systems</li>
-   <br>
-   <br>
-   <li>Current version is 2.1.1</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>5</font></div>
-  </td>
-  <td>
-  <div id=PPTP5 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0033.html');" id=PPTL5>Background – What is
-  UML2?</a></font></div>
-  <div id=PPTC5 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Unified Modeling Language 2.x</li>
-   <br>
-   <br>
-   <li>A component of the Model Development Tools (MDT) Modeling subproject at
-       Eclipse</li>
-   <br>
-   <br>
-   <li>Current release, 2.0.3, is based on UML 2.1.1</li>
-   <br>
-   <br>
-   <li>Next release tentatively scheduled for June 2007 (Europa)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>6</font></div>
-  </td>
-  <td>
-  <div id=PPTP6 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0034.html');" id=PPTL6>Background – What is
-  UML2?</a></font></div>
-  <div id=PPTC6 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML2 provides</li>
-   <ul>
-    <li>a useable implementation of the UML metamodel to support the
-        development of modeling tools</li>
-    <li>a common XMI™ schema to facilitate interchange of semantic models</li>
-    <li>test cases as a means of validating the specification</li>
-    <li>validation rules as a means of defining and enforcing levels of
-        compliance</li>
-   </ul>
-   <br>
-   <li>UML2 includes a customized EMF code generator that can handle “UMLisms”
-       like redefinition, subsetting, and derived unions</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>7</font></div>
-  </td>
-  <td>
-  <div id=PPTP7 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0118.html');" id=PPTL7>Contents</a></font></div>
-  <div id=PPTC7 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>8</font></div>
-  </td>
-  <td>
-  <div id=PPTP8 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0036.html');" id=PPTL8>Language Units</a></font></div>
-  <div id=PPTC8 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The modeling concepts in UML are organized into language units</li>
-   <br>
-   <br>
-   <li>A language unit is a collection of tightly coupled modeling concepts
-       that deal with a particular aspect of a system</li>
-   <br>
-   <br>
-   <li>Language units are further partitioned into packages (merge increments)</li>
-   <br>
-   <br>
-   <li>Language units are used as the foundation for defining compliance in UML</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>9</font></div>
-  </td>
-  <td>
-  <div id=PPTP9 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0119.html');" id=PPTL9>Contents</a></font></div>
-  <div id=PPTC9 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>10</font></div>
-  </td>
-  <td>
-  <div id=PPTP10 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0035.html');" id=PPTL10>Compliance Levels</a></font></div>
-  <div id=PPTC10 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The modeling concepts in UML are also partitioned into horizontal layers
-       of capability referred to as compliance points</li>
-   <br>
-   <br>
-   <li>A compliance level is ultimately merged into a single “UML” package
-       which defines a shared namespace for all compliance levels</li>
-   <br>
-   <br>
-   <li>UML specifies five pre-defined compliance levels, namely L0, LM, L1, L2,
-       and L3</li>
-   <br>
-   <br>
-   <li>UML2 is based on the L3 compliance level of UML</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>11</font></div>
-  </td>
-  <td>
-  <div id=PPTP11 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0048.html');" id=PPTL11>Compliance Levels – L0</a></font></div>
-  <div id=PPTC11 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Level 0 is the most basic compliance level for UML</li>
-   <br>
-   <br>
-   <li>Contains the basic ability to model structure</li>
-   <br>
-   <br>
-   <li>Has the same modeling capability as EMOF but does not include the other
-       MOF™ capabilities such as reflection, identity, or extensions</li>
-   <br>
-   <br>
-   <li>Level 0 is a good starting point for extending UML with additional
-       behavior using MOF</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>12</font></div>
-  </td>
-  <td>
-  <div id=PPTP12 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0037.html');" id=PPTL12>Compliance Levels – L0</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>13</font></div>
-  </td>
-  <td>
-  <div id=PPTP13 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0049.html');" id=PPTL13>Compliance Levels – LM</a></font></div>
-  <div id=PPTC13 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Level M is the Metamodel constructs compliance level from
-       InfrastructureLibrary</li>
-   <br>
-   <br>
-   <li>Adds an extra language unit for more advanced class-based structures
-       used for building metamodels (using CMOF), such as UML itself</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>14</font></div>
-  </td>
-  <td>
-  <div id=PPTP14 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0038.html');" id=PPTL14>Compliance Levels – LM</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>15</font></div>
-  </td>
-  <td>
-  <div id=PPTP15 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0050.html');" id=PPTL15>Compliance Levels – L1</a></font></div>
-  <div id=PPTC15 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Level 1 extends the capabilities provided by Level M</li>
-   <br>
-   <br>
-   <li>Adds language units for use cases, interactions, structures, actions,
-       and activities</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>16</font></div>
-  </td>
-  <td>
-  <div id=PPTP16 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0039.html');" id=PPTL16>Compliance Levels – L1</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>17</font></div>
-  </td>
-  <td>
-  <div id=PPTP17 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0040.html');" id=PPTL17>Compliance Levels – L1</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>18</font></div>
-  </td>
-  <td>
-  <div id=PPTP18 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0051.html');" id=PPTL18>Compliance Levels – L2</a></font></div>
-  <div id=PPTC18 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Level 2 extends the language units already provided in Level 1</li>
-   <br>
-   <br>
-   <li>Adds language units for deployment, state machine modeling, and profiles</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>19</font></div>
-  </td>
-  <td>
-  <div id=PPTP19 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0041.html');" id=PPTL19>Compliance Levels – L2</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>20</font></div>
-  </td>
-  <td>
-  <div id=PPTP20 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0042.html');" id=PPTL20>Compliance Levels – L2</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>21</font></div>
-  </td>
-  <td>
-  <div id=PPTP21 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0052.html');" id=PPTL21>Compliance Levels – L3</a></font></div>
-  <div id=PPTC21 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Level 3 represents the complete UML</li>
-   <br>
-   <br>
-   <li>Extends the language units provided by Level 2</li>
-   <br>
-   <br>
-   <li>Adds new language units for modeling information flows, templates, and
-       model packaging</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>22</font></div>
-  </td>
-  <td>
-  <div id=PPTP22 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0043.html');" id=PPTL22>Compliance Levels – L3</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>23</font></div>
-  </td>
-  <td>
-  <div id=PPTP23 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0044.html');" id=PPTL23>Compliance Levels – L3</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>24</font></div>
-  </td>
-  <td>
-  <div id=PPTP24 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0045.html');" id=PPTL24>Compliance Levels –
-  UML2</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>25</font></div>
-  </td>
-  <td>
-  <div id=PPTP25 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0120.html');" id=PPTL25>Contents</a></font></div>
-  <div id=PPTC25 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>26</font></div>
-  </td>
-  <td>
-  <div id=PPTP26 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0046.html');" id=PPTL26>Package Merge</a></font></div>
-  <div id=PPTC26 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>A directed relationship between two packages which indicates that the
-       contents of the two packages are to be combined</li>
-   <br>
-   <br>
-   <li>Can be viewed as an operation that takes the contents of two packages
-       and produces a new package that combines the contents of the packages
-       involved in the merge</li>
-   <br>
-   <br>
-   <li>By selecting which increments to merge, it is possible to obtain a
-       custom definition of a concept for a specific end</li>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>27</font></div>
-  </td>
-  <td>
-  <div id=PPTP27 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0053.html');" id=PPTL27>Package Merge –
-  Terminology</a></font></div>
-  <div id=PPTC27 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>merged element – contained by merged package before the merge</li>
-   <br>
-   <br>
-   <li>receiving element – contained by receiving package before the merge</li>
-   <br>
-   <br>
-   <li>resulting element – contained by resulting package after the merge</li>
-   <br>
-   <br>
-   <li>merged package – target of the merge, contains merged elements</li>
-   <br>
-   <br>
-   <li>receiving package – source of the merge, contains receiving elements</li>
-   <br>
-   <br>
-   <li>resulting package – result of the merge, contains resulting elements</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>28</font></div>
-  </td>
-  <td>
-  <div id=PPTP28 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0047.html');" id=PPTL28>Package Merge –
-  Semantics</a></font></div>
-  <div id=PPTC28 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The semantics of package merge are defined by a set of constraints and
-       transformation rules</li>
-   <br>
-   <br>
-   <li>When a merged element and a receiving element represent the same entity,
-       their contents are conceptually merged into a single resulting element
-       according to the rules of package merge</li>
-   <br>
-   <br>
-   <li>UML2 provides a utility that will enforce these constraints and apply
-       these transformations</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>29</font></div>
-  </td>
-  <td>
-  <div id=PPTP29 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0054.html');" id=PPTL29>Package Merge –
-  Example (before)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>30</font></div>
-  </td>
-  <td>
-  <div id=PPTP30 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0055.html');" id=PPTL30>Package Merge –
-  Example (after)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>31</font></div>
-  </td>
-  <td>
-  <div id=PPTP31 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0121.html');" id=PPTL31>Contents</a></font></div>
-  <div id=PPTC31 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>32</font></div>
-  </td>
-  <td>
-  <div id=PPTP32 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0056.html');" id=PPTL32>Redefinition</a></font></div>
-  <div id=PPTC32 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Redefinition refers to the ability for one element to redefine another
-       in the context of a generalization hierarchy</li>
-   <br>
-   <br>
-   <li>A redefining element must be consistent with the redefined element, but
-       may add specific constraints or other details particular to the
-       specializing classifier</li>
-   <br>
-   <br>
-   <li>The detailed semantics of redefinition vary for each specialization of RedefinableElement
-       in UML</li>
-   <br>
-   <br>
-   <li>The UML2 API and code generator provide support for Java™ code to
-       enforce these redefinition constraints</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>33</font></div>
-  </td>
-  <td>
-  <div id=PPTP33 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0057.html');" id=PPTL33>Redefinition – Example
-  (properties)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>34</font></div>
-  </td>
-  <td>
-  <div id=PPTP34 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0059.html');" id=PPTL34>Redefinition – Example
-  (properties)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>35</font></div>
-  </td>
-  <td>
-  <div id=PPTP35 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0058.html');" id=PPTL35>Redefinition – Example
-  (operations)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>36</font></div>
-  </td>
-  <td>
-  <div id=PPTP36 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0060.html');" id=PPTL36>Redefinition – Example
-  (operations)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>37</font></div>
-  </td>
-  <td>
-  <div id=PPTP37 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0122.html');" id=PPTL37>Contents</a></font></div>
-  <div id=PPTC37 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>38</font></div>
-  </td>
-  <td>
-  <div id=PPTP38 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0061.html');" id=PPTL38>Subsets</a></font></div>
-  <div id=PPTC38 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>A property may be marked as the subset of another, as long as every
-       element in the context of the subsetting property conforms to the
-       corresponding element in the context of the subsetted property</li>
-   <br>
-   <br>
-   <li>The collection of values associated with an instance of the subsetting
-       property must be included in, or the same as, the collection of values
-       associated with an instance of the corresponding subsetted property</li>
-   <br>
-   <br>
-   <li>The UML2 API and code generator provide support for Java code to enforce
-       these subset constraints</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>39</font></div>
-  </td>
-  <td>
-  <div id=PPTP39 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0062.html');" id=PPTL39>Subsets – Example
-  (non-derived)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>40</font></div>
-  </td>
-  <td>
-  <div id=PPTP40 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0064.html');" id=PPTL40>Subsets – Example
-  (non-derived)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>41</font></div>
-  </td>
-  <td>
-  <div id=PPTP41 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0063.html');" id=PPTL41>Subsets – Example
-  (non-derived)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>42</font></div>
-  </td>
-  <td>
-  <div id=PPTP42 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0065.html');" id=PPTL42>Subsets – Example
-  (derived)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>43</font></div>
-  </td>
-  <td>
-  <div id=PPTP43 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0066.html');" id=PPTL43>Subsets – Example
-  (derived)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>44</font></div>
-  </td>
-  <td>
-  <div id=PPTP44 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0123.html');" id=PPTL44>Contents</a></font></div>
-  <div id=PPTC44 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>45</font></div>
-  </td>
-  <td>
-  <div id=PPTP45 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0067.html');" id=PPTL45>Derived Unions</a></font></div>
-  <div id=PPTC45 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>If a property is derived, then its value(s) can be computed from other
-       information</li>
-   <br>
-   <br>
-   <li>A property may be marked as being a derived union</li>
-   <br>
-   <br>
-   <li>The collection of values denoted by the property in some context is
-       derived by being the strict union of all of the values denoted, in the
-       same context, by properties defined to subset it</li>
-   <br>
-   <br>
-   <li>If a derived union property is not multivalued, the values of all the
-       subsets must be either the same or null</li>
-   <br>
-   <br>
-   <li>The UML2 API and code generator provide support for Java code to enforce
-       these derived union constraints</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>46</font></div>
-  </td>
-  <td>
-  <div id=PPTP46 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0068.html');" id=PPTL46>Derived Unions –
-  Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>47</font></div>
-  </td>
-  <td>
-  <div id=PPTP47 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0069.html');" id=PPTL47>Derived Unions –
-  Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>48</font></div>
-  </td>
-  <td>
-  <div id=PPTP48 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0070.html');" id=PPTL48>Derived Unions –
-  Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>49</font></div>
-  </td>
-  <td>
-  <div id=PPTP49 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0071.html');" id=PPTL49>Derived Unions –
-  Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>50</font></div>
-  </td>
-  <td>
-  <div id=PPTP50 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0124.html');" id=PPTL50>Contents</a></font></div>
-  <div id=PPTC50 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>51</font></div>
-  </td>
-  <td>
-  <div id=PPTP51 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0115.html');" id=PPTL51>Profiles</a></font></div>
-  <div id=PPTC51 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML provides a mechanism that allows metaclasses from an existing
-       metamodel to be adapted for different purposes</li>
-   <br>
-   <br>
-   <li>A profile is a kind of package that extends a reference metamodel</li>
-   <br>
-   <br>
-   <li>A stereotype is a kind of class that may extend one or more metaclasses
-       via extension relationships, as part of a profile</li>
-   <br>
-   <br>
-   <li>It is possible to interchange profiles, together with models to which
-       they have been applied, via XMI</li>
-   <br>
-   <br>
-   <li>UML2 provides support for defining and interchanging profiles</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>52</font></div>
-  </td>
-  <td>
-  <div id=PPTP52 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0125.html');" id=PPTL52>Contents</a></font></div>
-  <div id=PPTC52 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>53</font></div>
-  </td>
-  <td>
-  <div id=PPTP53 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0116.html');" id=PPTL53>Extending UML(2) –
-  Why?</a></font></div>
-  <div id=PPTC53 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Use terminology that is adapted to a particular platform or domain</li>
-   <br>
-   <br>
-   <li>Specify a syntax for constructs that do not have a notation</li>
-   <br>
-   <br>
-   <li>Specify a different notation for symbols that already exist</li>
-   <br>
-   <br>
-   <li>Add semantics that are left unspecified in UML</li>
-   <br>
-   <br>
-   <li>Add semantics that do not exist in UML</li>
-   <br>
-   <br>
-   <li>Add constraints that restrict the way one may use UML</li>
-   <br>
-   <br>
-   <li>Add information that can be used when transforming a model to another
-       model or code</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>54</font></div>
-  </td>
-  <td>
-  <div id=PPTP54 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0072.html');" id=PPTL54>Extending UML(2) –
-  How?</a></font></div>
-  <div id=PPTC54 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>One of the strengths of the latest version of UML is that it can be
-       customized to meet the needs of a given application or domain</li>
-   <br>
-   <br>
-   <li>There are two “official” ways of customizing UML</li>
-   <ul>
-    <li>lightweight extensions using profiles</li>
-    <li>heavyweight, or first-class, extensions using MOF</li>
-   </ul>
-   <br>
-   <li>UML2 supports these kinds of extensions but also provides two
-       lighter-weight alternatives which weÂ’ll call featherweight and middleweight
-       extensions</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>55</font></div>
-  </td>
-  <td>
-  <div id=PPTP55 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0073.html');" id=PPTL55>Extending UML(2) –
-  Example</a></font></div>
-  <div id=PPTC55 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Assume we want to customize UML for modeling testing systems</li>
-   <br>
-   <br>
-   <li>WeÂ’ll (ab)use some concepts from the UML Testing Profile and JUnit</li>
-   <ul>
-    <li>Test Suite – a package containing text contexts to test a system</li>
-    <li>Test Context – a class owning test cases to test a component</li>
-    <li>Test Case – an operation specifying tests to realize an objective</li>
-    <br>
-    <br>
-   </ul>
-   <li>We’ll examine how to extend UML2 for this “domain” using the four
-       different approaches</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>56</font></div>
-  </td>
-  <td>
-  <div id=PPTP56 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0074.html');" id=PPTL56>Extending UML(2) –
-  Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>57</font></div>
-  </td>
-  <td>
-  <div id=PPTP57 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0126.html');" id=PPTL57>Contents</a></font></div>
-  <div id=PPTC57 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>58</font></div>
-  </td>
-  <td>
-  <div id=PPTP58 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0075.html');" id=PPTL58>Featherweight
-  Extensions</a></font></div>
-  <div id=PPTC58 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Featherweight extensions are done by adorning model elements with keywords</li>
-   <br>
-   <br>
-   <li>A keyword is a label for a model element that is typically displayed
-       within guillemots</li>
-   <br>
-   <br>
-   <li>UML2 stores these keywords in Ecore annotations</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>59</font></div>
-  </td>
-  <td>
-  <div id=PPTP59 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0076.html');" id=PPTL59>Featherweight
-  Extensions – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>60</font></div>
-  </td>
-  <td>
-  <div id=PPTP60 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0083.html');" id=PPTL60>Featherweight
-  Extensions – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>61</font></div>
-  </td>
-  <td>
-  <div id=PPTP61 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0084.html');" id=PPTL61>Featherweight
-  Extensions – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>62</font></div>
-  </td>
-  <td>
-  <div id=PPTP62 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0085.html');" id=PPTL62>Featherweight
-  Extensions – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>63</font></div>
-  </td>
-  <td>
-  <div id=PPTP63 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0110.html');" id=PPTL63>Featherweight
-  Extensions – Pros/Cons</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>64</font></div>
-  </td>
-  <td>
-  <div id=PPTP64 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0127.html');" id=PPTL64>Contents</a></font></div>
-  <div id=PPTC64 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>65</font></div>
-  </td>
-  <td>
-  <div id=PPTP65 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0077.html');" id=PPTL65>Lightweight Extensions</a></font></div>
-  <div id=PPTC65 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Lightweight extensions are done by creating profiles/stereotypes and
-       applying them to model elements</li>
-   <br>
-   <br>
-   <li>Stereotypes can be used to add keywords, constraints, images, and
-       properties (tagged values) to model elements</li>
-   <br>
-   <br>
-   <li>Metadata for profiles must be defined and deployed</li>
-   <br>
-   <br>
-   <li>UML2 stores stereotype applications as dynamic EMF objects</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>66</font></div>
-  </td>
-  <td>
-  <div id=PPTP66 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0086.html');" id=PPTL66>Lightweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>67</font></div>
-  </td>
-  <td>
-  <div id=PPTP67 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0078.html');" id=PPTL67>Lightweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>68</font></div>
-  </td>
-  <td>
-  <div id=PPTP68 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0087.html');" id=PPTL68>Lightweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>69</font></div>
-  </td>
-  <td>
-  <div id=PPTP69 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0088.html');" id=PPTL69>Lightweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>70</font></div>
-  </td>
-  <td>
-  <div id=PPTP70 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0089.html');" id=PPTL70>Lightweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>71</font></div>
-  </td>
-  <td>
-  <div id=PPTP71 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0090.html');" id=PPTL71>Lightweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>72</font></div>
-  </td>
-  <td>
-  <div id=PPTP72 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0111.html');" id=PPTL72>Lightweight Extensions
-  – Pros/Cons</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>73</font></div>
-  </td>
-  <td>
-  <div id=PPTP73 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0128.html');" id=PPTL73>Contents</a></font></div>
-  <div id=PPTC73 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>74</font></div>
-  </td>
-  <td>
-  <div id=PPTP74 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0079.html');" id=PPTL74>Middleweight
-  Extensions</a></font></div>
-  <div id=PPTC74 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Middleweight extensions are done by creating a metamodel that extends
-       the UML2 metamodel via specialization</li>
-   <br>
-   <br>
-   <li>An API and schema for the new metamodel must be generated, implemented,
-       and deployed</li>
-   <br>
-   <br>
-   <li>The implementation classes in the specialized metamodel extend the UML2
-       implementation classes (discouraged)</li>
-   <br>
-   <br>
-   <li>The API and resource implementation must conform with the UML2 API and
-       resource implementation</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>75</font></div>
-  </td>
-  <td>
-  <div id=PPTP75 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0091.html');" id=PPTL75>Middleweight
-  Extensions – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>76</font></div>
-  </td>
-  <td>
-  <div id=PPTP76 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0080.html');" id=PPTL76>Middleweight
-  Extensions – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>77</font></div>
-  </td>
-  <td>
-  <div id=PPTP77 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0103.html');" id=PPTL77>Middleweight
-  Extensions – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>78</font></div>
-  </td>
-  <td>
-  <div id=PPTP78 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0101.html');" id=PPTL78>Middleweight
-  Extensions – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>79</font></div>
-  </td>
-  <td>
-  <div id=PPTP79 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0102.html');" id=PPTL79>Middleweight
-  Extensions – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>80</font></div>
-  </td>
-  <td>
-  <div id=PPTP80 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0092.html');" id=PPTL80>Middleweight
-  Extensions – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>81</font></div>
-  </td>
-  <td>
-  <div id=PPTP81 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0093.html');" id=PPTL81>Middleweight
-  Extensions – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>82</font></div>
-  </td>
-  <td>
-  <div id=PPTP82 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0094.html');" id=PPTL82>Middleweight
-  Extensions – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>83</font></div>
-  </td>
-  <td>
-  <div id=PPTP83 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0112.html');" id=PPTL83>Middleweight
-  Extensions – Pros/Cons</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>84</font></div>
-  </td>
-  <td>
-  <div id=PPTP84 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0129.html');" id=PPTL84>Contents</a></font></div>
-  <div id=PPTC84 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>85</font></div>
-  </td>
-  <td>
-  <div id=PPTP85 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0081.html');" id=PPTL85>Heavyweight Extensions</a></font></div>
-  <div id=PPTC85 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Heavyweight extensions are done by creating a metamodel that merges
-       packages from UML</li>
-   <br>
-   <br>
-   <li>An API and schema for the new metamodel must be generated, implemented,
-       and deployed</li>
-   <br>
-   <br>
-   <li>The implementation classes in the specialized metamodel do not extend
-       the UML2 implementation classes</li>
-   <br>
-   <br>
-   <li>The API and resource implementation need not conform with the UML2 API
-       and resource implementation</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>86</font></div>
-  </td>
-  <td>
-  <div id=PPTP86 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0097.html');" id=PPTL86>Heavyweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>87</font></div>
-  </td>
-  <td>
-  <div id=PPTP87 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0096.html');" id=PPTL87>Heavyweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>88</font></div>
-  </td>
-  <td>
-  <div id=PPTP88 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0104.html');" id=PPTL88>Heavyweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>89</font></div>
-  </td>
-  <td>
-  <div id=PPTP89 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0098.html');" id=PPTL89>Heavyweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>90</font></div>
-  </td>
-  <td>
-  <div id=PPTP90 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0105.html');" id=PPTL90>Heavyweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>91</font></div>
-  </td>
-  <td>
-  <div id=PPTP91 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0106.html');" id=PPTL91>Heavyweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>92</font></div>
-  </td>
-  <td>
-  <div id=PPTP92 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0107.html');" id=PPTL92>Heavyweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>93</font></div>
-  </td>
-  <td>
-  <div id=PPTP93 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0108.html');" id=PPTL93>Heavyweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>94</font></div>
-  </td>
-  <td>
-  <div id=PPTP94 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0109.html');" id=PPTL94>Heavyweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>95</font></div>
-  </td>
-  <td>
-  <div id=PPTP95 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0082.html');" id=PPTL95>Heavyweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>96</font></div>
-  </td>
-  <td>
-  <div id=PPTP96 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0099.html');" id=PPTL96>Heavyweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>97</font></div>
-  </td>
-  <td>
-  <div id=PPTP97 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0100.html');" id=PPTL97>Heavyweight Extensions
-  – Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>98</font></div>
-  </td>
-  <td>
-  <div id=PPTP98 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0113.html');" id=PPTL98>Heavyweight Extensions
-  – Pros/Cons</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>99</font></div>
-  </td>
-  <td>
-  <div id=PPTP99 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0130.html');" id=PPTL99>Contents</a></font></div>
-  <div id=PPTC99 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Background</li>
-   <li>Language Units</li>
-   <li>Compliance Levels</li>
-   <li>Package Merge</li>
-   <li>Redefinition</li>
-   <li>Subsets</li>
-   <li>Derived Unions</li>
-   <li>Profiles</li>
-   <li>Extending UML(2)</li>
-   <li>Featherweight Extensions</li>
-   <li>Lightweight Extensions</li>
-   <li>Middleweight Extensions</li>
-   <li>Heavyweight Extensions</li>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>100</font></div>
-  </td>
-  <td>
-  <div id=PPTP100 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0114.html');" id=PPTL100>Summary</a></font></div>
-  <div id=PPTC100 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML can be extended to suit the needs of your application or domain</li>
-   <br>
-   <br>
-   <li>The UML2 component of MDT supports several customization mechanisms,
-       each having their own pros and cons</li>
-   <br>
-   <br>
-   <li>The choice of which approach to take will depend on the amount of
-       overlap between your domain and UML</li>
-   <br>
-   <br>
-   <li>Domains having little or nothing in common with UML can be supported
-       with a domain specific language (DSL) developed with EMF</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>101</font></div>
-  </td>
-  <td>
-  <div id=PPTP101 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0031.html');" id=PPTL101>Legal Notices</a></font></div>
-  <div id=PPTC101 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML, XMI, and MOF are trademarks of the Object Management Group</li>
-   <br>
-   <br>
-   <li>Java and all Java-based trademarks are trademarks of Sun Microsystems,
-       Inc. in the United States, other countries, or both</li>
-   <br>
-   <br>
-   <li>Other company, product, or service names may be trademarks or service
-       marks of others</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
-</table>
-
-
-
-</div>
-
-<div style='display:none'><a href=master08.html></a><a href=master08.xml></a><a
-href=preview.wmf></a><a href="master08_image001.jpg"></a><a
-href="master08_image002.jpg"></a><a href=master09.html></a><a
-href=master09.xml></a><a href=master02.html></a><a href=pres.xml></a><a
-href=editdata.mso></a><a href=slide0030.html></a><a href="master09_image003.jpg"></a><a
-href="master09_image004.jpg"></a><a href=slide0029.html></a><a
-href="master08_image005.jpg"></a><a href="master08_image006.gif"></a><a
-href="master08_image007.jpg"></a><a href=slide0117.html></a><a
-href=slide0032.html></a><a href=slide0033.html></a><a href=slide0034.html></a><a
-href=slide0118.html></a><a href=slide0036.html></a><a href=slide0119.html></a><a
-href=slide0035.html></a><a href=slide0048.html></a><a href=slide0037.html></a><a
-href="slide0037_image008.png"></a><a href="slide0037_image009.gif"></a><a
-href=slide0049.html></a><a href=slide0038.html></a><a
-href="slide0038_image010.png"></a><a href="slide0038_image011.gif"></a><a
-href=slide0050.html></a><a href=slide0039.html></a><a
-href="slide0039_image012.png"></a><a href="slide0039_image013.gif"></a><a
-href=slide0040.html></a><a href="slide0040_image014.gif"></a><a
-href=slide0051.html></a><a href=slide0041.html></a><a
-href="slide0041_image015.png"></a><a href="slide0041_image016.gif"></a><a
-href=slide0042.html></a><a href="slide0042_image017.gif"></a><a
-href=slide0052.html></a><a href=slide0043.html></a><a
-href="slide0043_image018.png"></a><a href="slide0043_image019.gif"></a><a
-href=slide0044.html></a><a href="slide0044_image020.gif"></a><a
-href=slide0045.html></a><a href="slide0045_image021.png"></a><a
-href="slide0045_image022.gif"></a><a href=slide0120.html></a><a
-href=slide0046.html></a><a href=slide0053.html></a><a href=slide0047.html></a><a
-href=slide0054.html></a><a href="slide0054_image023.png"></a><a
-href="slide0054_image024.gif"></a><a href=slide0055.html></a><a
-href="slide0055_image025.png"></a><a href="slide0055_image026.gif"></a><a
-href=slide0121.html></a><a href=slide0056.html></a><a href=slide0057.html></a><a
-href="slide0057_image027.png"></a><a href="slide0057_image028.gif"></a><a
-href=slide0059.html></a><a href=slide0058.html></a><a
-href="slide0058_image029.png"></a><a href="slide0058_image030.gif"></a><a
-href=slide0060.html></a><a href=slide0122.html></a><a href=slide0061.html></a><a
-href=slide0062.html></a><a href="slide0062_image031.png"></a><a
-href="slide0062_image032.gif"></a><a href=slide0064.html></a><a
-href=slide0063.html></a><a href=slide0065.html></a><a
-href="slide0065_image033.png"></a><a href="slide0065_image034.gif"></a><a
-href=slide0066.html></a><a href=slide0123.html></a><a href=slide0067.html></a><a
-href=slide0068.html></a><a href="slide0068_image035.png"></a><a
-href="slide0068_image036.gif"></a><a href=slide0069.html></a><a
-href="slide0069_image037.png"></a><a href="slide0069_image038.gif"></a><a
-href=slide0070.html></a><a href=slide0071.html></a><a href=slide0124.html></a><a
-href=slide0115.html></a><a href=slide0125.html></a><a href=slide0116.html></a><a
-href=slide0072.html></a><a href=slide0073.html></a><a href=slide0074.html></a><a
-href="slide0074_image039.png"></a><a href="slide0074_image040.gif"></a><a
-href=slide0126.html></a><a href=slide0075.html></a><a href=slide0076.html></a><a
-href="slide0076_image041.png"></a><a href="slide0076_image042.gif"></a><a
-href=slide0083.html></a><a href="slide0083_image043.png"></a><a
-href=oledata.mso></a><a href="slide0083_image044.jpg"></a><a
-href=slide0084.html></a><a href=slide0085.html></a><a href=slide0110.html></a><a
-href="slide0110_image045.gif"></a><a href=slide0127.html></a><a
-href=slide0077.html></a><a href=slide0086.html></a><a
-href="slide0086_image046.png"></a><a href="slide0086_image047.gif"></a><a
-href=slide0078.html></a><a href="slide0078_image048.png"></a><a
-href="slide0078_image049.jpg"></a><a href=slide0087.html></a><a
-href="slide0087_image050.png"></a><a href="slide0087_image051.jpg"></a><a
-href="slide0087_image052.png"></a><a href="slide0087_image053.gif"></a><a
-href=slide0088.html></a><a href="slide0088_image054.png"></a><a
-href="slide0088_image055.jpg"></a><a href="slide0088_image056.png"></a><a
-href="slide0088_image057.jpg"></a><a href=slide0089.html></a><a
-href=slide0090.html></a><a href=slide0111.html></a><a
-href="slide0111_image058.gif"></a><a href=slide0128.html></a><a
-href=slide0079.html></a><a href=slide0091.html></a><a
-href="slide0091_image059.png"></a><a href="slide0091_image060.gif"></a><a
-href=slide0080.html></a><a href="slide0080_image061.png"></a><a
-href="slide0080_image062.jpg"></a><a href=slide0103.html></a><a
-href="slide0103_image063.png"></a><a href="slide0103_image064.jpg"></a><a
-href=slide0101.html></a><a href="slide0101_image065.png"></a><a
-href="slide0101_image066.jpg"></a><a href=slide0102.html></a><a
-href=slide0092.html></a><a href="slide0092_image067.png"></a><a
-href="slide0092_image068.jpg"></a><a href="slide0092_image069.png"></a><a
-href="slide0092_image070.jpg"></a><a href=slide0093.html></a><a
-href=slide0094.html></a><a href=slide0112.html></a><a
-href="slide0112_image071.gif"></a><a href=slide0129.html></a><a
-href=slide0081.html></a><a href=slide0097.html></a><a
-href="slide0097_image072.png"></a><a href="slide0097_image073.gif"></a><a
-href=slide0096.html></a><a href="slide0096_image074.png"></a><a
-href="slide0096_image075.jpg"></a><a href=slide0104.html></a><a
-href="slide0104_image076.png"></a><a href="slide0104_image077.jpg"></a><a
-href=slide0098.html></a><a href="slide0098_image078.png"></a><a
-href="slide0098_image079.jpg"></a><a href=slide0105.html></a><a
-href="slide0105_image080.png"></a><a href="slide0105_image081.jpg"></a><a
-href=slide0106.html></a><a href="slide0106_image082.png"></a><a
-href="slide0106_image083.jpg"></a><a href=slide0107.html></a><a
-href=slide0108.html></a><a href=slide0109.html></a><a href=slide0082.html></a><a
-href="slide0082_image084.png"></a><a href="slide0082_image085.jpg"></a><a
-href="slide0082_image086.png"></a><a href="slide0082_image087.jpg"></a><a
-href=slide0099.html></a><a href=slide0100.html></a><a href=slide0113.html></a><a
-href="slide0113_image088.gif"></a><a href=slide0130.html></a><a
-href=slide0114.html></a><a href=slide0031.html></a><a href=master01.html></a><a
-href="master08_stylesheet.css"></a><a href=script.js></a><a
-href="../EclipseCon2007_LongTalk.html"></a><a href=fullscreen.html></a><a
-href=buttons.gif></a><a href=frame.html></a><a href=outline.html></a></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/pres.xml b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/pres.xml
deleted file mode 100644
index 4107b1e..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/pres.xml
+++ /dev/null
@@ -1,249 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <p:presentation sizeof="screen" notessizex="4376" notessizey="5816"
-  gridspacingx="23224" gridspacingy="23224">
-  <p:master id="8" slidesn="1C24AB8,8B769EC0" type="main" href="master08.html"
-   xmlhref="master08.xml" template="1_Default Design" preserved="t"
-   layout="title_body" slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-    <p:colorscheme
-     colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
-   </p:schemes>
-  </p:master>
-  <p:master id="9" slidesn="1C24D0E,1F75CD10" type="title" href="master09.html"
-   xmlhref="master09.xml" preserved="t" layout="title_subtitle"
-   slots="centerTitle,subTitle,dateTime,footer,slideNumber"/>
-  <p:master id="1" slidesn="1C24D43,1A7CCF90" type="notes" href="master01.html"
-   layout="notes" slots="header,dateTime,slideImage,body,footer,slideNumber"/>
-  <p:master id="2" slidesn="1C2506F,D2141A80" type="handout"
-   href="master02.html" layout="handout"
-   slots="header,dateTime,footer,slideNumber"/>
-  <p:slide id="30" slidesn="1C75B6A,234C9170" href="slide0030.html"
-   masterhref="master09.html" layout="title_subtitle"
-   slots="centerTitle,subTitle"/>
-  <p:slide id="29" slidesn="1C3C8BA,EEFAEC40" href="slide0029.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="117" slidesn="1C3C8BA,EEFAEC40" href="slide0117.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="32" slidesn="1C75C0E,84851440" href="slide0032.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="33" slidesn="1C75C10,A5750410" href="slide0033.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="34" slidesn="1C75C10,F9A85820" href="slide0034.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="118" slidesn="1C3C8BA,EEFAEC40" href="slide0118.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="36" slidesn="1C75C12,8522DE10" href="slide0036.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="119" slidesn="1C3C8BA,EEFAEC40" href="slide0119.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="35" slidesn="1C75C12,4DA0D0A0" href="slide0035.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="48" slidesn="1C75C1F,8D4FD770" href="slide0048.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="37" slidesn="1C75C14,C7EB5AE0" href="slide0037.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="49" slidesn="1C75C1F,C46407E0" href="slide0049.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="38" slidesn="1C75C15,2CC2C8E0" href="slide0038.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="50" slidesn="1C75C20,B624EA90" href="slide0050.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="39" slidesn="1C75C15,3E78EF10" href="slide0039.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="40" slidesn="1C75C15,52537BE0" href="slide0040.html"
-   layout="title_body" slots="title,table"/>
-  <p:slide id="51" slidesn="1C75C20,E143BC10" href="slide0051.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="41" slidesn="1C75C16,6FA41A50" href="slide0041.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="42" slidesn="1C75C16,7A065620" href="slide0042.html"
-   layout="title_body" slots="title,table"/>
-  <p:slide id="52" slidesn="1C75C20,F9593370" href="slide0052.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="43" slidesn="1C75C17,CF589240" href="slide0043.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="44" slidesn="1C75C17,D6468EE0" href="slide0044.html"
-   layout="title_body" slots="title,table"/>
-  <p:slide id="45" slidesn="1C75C1C,A0CFC880" href="slide0045.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="120" slidesn="1C3C8BA,EEFAEC40" href="slide0120.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="46" slidesn="1C75C1C,F35FA5C0" href="slide0046.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="53" slidesn="1C75C24,6F2285E0" href="slide0053.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="47" slidesn="1C75C1D,4B160610" href="slide0047.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="54" slidesn="1C75C28,5F130E00" href="slide0054.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="55" slidesn="1C75C28,7A095E30" href="slide0055.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="121" slidesn="1C3C8BA,EEFAEC40" href="slide0121.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="56" slidesn="1C75C29,DB7C27F0" href="slide0056.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="57" slidesn="1C75C2B,F66D3610" href="slide0057.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="59" slidesn="1C75C2E,B4C2E130" href="slide0059.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="58" slidesn="1C75C2C,716BE000" href="slide0058.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="60" slidesn="1C75C2E,FCCD4330" href="slide0060.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="122" slidesn="1C3C8BA,EEFAEC40" href="slide0122.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="61" slidesn="1C75C34,225B1DC0" href="slide0061.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="62" slidesn="1C75C34,F54827F0" href="slide0062.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="64" slidesn="1C75C37,B4B647F0" href="slide0064.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="63" slidesn="1C75C37,18FD7950" href="slide0063.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="65" slidesn="1C75C37,FC2F3F60" href="slide0065.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="66" slidesn="1C75C39,44D6220" href="slide0066.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="123" slidesn="1C3C8BA,EEFAEC40" href="slide0123.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="67" slidesn="1C75C39,59046520" href="slide0067.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="68" slidesn="1C75C3B,BFE3B0" href="slide0068.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="69" slidesn="1C75C3C,20451560" href="slide0069.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="70" slidesn="1C75C3E,55D94AA0" href="slide0070.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="71" slidesn="1C75C3E,ABF11620" href="slide0071.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="124" slidesn="1C3C8BA,EEFAEC40" href="slide0124.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="115" slidesn="1C75D10,F2C47650" href="slide0115.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="125" slidesn="1C3C8BA,EEFAEC40" href="slide0125.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="116" slidesn="1C75D16,BE433E10" href="slide0116.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="72" slidesn="1C75C3F,C5815130" href="slide0072.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="73" slidesn="1C75C45,E67785C0" href="slide0073.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="74" slidesn="1C75CDA,AC4FDF10" href="slide0074.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="126" slidesn="1C3C8BA,EEFAEC40" href="slide0126.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="75" slidesn="1C75CDD,610B3240" href="slide0075.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="76" slidesn="1C75CDD,6A1FB860" href="slide0076.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="83" slidesn="1C75CE1,36DCB760" href="slide0083.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="84" slidesn="1C75CE1,E9E870B0" href="slide0084.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="85" slidesn="1C75CE2,92483B00" href="slide0085.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="110" slidesn="1C75D06,E16184C0" href="slide0110.html"
-   layout="title_body" slots="title,table"/>
-  <p:slide id="127" slidesn="1C3C8BA,EEFAEC40" href="slide0127.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="77" slidesn="1C75CDE,7F602150" href="slide0077.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="86" slidesn="1C75CE3,FE04D690" href="slide0086.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="78" slidesn="1C75CDE,8AFD4E20" href="slide0078.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="87" slidesn="1C75CEB,58FEEC00" href="slide0087.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="88" slidesn="1C75CEB,A5084100" href="slide0088.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="89" slidesn="1C75CEC,FA9BF2F0" href="slide0089.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="90" slidesn="1C75CED,3BB83140" href="slide0090.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="111" slidesn="1C75D07,270C24D0" href="slide0111.html"
-   layout="title_body" slots="title,table"/>
-  <p:slide id="128" slidesn="1C3C8BA,EEFAEC40" href="slide0128.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="79" slidesn="1C75CDE,970F5CD0" href="slide0079.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="91" slidesn="1C75CEE,E9356170" href="slide0091.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="80" slidesn="1C75CDE,AD992B20" href="slide0080.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="103" slidesn="1C75D02,A4D8A00" href="slide0103.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="101" slidesn="1C75D01,2A7660A0" href="slide0101.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="102" slidesn="1C75D01,95D80060" href="slide0102.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="92" slidesn="1C75CF7,40105C40" href="slide0092.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="93" slidesn="1C75CF8,11747C80" href="slide0093.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="94" slidesn="1C75CF8,655AE910" href="slide0094.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="112" slidesn="1C75D07,3E3B5AE0" href="slide0112.html"
-   layout="title_body" slots="title,table"/>
-  <p:slide id="129" slidesn="1C3C8BA,EEFAEC40" href="slide0129.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="81" slidesn="1C75CDE,B7595A90" href="slide0081.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="97" slidesn="1C75CFA,542615F0" href="slide0097.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="96" slidesn="1C75CFA,25FFA9C0" href="slide0096.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="104" slidesn="1C75D03,3E17220" href="slide0104.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="98" slidesn="1C75CFA,9255BBA0" href="slide0098.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="105" slidesn="1C75D03,5744A4F0" href="slide0105.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="106" slidesn="1C75D03,A03BFF00" href="slide0106.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="107" slidesn="1C75D04,11841670" href="slide0107.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="108" slidesn="1C75D04,A53A9240" href="slide0108.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="109" slidesn="1C75D04,F4844530" href="slide0109.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="82" slidesn="1C75CDE,C32D4ED0" href="slide0082.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="99" slidesn="1C75CFA,E386CC30" href="slide0099.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="100" slidesn="1C75CFB,7087550" href="slide0100.html"
-   layout="title_only" slots="title"/>
-  <p:slide id="113" slidesn="1C75D07,50275E20" href="slide0113.html"
-   layout="title_body" slots="title,table"/>
-  <p:slide id="130" slidesn="1C3C8BA,EEFAEC40" href="slide0130.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="114" slidesn="1C75D07,5FD976F0" href="slide0114.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="31" slidesn="1C75B6A,5517E9C0" href="slide0031.html"
-   layout="title_body" slots="title,body"/>
-  <p:viewstate type="slideView" scale="75" nosnaptogrid="t" snaptoshape="t"
-   sorterscale="100" restoredleft="156" restoredtop="946" manualadjustleft="t"
-   manualadjusttop="t" hideoutlineicons="t"/>
-  <p:guide type="horizontal" position="1070"/>
-  <p:guide type="horizontal" position="3247"/>
-  <p:guide type="horizontal" position="2150"/>
-  <p:guide type="horizontal" position="4079"/>
-  <p:guide type="vertical" position="2880"/>
-  <p:guide type="vertical" position="1176"/>
-  <p:guide type="vertical" position="913"/>
-  <p:font name="Arial" charset="0" type="4"/>
-  <p:font name="Wingdings" charset="2" type="6" family="2"/>
-  <p:font name="Times" type="4"/>
-  <p:font name="Courier New" charset="0" type="6" family="49"/>
-  <p:headersfooters slidenumber="t" formatid="0" noheader="t" nodate="t"/>
-  <p:headersfooters notes="t" slidenumber="t"/>
-  <p:pptdocumentsettings framecolors="WhiteTextOnBlack" hideslideanimation="t"
-   browsersupport="v4"/>
- </p:presentation>
- <o:shapedefaults v:ext="edit" spidmax="908292" strokecolor="none [0]">
-  <v:stroke color="none [0]"/>
-  <o:colormru v:ext="edit" colors="#322c72,#2f2672,#302775,#322777,#312672,#2c2674,#2d2672,#302573"/>
-  <o:colormenu v:ext="edit" fillcolor="none [5]" strokecolor="none [0]"/>
- </o:shapedefaults></xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/preview.wmf b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/preview.wmf
deleted file mode 100644
index fb08740..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/script.js b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/script.js
deleted file mode 100644
index 1bac686..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/script.js
+++ /dev/null
@@ -1,833 +0,0 @@
-function LoadSld()

-{

-	var sld=GetObj("SlideObj")

-	if( !g_supportsPPTHTML ) {

-		sld.style.visibility="visible"

-		return

-	}

-	if( MakeNotesVis() ) return

-	runAnimations = _InitAnimations();

-	if( IsWin("PPTSld") )

-		parent.SldUpdated(GetSldId())

-	g_origSz=parseInt(SlideObj.style.fontSize)

-	g_origH=sld.style.posHeight

-	g_origW=sld.style.posWidth

-	g_scaleHyperlinks=(document.all.tags("AREA").length>0)

-	if( g_scaleHyperlinks )

-		InitHLinkArray()

-	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )

-		document.body.scroll="no"

-	_RSW()

-	if( IsWin("PPTSld") && parent.IsFullScrMode() )

-		FullScrInit();

-	

-	MakeSldVis();

-	ChkAutoAdv()

-

-	if( runAnimations )

-	{

-		if( document.all("NSPlay") )

-			document.all("NSPlay").autoStart = false;

-		if( sld.filters && sld.filters.revealtrans )

-			setTimeout( "document.body.start()", sld.filters.revealtrans.duration * 1000 );

-		else

-			document.body.start();

-	}

-}

-function MakeSldVis()

-{

-	var fTrans=g_showAnimation && SldHasTrans()

-	if( fTrans )

-	{

-		if( g_bgSound ) {

-			idx=g_bgSound.indexOf(",");

-			pptSound.src=g_bgSound.substr( 0, idx );

-			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));

-		}

-		SlideObj.filters.revealtrans.Apply()

-    }

-	SlideObj.style.visibility="visible"

-	if( fTrans )

-		SlideObj.filters.revealtrans.Play()

-}

-function MakeNotesVis()

-{

-	if( !IsNts() ) return false

-	SlideObj.style.display="none"

-	nObj = document.all.item("NotesObj")

-	parent.SetHasNts(0)

-	if( nObj ) {

-		nObj.style.display=""

-		parent.SetHasNts(1)

-	}

-	return 1

-}

-function ChkAutoAdv()

-{

-	if(SldHasTrans())

-		SlideObj.onfilterchange=AutoAdv

-	else

-		AutoAdv()

-}

-function AutoAdv()

-{

-	if(!IsWin("PPTSld") || !gUseSldTimings )return

-	var sld=GetCurSld()

-	if( (sld.mAdvDelay>0) && !parent.IsFramesMode() )

-		setTimeout("parent.GoToNextSld()",sld.mAdvDelay)

-}

-function GetObj(id)

-{

-	if(g_supportsPPTHTML) return document.all(id);

-	else return document.getElementById(id);

-}

-function SldHasTrans() { return SlideObj.style.getAttribute("filter")!="" }

-function GetSldId() { return sId=location.href.substring(location.href.lastIndexOf('/')+1) }

-function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }

-function IsWin( name ) { return window.name == name }

-function IsNts() { return IsWin("PPTNts") }

-function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }

-function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }

-function SupportsPPTHTML()

-{

-	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0

-	if( msie >= 0 )

-		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )

-	else

-		ver=parseInt(appVer)

-	return( ver >= 4 && msie >= 0 )

-}

-function _RSW()

-{

-	if( !g_supportsPPTHTML || IsNts() ||

-	  ( !g_scaleInFrame && (!IsWin("PPTSld") || !parent.IsFullScrMode()) ) )

-		return

-        var padding=0;

-        if( IsWin("PPTSld") && parent.IsFramesMode() ) padding=6

-	cltWidth=document.body.clientWidth-padding

-	cltHeight=document.body.clientHeight-padding

-	factor=(1.0*cltWidth)/g_origW

-	if( cltHeight < g_origH*factor )

-		factor=(1.0*cltHeight)/g_origH

-	newSize = g_origSz * factor

-	if( newSize < 1 ) newSize=1

-	s=SlideObj.style

-	s.fontSize=newSize+"px"

-	s.posWidth=g_origW*factor

-	s.posHeight=g_origH*factor

-	s.posLeft=(cltWidth-s.posWidth+padding)/2

-	s.posTop=(cltHeight-s.posHeight+padding)/2

-	if( g_scaleHyperlinks )

-		ScaleHyperlinks( factor )

-}

-function _InitAnimations()

-{

-	animRuntimeInstalled = ''+document.body.localTime != 'undefined';

-	isFullScreen = (window.name == "PPTSld") && !parent.IsFramesMode();

-	g_animUseRuntime = g_showAnimation && animRuntimeInstalled && !(isFullScreen && parent.IsSldVisited());

-	if( g_animUseRuntime ) {

-		collSeq = document.all.tags("seq");

-		if( collSeq != null ) {

-			for(ii=0;ii<collSeq.length;ii++) {

-				if( collSeq[ii].getAttribute( "p:nodeType" ) == "mainSeq" ) {

-					g_animMainSequence = collSeq[ii];

-					break;

-				}

-			}

-		}

-		if( g_animItemsToHide ) {

-			for(jj = 0; jj < g_animItemsToHide.length; jj++) {

-				if( hideObj = GetObj(g_animItemsToHide[jj]) )

-					hideObj.runtimeStyle.visibility="hidden";

-			}

-		}

-		if( g_animInteractiveItems ){

-			for(jj = 0; jj < g_animInteractiveItems.length; jj++) {

-				if( triggerObj = GetObj(g_animInteractiveItems[jj]) )

-					triggerObj.runtimeStyle.cursor="hand";

-			}

-		}

-		if( gUseSldTimings && ''+g_animSlideTime != 'undefined' ) {

-			adjustedTime = document.body.calculateAutoAdvanceTimes( g_animSlideTime, g_animEffectTimings );

-			if( IsWin("PPTSld") && adjustedTime != g_animSlideTime ) {

-			   var sld = GetCurSld();

-			   sld.mAdvDelay = adjustedTime * 1000;

-			}

-		}

-	}

-	return g_animUseRuntime;

-}

-gSldJump = 0, gSldJumpTrack = 0, gSldJumpIdx = "";

-function _KPH()

-{

-	if( IsNts() ) return;

-	if( !parent.IsFramesMode() && event.keyCode == 27 && !HideMenu() )

-		parent.window.close( self );

-	else if( event.keyCode == 32 ) {

-		if( window.name == "PPTSld" )

-			parent.PPTSld.DocumentOnClick();

-		else

-			parent.GoToNextSld();

-	}

-	CatchNumKeys( parent, event );

-}

-function CatchNumKeys( win, event ) {

-	if( win.IsFullScrMode() && (48<=event.keyCode) && (event.keyCode<=57) ) {

-		gSldJump = 1;

-		gSldJumpIdx += (event.keyCode-48).toString();

-	}

-	if( win.IsFullScrMode() && gSldJump && event.keyCode == 13 ) {

-		var numSlds = parent.GetSldList().mList.length

-		if ( gSldJumpIdx > numSlds )

-			gSldJumpIdx = numSlds;

-		if ( gSldJumpIdx >= 0 ) {

-			if ( gSldJumpIdx == 0 )

-				gSldJumpIdx = 1;

-			var jumpTo = parseInt(gSldJumpIdx);

-			gSldJump = 0; gSldJumpIdx = "";

-			win.GoToSld( parent.GetSldList().mList[jumpTo-1].mSldHref )

-		}

-	}

-}

-function _KDH()

-{

-	if( event.keyCode == 8 ) {

-		event.returnValue = 0;

-		parent.GoToPrevSld();

-	}

-}

-function DocumentOnClick()

-{

-	if( IsNts() || parent.HideMenu() ) return;

-	if( ( g_allowAdvOnClick && !parent.IsFramesMode() ) ||

-	    (event && (event.keyCode==32) ) )

-		parent.GoToNextSld();

-}

-

-var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = 1, gId="", g_bgSound="",

-    g_scaleHyperlinks = false, g_allowAdvOnClick = 1, g_showInBrowser = 0, gLoopCont = 0, gUseSldTimings = 1;

-var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && ( (window.name=="PPTSld" && !parent.IsFramesMode()) || g_showInBrowser );var g_animManager = null;

-var g_animUseRuntime = false;

-var g_animItemsToHide, g_animInteractiveItems, g_animSlideTime;

-var g_animMainSequence = null;

-var ENDSHOW_MESG="End of slide show, click to exit.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=101, SCRIPT_HREF="script.js", FULLSCR_HREF="fullscreen.html";

-var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = 0, gHasNarration = 0, gOtlOpen = true

-window.gPPTHTML=SupportsPPTHTML()

-var gMainDoc=new Array(new hrefList("slide0030.html",1,-1,1),new hrefList("slide0029.html",1,-1,1),new hrefList("slide0117.html",1,-1,1),new hrefList("slide0032.html",1,-1,1),new hrefList("slide0033.html",1,-1,1),new hrefList("slide0034.html",1,-1,1),new hrefList("slide0118.html",1,-1,1),new hrefList("slide0036.html",1,-1,1),new hrefList("slide0119.html",1,-1,1),new hrefList("slide0035.html",1,-1,1),new hrefList("slide0048.html",1,-1,1),new hrefList("slide0037.html",1,-1,1),new hrefList("slide0049.html",1,-1,1),new hrefList("slide0038.html",1,-1,1),new hrefList("slide0050.html",1,-1,1),new hrefList("slide0039.html",1,-1,1),new hrefList("slide0040.html",1,-1,1),new hrefList("slide0051.html",1,-1,1),new hrefList("slide0041.html",1,-1,1),new hrefList("slide0042.html",1,-1,1),new hrefList("slide0052.html",1,-1,1),new hrefList("slide0043.html",1,-1,1),new hrefList("slide0044.html",1,-1,1),new hrefList("slide0045.html",1,-1,1),new hrefList("slide0120.html",1,-1,1),new hrefList("slide0046.html",1,-1,1),new hrefList("slide0053.html",1,-1,1),new hrefList("slide0047.html",1,-1,1),new hrefList("slide0054.html",1,-1,1),new hrefList("slide0055.html",1,-1,1),new hrefList("slide0121.html",1,-1,1),new hrefList("slide0056.html",1,-1,1),new hrefList("slide0057.html",1,-1,1),new hrefList("slide0059.html",1,-1,1),new hrefList("slide0058.html",1,-1,1),new hrefList("slide0060.html",1,-1,1),new hrefList("slide0122.html",1,-1,1),new hrefList("slide0061.html",1,-1,1),new hrefList("slide0062.html",1,-1,1),new hrefList("slide0064.html",1,-1,1),new hrefList("slide0063.html",1,-1,1),new hrefList("slide0065.html",1,-1,1),new hrefList("slide0066.html",1,-1,1),new hrefList("slide0123.html",1,-1,1),new hrefList("slide0067.html",1,-1,1),new hrefList("slide0068.html",1,-1,1),new hrefList("slide0069.html",1,-1,1),new hrefList("slide0070.html",1,-1,1),new hrefList("slide0071.html",1,-1,1),new hrefList("slide0124.html",1,-1,1),new hrefList("slide0115.html",1,-1,1),new hrefList("slide0125.html",1,-1,1),new hrefList("slide0116.html",1,-1,1),new hrefList("slide0072.html",1,-1,1),new hrefList("slide0073.html",1,-1,1),new hrefList("slide0074.html",1,-1,1),new hrefList("slide0126.html",1,-1,1),new hrefList("slide0075.html",1,-1,1),new hrefList("slide0076.html",1,-1,1),new hrefList("slide0083.html",1,-1,1),new hrefList("slide0084.html",1,-1,1),new hrefList("slide0085.html",1,-1,1),new hrefList("slide0110.html",1,-1,1),new hrefList("slide0127.html",1,-1,1),new hrefList("slide0077.html",1,-1,1),new hrefList("slide0086.html",1,-1,1),new hrefList("slide0078.html",1,-1,1),new hrefList("slide0087.html",1,-1,1),new hrefList("slide0088.html",1,-1,1),new hrefList("slide0089.html",1,-1,1),new hrefList("slide0090.html",1,-1,1),new hrefList("slide0111.html",1,-1,1),new hrefList("slide0128.html",1,-1,1),new hrefList("slide0079.html",1,-1,1),new hrefList("slide0091.html",1,-1,1),new hrefList("slide0080.html",1,-1,1),new hrefList("slide0103.html",1,-1,1),new hrefList("slide0101.html",1,-1,1),new hrefList("slide0102.html",1,-1,1),new hrefList("slide0092.html",1,-1,1),new hrefList("slide0093.html",1,-1,1),new hrefList("slide0094.html",1,-1,1),new hrefList("slide0112.html",1,-1,1),new hrefList("slide0129.html",1,-1,1),new hrefList("slide0081.html",1,-1,1),new hrefList("slide0097.html",1,-1,1),new hrefList("slide0096.html",1,-1,1),new hrefList("slide0104.html",1,-1,1),new hrefList("slide0098.html",1,-1,1),new hrefList("slide0105.html",1,-1,1),new hrefList("slide0106.html",1,-1,1),new hrefList("slide0107.html",1,-1,1),new hrefList("slide0108.html",1,-1,1),new hrefList("slide0109.html",1,-1,1),new hrefList("slide0082.html",1,-1,1),new hrefList("slide0099.html",1,-1,1),new hrefList("slide0100.html",1,-1,1),new hrefList("slide0113.html",1,-1,1),new hrefList("slide0130.html",1,-1,1),new hrefList("slide0114.html",1,-1,1),new hrefList("slide0031.html",1,-1,1));

-function FullScrInit()

-{

-	g_allowAdvOnClick = GetCurSld().mAdvOnClk

-	document.body.style.backgroundColor="black"

-	document.oncontextmenu=parent._CM;

-	document.onkeydown = _KDH;

-	document.ondragstart=Cancel

-	document.onselectstart=Cancel

-	self.focus()

-}

-function Redirect( frmId )

-{

-	var str=document.location.hash,idx=str.indexOf('#'), sId=GetSldId()

-	if(idx>=0) str=str.substr(1);

-	if( window.name != frmId && ( sId != str) ) {

-		obj = GetObj("Main-File")

-		window.location.href=obj.href+"#"+sId

-		return 1

-	}

-	return 0

-}

-var MHTMLPrefix = CalculateMHTMLPrefix();

-function CalculateMHTMLPrefix()

-{

-	if ( document.location.protocol == 'mhtml:') {

-		href=new String(document.location.href)

-		Start=href.indexOf('!')+1

-		End=href.lastIndexOf('/')+1

-		if (End < Start)

-			return href.substring(0, Start)

-		else

-		return href.substring(0, End)

-	}

-	return '';

-}

-function GetTags(base,tag)

-{

-	if(g_supportsPPTHTML) return base.all.tags(tag);

-	else return base.getElementsByTagName(tag);

-}

-function UpdNtsPane(){ if(frames["PPTNts"]) PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }

-function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }

-function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }

-function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }

-function SetHasNts( fVal )

-{

-	if( gHasNts != fVal ) {

-		gHasNts=fVal

-		UpdNavPane()

-	}

-}

-function ToggleOtlText()

-{

-	gOtlTxtExp=!gOtlTxtExp

-	UpdOtlPane()

-}

-function ToggleOtlPane()

-{

-	frmset=document.all("PPTHorizAdjust")

-	frm=document.all("PPTOtl")

-	if( gOtlOpen )

-		frmset.cols="*,100%"

-	else

-		frmset.cols="25%,*"

-	gOtlOpen=!gOtlOpen

-	frm.noResize=!frm.noResize

-	UpdOtNavPane()

-}

-function ToggleNtsPane()

-{

-	frmset=document.all("PPTVertAdjust")

-	frm=document.all("PPTNts")

-	if( gNtsOpen )

-		frmset.rows="100%,*"

-	else

-		frmset.rows="*,20%"

-	gNtsOpen=!gNtsOpen

-	UpdNtsPane()

-}

-function ClearMedia()

-{

-	if (PPTSld.pptSound) PPTSld.pptSound.loop = 0;

-}

-function FullScreen()

-{

-	if ( PPTSld.g_animUseRuntime )

-		PPTSld.document.body.pause();

-	ClearMedia();

-	var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;

-	if(PPTNav.event.ctrlKey) {

-		var w = (window.screen.availWidth * 1.0) / 2.0

-		var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW

-		win = window.open( MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w + ",height=" + h );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-	else

-	{

-		win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-}

-function ToggleVNarration()

-{

-	rObj=PPTSld.document.all("NSPlay")

-	if( rObj && !PPTSld.g_animUseRuntime ) {

-		if( (rObj.playState == 1)||(rObj.playState == 0) )

-			rObj.Play()

-		else if( rObj.playState == 2 )

-			rObj.Pause()

-		else

-			return;

-	}

-	else if( PPTSld.g_animUseRuntime )

-	{

-		narObj = PPTSld.document.all("narrationID")

-		if( narObj )

-			narObj.togglePause()

-	}

-}

-function GetCurSldNum()

-{

-	obj=GetHrefObj(gCurSld)

-	if( obj.mOrigVis == 1 )

-		return obj.mSldIdx

-	else

-		return gCurSld

-}

-function GetNumSlds()

-{

-	if( GetHrefObj(gCurSld).mOrigVis == 1 )

-		return GetSldList().mNumVisSlds;

-	else

-		return GetSldList().mList.length

-}

-function GetSldNum( href )

-{

-	for(ii=0; ii<GetSldList().mList.length; ii++) {

-		if ( GetSldList().mList[ii].mSldHref == href )

-			return ii+1

-	}

-	return 1

-}

-function GetHrefObj( sldIdx ){ return GetSldList().mList[sldIdx-1] }

-function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }

-function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }

-function GoToNextSld()

-{

-	ii=gCurSld + 1

-	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {

-		if( ii<=GetSldList().mList.length ) {

-			obj=GetHrefObj(ii)

-			obj.mVis=1

-			GoToSldNum(ii)

-			return

-		}

-	}

-	else {

-		obj=GetHrefObj( ii )

-		while ( obj && ( obj.mOrigVis == 0 ) )

-			obj=GetHrefObj(++ii)

-		if( obj && obj.mOrigVis ) {

-			GoToSldNum(ii)

-			return

-		}

-	}

-	if( gSldStack.length > 1 )

-		PopSldList();

-	else if( !IsFramesMode() ) {

-                if( gLoopCont )

-			GoToFirst()

-                else

-			EndShow()

-	}

-}

-function GoToPrevSld()

-{

-	ii=gCurSld-1

-	if( ii > 0 ) {

-		obj=GetHrefObj(ii)

-		while ( obj && ( obj.mVis == 0 ) && ( ii>0 ) )

-			obj=GetHrefObj(--ii)

-        if( ii == 0 ) ii=1

-		GoToSldNum(ii)

-	}

-}

-function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }

-function GoToLast()

-{

-	ii=GetSldList().mList.length

-	if( ii != gCurSld )

-		GoToSld( GetHrefObj(ii).mSldHref )

-}

-function GoToSldNum( num )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	obj = GetHrefObj( num )

-	obj.mVis=1

-	gPrevSld=gCurSld

-	gCurSld = num;

-	PPTSld.location.replace(MHTMLPrefix+obj.mSldHref)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function GoToSld( href )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	GetHrefObj( GetSldNum(href) ).mVis=1

-	PPTSld.location.replace(MHTMLPrefix+href)

-}

-function SldUpdated( id )

-{

-	if( id == GetHrefObj(gCurSld).mSldHref ) return

-	gPrevSld=gCurSld

-	gCurSld=GetSldNum(id)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }

-function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }

-function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }

-function CloseWindow() {

-	if( HideMenu() ) return;

-	var event = PPTSld.event;

-	if( !IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) )

-		window.close( self );

-	CatchNumKeys( self, event );

-}

-function Unload() { gIsEndShow=0; }

-function SetupEndShow() {

-	gIsEndShow=1;

-	PPTSld.document.body.scroll="no";

-	PPTSld.document.onkeypress=CloseWindow;

-	PPTSld.document.onclick=CloseWindow;

-	PPTSld.document.oncontextmenu=_CM;

-}

-function EndShow()

-{

-	if( IsFramesMode() ) return

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	doc=PPTSld.document

-	doc.open()

-	doc.writeln('<html><body bgcolor=black onload=parent.SetupEndShow() onunload=parent.Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')

-	doc.close()

-}

-function SetSldVisited(){ GetSldList().mList[gCurSld-1].mVisited=true }

-function IsSldVisited(){ return GetSldList().mList[gCurSld-1].mVisited }

-function hrefList( sldHref, visible, advDelay, advClk )

-{

-	this.mSldHref= this.mNtsHref = sldHref

-	this.mOrigVis= this.mVis = visible

-	this.mVisited= false

-	this.mAdvDelay= advDelay

-	this.mAdvOnClk= advClk

-}

-function SldList(arr,curSld,fEnd)

-{

-	this.mCurSld = curSld;

-	this.mList = new Array();

-	var idx = 1;

-	for(ii=0;ii<arr.length;ii++) {

-		this.mList[ii] = new hrefList( arr[ii].mSldHref, arr[ii].mOrigVis, arr[ii].mAdvDelay, arr[ii].mAdvOnClk );

-		if( arr[ii].mOrigVis )

-			this.mList[ii].mSldIdx = idx++;

-	}

-	this.mNumVisSlds = idx-1;

-	this.fEndShow = fEnd;

-}

-function GetSldList() {	return gSldStack[gSldStack.length-1] }

-function GetCurSld() { return parent.GetSldList().mList[parent.gCurSld - 1] }

-gSldStack = new Array();

-gSldStack[0] = new SldList(gMainDoc,gCurSld,1)

-function ViewCustomShow(idx,fEnd)

-{

-	if( !IsFullScrMode() ) return;

-	var sldList = new Array();

-	var custShow = custShowList[idx-1];

-	var jj = 0;

-	for( ii=0;ii<custShow.length;ii++ ) {

-		if( custShow[ii] <= gMainDoc.length )

-			sldList[jj++] = gMainDoc[custShow[ii]-1];

-	}

-	if (sldList.length > 0) {

-	PushSldList(sldList,fEnd);

-	gCurSld = 1;

-	}

-	else

-		if( PPTSld.event ) PPTSld.event.cancelBubble=true

-}

-function PushSldList(arr,fEnd) {

-	var ii = gSldStack.length;

-	gSldStack[ii] = new SldList(arr,gCurSld,fEnd);

-	GoToSld( gSldStack[ii].mList[0].mSldHref );

-}

-function PopSldList() {

-	if (gSldStack[gSldStack.length-1].fEndShow)

-		EndShow()

-	else {

-	gCurSld = gSldStack[gSldStack.length-1].mCurSld;

-	gSldStack[gSldStack.length-1] = null;

-	gSldStack.length--;

-	var sldList = gSldStack[gSldStack.length-1];

-	GoToSld( sldList.mList[gCurSld - 1].mSldHref );

-	}

-}

-var custShowList=new Array();

-function ImgBtn( oId,bId,w,action )

-{

-	var t=this

-	t.Perform    = _IBP

-	t.SetActive  = _IBSetA

-	t.SetInactive= _IBSetI

-	t.SetPressed = _IBSetP

-	t.SetDisabled= _IBSetD

-	t.Enabled    = _IBSetE

-	t.ChangeIcon = null

-	t.UserAction = action

-	t.ChgState   = _IBUI

-	t.mObjId   = oId

-	t.mBorderId= bId

-	t.mWidth   = w

-	t.mIsOn    = t.mCurState = 0

-}

-function _IBSetA()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetI()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetP()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gShadowClr,gHiliteClr,2 )

-		obj.style.posLeft+=1; obj.style.posTop+=1

-	}

-}

-function _IBSetD()

-{

-	obj=this.ChgState( gFaceClr,gFaceClr,0 )

-	obj.style.posTop=0

-}

-function _IBSetE( state )

-{

-	var t=this

-	GetObj( t.mBorderId ).style.visibility="visible"

-	if( state != t.mIsOn ) {

-		t.mIsOn=state

-		if( state )

-			t.SetInactive()

-		else

-			t.SetDisabled()

-	}

-}

-function _IBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-		if( t.ChangeIcon ) {

-			obj=GetObj(t.mObjId)

-			if( t.ChangeIcon() )

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth

-			else

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth

-		}

-		t.SetActive()

-	}

-}

-function _IBUI( clr1,clr2,nextState )

-{

-	var t=this

-	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )

-	obj=GetObj( t.mObjId )

-	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop

-	t.mCurState=nextState

-	return obj

-}

-function TxtBtn( oId,oeId,action,chkState )

-{

-	var t=this

-	t.Perform    = _TBP

-	t.SetActive  = _TBSetA

-	t.SetInactive= _TBSetI

-	t.SetPressed = _TBSetP

-	t.SetDisabled= _TBSetD

-	t.SetEnabled = _TBSetE

-	t.GetState   = chkState

-	t.UserAction = action

-	t.ChgState   = _TBUI

-	t.mObjId      = oId

-	t.m_elementsId= oeId

-	t.mIsOn       = 1

-}

-function _TBSetA()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gHiliteClr,gShadowClr,0,0 )

-}

-function _TBSetI()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-}

-function _TBSetP()

-{

-	if( this.mIsOn )

-		this.ChgState( gShadowClr,gHiliteClr,1,1 )

-}

-function _TBSetD()

-{

-	this.ChgState( gFaceClr,gFaceClr,0,0 )

-	this.mIsOn = 0

-}

-function _TBSetE()

-{

-	var t=this

-	if( !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-	else

-		t.ChgState( gShadowClr,gHiliteClr,1,1 )

-	t.mIsOn = 1

-}

-function _TBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-        if( !t.GetState )

-            return

-		if( t.GetState() )

-			t.SetPressed()

-		else

-			t.SetActive()

-	}

-}

-function _TBUI( clr1,clr2,lOffset,tOffset )

-{

-	SetBorder( GetObj( this.mObjId ),clr1,clr2 )

-	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )

-}

-function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }

-function SetBorder( obj, upperLeft, lowerRight )

-{

-	s=obj.style;

-	s.borderStyle      = "solid"

-	s.borderWidth      = 1

-	s.borderLeftColor  = s.borderTopColor = upperLeft

-	s.borderBottomColor= s.borderRightColor = lowerRight

-}

-function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }

-function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }

-function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }

-function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }

-function BtnOnUp()

-{

-	b=GetBtnObj()

-	if( b != null )

-		b.Perform()

-	else

-		Upd()

-}

-function GetNtsState(){ return parent.gNtsOpen }

-function GetOtlState(){ return parent.gOtlOpen }

-function GetOtlTxtState(){ return parent.gOtlTxtExp }

-function NtsBtnSetFlag( fVal )

-{

-	s=document.all.item( this.m_flagId ).style

-	s.display="none"

-	if( fVal )

-		s.display=""

-	else

-		s.display="none"

-}

-function _BSetA_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetActive() }

-function _BSetI_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetInactive() }

-var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"

-var gBtnArr = new Array()

-gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_otlElem"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_nts"] = new TxtBtn( "nb_nts","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )

-gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )

-gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )

-gBtnArr["nb_sldshwBorder"] = new TxtBtn( "nb_sldshw","nb_sldshwBorder",parent.FullScreen,null )

-gBtnArr["nb_sldshwBorder"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwBorder"].SetInactive = _BSetI_Border;

-gBtnArr["nb_sldshwText"] = new TxtBtn( "nb_sldshw","nb_sldshwText",parent.FullScreen,null )

-gBtnArr["nb_sldshwText"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwText"].SetInactive = _BSetI_Border;

-gBtnArr["nb_voice"]  = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )

-gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )

-gBtnArr["nb_nts"].m_flagId= "notes_flag"

-gBtnArr["nb_nts"].SetFlag = NtsBtnSetFlag

-gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState

-var sNext="Next",sPrev="Previous",sEnd="End Show",sFont="Arial",sArrow="Arrow",sFreeform="Freeform",sRect="Rectangle",sOval="Oval"

-function ShowMenu()

-{

-	BuildMenu();

-	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

-	m = PPTSld.document.all.item("ctxtmenu")

-	m.style.pixelLeft=x

-	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )

-		m.style.pixelLeft=x-m.scrollWidth

-	m.style.pixelTop=y

-	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )

-		m.style.pixelTop=y-m.scrollHeight

-	m.style.display=""

-}

-function _CM()

-{

-	if( !parent.IsFullScrMode() ) return;

-	if(!PPTSld.event.ctrlKey) {

-		ShowMenu()

-		return false

-	} else

-		HideMenu()

-}

-function BuildMenu()

-{

-	if( PPTSld.document.all.item("ctxtmenu") ) return

-	var mObj=CreateItem( PPTSld.document.body )

-	mObj.id="ctxtmenu"

-	mObj.style.visibility="hidden"

-	var s=mObj.style

-	s.position="absolute"

-	s.cursor="default"

-	s.width="120px"

-	SetCMBorder(mObj,"menu","black")

-	var iObj=CreateItem( mObj )

-	SetCMBorder( iObj, "threedhighlight","threedshadow" )

-	iObj.style.padding=2

-	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )

-	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )

-	CreateSeparator( iObj )

-	CreateMenuItem( iObj,sEnd,M_End,M_True )

-	mObj.style.visibility="visible"

-}

-function Cancel() { window.event.cancelBubble=true; window.event.returnValue=false }

-function Highlight() { ChangeClr("activecaption","threedhighlight") }

-function Deselect() { ChangeClr("threedface","menutext") }

-function Perform()

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() )

-		e.Action()

-	else

-		PPTSld.event.cancelBubble=true

-}

-function ChangeClr( bg,clr )

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() ) {

-		e.style.backgroundColor=bg

-		e.style.color=clr

-	}

-}

-function M_HasPrevSld() { return( parent.HasPrevSld() ) }

-function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }

-function M_GoPrevSld() { if( gIsEndShow ) { history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }

-function M_True() { return true }

-function M_End() { window.close( self ) }

-function CreateMenuItem( node,text,action,eval )

-{

-	var e=CreateItem( node )

-	e.type="menuitem"

-	e.Action=action

-	e.IsActive=eval

-	e.innerHTML=text

-	if( !e.IsActive() )

-		e.style.color="threedshadow"

-	e.onclick=Perform

-	e.onmouseover=Highlight

-	e.onmouseout=Deselect

-	s=e.style;

-	s.fontFamily=sFont

-	s.fontSize="9pt"

-	s.paddingLeft=2

-}

-function CreateSeparator( node )

-{

-	var sObj=CreateItem( node )

-	SetCMBorder(sObj,"menu","menu")

-	var s=sObj.style

-	s.borderTopColor="threedshadow"

-	s.borderBottomColor="threedhighlight"

-	s.height=1

-	s.fontSize="0px"

-}

-function CreateItem( node )

-{

-	var elem=PPTSld.document.createElement("DIV")

-	node.insertBefore( elem )

-	return elem

-}

-function SetCMBorder( o,ltClr,rbClr )

-{

-	var s=o.style

-	s.backgroundColor="menu"

-	s.borderStyle="solid"

-	s.borderWidth=1

-	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr

-}

diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0029.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0029.html
deleted file mode 100644
index 027c635..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0029.html
+++ /dev/null
@@ -1,172 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="657"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O style='mso-line-spacing:"100 50 0";
- position:absolute;top:95.0%;left:2.62%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;color:black;
- mso-color-index:0;mso-ansi-language:EN-US;mso-field-code:meta16'><b>2</b></span><span
- lang=EN-US style='mso-hansi-font-family:Arial;font-size:56%;color:black;
- mso-color-index:0;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span
- lang=EN-US style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:
- EN-US'><span style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s672774" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s672775" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s672774" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s672775" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0030.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0030.html
deleted file mode 100644
index 45988a8..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0030.html
+++ /dev/null
@@ -1,100 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: What do YOU want UML™ to be?">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:black;}
-.CT
-	{color:black;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="660"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master09.xml">
- <p:shaperange href="master09.xml#_x0000_s33793"/><![if !ppt]><p:shaperange
-  href="master09.xml#_x0000_s33977"/><![if !vml]><img border=0
- v:shapes="_x0000_s33977" src="master09_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master09.xml#_x0000_s33972"/><p:shaperange
-  href="master09.xml#_x0000_s33975"/>
- <div v:shape="_x0000_s33975" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:95.0%;left:1.68%;width:97.75%;height:3.0%'><span
- lang=EN-US style='font-size:72%;color:black;mso-color-index:0;mso-ansi-language:
- EN-US'>© Copyright 2007 by IBM Corp.; made available under the EPL v1.0 |<span
- style='mso-spacerun:yes'>  </span>March 6, 2007</span></div>
- <p:shaperange href="master09.xml#_x0000_s33980"/><![if !vml]><img border=0
- v:shapes="_x0000_s33980" src="master09_image004.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master09.xml#_x0000_m33800"/><v:shape id="_x0000_s675844" type="#_x0000_m33800"
-  style='position:absolute;left:30.75pt;top:134.375pt;width:626.375pt;height:115.75pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="centerTitle"/></v:shape><p:shaperange
-  href="master09.xml#_x0000_m33801"/><v:shape id="_x0000_s675845" type="#_x0000_m33801"
-  style='position:absolute;left:153.5pt;top:261.375pt;width:7in;height:109pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="subTitle" position="1"/></v:shape>
- <div v:shape="_x0000_s675844" class=CT style='position:absolute;top:25.5%;
- left:5.24%;width:85.2%;height:6.0%'>What do YOU want UML™ to be?</div>
- <div v:shape="_x0000_s675845" class=CB>
- <div style='position:absolute;top:49.25%;left:22.28%;width:68.16%;height:4.5%'><span
- style='font-size:83%'>Long Talk&#13;</span></div>
- <div style='position:absolute;top:53.75%;left:22.28%;width:68.16%;height:4.5%'><span
- style='font-size:83%;display:none'>&#13;</span></div>
- <div style='position:absolute;top:58.25%;left:22.28%;width:68.16%;height:4.5%'><span
- style='font-size:83%'>Kenn Hussey&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:22.28%;width:68.16%;height:4.5%'><span
- style='font-size:83%'>IBM Rational Software</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0031.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0031.html
deleted file mode 100644
index b42df84..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0031.html
+++ /dev/null
@@ -1,119 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Legal Notices">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="662"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>101</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s677890" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s677891" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s677890" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Legal Notices</div>
- <div v:shape="_x0000_s677891" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:94.19%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.58%'>§</span>UML, XMI, and MOF are trademarks
- of the Object Management </span><span style='position:absolute;top:31.25%;
- left:10.67%;width:80.33%;height:4.5%'>Group&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:87.45%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.78%'>§</span>Java and
- all Java-based trademarks are trademarks of Sun </span><span style='position:
- absolute;top:44.5%;left:10.67%;width:93.82%;height:4.5%'>Microsystems, Inc. in
- the United States, other countries, or both&#13;</span>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:53.5%;left:10.67%;width:92.5%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.63%'>§</span>Other company, product,
- or service names may be trademarks </span><span style='position:absolute;
- top:58.0%;left:10.67%;width:80.33%;height:4.5%'>or service marks of others</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0032.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0032.html
deleted file mode 100644
index 4f0df8d..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0032.html
+++ /dev/null
@@ -1,120 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Background – What is UML?">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="663"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>4</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s678914" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s678915" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s678914" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Background – What is UML?</div>
- <div v:shape="_x0000_s678915" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:87.45%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.78%'>§</span>Unified Modeling Language, an
- Object Management Group </span><span style='position:absolute;top:31.25%;
- left:10.67%;width:80.33%;height:4.5%'>(OMG) standard&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:94.0%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.58%'>§</span>A language for
- specifying, visualizing, and documenting models </span><span style='position:
- absolute;top:44.5%;left:10.67%;width:80.33%;height:4.5%'>of software
- systems&#13;</span>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Current version is
- 2.1.1</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0033.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0033.html
deleted file mode 100644
index 349cef6..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0033.html
+++ /dev/null
@@ -1,127 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Background – What is UML2?">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="664"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>5</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s679938" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s679939" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s679938" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Background – What is UML2?</div>
- <div v:shape="_x0000_s679939" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Unified Modeling
- Language 2.x&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:35.75%;left:10.67%;width:93.44%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.6%'>§</span>A component
- of the Model Development Tools (MDT) Modeling </span><span style='position:
- absolute;top:40.25%;left:10.67%;width:80.33%;height:4.5%'>subproject at
- Eclipse&#13;</span>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Current release, 2.0.3,
- is based on UML 2.1.1&#13;</span></div>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:8.23%;width:88.57%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.74%;width:97.25%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.82%'>§</span>Next release
- tentatively scheduled for June 2007 (Europa)</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0034.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0034.html
deleted file mode 100644
index 0ff0015..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0034.html
+++ /dev/null
@@ -1,144 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Background – What is UML2?">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="665"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>6</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s680962" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s680963" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s680962" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Background – What is UML2?</div>
- <div v:shape="_x0000_s680963">
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;
- left:8.23%;width:82.77%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.03%;font-family:Wingdings'>§</span>UML2
- provides&#13;</span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:31.5%;left:16.47%;width:84.64%;height:4.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.76%;font-family:Wingdings'>§</span>a useable
- implementation of the UML metamodel to support the </span><span
- style='position:absolute;top:35.0%;left:16.47%;width:74.53%;height:4.0%'>development
- of modeling tools&#13;</span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:40.25%;left:16.47%;width:82.58%;height:4.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.85%;font-family:Wingdings'>§</span>a common
- XMI™ schema to facilitate interchange of semantic </span><span
- style='position:absolute;top:44.0%;left:16.47%;width:74.53%;height:4.0%'>models&#13;</span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15";position:absolute;top:49.0%;
- left:13.29%;width:77.71%;height:4.0%'><span style='position:absolute;
- top:0%;left:4.09%;width:95.9%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-4.27%;font-family:Wingdings'>§</span>test cases
- as a means of validating the specification&#13;</span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:54.25%;left:16.47%;width:82.02%;height:4.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.88%;font-family:Wingdings'>§</span>validation
- rules as a means of defining and enforcing <i>levels of </i></span><span
- style='position:absolute;top:58.0%;left:16.47%;width:74.53%;height:4.0%'><i>compliance&#13;</i></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:62.25%;
- left:8.23%;width:82.77%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div class=B style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:66.25%;left:10.67%;width:86.89%;height:4.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.8%;font-family:Wingdings'>§</span>UML2
- includes a customized EMF code generator that can </span><span
- style='position:absolute;top:70.25%;left:10.67%;width:86.7%;height:4.5%'>handle
- “UMLisms” like <i>redefinition</i>, <i>subsetting</i>, and <i>derived </i></span><span
- style='position:absolute;top:74.25%;left:10.67%;width:80.33%;height:4.5%'><i>unions&#13;</i></span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:78.25%;
- left:8.23%;width:82.77%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.94%;width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0035.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0035.html
deleted file mode 100644
index 89d7003..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0035.html
+++ /dev/null
@@ -1,133 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="666"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>10</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s681986" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s681987" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s681986" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels</div>
- <div v:shape="_x0000_s681987" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:81.64%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.98%'>§</span>The modeling concepts in UML are
- also partitioned into </span><span style='position:absolute;top:31.25%;
- left:10.67%;width:91.19%;height:4.5%'>horizontal layers of capability referred
- to as <i>compliance points&#13;</i></span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:87.45%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.78%'>§</span>A
- compliance level is ultimately <i>merged</i> into a single “UML” </span><span
- style='position:absolute;top:44.5%;left:10.67%;width:92.88%;height:4.5%'>package
- which defines a shared namespace for all compliance </span><span
- style='position:absolute;top:49.0%;left:10.67%;width:80.33%;height:4.5%'>levels&#13;</span>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:58.0%;left:10.67%;width:90.44%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.69%'>§</span>UML specifies five
- pre-defined compliance levels, namely L0, </span><span style='position:absolute;
- top:62.5%;left:10.67%;width:80.33%;height:4.5%'>LM, L1, L2, and L3&#13;</span>
- <div style='position:absolute;top:66.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:71.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>UML2 is based on the L3
- compliance level of UML&#13;</span></div>
- <div style='position:absolute;top:75.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0036.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0036.html
deleted file mode 100644
index 84f1632..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0036.html
+++ /dev/null
@@ -1,126 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Language Units">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="667"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>8</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s683010" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s683011" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s683010" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Language Units</div>
- <div v:shape="_x0000_s683011" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:98.87%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.46%;width:97.34%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.52%'>§</span>The modeling concepts
- in UML are organized into <i>language units&#13;</i></span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:35.75%;left:10.67%;width:84.64%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.87%'>§</span>A language
- unit is a collection of tightly coupled modeling </span><span
- style='position:absolute;top:40.25%;left:10.67%;width:80.33%;height:4.5%'>concepts
- that deal with a particular aspect of a system&#13;</span>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:49.0%;left:10.67%;width:88.57%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.74%'>§</span>Language units are
- further partitioned into packages (merge </span><span style='position:absolute;
- top:53.5%;left:10.67%;width:80.33%;height:4.5%'>increments)&#13;</span>
- <div style='position:absolute;top:58.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:62.5%;left:10.67%;width:80.71%;height:4.5%'><span
- class=BB style='position:absolute;left:-3.01%'>§</span>Language units are used
- as the foundation for defining </span><span style='position:absolute;
- top:66.75%;left:10.67%;width:80.33%;height:4.5%'><i>compliance</i> in UML</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0037.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0037.html
deleted file mode 100644
index 3bdd89f..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0037.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – L0">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="668"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>12</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s684034" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s684034" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – L0</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s684040"
-  type="#_x0000_m32775" style='position:absolute;left:258.5pt;top:181.75pt;
-  width:196.5pt;height:223.5pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0037_image008.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s684040" src="slide0037_image009.gif"
- style='position:absolute;top:33.75%;left:35.95%;width:27.34%;height:41.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0037_image008.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0037_image008.png
deleted file mode 100644
index ee91492..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0037_image008.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0037_image009.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0037_image009.gif
deleted file mode 100644
index c61cf8f..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0037_image009.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0038.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0038.html
deleted file mode 100644
index 0fe905f..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0038.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – LM">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="671"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>14</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s687106" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s687106" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – LM</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s687109"
-  type="#_x0000_m32775" style='position:absolute;left:248pt;top:182.125pt;
-  width:217.5pt;height:222.75pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0038_image010.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s687109" src="slide0038_image011.gif"
- style='position:absolute;top:33.75%;left:34.45%;width:30.14%;height:41.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0038_image010.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0038_image010.png
deleted file mode 100644
index 778c4e5..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0038_image010.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0038_image011.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0038_image011.gif
deleted file mode 100644
index 1e6ebdb..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0038_image011.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0039.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0039.html
deleted file mode 100644
index 99a0a87..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0039.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – L1">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="673"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>16</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s689154" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s689154" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – L1</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s689157"
-  type="#_x0000_m32775" style='position:absolute;left:119.5pt;top:139.875pt;
-  width:474.375pt;height:307.25pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0039_image012.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s689157" src="slide0039_image013.gif"
- style='position:absolute;top:26.0%;left:16.66%;width:65.91%;height:57.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0039_image012.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0039_image012.png
deleted file mode 100644
index 1abd100..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0039_image012.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0039_image013.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0039_image013.gif
deleted file mode 100644
index 138c319..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0039_image013.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0040.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0040.html
deleted file mode 100644
index 6257f1e..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0040.html
+++ /dev/null
@@ -1,399 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – L1">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="675"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>17</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s691202" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:group id="_x0000_s691281" style='position:absolute;
-  left:52.125pt;top:139.875pt;width:609.25pt;height:330.75pt' coordorigin="417,1119"
-  coordsize="4874,2646" o:tableproperties="3" o:tablelimits="38.375pt 38.5pt 38.375pt 38.375pt 38.375pt 38.5pt 38.375pt 38.375pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s691220" style='position:absolute;left:2854;top:3458;
-   width:2437;height:307' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691219" style='position:absolute;left:417;top:3458;
-   width:2437;height:307' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691218" style='position:absolute;left:2854;
-   top:3151;width:2437;height:307' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691217" style='position:absolute;left:417;top:3151;
-   width:2437;height:307' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691216" style='position:absolute;left:2854;
-   top:2843;width:2437;height:308' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691215" style='position:absolute;left:417;top:2843;
-   width:2437;height:308' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691214" style='position:absolute;left:2854;
-   top:2518;width:2437;height:325' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691213" style='position:absolute;left:417;top:2518;
-   width:2437;height:325' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691212" style='position:absolute;left:2854;
-   top:2059;width:2437;height:459' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691211" style='position:absolute;left:417;top:2059;
-   width:2437;height:459' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691210" style='position:absolute;left:2854;
-   top:1734;width:2437;height:325' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691209" style='position:absolute;left:417;top:1734;
-   width:2437;height:325' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691208" style='position:absolute;left:2854;
-   top:1426;width:2437;height:308' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691207" style='position:absolute;left:417;top:1426;
-   width:2437;height:308' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691206" style='position:absolute;left:2854;
-   top:1119;width:2437;height:307' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s691205" style='position:absolute;left:417;top:1119;
-   width:2437;height:307' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:line id="_x0000_s691221" style='position:absolute' from="417,1119"
-   to="2854,1119" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691229" style='position:absolute' from="417,3765"
-   to="2854,3765" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691232" style='position:absolute' from="5291,1119"
-   to="5291,1426" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691235" style='position:absolute' from="417,1426"
-   to="417,1734" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691230" style='position:absolute' from="417,1119"
-   to="417,1426" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691236" style='position:absolute' from="417,1734"
-   to="417,2059" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691251" style='position:absolute' from="2854,1119"
-   to="5291,1119" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691253" style='position:absolute' from="5291,1426"
-   to="5291,1734" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691256" style='position:absolute' from="5291,1734"
-   to="5291,2059" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691258" style='position:absolute' from="417,2059"
-   to="417,2518" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691260" style='position:absolute' from="5291,2059"
-   to="5291,2518" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691262" style='position:absolute' from="417,2518"
-   to="417,2843" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691264" style='position:absolute' from="5291,2518"
-   to="5291,2843" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691266" style='position:absolute' from="417,2843"
-   to="417,3151" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691268" style='position:absolute' from="5291,2843"
-   to="5291,3151" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691270" style='position:absolute' from="417,3151"
-   to="417,3458" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691272" style='position:absolute' from="5291,3151"
-   to="5291,3458" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691274" style='position:absolute' from="417,3458"
-   to="417,3765" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691276" style='position:absolute' from="5291,3458"
-   to="5291,3765" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s691278" style='position:absolute' from="2854,3765"
-   to="5291,3765" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><p:placeholder type="table" position="1"/></v:group><![if !vml]><img
- border=0
- v:shapes="_x0000_s691281,_x0000_s691220,_x0000_s691219,_x0000_s691218,_x0000_s691217,_x0000_s691216,_x0000_s691215,_x0000_s691214,_x0000_s691213,_x0000_s691212,_x0000_s691211,_x0000_s691210,_x0000_s691209,_x0000_s691208,_x0000_s691207,_x0000_s691206,_x0000_s691205,_x0000_s691221,_x0000_s691229,_x0000_s691232,_x0000_s691235,_x0000_s691230,_x0000_s691236,_x0000_s691251,_x0000_s691253,_x0000_s691256,_x0000_s691258,_x0000_s691260,_x0000_s691262,_x0000_s691264,_x0000_s691266,_x0000_s691268,_x0000_s691270,_x0000_s691272,_x0000_s691274,_x0000_s691276,_x0000_s691278"
- src="slide0040_image014.gif" style='position:absolute;top:26.0%;left:7.3%;
- width:85.01%;height:61.75%'><![endif]>
- <div v:shape="_x0000_s691202" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – L1</div>
- <div v:shape="_x0000_s691220">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:81.0%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>UseCases</span></div>
- </div>
- <div v:shape="_x0000_s691219">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:81.0%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Use Cases</span></div>
- </div>
- <div v:shape="_x0000_s691218">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:73.75%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Interactions::BasicInteractions</span></div>
- </div>
- <div v:shape="_x0000_s691217">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:73.75%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Interactions</span></div>
- </div>
- <div v:shape="_x0000_s691216">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:66.75%;
- left:50.56%;width:41.57%;height:3.25%'><span style='font-size:78%'>CompositeStructures::InternalStructures</span></div>
- </div>
- <div v:shape="_x0000_s691215">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:66.75%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Structures</span></div>
- </div>
- <div v:shape="_x0000_s691214">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:59.0%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>CommonBehaviors::BasicBehaviors&#13;</span></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:62.25%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>CommonBehaviors::Communications</span></div>
- </div>
- <div v:shape="_x0000_s691213">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:59.0%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>General
- Behavior</span></div>
- </div>
- <div v:shape="_x0000_s691212">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:48.5%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Classes::Kernel&#13;</span></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:51.5%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Classes::Dependencies&#13;</span></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:54.75%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Classes::Interfaces</span></div>
- </div>
- <div v:shape="_x0000_s691211">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:48.5%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Classes</span></div>
- </div>
- <div v:shape="_x0000_s691210">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:41.0%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Activities::FundamentalActivities&#13;</span></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:44.0%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Activities::BasicActivities</span></div>
- </div>
- <div v:shape="_x0000_s691209">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:41.0%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Activities</span></div>
- </div>
- <div v:shape="_x0000_s691208">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:33.75%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Actions::BasicActions</span></div>
- </div>
- <div v:shape="_x0000_s691207">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:33.75%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Actions</span></div>
- </div>
- <div v:shape="_x0000_s691206">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'><b><i>Packages</i></b></span></div>
- </div>
- <div v:shape="_x0000_s691205">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'><b><i>Language
- Unit</i></b></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0040_image014.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0040_image014.gif
deleted file mode 100644
index 2dc8890..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0040_image014.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0041.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0041.html
deleted file mode 100644
index 123d2db..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0041.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – L2">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="677"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>19</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s693250" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s693250" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – L2</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s693262"
-  type="#_x0000_m32775" style='position:absolute;left:123.875pt;top:139.875pt;
-  width:465.625pt;height:307.25pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0041_image015.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s693262" src="slide0041_image016.gif"
- style='position:absolute;top:26.0%;left:17.22%;width:64.6%;height:57.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0041_image015.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0041_image015.png
deleted file mode 100644
index b811624..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0041_image015.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0041_image016.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0041_image016.gif
deleted file mode 100644
index 79c07cd..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0041_image016.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0042.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0042.html
deleted file mode 100644
index 9b3004d..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0042.html
+++ /dev/null
@@ -1,470 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – L2">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="679"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>20</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s695298" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:group id="_x0000_s695385" style='position:absolute;
-  left:52.125pt;top:139.875pt;width:609.25pt;height:363.625pt' coordorigin="417,1119"
-  coordsize="4874,2909" o:tableproperties="3" o:tablelimits="30.75pt 30.75pt 30.625pt 30.75pt 30.75pt 30.75pt 30.75pt 30.625pt 30.75pt 30.75pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s695320" style='position:absolute;left:2854;top:3782;
-   width:2437;height:246' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695319" style='position:absolute;left:417;top:3782;
-   width:2437;height:246' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695318" style='position:absolute;left:2854;
-   top:3323;width:2437;height:459' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695317" style='position:absolute;left:417;top:3323;
-   width:2437;height:459' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695316" style='position:absolute;left:2854;
-   top:3078;width:2437;height:245' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695315" style='position:absolute;left:417;top:3078;
-   width:2437;height:245' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695314" style='position:absolute;left:2854;
-   top:2832;width:2437;height:246' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695313" style='position:absolute;left:417;top:2832;
-   width:2437;height:246' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695312" style='position:absolute;left:2854;
-   top:2586;width:2437;height:246' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695311" style='position:absolute;left:417;top:2586;
-   width:2437;height:246' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695310" style='position:absolute;left:2854;
-   top:2261;width:2437;height:325' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695309" style='position:absolute;left:417;top:2261;
-   width:2437;height:325' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695308" style='position:absolute;left:2854;
-   top:2015;width:2437;height:246' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695307" style='position:absolute;left:417;top:2015;
-   width:2437;height:246' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695306" style='position:absolute;left:2854;
-   top:1690;width:2437;height:325' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695305" style='position:absolute;left:417;top:1690;
-   width:2437;height:325' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695304" style='position:absolute;left:2854;
-   top:1365;width:2437;height:325' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695303" style='position:absolute;left:417;top:1365;
-   width:2437;height:325' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695302" style='position:absolute;left:2854;
-   top:1119;width:2437;height:246' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s695301" style='position:absolute;left:417;top:1119;
-   width:2437;height:246' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:line id="_x0000_s695321" style='position:absolute' from="417,1119"
-   to="2854,1119" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695331" style='position:absolute' from="417,4028"
-   to="2854,4028" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695332" style='position:absolute' from="417,1119"
-   to="417,1365" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695334" style='position:absolute' from="5291,1119"
-   to="5291,1365" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695346" style='position:absolute' from="2854,1119"
-   to="5291,1119" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695347" style='position:absolute' from="417,1365"
-   to="417,1690" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695349" style='position:absolute' from="5291,1365"
-   to="5291,1690" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695351" style='position:absolute' from="417,1690"
-   to="417,2015" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695353" style='position:absolute' from="5291,1690"
-   to="5291,2015" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695355" style='position:absolute' from="417,2015"
-   to="417,2261" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695357" style='position:absolute' from="5291,2015"
-   to="5291,2261" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695359" style='position:absolute' from="417,2261"
-   to="417,2586" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695361" style='position:absolute' from="5291,2261"
-   to="5291,2586" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695363" style='position:absolute' from="417,2586"
-   to="417,2832" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695365" style='position:absolute' from="5291,2586"
-   to="5291,2832" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695367" style='position:absolute' from="417,2832"
-   to="417,3078" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695369" style='position:absolute' from="5291,2832"
-   to="5291,3078" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695371" style='position:absolute' from="417,3078"
-   to="417,3323" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695373" style='position:absolute' from="5291,3078"
-   to="5291,3323" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695375" style='position:absolute' from="417,3323"
-   to="417,3782" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695377" style='position:absolute' from="5291,3323"
-   to="5291,3782" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695379" style='position:absolute' from="417,3782"
-   to="417,4028" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695381" style='position:absolute' from="5291,3782"
-   to="5291,4028" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s695383" style='position:absolute' from="2854,4028"
-   to="5291,4028" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><p:placeholder type="table" position="1"/></v:group><![if !vml]><img
- border=0
- v:shapes="_x0000_s695385,_x0000_s695320,_x0000_s695319,_x0000_s695318,_x0000_s695317,_x0000_s695316,_x0000_s695315,_x0000_s695314,_x0000_s695313,_x0000_s695312,_x0000_s695311,_x0000_s695310,_x0000_s695309,_x0000_s695308,_x0000_s695307,_x0000_s695306,_x0000_s695305,_x0000_s695304,_x0000_s695303,_x0000_s695302,_x0000_s695301,_x0000_s695321,_x0000_s695331,_x0000_s695332,_x0000_s695334,_x0000_s695346,_x0000_s695347,_x0000_s695349,_x0000_s695351,_x0000_s695353,_x0000_s695355,_x0000_s695357,_x0000_s695359,_x0000_s695361,_x0000_s695363,_x0000_s695365,_x0000_s695367,_x0000_s695369,_x0000_s695371,_x0000_s695373,_x0000_s695375,_x0000_s695377,_x0000_s695379,_x0000_s695381,_x0000_s695383"
- src="slide0042_image017.gif" style='position:absolute;top:26.0%;left:7.3%;
- width:85.01%;height:67.75%'><![endif]>
- <div v:shape="_x0000_s695298" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – L2</div>
- <div v:shape="_x0000_s695320">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:88.5%;
- left:50.56%;width:41.38%;height:3.25%'><span style='font-size:78%'>StateMachines::BehaviorStateMachines</span></div>
- </div>
- <div v:shape="_x0000_s695319">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:88.5%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>State
- Machines</span></div>
- </div>
- <div v:shape="_x0000_s695318">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:77.75%;
- left:50.56%;width:41.38%;height:3.25%'><span style='font-size:78%'>CompositeStructures::InvocationActions&#13;</span></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:80.75%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>CompositeStructures::Ports&#13;</span></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:84.0%;
- left:50.56%;width:42.32%;height:3.25%'><span style='font-size:78%'>CompositeStructures::StructuredClasses</span></div>
- </div>
- <div v:shape="_x0000_s695317">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:77.75%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Structures</span></div>
- </div>
- <div v:shape="_x0000_s695316">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:72.0%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>AuxiliaryConstructs::Profiles</span></div>
- </div>
- <div v:shape="_x0000_s695315">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:72.0%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Profiles</span></div>
- </div>
- <div v:shape="_x0000_s695314">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:66.5%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Interactions::Fragments</span></div>
- </div>
- <div v:shape="_x0000_s695313">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:66.5%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Interactions</span></div>
- </div>
- <div v:shape="_x0000_s695312">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:60.75%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>CommonBehaviors::SimpleTime</span></div>
- </div>
- <div v:shape="_x0000_s695311">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:60.75%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>General
- Behavior</span></div>
- </div>
- <div v:shape="_x0000_s695310">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:53.25%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Deployments::Artifacts&#13;</span></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:56.25%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Deployments::Nodes</span></div>
- </div>
- <div v:shape="_x0000_s695309">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:53.25%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Deployments</span></div>
- </div>
- <div v:shape="_x0000_s695308">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:47.5%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Components::BasicComponents</span></div>
- </div>
- <div v:shape="_x0000_s695307">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:47.5%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Components</span></div>
- </div>
- <div v:shape="_x0000_s695306">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:40.0%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Activities::IntermediateActivities&#13;</span></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:43.0%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Activities::StructuredActivities</span></div>
- </div>
- <div v:shape="_x0000_s695305">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:40.0%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Activities</span></div>
- </div>
- <div v:shape="_x0000_s695304">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:32.5%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Actions::StructuredActions&#13;</span></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:35.5%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Actions::IntermediateActions</span></div>
- </div>
- <div v:shape="_x0000_s695303">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:32.5%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Actions</span></div>
- </div>
- <div v:shape="_x0000_s695302">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'><b><i>Packages</i></b></span></div>
- </div>
- <div v:shape="_x0000_s695301">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'><b><i>Language
- Unit</i></b></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0042_image017.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0042_image017.gif
deleted file mode 100644
index d61d999..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0042_image017.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0043.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0043.html
deleted file mode 100644
index a4202ca..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0043.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – L3">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="681"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>22</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s697346" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s697346" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – L3</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s697349"
-  type="#_x0000_m32775" style='position:absolute;left:132.5pt;top:139.875pt;
-  width:448.375pt;height:307.25pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0043_image018.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s697349" src="slide0043_image019.gif"
- style='position:absolute;top:26.0%;left:18.35%;width:62.35%;height:57.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0043_image018.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0043_image018.png
deleted file mode 100644
index 46cce01..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0043_image018.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0043_image019.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0043_image019.gif
deleted file mode 100644
index dc49416..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0043_image019.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0044.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0044.html
deleted file mode 100644
index 041b8d3..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0044.html
+++ /dev/null
@@ -1,502 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – L3">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="683"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>23</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s699394" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:group id="_x0000_s699483" style='position:absolute;
-  left:52.125pt;top:139.875pt;width:609.25pt;height:362pt' coordorigin="417,1119"
-  coordsize="4874,2896" o:tableproperties="3" o:tablelimits="27.875pt 28pt 27.875pt 28pt 27.875pt 28pt 27.875pt 28pt 27.875pt 28pt 27.875pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s699418" style='position:absolute;left:2854;top:3792;
-   width:2437;height:223' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699417" style='position:absolute;left:417;top:3792;
-   width:2437;height:223' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699416" style='position:absolute;left:2854;
-   top:3467;width:2437;height:325' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699415" style='position:absolute;left:417;top:3467;
-   width:2437;height:325' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699414" style='position:absolute;left:2854;
-   top:3244;width:2437;height:223' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699413" style='position:absolute;left:417;top:3244;
-   width:2437;height:223' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699412" style='position:absolute;left:2854;
-   top:3020;width:2437;height:224' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699411" style='position:absolute;left:417;top:3020;
-   width:2437;height:224' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699410" style='position:absolute;left:2854;
-   top:2797;width:2437;height:223' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699409" style='position:absolute;left:417;top:2797;
-   width:2437;height:223' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699408" style='position:absolute;left:2854;
-   top:2573;width:2437;height:224' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699407" style='position:absolute;left:417;top:2573;
-   width:2437;height:224' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699406" style='position:absolute;left:2854;
-   top:2350;width:2437;height:223' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699405" style='position:absolute;left:417;top:2350;
-   width:2437;height:223' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699404" style='position:absolute;left:2854;
-   top:2025;width:2437;height:325' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699403" style='position:absolute;left:417;top:2025;
-   width:2437;height:325' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699402" style='position:absolute;left:2854;
-   top:1566;width:2437;height:459' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699401" style='position:absolute;left:417;top:1566;
-   width:2437;height:459' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699400" style='position:absolute;left:2854;
-   top:1342;width:2437;height:224' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699399" style='position:absolute;left:417;top:1342;
-   width:2437;height:224' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699398" style='position:absolute;left:2854;
-   top:1119;width:2437;height:223' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s699397" style='position:absolute;left:417;top:1119;
-   width:2437;height:223' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:line id="_x0000_s699419" style='position:absolute' from="417,1119"
-   to="2854,1119" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699430" style='position:absolute' from="417,4015"
-   to="2854,4015" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699431" style='position:absolute' from="417,1119"
-   to="417,1342" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699433" style='position:absolute' from="5291,1119"
-   to="5291,1342" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699441" style='position:absolute' from="2854,1119"
-   to="5291,1119" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699442" style='position:absolute' from="417,1342"
-   to="417,1566" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699444" style='position:absolute' from="5291,1342"
-   to="5291,1566" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699446" style='position:absolute' from="417,1566"
-   to="417,2025" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699448" style='position:absolute' from="5291,1566"
-   to="5291,2025" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699450" style='position:absolute' from="417,2025"
-   to="417,2350" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699452" style='position:absolute' from="5291,2025"
-   to="5291,2350" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699454" style='position:absolute' from="417,2350"
-   to="417,2573" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699456" style='position:absolute' from="5291,2350"
-   to="5291,2573" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699458" style='position:absolute' from="417,2573"
-   to="417,2797" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699460" style='position:absolute' from="5291,2573"
-   to="5291,2797" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699462" style='position:absolute' from="417,2797"
-   to="417,3020" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699464" style='position:absolute' from="5291,2797"
-   to="5291,3020" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699466" style='position:absolute' from="417,3020"
-   to="417,3244" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699468" style='position:absolute' from="5291,3020"
-   to="5291,3244" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699470" style='position:absolute' from="417,3244"
-   to="417,3467" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699472" style='position:absolute' from="5291,3244"
-   to="5291,3467" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699474" style='position:absolute' from="417,3467"
-   to="417,3792" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699476" style='position:absolute' from="5291,3467"
-   to="5291,3792" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699478" style='position:absolute' from="417,3792"
-   to="417,4015" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699480" style='position:absolute' from="5291,3792"
-   to="5291,4015" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s699482" style='position:absolute' from="2854,4015"
-   to="5291,4015" stroked="f" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><p:placeholder type="table" position="1"/></v:group><![if !vml]><img
- border=0
- v:shapes="_x0000_s699483,_x0000_s699418,_x0000_s699417,_x0000_s699416,_x0000_s699415,_x0000_s699414,_x0000_s699413,_x0000_s699412,_x0000_s699411,_x0000_s699410,_x0000_s699409,_x0000_s699408,_x0000_s699407,_x0000_s699406,_x0000_s699405,_x0000_s699404,_x0000_s699403,_x0000_s699402,_x0000_s699401,_x0000_s699400,_x0000_s699399,_x0000_s699398,_x0000_s699397,_x0000_s699419,_x0000_s699430,_x0000_s699431,_x0000_s699433,_x0000_s699441,_x0000_s699442,_x0000_s699444,_x0000_s699446,_x0000_s699448,_x0000_s699450,_x0000_s699452,_x0000_s699454,_x0000_s699456,_x0000_s699458,_x0000_s699460,_x0000_s699462,_x0000_s699464,_x0000_s699466,_x0000_s699468,_x0000_s699470,_x0000_s699472,_x0000_s699474,_x0000_s699476,_x0000_s699478,_x0000_s699480,_x0000_s699482"
- src="slide0044_image020.gif" style='position:absolute;top:26.0%;left:7.3%;
- width:85.01%;height:67.5%'><![endif]>
- <div v:shape="_x0000_s699394" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – L3</div>
- <div v:shape="_x0000_s699418">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:88.5%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>AuxiliaryConstructs::Templates</span></div>
- </div>
- <div v:shape="_x0000_s699417">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:88.5%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Templates</span></div>
- </div>
- <div v:shape="_x0000_s699416">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:81.0%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>CompositeStructures::Collaborations&#13;</span></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:84.25%;
- left:50.56%;width:43.07%;height:3.25%'><span style='font-size:78%'>CompositeStructures::StructuredActivities</span></div>
- </div>
- <div v:shape="_x0000_s699415">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:81.0%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Structures</span></div>
- </div>
- <div v:shape="_x0000_s699414">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:76.0%;
- left:50.56%;width:40.82%;height:3.25%'><span style='font-size:78%'>StateMachines::ProtocolStateMachines</span></div>
- </div>
- <div v:shape="_x0000_s699413">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:76.0%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>State
- Machines</span></div>
- </div>
- <div v:shape="_x0000_s699412">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:70.75%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>AuxiliaryContructs::Models</span></div>
- </div>
- <div v:shape="_x0000_s699411">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:70.75%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Models</span></div>
- </div>
- <div v:shape="_x0000_s699410">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:65.5%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>AuxiliaryConstructs::InformationFlows</span></div>
- </div>
- <div v:shape="_x0000_s699409">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:65.5%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Information
- Flows</span></div>
- </div>
- <div v:shape="_x0000_s699408">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:60.5%;
- left:50.56%;width:40.63%;height:3.25%'><span style='font-size:78%'>Deployments::ComponentDeployments</span></div>
- </div>
- <div v:shape="_x0000_s699407">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:60.5%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Deployments</span></div>
- </div>
- <div v:shape="_x0000_s699406">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:55.25%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Components::PackagingComponents</span></div>
- </div>
- <div v:shape="_x0000_s699405">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:55.25%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Components</span></div>
- </div>
- <div v:shape="_x0000_s699404">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:47.75%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Classes::AssociationClasses&#13;</span></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:50.75%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Classes::PowerTypes</span></div>
- </div>
- <div v:shape="_x0000_s699403">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:47.75%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Classes</span></div>
- </div>
- <div v:shape="_x0000_s699402">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:37.0%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Activities::CompleteActivities&#13;</span></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:40.25%;
- left:50.56%;width:40.63%;height:3.25%'><span style='font-size:78%'>Activities::CompleteStructuredActivities&#13;</span></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:43.25%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Activities::ExtraStructuredActivities</span></div>
- </div>
- <div v:shape="_x0000_s699401">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:37.0%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Activities</span></div>
- </div>
- <div v:shape="_x0000_s699400">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:32.0%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'>Actions::CompleteActions</span></div>
- </div>
- <div v:shape="_x0000_s699399">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:32.0%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'>Actions</span></div>
- </div>
- <div v:shape="_x0000_s699398">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:50.56%;width:40.44%;height:3.25%'><span style='font-size:78%'><b><i>Packages</i></b></span></div>
- </div>
- <div v:shape="_x0000_s699397">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:8.23%;width:40.44%;height:3.25%'><span style='font-size:78%'><b><i>Language
- Unit</i></b></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0044_image020.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0044_image020.gif
deleted file mode 100644
index ce7ec53..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0044_image020.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0045.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0045.html
deleted file mode 100644
index 31ac530..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0045.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – UML2">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="703"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>24</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s719874" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s719874" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – UML2</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s719876"
-  type="#_x0000_m32775" style='position:absolute;left:263pt;top:224.5pt;
-  width:187.5pt;height:138pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0045_image021.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s719876" src="slide0045_image022.gif"
- style='position:absolute;top:41.5%;left:36.51%;width:26.02%;height:25.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0045_image021.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0045_image021.png
deleted file mode 100644
index d0c5d40..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0045_image021.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0045_image022.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0045_image022.gif
deleted file mode 100644
index e4c899f..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0045_image022.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0046.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0046.html
deleted file mode 100644
index 783bdea..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0046.html
+++ /dev/null
@@ -1,131 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Package Merge">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="706"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>26</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s722946" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s722947" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s722946" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Package Merge</div>
- <div v:shape="_x0000_s722947" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:91.57%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.65%'>§</span>A directed relationship between
- two packages which indicates </span><span style='position:absolute;top:31.25%;
- left:10.67%;width:84.64%;height:4.5%'>that the contents of the two packages
- are to be combined&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:90.26%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.69%'>§</span>Can be
- viewed as an operation that takes the contents of two </span><span
- style='position:absolute;top:44.5%;left:10.67%;width:86.14%;height:4.5%'>packages
- and produces a new package that combines the </span><span style='position:
- absolute;top:49.0%;left:10.67%;width:80.33%;height:4.5%'>contents of the
- packages involved in the merge&#13;</span>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:58.0%;left:10.67%;width:95.31%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.55%'>§</span>By selecting which
- increments to merge, it is possible to obtain a </span><span style='position:
- absolute;top:62.5%;left:10.67%;width:80.33%;height:4.5%'>custom definition of
- a concept for a specific end&#13;</span>
- <div style='position:absolute;top:66.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:71.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0047.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0047.html
deleted file mode 100644
index 79abed7..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0047.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Package Merge – Semantics">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="707"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>28</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s723972" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s723974" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s723972" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Package Merge – Semantics</div>
- <div v:shape="_x0000_s723974" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:83.33%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.92%'>§</span>The semantics of package merge
- are defined by a set of </span><span style='position:absolute;top:31.25%;
- left:10.67%;width:80.33%;height:4.5%'>constraints and transformation
- rules&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:93.44%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.6%'>§</span>When a
- merged element and a receiving element represent the </span><span
- style='position:absolute;top:44.5%;left:10.67%;width:95.13%;height:4.5%'>same
- entity, their contents are conceptually merged into a single </span><span
- style='position:absolute;top:49.0%;left:10.67%;width:85.95%;height:4.5%'>resulting
- element according to the rules of package merge&#13;</span>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:58.0%;left:10.67%;width:90.44%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.69%'>§</span>UML2 provides a utility
- that will enforce these constraints and </span><span style='position:absolute;
- top:62.5%;left:10.67%;width:80.33%;height:4.5%'>apply these transformations</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0048.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0048.html
deleted file mode 100644
index 751bb89..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0048.html
+++ /dev/null
@@ -1,128 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – L0">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="709"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>11</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s726018" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s726019" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s726018" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – L0</div>
- <div v:shape="_x0000_s726019" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Level 0 is the most
- basic compliance level for UML&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Contains the basic
- ability to model structure&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:44.5%;left:10.67%;width:95.69%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.54%'>§</span>Has the same modeling
- capability as EMOF but does not include </span><span style='position:absolute;
- top:49.0%;left:10.67%;width:86.51%;height:4.5%'>the other MOF™ capabilities
- such as reflection, identity, or </span><span style='position:absolute;
- top:53.5%;left:10.67%;width:80.33%;height:4.5%'>extensions&#13;</span>
- <div style='position:absolute;top:58.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:62.5%;left:10.67%;width:95.5%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.54%'>§</span>Level 0 is a good
- starting point for extending UML with additional </span><span
- style='position:absolute;top:66.75%;left:10.67%;width:80.33%;height:4.5%'>behavior
- using MOF</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0049.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0049.html
deleted file mode 100644
index 5035e1f..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0049.html
+++ /dev/null
@@ -1,114 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – LM">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="710"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>13</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s727042" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s727043" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s727042" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – LM</div>
- <div v:shape="_x0000_s727043" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:87.45%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.78%'>§</span>Level M is the <i>Metamodel</i>
- constructs compliance level from </span><span style='position:absolute;
- top:31.25%;left:10.67%;width:80.33%;height:4.5%'>InfrastructureLibrary&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:89.13%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.73%'>§</span>Adds an
- extra language unit for more advanced class-based </span><span
- style='position:absolute;top:44.5%;left:10.67%;width:94.38%;height:4.5%'>structures
- used for building metamodels (using CMOF), such as </span><span
- style='position:absolute;top:49.0%;left:10.67%;width:80.33%;height:4.5%'>UML
- itself</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0050.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0050.html
deleted file mode 100644
index bf89013..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0050.html
+++ /dev/null
@@ -1,112 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – L1">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="711"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>15</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s728066" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s728067" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s728066" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – L1</div>
- <div v:shape="_x0000_s728067" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Level 1 extends the
- capabilities provided by Level M&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:35.75%;left:10.67%;width:87.26%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.78%'>§</span>Adds
- language units for use cases, interactions, structures, </span><span
- style='position:absolute;top:40.25%;left:10.67%;width:80.33%;height:4.5%'>actions,
- and activities</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0051.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0051.html
deleted file mode 100644
index 76db21c..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0051.html
+++ /dev/null
@@ -1,112 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – L2">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="712"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>18</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s729090" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s729091" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s729090" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – L2</div>
- <div v:shape="_x0000_s729091" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:94.94%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.56%;width:97.43%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.63%'>§</span>Level 2 extends the
- language units already provided in Level 1&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:35.75%;left:10.67%;width:91.19%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.66%'>§</span>Adds
- language units for deployment, state machine modeling, </span><span
- style='position:absolute;top:40.25%;left:10.67%;width:80.33%;height:4.5%'>and
- profiles</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0052.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0052.html
deleted file mode 100644
index 25b00dc..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0052.html
+++ /dev/null
@@ -1,118 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Compliance Levels – L3">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="713"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>21</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s730114" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s730115" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s730114" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Compliance Levels – L3</div>
- <div v:shape="_x0000_s730115" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Level 3 represents the
- complete UML&#13;</span></div>
- <div style='position:absolute;top:31.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Extends the language
- units provided by Level 2&#13;</span></div>
- <div style='position:absolute;top:40.25%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:44.5%;left:10.67%;width:83.52%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.91%'>§</span>Adds new language units
- for modeling information flows, </span><span style='position:absolute;
- top:49.0%;left:10.67%;width:80.33%;height:4.5%'>templates, and model packaging</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0053.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0053.html
deleted file mode 100644
index 42f0e3a..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0053.html
+++ /dev/null
@@ -1,154 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Package Merge – Terminology">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="719"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>27</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s736258" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s736259" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s736258" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Package Merge – Terminology</div>
- <div v:shape="_x0000_s736259" class=B>
- <div style='position:absolute;top:26.75%;left:8.23%;width:91.57%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.65%;width:97.13%;height:100.0%'><span
- style='font-size:90%'><span class=BB style='position:absolute;left:-2.73%'>§</span></span><span
- style='font-size:90%'><i>merged element</i></span><span style='font-size:90%'>
- – contained by merged package </span><span style='font-size:90%'><i>before</i></span><span
- style='font-size:90%'> the merge&#13;</span></span></div>
- <div style='position:absolute;top:30.75%;left:8.23%;width:82.77%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='font-size:90%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.03%'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:34.75%;left:8.23%;width:95.13%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.55%;width:97.44%;height:100.0%'><span
- style='font-size:90%'><span class=BB style='position:absolute;left:-2.62%'>§</span></span><span
- style='font-size:90%'><i>receiving element</i></span><span style='font-size:
- 90%'> – contained by receiving package </span><span style='font-size:90%'><i>before</i></span><span
- style='font-size:90%'> the merge&#13;</span></span></div>
- <div style='position:absolute;top:38.75%;left:8.23%;width:82.77%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='font-size:90%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.03%'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:42.75%;left:8.23%;width:91.38%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.66%;width:97.33%;height:100.0%'><span
- style='font-size:90%'><span class=BB style='position:absolute;left:-2.73%'>§</span></span><span
- style='font-size:90%'><i>resulting element</i></span><span style='font-size:
- 90%'> – contained by resulting package </span><span style='font-size:90%'><i>after</i></span><span
- style='font-size:90%'> the merge&#13;</span></span></div>
- <div style='position:absolute;top:46.75%;left:8.23%;width:82.77%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='font-size:90%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.03%'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:50.75%;left:8.23%;width:90.44%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.69%;width:97.3%;height:100.0%'><span
- style='font-size:90%'><span class=BB style='position:absolute;left:-2.76%'>§</span></span><span
- style='font-size:90%'><i>merged package</i></span><span style='font-size:90%'>
- – target of the merge, contains merged elements&#13;</span></span></div>
- <div style='position:absolute;top:54.75%;left:8.23%;width:82.77%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='font-size:90%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.03%'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:58.75%;left:8.23%;width:95.5%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.54%;width:97.45%;height:100.0%'><span
- style='font-size:90%'><span class=BB style='position:absolute;left:-2.61%'>§</span></span><span
- style='font-size:90%'><i>receiving package</i></span><span style='font-size:
- 90%'> – source of the merge, contains receiving elements&#13;</span></span></div>
- <div style='position:absolute;top:62.75%;left:8.23%;width:82.77%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='font-size:90%;visibility:hidden'><span class=BB style='position:absolute;
- left:-3.03%'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:66.75%;left:8.23%;width:92.5%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.63%;width:97.36%;height:100.0%'><span
- style='font-size:90%'><span class=BB style='position:absolute;left:-2.7%'>§</span></span><span
- style='font-size:90%'><i>resulting package</i></span><span style='font-size:
- 90%'> – result of the merge, contains resulting elements</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0054.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0054.html
deleted file mode 100644
index e5f7b79..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0054.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Package Merge – Example (before)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="720"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>29</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s737282" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s737282" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Package Merge – Example (before)</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s737285"
-  type="#_x0000_m32775" style='position:absolute;left:189.625pt;top:139.875pt;
-  width:334.25pt;height:307.25pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0054_image023.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s737285" src="slide0054_image024.gif"
- style='position:absolute;top:26.0%;left:26.4%;width:46.44%;height:57.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0054_image023.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0054_image023.png
deleted file mode 100644
index 54da652..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0054_image023.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0054_image024.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0054_image024.gif
deleted file mode 100644
index bd9cd6a..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0054_image024.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0055.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0055.html
deleted file mode 100644
index 261a267..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0055.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Package Merge – Example (after)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="723"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>30</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s740354" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s740354" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Package Merge – Example (after)</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s740359"
-  type="#_x0000_m32775" style='position:absolute;left:164pt;top:179.875pt;
-  width:385.5pt;height:227.25pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0055_image025.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s740359" src="slide0055_image026.gif"
- style='position:absolute;top:33.25%;left:22.84%;width:53.55%;height:42.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0055_image025.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0055_image025.png
deleted file mode 100644
index b3cfc60..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0055_image025.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0055_image026.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0055_image026.gif
deleted file mode 100644
index a2ecfb6..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0055_image026.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0056.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0056.html
deleted file mode 100644
index 8ee4084..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0056.html
+++ /dev/null
@@ -1,132 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Redefinition">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="728"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>32</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s745474" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s745475" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s745474" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Redefinition</div>
- <div v:shape="_x0000_s745475" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:86.7%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.8%'>§</span>Redefinition refers to the
- ability for one element to redefine </span><span style='position:absolute;
- top:31.25%;left:10.67%;width:80.33%;height:4.5%'>another in the context of a
- generalization hierarchy&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:86.7%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.8%'>§</span>A <i>redefining</i>
- element must be <i>consistent with</i> the <i>redefined</i> </span><span
- style='position:absolute;top:44.5%;left:10.67%;width:84.26%;height:4.5%'>element,
- but may add specific constraints or other details </span><span
- style='position:absolute;top:49.0%;left:10.67%;width:80.33%;height:4.5%'>particular
- to the specializing classifier&#13;</span>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:58.0%;left:10.67%;width:80.33%;height:4.5%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>The detailed semantics
- of redefinition vary for each </span><span style='position:absolute;
- top:62.0%;left:10.67%;width:80.33%;height:4.75%'>specialization of <span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New"'>RedefinableElement</span>
- in UML&#13;</span>
- <div style='position:absolute;top:66.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:71.25%;left:10.67%;width:91.76%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.65%'>§</span>The UML2
- API and code generator provide support for Java™ </span><span
- style='position:absolute;top:75.75%;left:10.67%;width:80.33%;height:4.5%'>code
- to enforce these redefinition constraints</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0057.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0057.html
deleted file mode 100644
index d1e3538..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0057.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Redefinition – Example (properties)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="729"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>33</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s746498" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s746498" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Redefinition – Example (properties)</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s746500"
-  type="#_x0000_m32775" style='position:absolute;left:148.625pt;top:230.125pt;
-  width:416.25pt;height:114.75pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0057_image027.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s746500" src="slide0057_image028.gif"
- style='position:absolute;top:42.5%;left:20.59%;width:57.86%;height:21.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0057_image027.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0057_image027.png
deleted file mode 100644
index 92974e7..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0057_image027.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0057_image028.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0057_image028.gif
deleted file mode 100644
index 006babe..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0057_image028.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0058.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0058.html
deleted file mode 100644
index da132dd..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0058.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Redefinition – Example (operations)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="732"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>35</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s749570" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s749570" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Redefinition – Example (operations)</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s749572"
-  type="#_x0000_m32775" style='position:absolute;left:197.75pt;top:155.125pt;
-  width:318pt;height:276.75pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0058_image029.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s749572" src="slide0058_image030.gif"
- style='position:absolute;top:28.75%;left:27.52%;width:44.19%;height:51.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0058_image029.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0058_image029.png
deleted file mode 100644
index 19dcad7..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0058_image029.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0058_image030.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0058_image030.gif
deleted file mode 100644
index 27c8743..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0058_image030.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0059.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0059.html
deleted file mode 100644
index 009ab9f..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0059.html
+++ /dev/null
@@ -1,154 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Redefinition – Example (properties)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="735"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>34</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s752642" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s752645" style='position:absolute;
-  left:12.125pt;top:173.875pt;width:707.875pt;height:208.25pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s752642" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Redefinition – Example (properties)</div>
- <div v:shape="_x0000_s752645" class=O>
- <div style='position:absolute;top:33.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <div style='position:absolute;top:36.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:39.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:42.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:45.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <div style='position:absolute;top:48.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>@Override&#13;</span></div>
- <div style='position:absolute;top:51.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> EList&lt;Classifier&gt;
- getGenerals() {&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>   
- </span>@SuppressWarnings(&quot;unchecked&quot;)&#13;</span></div>
- <span style='position:absolute;top:57.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>EList&lt;Classifier&gt; superClass =
- (EList&lt;Classifier&gt;) ((EList&lt;?&gt;) </span></span><span
- style='position:absolute;top:61.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>getSuperClasses());&#13;</span></span>
- <div style='position:absolute;top:64.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> superClass;&#13;</span></div>
- <div style='position:absolute;top:67.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0060.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0060.html
deleted file mode 100644
index 9bfad26..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0060.html
+++ /dev/null
@@ -1,207 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Redefinition – Example (operations)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="737"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>36</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s754690" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s754692" style='position:absolute;
-  left:12.125pt;top:136.625pt;width:707.875pt;height:141.25pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s754693" style='position:absolute;left:12.125pt;
-  top:294.875pt;width:707.875pt;height:158pt' filled="f" fillcolor="#7889fb [4]"
-  stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s754690" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Redefinition – Example (operations)</div>
- <div v:shape="_x0000_s754692" class=O>
- <div style='position:absolute;top:26.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <div style='position:absolute;top:29.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:32.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:35.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:38.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <div style='position:absolute;top:41.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>boolean</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> isConsistentWith(RedefinableElement redefinee) {&#13;</span></div>
- <div style='position:absolute;top:44.75%;left:2.62%;width:103.55%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> RedefinableElementOperations.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>isConsistentWith</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>(</span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>this</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>, redefinee);&#13;</span></div>
- <div style='position:absolute;top:47.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>}</span></div>
- </div>
- <div v:shape="_x0000_s754693" class=O>
- <div style='position:absolute;top:55.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <div style='position:absolute;top:58.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:61.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:64.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:67.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <div style='position:absolute;top:71.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>@Override&#13;</span></div>
- <div style='position:absolute;top:74.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>boolean</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> isConsistentWith(RedefinableElement redefinee) {&#13;</span></div>
- <div style='position:absolute;top:77.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> PropertyOperations.</span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><i>isConsistentWith</i></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>(</span><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>this</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>, redefinee);&#13;</span></div>
- <div style='position:absolute;top:80.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0061.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0061.html
deleted file mode 100644
index 886cbfa..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0061.html
+++ /dev/null
@@ -1,128 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Subsets">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="739"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>38</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s756738" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s756739" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s756738" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Subsets</div>
- <div v:shape="_x0000_s756739" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:93.07%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.61%'>§</span>A property may be marked as the
- subset of another, as long as </span><span style='position:absolute;
- top:31.25%;left:10.67%;width:94.94%;height:4.5%'>every element in the <i>context</i>
- of the subsetting property <i>conforms </i></span><span style='position:absolute;
- top:35.75%;left:10.67%;width:88.57%;height:4.5%'><i>to</i> the corresponding
- element in the context of the subsetted </span><span style='position:absolute;
- top:40.25%;left:10.67%;width:80.33%;height:4.5%'>property&#13;</span>
- <div style='position:absolute;top:44.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:49.0%;left:10.67%;width:85.95%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.83%'>§</span>The collection of
- values associated with an instance of the </span><span style='position:absolute;
- top:53.5%;left:10.67%;width:88.38%;height:4.5%'>subsetting property must be
- included in, or the same as, the </span><span style='position:absolute;
- top:58.0%;left:10.67%;width:80.33%;height:4.5%'>collection of values
- associated with an instance of the </span><span style='position:absolute;
- top:62.5%;left:10.67%;width:80.33%;height:4.5%'>corresponding subsetted
- property&#13;</span>
- <div style='position:absolute;top:66.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:71.25%;left:10.67%;width:88.38%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.75%'>§</span>The UML2
- API and code generator provide support for Java </span><span style='position:
- absolute;top:75.75%;left:10.67%;width:80.33%;height:4.5%'>code to enforce
- these subset constraints</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0062.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0062.html
deleted file mode 100644
index 832f4f1..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0062.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Subsets – Example (non-derived)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="740"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>39</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s757762" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s757762" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Subsets – Example (non-derived)</div>
- <v:shape id="_x0000_s757767" type="#_x0000_t75" style='position:absolute;
-  left:47.25pt;top:194.625pt;width:625.5pt;height:174.75pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0062_image031.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s757767"
- src="slide0062_image032.gif" style='position:absolute;top:36.0%;left:6.55%;
- width:86.89%;height:32.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0062_image031.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0062_image031.png
deleted file mode 100644
index 11a28f6..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0062_image031.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0062_image032.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0062_image032.gif
deleted file mode 100644
index 11c1100..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0062_image032.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0063.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0063.html
deleted file mode 100644
index b1470ca..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0063.html
+++ /dev/null
@@ -1,192 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Subsets – Example (non-derived)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="743"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>41</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s760834" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s760837" style='position:absolute;
-  left:12.125pt;top:157pt;width:707.875pt;height:258.5pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s760834" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Subsets – Example (non-derived)</div>
- <div v:shape="_x0000_s760837" class=O>
- <div style='position:absolute;top:29.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <div style='position:absolute;top:33.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:36.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:39.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:42.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <div style='position:absolute;top:45.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> EList&lt;Property&gt;
- getOwnedEnds() {&#13;</span></div>
- <div style='position:absolute;top:48.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>if</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> (ownedEnds == </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>null</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'>) {&#13;</span></div>
- <span style='position:absolute;top:51.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>        </span>ownedEnds = </span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>new</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span></span><span
- style='position:absolute;top:54.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>SubsetSupersetEObjectContainmentWithInverseEList.Resolving&lt;Property&gt;(&#13;</span></span>
- <div style='position:absolute;top:57.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>Property.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>class</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>, </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>this</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>, UMLPackage.</span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><i>ASSOCIATION__OWNED_END</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>,&#13;</span></div>
- <div style='position:absolute;top:61.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>OWNED_END_ESUPERSETS</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>, </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><i>OWNED_END_ESUBSETS</i></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'>,&#13;</span></div>
- <div style='position:absolute;top:64.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>UMLPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>PROPERTY__OWNING_ASSOCIATION</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>);&#13;</span></div>
- <div style='position:absolute;top:67.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:70.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> ownedEnds;&#13;</span></div>
- <div style='position:absolute;top:73.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0064.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0064.html
deleted file mode 100644
index 1796fa7..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0064.html
+++ /dev/null
@@ -1,256 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Subsets – Example (non-derived)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="745"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>40</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s762882" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s762884" style='position:absolute;
-  left:12.125pt;top:107.875pt;width:707.875pt;height:392.5pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s762882" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Subsets – Example (non-derived)</div>
- <div v:shape="_x0000_s762884" class=O>
- <div style='position:absolute;top:20.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <span style='position:absolute;top:23.75%;left:2.62%;width:103.55%;height:
- 3.25%'><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* The array of subset feature identifiers for
- the '{@link #getOwnedEnds() </span></span><span style='position:absolute;
- top:27.0%;left:2.62%;width:96.44%;height:3.25%'><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>&lt;em&gt;Owned End&lt;/em&gt;}' containment reference list.&#13;</span></span>
- <div style='position:absolute;top:30.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:33.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:36.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@see</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'>
- #getOwnedEnds()&#13;</span></div>
- <div style='position:absolute;top:39.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:42.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@ordered</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:45.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <span style='position:absolute;top:48.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>protected</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>static</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>final</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>int</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>[] </span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><i>OWNED_END_ESUBSETS</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> = </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>new</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> </span></span><span style='position:absolute;top:51.75%;left:2.62%;
- width:96.44%;height:3.25%'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><b>int</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>[]{UMLPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>ASSOCIATION__NAVIGABLE_OWNED_END</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>};&#13;</span></span>
- <div style='position:absolute;top:55.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <span style='position:absolute;top:61.0%;left:2.62%;width:106.36%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* The array of superset feature identifiers
- for the '{@link #getOwnedEnds() </span></span><span style='position:absolute;
- top:64.25%;left:2.62%;width:96.44%;height:3.25%'><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'>&lt;em&gt;Owned End&lt;/em&gt;}' containment reference
- list.&#13;</span></span>
- <div style='position:absolute;top:67.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:70.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:73.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@see</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'>
- #getOwnedEnds()&#13;</span></div>
- <div style='position:absolute;top:76.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:79.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@ordered</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:82.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <span style='position:absolute;top:86.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>protected</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>static</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>final</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>int</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>[] </span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><i>OWNED_END_ESUPERSETS</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> = </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>new</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> </span></span><span style='position:absolute;top:89.0%;left:2.62%;
- width:96.44%;height:3.25%'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><b>int</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>[]{UMLPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>ASSOCIATION__MEMBER_END</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>};</span></span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0065.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0065.html
deleted file mode 100644
index ef7c5c9..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0065.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Subsets – Example (derived)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="747"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>42</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s764930" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s764930" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Subsets – Example (derived)</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s764935"
-  type="#_x0000_m32775" style='position:absolute;left:52.125pt;top:254.75pt;
-  width:609.25pt;height:77.375pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0065_image033.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s764935" src="slide0065_image034.gif"
- style='position:absolute;top:47.25%;left:7.3%;width:84.64%;height:14.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0065_image033.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0065_image033.png
deleted file mode 100644
index 81a825a..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0065_image033.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0065_image034.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0065_image034.gif
deleted file mode 100644
index d3a56d9..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0065_image034.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0066.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0066.html
deleted file mode 100644
index 46d763e..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0066.html
+++ /dev/null
@@ -1,239 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Subsets – Example (derived)">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="752"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>43</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s770050" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s770052" style='position:absolute;
-  left:12.125pt;top:120.5pt;width:707.875pt;height:359pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s770050" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Subsets – Example (derived)</div>
- <div v:shape="_x0000_s770052" class=O>
- <div style='position:absolute;top:23.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <span style='position:absolute;top:26.25%;left:2.62%;width:107.67%;height:
- 3.25%'><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* The array of superset feature identifiers
- for the '{@link #getOwnedTypes() </span></span><span style='position:absolute;
- top:29.25%;left:2.62%;width:96.44%;height:3.25%'><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'>&lt;em&gt;Owned Type&lt;/em&gt;}' reference list.&#13;</span></span>
- <div style='position:absolute;top:32.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:35.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:38.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@see</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'>
- #getOwnedTypes()&#13;</span></div>
- <div style='position:absolute;top:41.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:44.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@ordered</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:48.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <span style='position:absolute;top:51.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>protected</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>static</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>final</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>int</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>[] </span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><i>OWNED_TYPE_ESUPERSETS</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> = </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>new</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> </span></span><span style='position:absolute;top:54.0%;left:2.62%;
- width:96.44%;height:3.25%'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><b>int</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>[]{UMLPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>PACKAGE__PACKAGED_ELEMENT</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>};&#13;</span></span>
- <div style='position:absolute;top:57.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:60.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <div style='position:absolute;top:63.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:66.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:69.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'> NOT&#13;</span></div>
- <div style='position:absolute;top:72.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <div style='position:absolute;top:75.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> EList&lt;Type&gt;
- getOwnedTypes() {&#13;</span></div>
- <div style='position:absolute;top:79.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><b>new</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>
- DerivedSubsetEObjectEList&lt;Type&gt;(Type.</span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>class</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>, </span><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>this</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>,&#13;</span></div>
- <div style='position:absolute;top:82.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>UMLPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>PACKAGE__OWNED_TYPE</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>, </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><i>OWNED_TYPE_ESUPERSETS</i></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'>);&#13;</span></div>
- <div style='position:absolute;top:85.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0067.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0067.html
deleted file mode 100644
index 1663c95..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0067.html
+++ /dev/null
@@ -1,162 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Derived Unions">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="754"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>45</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s772098" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s772099" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s772098" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Derived Unions</div>
- <div v:shape="_x0000_s772099" class=B>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:26.5%;left:10.67%;width:91.01%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.67%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>If a property is </span><span
- style='font-size:90%'><i>derived</i></span><span style='font-size:90%'>, then
- its value(s) can be computed from other </span></span><span style='position:
- absolute;top:30.0%;left:10.67%;width:80.33%;height:4.0%'><span
- style='font-size:90%'>information&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>A property may be marked
- as being a </span><span style='font-size:90%'><i>derived union</i></span><span
- style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:44.5%;left:10.67%;width:88.95%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.73%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>The collection of values
- denoted by the property in some context is </span></span><span
- style='position:absolute;top:48.25%;left:10.67%;width:88.2%;height:4.0%'><span
- style='font-size:90%'>derived by being the strict </span><span
- style='font-size:90%'><i>union</i></span><span style='font-size:90%'> of all
- of the values denoted, in the </span></span><span style='position:absolute;
- top:51.75%;left:10.67%;width:80.33%;height:4.0%'><span style='font-size:90%'>same
- context, by properties defined to </span><span style='font-size:90%'><i>subset</i></span><span
- style='font-size:90%'> it&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:59.0%;left:10.67%;width:86.51%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.81%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>If a derived union
- property is not multivalued, the values of all the </span></span><span
- style='position:absolute;top:62.5%;left:10.67%;width:80.33%;height:4.0%'><span
- style='font-size:90%'>subsets must be either the same or null&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:69.75%;left:10.67%;width:90.44%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.69%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>The UML2 API and code
- generator provide support for Java code to </span></span><span
- style='position:absolute;top:73.5%;left:10.67%;width:80.33%;height:4.0%'><span
- style='font-size:90%'>enforce these derived union constraints</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0068.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0068.html
deleted file mode 100644
index 83e237e..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0068.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Derived Unions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="755"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>46</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s773122" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s773122" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Derived Unions – Example</div>
- <v:shape id="_x0000_s773131" type="#_x0000_t75" style='position:absolute;
-  left:54.75pt;top:148.625pt;width:610.5pt;height:270.75pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0068_image035.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s773131"
- src="slide0068_image036.gif" style='position:absolute;top:27.5%;left:7.67%;
- width:84.83%;height:50.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0068_image035.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0068_image035.png
deleted file mode 100644
index 3a8ef20..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0068_image035.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0068_image036.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0068_image036.gif
deleted file mode 100644
index 6a316a8..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0068_image036.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0069.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0069.html
deleted file mode 100644
index cb4d3fd..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0069.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Derived Unions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="760"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>47</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s778242" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s778242" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Derived Unions – Example</div>
- <v:shape id="_x0000_s778247" type="#_x0000_t75" style='position:absolute;
-  left:128.25pt;top:125.625pt;width:463.5pt;height:342.75pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0069_image037.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s778247"
- src="slide0069_image038.gif" style='position:absolute;top:23.25%;left:17.79%;
- width:64.41%;height:63.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0069_image037.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0069_image037.png
deleted file mode 100644
index 16b72b9..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0069_image037.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0069_image038.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0069_image038.gif
deleted file mode 100644
index 7926df6..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0069_image038.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0070.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0070.html
deleted file mode 100644
index 81b590e..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0070.html
+++ /dev/null
@@ -1,192 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Derived Unions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="763"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>48</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s781314" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s781316" style='position:absolute;
-  left:12.125pt;top:138pt;width:707.875pt;height:292pt' filled="f" fillcolor="#7889fb [4]"
-  stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s781314" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Derived Unions – Example</div>
- <div v:shape="_x0000_s781316" class=O>
- <div style='position:absolute;top:26.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <div style='position:absolute;top:29.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:32.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <div style='position:absolute;top:41.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>@Override&#13;</span></div>
- <div style='position:absolute;top:45.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> Namespace basicGetNamespace()
- {&#13;</span></div>
- <div style='position:absolute;top:48.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>org.eclipse.uml2.uml.Class class_ =
- basicGetClass_();&#13;</span></div>
- <div style='position:absolute;top:51.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>if</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> (class_ != </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>null</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'>) {&#13;</span></div>
- <div style='position:absolute;top:54.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>        </span>return</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> class_;&#13;</span></div>
- <div style='position:absolute;top:57.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:60.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>DataType datatype =
- basicGetDatatype();&#13;</span></div>
- <div style='position:absolute;top:63.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>if</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> (datatype != </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>null</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'>) {&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>        </span>return</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> datatype;&#13;</span></div>
- <div style='position:absolute;top:69.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>}&#13;</span></div>
- <div style='position:absolute;top:72.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><b>super</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>.basicGetNamespace();&#13;</span></div>
- <div style='position:absolute;top:76.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0071.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0071.html
deleted file mode 100644
index d66f4c5..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0071.html
+++ /dev/null
@@ -1,258 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Derived Unions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="765"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>49</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s783362" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s783364" style='position:absolute;
-  left:12.125pt;top:107.875pt;width:707.875pt;height:392.5pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s783362" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Derived Unions – Example</div>
- <div v:shape="_x0000_s783364" class=O>
- <div style='position:absolute;top:20.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <span style='position:absolute;top:23.75%;left:2.62%;width:107.67%;height:
- 3.25%'><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* The array of subset feature identifiers for
- the '{@link #getOwnedMembers() </span></span><span style='position:absolute;
- top:27.0%;left:2.62%;width:96.44%;height:3.25%'><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>&lt;em&gt;Owned Member&lt;/em&gt;}' reference list.&#13;</span></span>
- <div style='position:absolute;top:30.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:33.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:36.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@see</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'>
- #getOwnedMembers()&#13;</span></div>
- <div style='position:absolute;top:39.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:42.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@ordered</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:45.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <div style='position:absolute;top:48.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>protected</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>static</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>final</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>int</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>[] </span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><i>OWNED_MEMBER_ESUBSETS</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> = </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>new</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>int</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>[]{&#13;</span></div>
- <div style='position:absolute;top:51.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>UMLPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>CLASS__OWNED_RULE</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>, UMLPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>CLASS__OWNED_ATTRIBUTE</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>,&#13;</span></div>
- <div style='position:absolute;top:55.0%;left:2.62%;width:100.74%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>UMLPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>CLASS__NESTED_CLASSIFIER</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>, UMLPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>CLASS__OWNED_OPERATION</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>};&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:61.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <div style='position:absolute;top:64.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:67.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:70.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:73.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <div style='position:absolute;top:76.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>@Override&#13;</span></div>
- <div style='position:absolute;top:79.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> EList&lt;NamedElement&gt;
- getOwnedMembers() {&#13;</span></div>
- <div style='position:absolute;top:82.75%;left:2.62%;width:102.05%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><b>new</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>
- DerivedUnionEObjectEList&lt;NamedElement&gt;(NamedElement.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>class</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>,&#13;</span></div>
- <div style='position:absolute;top:86.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>this</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>, UMLPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>CLASS__OWNED_MEMBER</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>, </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><i>OWNED_MEMBER_ESUBSETS</i></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'>);&#13;</span></div>
- <div style='position:absolute;top:89.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0072.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0072.html
deleted file mode 100644
index 1a80d63..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0072.html
+++ /dev/null
@@ -1,143 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Extending UML(2) – How?">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="767"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>54</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s785410" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s785411" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s785410" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Extending UML(2) – How?</div>
- <div v:shape="_x0000_s785411">
- <div class=B2 style='mso-margin-left-alt:792'></div>
- <div class=B3 style='mso-margin-left-alt:1080'></div>
- <div class=B4 style='mso-margin-left-alt:1368'></div>
- <div class=B style='mso-margin-left-alt:240'><span style='position:absolute;
- top:26.75%;left:12.35%;width:90.44%;height:4.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-4.55%;font-family:Wingdings'>§</span>One of the
- strengths of the latest version of UML is that it can </span><span
- style='position:absolute;top:31.25%;left:12.35%;width:85.39%;height:4.5%'>be
- customized to meet the needs of a given application or </span><span
- style='position:absolute;top:35.75%;left:12.35%;width:78.65%;height:4.5%'>domain&#13;</span></div>
- <div class=B style='mso-margin-left-alt:240;position:absolute;top:40.25%;
- left:8.23%;width:82.77%;height:4.5%'><span style='position:absolute;
- top:0%;left:4.97%;width:95.02%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-5.23%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div class=B style='mso-margin-left-alt:240;position:absolute;top:44.5%;
- left:8.23%;width:82.77%;height:4.5%'><span style='position:absolute;
- top:0%;left:4.97%;width:95.02%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-5.23%;font-family:Wingdings'>§</span>There are
- two “official” ways of customizing UML&#13;</span></div>
- <div class=B1 style='mso-margin-left-alt:509;position:absolute;top:50.0%;
- left:13.29%;width:77.71%;height:4.0%'><span style='position:absolute;
- top:0%;left:4.81%;width:95.18%;height:100.0%'><span style='font-style:italic'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-5.06%'>1.</span></span><i>lightweight</i>
- extensions using profiles&#13;</span></div>
- <div class=B1 style='mso-margin-left-alt:509;position:absolute;top:55.75%;
- left:13.29%;width:77.71%;height:4.0%'><span style='position:absolute;
- top:0%;left:4.81%;width:95.18%;height:100.0%'><span style='font-style:italic'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-5.06%'>2.</span></span><i>heavyweight</i>,
- or first-class, extensions using MOF&#13;</span></div>
- <div class=B style='mso-margin-left-alt:240;position:absolute;top:60.25%;
- left:8.23%;width:82.77%;height:4.5%'><span style='position:absolute;
- top:0%;left:4.97%;width:95.02%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-5.23%'>1.</span></span>&#13;</span></div>
- <div class=B style='mso-margin-left-alt:240'><span style='position:absolute;
- top:64.75%;left:12.35%;width:93.25%;height:4.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-4.41%;font-family:Wingdings'>§</span>UML2
- supports these kinds of extensions but also provides two </span><span
- style='position:absolute;top:69.25%;left:12.35%;width:88.2%;height:4.5%'>lighter-weight
- alternatives which weÂ’ll call <i>featherweight</i> and </span><span
- style='position:absolute;top:73.5%;left:12.35%;width:78.65%;height:4.5%'><i>middleweight</i>
- extensions</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0073.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0073.html
deleted file mode 100644
index 166a52c..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0073.html
+++ /dev/null
@@ -1,134 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Extending UML(2) – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="768"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>55</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s786434" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s786435" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s786434" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Extending UML(2) – Example</div>
- <div v:shape="_x0000_s786435">
- <div class=B style='position:absolute;top:26.75%;left:8.23%;width:98.5%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.52%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>§</span>Assume
- we want to customize UML for modeling testing systems&#13;</span></div>
- <div class=B style='position:absolute;top:31.25%;left:8.23%;width:82.77%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.94%;width:97.05%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div class=B><span style='position:absolute;top:35.75%;left:10.67%;width:92.69%;
- height:4.5%'><span class=BB style='position:absolute;left:-2.62%'>§</span>WeÂ’ll
- (ab)use some concepts from the UML Testing Profile and </span><span
- style='position:absolute;top:40.25%;left:10.67%;width:80.33%;height:4.5%'>JUnit&#13;</span></div>
- <div class=B1 style='position:absolute;top:45.5%;left:13.29%;width:88.01%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.61%;width:96.38%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.75%'>§</span><i>Test
- Suite</i> – a package containing text contexts to test a system&#13;</span></div>
- <div class=B1 style='position:absolute;top:51.25%;left:13.29%;width:84.83%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.75%;width:96.24%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.89%'>§</span><i>Test
- Context</i> – a class owning test cases to test a component&#13;</span></div>
- <div class=B1 style='position:absolute;top:56.75%;left:13.29%;width:88.2%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.6%;width:96.39%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.74%'>§</span><i>Test
- Case</i> – an operation specifying tests to realize an objective&#13;</span></div>
- <div class=B1 style='position:absolute;top:62.5%;left:13.29%;width:77.71%;
- height:4.0%'><span style='position:absolute;top:0%;left:4.09%;width:95.9%;
- height:100.0%'><span style='visibility:hidden'><span class=B1B
- style='position:absolute;left:-4.27%'>§</span></span>&#13;</span></div>
- <div class=B><span style='position:absolute;top:67.0%;left:10.67%;width:91.76%;
- height:4.5%'><span class=BB style='position:absolute;left:-2.65%'>§</span>WeÂ’ll
- examine how to extend UML2 for this “domain” using the </span><span
- style='position:absolute;top:71.5%;left:10.67%;width:80.33%;height:4.5%'>four
- different approaches</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0074.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0074.html
deleted file mode 100644
index 4f937ca..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0074.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Extending UML(2) – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="769"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>56</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s787458" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s787458" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Extending UML(2) – Example</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s787463"
-  type="#_x0000_m32775" style='position:absolute;left:196.25pt;top:193.375pt;
-  width:321pt;height:200.25pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0074_image039.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s787463" src="slide0074_image040.gif"
- style='position:absolute;top:35.75%;left:27.34%;width:44.56%;height:37.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0074_image039.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0074_image039.png
deleted file mode 100644
index b5dc60c..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0074_image039.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0074_image040.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0074_image040.gif
deleted file mode 100644
index 3671f4c..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0074_image040.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0075.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0075.html
deleted file mode 100644
index 7d5796e..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0075.html
+++ /dev/null
@@ -1,120 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Featherweight Extensions">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="774"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>58</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s792578" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s792579" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s792578" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Featherweight Extensions</div>
- <div v:shape="_x0000_s792579" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:94.94%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.56%'>§</span><i>Featherweight</i> extensions
- are done by adorning model elements </span><span style='position:absolute;
- top:31.25%;left:10.67%;width:80.33%;height:4.5%'>with <i>keywords&#13;</i></span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span><i>&#13;</i></span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:82.77%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.94%'>§</span>A keyword
- is a label for a model element that is typically </span><span
- style='position:absolute;top:44.5%;left:10.67%;width:80.33%;height:4.5%'>displayed
- within guillemots&#13;</span>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>UML2 stores these
- keywords in Ecore annotations</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0076.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0076.html
deleted file mode 100644
index 976cc89..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0076.html
+++ /dev/null
@@ -1,122 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Featherweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="775"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>59</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s793602" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s793602" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Featherweight Extensions – Example</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s793604"
-  type="#_x0000_m32775" style='position:absolute;left:156.125pt;top:204.25pt;
-  width:401.25pt;height:178.5pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0076_image041.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s793604" src="slide0076_image042.gif"
- style='position:absolute;top:37.75%;left:21.72%;width:55.8%;height:33.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0076_image041.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0076_image041.png
deleted file mode 100644
index 00cb9a2..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0076_image041.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0076_image042.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0076_image042.gif
deleted file mode 100644
index 83ab51f..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0076_image042.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0077.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0077.html
deleted file mode 100644
index d123c7d..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0077.html
+++ /dev/null
@@ -1,128 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Lightweight Extensions">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="778"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>65</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s796674" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s796675" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s796674" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Lightweight Extensions</div>
- <div v:shape="_x0000_s796675" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:94.94%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.56%'>§</span><i>Lightweight</i> extensions
- are done by creating profiles/stereotypes </span><span style='position:absolute;
- top:31.25%;left:10.67%;width:80.33%;height:4.5%'>and applying them to model
- elements&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:93.63%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.6%'>§</span>Stereotypes
- can be used to add keywords, constraints, images, </span><span
- style='position:absolute;top:44.5%;left:10.67%;width:80.33%;height:4.5%'>and
- properties (tagged values) to model elements&#13;</span>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:53.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.03%'>§</span>Metadata for profiles
- must be defined and deployed&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:62.5%;left:8.23%;width:93.82%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.59%;width:97.2%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.66%'>§</span>UML2 stores stereotype
- applications as dynamic EMF objects</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0078.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0078.html
deleted file mode 100644
index f4041fa..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0078.html
+++ /dev/null
@@ -1,127 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Lightweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="779"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>67</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s797698" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s797698" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Lightweight Extensions – Example</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s797700"
-  type="#_x0000_m32775" style='position:absolute;left:171pt;top:139.875pt;
-  width:371.375pt;height:307.25pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0078_image048.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><o:OLEObject Type="Embed"
-  ProgID="Paint.Picture" ShapeID="_x0000_s797700" DrawAspect="Content"
-  ObjectID="3">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s797700"
- src="slide0078_image049.jpg" style='position:absolute;top:26.0%;left:23.78%;
- width:51.49%;height:57.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0078_image048.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0078_image048.png
deleted file mode 100644
index 9f0c243..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0078_image048.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0078_image049.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0078_image049.jpg
deleted file mode 100644
index 09814da..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0078_image049.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0079.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0079.html
deleted file mode 100644
index c1b73aa..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0079.html
+++ /dev/null
@@ -1,128 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Middleweight Extensions">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="781"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>74</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s799746" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s799747" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s799746" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Middleweight Extensions</div>
- <div v:shape="_x0000_s799747" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:94.38%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.57%'>§</span><i>Middleweight</i> extensions
- are done by creating a metamodel that </span><span style='position:absolute;
- top:31.25%;left:10.67%;width:80.33%;height:4.5%'>extends the UML2 metamodel
- via <i>specialization&#13;</i></span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:94.0%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.58%'>§</span>An API and schema for
- the new metamodel must be generated, </span><span style='position:absolute;
- top:44.5%;left:10.67%;width:80.33%;height:4.5%'>implemented, and deployed&#13;</span>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:53.5%;left:10.67%;width:96.25%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.52%'>§</span>The implementation
- classes in the specialized metamodel extend </span><span style='position:absolute;
- top:58.0%;left:10.67%;width:80.33%;height:4.5%'>the UML2 implementation
- classes (discouraged)&#13;</span>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:66.75%;left:10.67%;width:89.51%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.71%'>§</span>The API and
- resource implementation must conform with the </span><span style='position:
- absolute;top:71.25%;left:10.67%;width:80.33%;height:4.5%'>UML2 API and
- resource implementation</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0080.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0080.html
deleted file mode 100644
index bd3f3ec..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0080.html
+++ /dev/null
@@ -1,105 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Middleweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="782"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>76</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s800770" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s800770" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Middleweight Extensions – Example</div>
- <v:shape id="_x0000_s800772" type="#_x0000_t75" style='position:absolute;
-  left:149.625pt;top:157.875pt;width:420.75pt;height:272.25pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0080_image061.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s800772" DrawAspect="Content" ObjectID="11">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s800772"
- src="slide0080_image062.jpg" style='position:absolute;top:29.25%;left:20.78%;
- width:58.42%;height:50.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0080_image061.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0080_image061.png
deleted file mode 100644
index ea0192f..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0080_image061.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0080_image062.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0080_image062.jpg
deleted file mode 100644
index b68547f..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0080_image062.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0081.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0081.html
deleted file mode 100644
index ed8bcb2..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0081.html
+++ /dev/null
@@ -1,127 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="784"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>85</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s802818" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s802819" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s802818" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions</div>
- <div v:shape="_x0000_s802819" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:94.0%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.58%'>§</span>Heavyweight extensions are done
- by creating a metamodel that </span><span style='position:absolute;top:31.25%;
- left:10.67%;width:80.33%;height:4.5%'>merges packages from UML&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:94.0%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.58%'>§</span>An API and schema for
- the new metamodel must be generated, </span><span style='position:absolute;
- top:44.5%;left:10.67%;width:80.33%;height:4.5%'>implemented, and deployed&#13;</span>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:53.5%;left:10.67%;width:95.5%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.54%'>§</span>The implementation
- classes in the specialized metamodel do not </span><span style='position:absolute;
- top:58.0%;left:10.67%;width:80.33%;height:4.5%'>extend the UML2 implementation
- classes&#13;</span>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:66.75%;left:10.67%;width:95.31%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.55%'>§</span>The API and
- resource implementation need not conform with the </span><span
- style='position:absolute;top:71.25%;left:10.67%;width:80.33%;height:4.5%'>UML2
- API and resource implementation</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082.html
deleted file mode 100644
index e4be85b..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082.html
+++ /dev/null
@@ -1,116 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="785"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>95</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s803842" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s803842" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions – Example</div>
- <v:shape id="_x0000_s803844" type="#_x0000_t75" style='position:absolute;
-  left:137.625pt;top:157pt;width:420.75pt;height:54pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0082_image084.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s803844" DrawAspect="Content" ObjectID="14">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s803844"
- src="slide0082_image085.jpg" style='position:absolute;top:29.0%;left:19.1%;
- width:58.42%;height:10.0%'><![endif]><v:shape id="_x0000_s803845" type="#_x0000_t75"
-  style='position:absolute;left:80.75pt;top:270pt;width:558.625pt;height:125.25pt'
-  fillcolor="#7889fb [4]" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0082_image086.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s803845" DrawAspect="Content" ObjectID="15">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s803845"
- src="slide0082_image087.jpg" style='position:absolute;top:50.0%;left:11.23%;
- width:77.52%;height:23.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082_image084.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082_image084.png
deleted file mode 100644
index 29e62f0..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082_image084.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082_image085.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082_image085.jpg
deleted file mode 100644
index 6fe1d06..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082_image085.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082_image086.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082_image086.png
deleted file mode 100644
index 4d3b234..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082_image086.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082_image087.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082_image087.jpg
deleted file mode 100644
index 5a69aab..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0082_image087.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0083.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0083.html
deleted file mode 100644
index c3e538d..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0083.html
+++ /dev/null
@@ -1,127 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Featherweight Extensions – Example ">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="787"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>60</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s805890" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s805890" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Featherweight Extensions – Example </div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s805898"
-  type="#_x0000_m32775" style='position:absolute;left:146.375pt;top:206.875pt;
-  width:420.75pt;height:173.25pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0083_image043.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><o:OLEObject Type="Embed"
-  ProgID="Paint.Picture" ShapeID="_x0000_s805898" DrawAspect="Content"
-  ObjectID="5">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s805898"
- src="slide0083_image044.jpg" style='position:absolute;top:38.25%;left:20.41%;
- width:58.42%;height:32.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0083_image043.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0083_image043.png
deleted file mode 100644
index f3c2a63..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0083_image043.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0083_image044.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0083_image044.jpg
deleted file mode 100644
index c66b92a..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0083_image044.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0084.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0084.html
deleted file mode 100644
index 6677a88..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0084.html
+++ /dev/null
@@ -1,170 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Featherweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="790"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>61</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s808962" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s808964" style='position:absolute;
-  left:12.125pt;top:107.875pt;width:707.875pt;height:251.625pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s808962" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Featherweight Extensions – Example</div>
- <div v:shape="_x0000_s808964" class=O>
- <div style='position:absolute;top:20.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>org.eclipse.uml2.uml.Package
- testSuite = UMLFactory.</span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;color:black;mso-color-index:
- 0'><i>eINSTANCE</i></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:67%;color:black;mso-color-index:0'>.createPackage();&#13;</span></div>
- <div style='position:absolute;top:23.5%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>resource.getContents().add(testSuite);&#13;</span></div>
- <div style='position:absolute;top:26.0%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:28.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testSuite.addKeyword(&quot;testSuite&quot;);&#13;</span></div>
- <div style='position:absolute;top:31.5%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testSuite.setName(&quot;FeatherweightTests&quot;);&#13;</span></div>
- <div style='position:absolute;top:34.0%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <span style='position:absolute;top:36.75%;left:2.62%;width:110.11%;height:
- 2.75%'><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>org.eclipse.uml2.uml.Class
- testContext = testSuite.createOwnedClass(&quot;FeatherweightExample&quot;, </span></span><span
- style='position:absolute;top:39.5%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'><b>false</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>);&#13;</span></span>
- <div style='position:absolute;top:42.0%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testContext.addKeyword(&quot;testContext&quot;);&#13;</span></div>
- <div style='position:absolute;top:44.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:47.25%;left:2.62%;width:100.56%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>Operation testCase =
- testContext.createOwnedOperation(&quot;testExtension&quot;, </span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'><b>null</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>, </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;color:black;
- mso-color-index:0'><b>null</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;color:black;mso-color-index:
- 0'>);&#13;</span></div>
- <div style='position:absolute;top:50.0%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testCase.addKeyword(&quot;testCase&quot;);&#13;</span></div>
- <div style='position:absolute;top:52.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:55.25%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>Comment objective =
- testCase.createOwnedComment();&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>objective.addKeyword(&quot;objective&quot;);&#13;</span></div>
- <div style='position:absolute;top:60.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>objective.getAnnotatedElements().add(testCase);&#13;</span></div>
- <div style='position:absolute;top:63.25%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>objective.setBody(&quot;Test
- featherweight extension of UML2.&quot;);</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0085.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0085.html
deleted file mode 100644
index 3506899..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0085.html
+++ /dev/null
@@ -1,213 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Featherweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="792"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>62</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s811010" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s811012" style='position:absolute;
-  left:12.125pt;top:107.875pt;width:707.875pt;height:283.25pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s811010" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Featherweight Extensions – Example</div>
- <div v:shape="_x0000_s811012" class=O>
- <div style='position:absolute;top:20.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>&lt;?xml version=&quot;1.0&quot;
- encoding=&quot;UTF-8&quot;?&gt;&#13;</span></div>
- <span style='position:absolute;top:23.0%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>&lt;uml:Package
- xmi:version=&quot;2.1&quot;
- xmlns:xmi=&quot;http://schema.omg.org/spec/XMI/2.1&quot; </span></span><span
- style='position:absolute;top:25.25%;left:2.62%;width:109.17%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>xmlns:uml=&quot;http://www.eclipse.org/uml2/2.0.0/UML&quot;
- xmi:id=&quot;_FaMfEMjWEduc9_1RRfdLXw&quot;
- name=&quot;FeatherweightTests&quot;&gt;&#13;</span></span>
- <div style='position:absolute;top:27.5%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span style='mso-spacerun:yes'> 
- </span>&lt;eAnnotations xmi:id=&quot;_FapLAMjWEduc9_1RRfdLXw&quot;
- source=&quot;http://www.eclipse.org/uml2/2.0.0/UML&quot;&gt;&#13;</span></div>
- <div style='position:absolute;top:29.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>&lt;details
- xmi:id=&quot;_FapLAcjWEduc9_1RRfdLXw&quot; key=&quot;testSuite&quot;/&gt;&#13;</span></div>
- <div style='position:absolute;top:31.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span style='mso-spacerun:yes'> 
- </span>&lt;/eAnnotations&gt;&#13;</span></div>
- <div style='position:absolute;top:34.0%;left:2.62%;width:101.12%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span style='mso-spacerun:yes'> 
- </span>&lt;packagedElement xmi:type=&quot;uml:Class&quot;
- xmi:id=&quot;_Fa8tAMjWEduc9_1RRfdLXw&quot;
- name=&quot;FeatherweightExample&quot;&gt;&#13;</span></div>
- <div style='position:absolute;top:36.25%;left:2.62%;width:98.12%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>&lt;eAnnotations
- xmi:id=&quot;_FbF28MjWEduc9_1RRfdLXw&quot;
- source=&quot;http://www.eclipse.org/uml2/2.0.0/UML&quot;&gt;&#13;</span></div>
- <div style='position:absolute;top:38.5%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>      </span>&lt;details
- xmi:id=&quot;_FbF28cjWEduc9_1RRfdLXw&quot;
- key=&quot;testContext&quot;/&gt;&#13;</span></div>
- <div style='position:absolute;top:40.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>&lt;/eAnnotations&gt;&#13;</span></div>
- <div style='position:absolute;top:43.0%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>&lt;ownedOperation
- xmi:id=&quot;_FbF28sjWEduc9_1RRfdLXw&quot;
- name=&quot;testExtension&quot;&gt;&#13;</span></div>
- <div style='position:absolute;top:45.25%;left:2.62%;width:100.18%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>      </span>&lt;eAnnotations
- xmi:id=&quot;_FbF288jWEduc9_1RRfdLXw&quot;
- source=&quot;http://www.eclipse.org/uml2/2.0.0/UML&quot;&gt;&#13;</span></div>
- <div style='position:absolute;top:47.5%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>        </span>&lt;details
- xmi:id=&quot;_FbPn8MjWEduc9_1RRfdLXw&quot; key=&quot;testCase&quot;/&gt;&#13;</span></div>
- <div style='position:absolute;top:49.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>      </span>&lt;/eAnnotations&gt;&#13;</span></div>
- <div style='position:absolute;top:51.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>      </span>&lt;ownedComment
- xmi:id=&quot;_FbPn8cjWEduc9_1RRfdLXw&quot;
- annotatedElement=&quot;_FbF28sjWEduc9_1RRfdLXw&quot;&gt;&#13;</span></div>
- <div style='position:absolute;top:54.0%;left:2.62%;width:102.24%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>        </span>&lt;eAnnotations
- xmi:id=&quot;_FbPn8sjWEduc9_1RRfdLXw&quot;
- source=&quot;http://www.eclipse.org/uml2/2.0.0/UML&quot;&gt;&#13;</span></div>
- <div style='position:absolute;top:56.25%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>          </span>&lt;details
- xmi:id=&quot;_FbPn88jWEduc9_1RRfdLXw&quot; key=&quot;objective&quot;/&gt;&#13;</span></div>
- <div style='position:absolute;top:58.5%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>        </span>&lt;/eAnnotations&gt;&#13;</span></div>
- <div style='position:absolute;top:60.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>        </span>&lt;body&gt;Test featherweight
- extension of UML2.&lt;/body&gt;&#13;</span></div>
- <div style='position:absolute;top:63.0%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>      </span>&lt;/ownedComment&gt;&#13;</span></div>
- <div style='position:absolute;top:65.25%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>&lt;/ownedOperation&gt;&#13;</span></div>
- <div style='position:absolute;top:67.5%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span style='mso-spacerun:yes'> 
- </span>&lt;/packagedElement&gt;&#13;</span></div>
- <div style='position:absolute;top:69.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>&lt;/uml:Package&gt;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0086.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0086.html
deleted file mode 100644
index cd6f0ec..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0086.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Lightweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="797"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>66</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s816130" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s816130" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Lightweight Extensions – Example</div>
- <v:shape id="_x0000_s816140" type="#_x0000_t75" style='position:absolute;
-  left:117.75pt;top:137.125pt;width:484.5pt;height:303.75pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0086_image046.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s816140"
- src="slide0086_image047.gif" style='position:absolute;top:25.5%;left:16.29%;
- width:67.22%;height:56.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0086_image046.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0086_image046.png
deleted file mode 100644
index 2b7cde4..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0086_image046.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0086_image047.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0086_image047.gif
deleted file mode 100644
index a2bf997..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0086_image047.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087.html
deleted file mode 100644
index 1cca729..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087.html
+++ /dev/null
@@ -1,113 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Lightweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="802"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>68</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s821250" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s821250" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Lightweight Extensions – Example</div>
- <v:shape id="_x0000_s821258" type="#_x0000_t75" style='position:absolute;
-  left:57.125pt;top:332.375pt;width:605.875pt;height:53.25pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0087_image050.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s821258" DrawAspect="Content" ObjectID="10">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s821258"
- src="slide0087_image051.jpg" style='position:absolute;top:61.5%;left:7.86%;
- width:84.08%;height:9.75%'><![endif]><v:shape id="_x0000_s821259" type="#_x0000_t75"
-  style='position:absolute;left:256.125pt;top:155.25pt;width:207.75pt;height:133.5pt'
-  fillcolor="#7889fb [4]" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0087_image052.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s821259"
- src="slide0087_image053.gif" style='position:absolute;top:28.75%;left:35.58%;
- width:28.83%;height:24.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087_image050.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087_image050.png
deleted file mode 100644
index 299e6fa..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087_image050.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087_image051.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087_image051.jpg
deleted file mode 100644
index d2c6fcb..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087_image051.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087_image052.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087_image052.png
deleted file mode 100644
index 64bba2d..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087_image052.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087_image053.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087_image053.gif
deleted file mode 100644
index df34f80..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0087_image053.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088.html
deleted file mode 100644
index 1bee219..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088.html
+++ /dev/null
@@ -1,138 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Lightweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="806"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>69</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s825346" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s825346" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Lightweight Extensions – Example</div>
- <p:shaperange href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s825348"
-  type="#_x0000_m32775" style='position:absolute;left:146pt;top:146.25pt;
-  width:421.5pt;height:106.5pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]"
-  strokeweight=".75pt">
-  <v:fill opacity="1" color2="black [0]" o:opacity2="1" rotate="f"
-   o:detectmouseclick="f" type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" linestyle="single"
-   joinstyle="miter" endcap="flat" o:forcedash="f"/>
-  <v:imagedata src="slide0088_image054.png" o:title=""/>
-  <v:shadow on="f" color="#ccf [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><o:OLEObject Type="Embed"
-  ProgID="Paint.Picture" ShapeID="_x0000_s825348" DrawAspect="Content"
-  ObjectID="6">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s825348"
- src="slide0088_image055.jpg" style='position:absolute;top:27.0%;left:20.22%;
- width:58.61%;height:19.75%'><![endif]><v:shape id="_x0000_s825354" type="#_x0000_t75"
-  style='position:absolute;left:91.75pt;top:311pt;width:546.625pt;height:54pt'
-  fillcolor="#7889fb [4]" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0088_image056.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s825354" DrawAspect="Content" ObjectID="9">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s825354"
- src="slide0088_image057.jpg" style='position:absolute;top:57.5%;left:12.73%;
- width:75.84%;height:10.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088_image054.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088_image054.png
deleted file mode 100644
index ba034cc..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088_image054.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088_image055.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088_image055.jpg
deleted file mode 100644
index aebccb4..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088_image055.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088_image056.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088_image056.png
deleted file mode 100644
index 8d05453..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088_image056.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088_image057.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088_image057.jpg
deleted file mode 100644
index d6ca4e6..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0088_image057.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0089.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0089.html
deleted file mode 100644
index eea9ee1..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0089.html
+++ /dev/null
@@ -1,213 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Lightweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="814"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>70</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s833538" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s833540" style='position:absolute;
-  left:12.125pt;top:107.875pt;width:707.875pt;height:366.625pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s833538" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Lightweight Extensions – Example</div>
- <div v:shape="_x0000_s833540" class=O>
- <div style='position:absolute;top:20.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>org.eclipse.uml2.uml.Package
- testSuite = UMLFactory.</span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;color:black;mso-color-index:
- 0'><i>eINSTANCE</i></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:67%;color:black;mso-color-index:0'>.createPackage();&#13;</span></div>
- <div style='position:absolute;top:23.5%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>resource.getContents().add(testSuite);&#13;</span></div>
- <div style='position:absolute;top:26.0%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <span style='position:absolute;top:28.75%;left:2.62%;width:106.55%;height:
- 2.75%'><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>Profile lightweightProfile =
- (Profile) UMLUtil.</span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:67%;color:black;mso-color-index:0'><i>load</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>(resourceSet, URI.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'><i>createURI</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>(args[1]), </span></span><span
- style='position:absolute;top:31.5%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>UMLPackage.Literals.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'><i>PROFILE</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>);&#13;</span></span>
- <div style='position:absolute;top:34.0%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testSuite.applyProfile(lightweightProfile);&#13;</span></div>
- <div style='position:absolute;top:36.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:39.5%;left:2.62%;width:101.68%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>Stereotype testSuiteStereotype =
- lightweightProfile.getOwnedStereotype(&quot;TestSuite&quot;);&#13;</span></div>
- <div style='position:absolute;top:42.0%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testSuite.applyStereotype(testSuiteStereotype);&#13;</span></div>
- <div style='position:absolute;top:44.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testSuite.setName(&quot;LightweightTests&quot;);&#13;</span></div>
- <div style='position:absolute;top:47.25%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <span style='position:absolute;top:50.0%;left:2.62%;width:107.67%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>org.eclipse.uml2.uml.Class
- testContext = testSuite.createOwnedClass(&quot;LightweightExample&quot;, </span></span><span
- style='position:absolute;top:52.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'><b>false</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>);&#13;</span></span>
- <div style='position:absolute;top:55.25%;left:2.62%;width:106.55%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>Stereotype testContextStereotype
- = lightweightProfile.getOwnedStereotype(&quot;TestContext&quot;);&#13;</span></div>
- <div style='position:absolute;top:58.0%;left:2.62%;width:113.85%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>EObject
- testContextStereotypeApplication =
- testContext.applyStereotype(testContextStereotype);&#13;</span></div>
- <div style='position:absolute;top:60.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:63.25%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>@SuppressWarnings(&quot;unchecked&quot;)&#13;</span></div>
- <div style='position:absolute;top:66.0%;left:2.62%;width:107.67%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>EList&lt;EObject&gt; tests =
- (EList&lt;EObject&gt;) testSuite.getValue(testSuiteStereotype,
- &quot;tests&quot;);&#13;</span></div>
- <div style='position:absolute;top:68.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>tests.add(testContextStereotypeApplication);&#13;</span></div>
- <div style='position:absolute;top:71.25%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:74.0%;left:2.62%;width:100.56%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>Operation testCase =
- testContext.createOwnedOperation(&quot;testExtension&quot;, </span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'><b>null</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>, </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;color:black;
- mso-color-index:0'><b>null</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:67%;color:black;mso-color-index:
- 0'>);&#13;</span></div>
- <div style='position:absolute;top:76.75%;left:2.62%;width:99.25%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>Stereotype testCaseStereotype =
- lightweightProfile.getOwnedStereotype(&quot;TestCase&quot;);&#13;</span></div>
- <div style='position:absolute;top:79.25%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testCase.applyStereotype(testCaseStereotype);&#13;</span></div>
- <div style='position:absolute;top:82.0%;left:2.62%;width:100.56%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testCase.setValue(testCaseStereotype,
- &quot;context&quot;, testContextStereotypeApplication);&#13;</span></div>
- <div style='position:absolute;top:84.75%;left:2.62%;width:108.98%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testCase.setValue(testCaseStereotype,
- &quot;objective&quot;, &quot;Test lightweight extension of UML2.&quot;);</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0090.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0090.html
deleted file mode 100644
index 59336c5..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0090.html
+++ /dev/null
@@ -1,215 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Lightweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="816"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>71</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s835586" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s835588" style='position:absolute;
-  left:12.125pt;top:107.875pt;width:707.875pt;height:331.25pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s835586" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Lightweight Extensions – Example</div>
- <div v:shape="_x0000_s835588" class=O>
- <div style='position:absolute;top:20.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>&lt;?xml version=&quot;1.0&quot;
- encoding=&quot;UTF-8&quot;?&gt;&#13;</span></div>
- <span style='position:absolute;top:23.0%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>&lt;xmi:XMI
- xmi:version=&quot;2.1&quot;
- xmlns:xmi=&quot;http://schema.omg.org/spec/XMI/2.1&quot; </span></span><span
- style='position:absolute;top:25.25%;left:2.62%;width:105.24%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot;
- xmlns:ecore=&quot;http://www.eclipse.org/emf/2002/Ecore&quot; </span></span><span
- style='position:absolute;top:27.5%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>xmlns:lightweight=&quot;http://www.eclipse.org/uml2/schemas/Lightweight/0&quot;
- </span></span><span style='position:absolute;top:29.75%;left:2.62%;width:96.44%;
- height:2.25%'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:56%;color:black;mso-color-index:0'>xmlns:uml=&quot;http://www.eclipse.org/uml2/2.0.0/UML&quot;
- </span></span><span style='position:absolute;top:31.75%;left:2.62%;width:101.12%;
- height:2.25%'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:56%;color:black;mso-color-index:0'>xsi:schemaLocation=&quot;http://www.eclipse.org/uml2/schemas/Lightweight/0
- file:/C:/Workspaces/eclipsecon-</span></span><span style='position:absolute;
- top:34.0%;left:2.62%;width:99.25%;height:2.25%'><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:56%;color:black;mso-color-index:
- 0'>workspace/org.eclipse.uml2.testing.examples/model/Lightweight.profile.uml#_wHaGUce2EduDHe9ygcb02A&quot;&gt;&#13;</span></span>
- <div style='position:absolute;top:36.25%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span style='mso-spacerun:yes'> 
- </span>&lt;uml:Package xmi:id=&quot;_2BcycMjgEdulw4SUeeKLbA&quot;
- name=&quot;LightweightTests&quot;&gt;&#13;</span></div>
- <div style='position:absolute;top:38.5%;left:2.62%;width:101.12%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>&lt;packagedElement
- xmi:type=&quot;uml:Class&quot; xmi:id=&quot;_2a7pccjgEdulw4SUeeKLbA&quot;
- name=&quot;LightweightExample&quot;&gt;&#13;</span></div>
- <div style='position:absolute;top:40.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>      </span>&lt;ownedOperation
- xmi:id=&quot;_2a7pc8jgEdulw4SUeeKLbA&quot;
- name=&quot;testExtension&quot;/&gt;&#13;</span></div>
- <div style='position:absolute;top:43.0%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>&lt;/packagedElement&gt;&#13;</span></div>
- <div style='position:absolute;top:45.25%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>&lt;profileApplication
- xmi:id=&quot;_2NOkoMjgEdulw4SUeeKLbA&quot;&gt;&#13;</span></div>
- <div style='position:absolute;top:47.5%;left:2.62%;width:100.18%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>      </span>&lt;eAnnotations
- xmi:id=&quot;_2NrQkMjgEdulw4SUeeKLbA&quot;
- source=&quot;http://www.eclipse.org/uml2/2.0.0/UML&quot;&gt;&#13;</span></div>
- <span style='position:absolute;top:49.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>        </span>&lt;references
- xmi:type=&quot;ecore:EPackage&quot; href=&quot;file:/C:/Workspaces/eclipsecon-</span></span><span
- style='position:absolute;top:51.75%;left:2.62%;width:100.18%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>workspace/org.eclipse.uml2.testing.examples/model/Lightweight.profile.uml#_wHaGUce2EduDHe9ygcb02A&quot;/&gt;&#13;</span></span>
- <div style='position:absolute;top:54.0%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>      </span>&lt;/eAnnotations&gt;&#13;</span></div>
- <span style='position:absolute;top:56.25%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>      </span>&lt;appliedProfile
- href=&quot;file:/C:/Workspaces/eclipsecon-</span></span><span
- style='position:absolute;top:58.5%;left:2.62%;width:100.18%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>workspace/org.eclipse.uml2.testing.examples/model/Lightweight.profile.uml#_BPnx0MdyEduKELaltNIBOA&quot;/&gt;&#13;</span></span>
- <div style='position:absolute;top:60.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>&lt;/profileApplication&gt;&#13;</span></div>
- <div style='position:absolute;top:63.0%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span style='mso-spacerun:yes'> 
- </span>&lt;/uml:Package&gt;&#13;</span></div>
- <span style='position:absolute;top:65.25%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span style='mso-spacerun:yes'> 
- </span>&lt;lightweight:TestSuite xmi:id=&quot;_2a7pcMjgEdulw4SUeeKLbA&quot;
- base_Package=&quot;_2BcycMjgEdulw4SUeeKLbA&quot; </span></span><span
- style='position:absolute;top:67.5%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>tests=&quot;_2a7pcsjgEdulw4SUeeKLbA&quot;/&gt;&#13;</span></span><span
- style='position:absolute;top:69.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span style='mso-spacerun:yes'> 
- </span>&lt;lightweight:TestContext xmi:id=&quot;_2a7pcsjgEdulw4SUeeKLbA&quot;
- base_Class=&quot;_2a7pccjgEdulw4SUeeKLbA&quot; </span></span><span
- style='position:absolute;top:71.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>testCases=&quot;_2a7pdMjgEdulw4SUeeKLbA&quot;/&gt;&#13;</span></span><span
- style='position:absolute;top:74.0%;left:2.62%;width:113.1%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span style='mso-spacerun:yes'> 
- </span>&lt;lightweight:TestCase xmi:id=&quot;_2a7pdMjgEdulw4SUeeKLbA&quot;
- base_Operation=&quot;_2a7pc8jgEdulw4SUeeKLbA&quot; objective=&quot;Test </span></span><span
- style='position:absolute;top:76.25%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>lightweight extension of
- UML2.&quot; context=&quot;_2a7pcsjgEdulw4SUeeKLbA&quot;/&gt;&#13;</span></span>
- <div style='position:absolute;top:78.5%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>&lt;/xmi:XMI&gt;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0091.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0091.html
deleted file mode 100644
index b90c530..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0091.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Middleweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="818"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>75</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s837634" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s837634" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Middleweight Extensions – Example</div>
- <v:shape id="_x0000_s837637" type="#_x0000_t75" style='position:absolute;
-  left:94.875pt;top:136.5pt;width:506.25pt;height:315pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0091_image059.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s837637"
- src="slide0091_image060.gif" style='position:absolute;top:25.25%;left:13.1%;
- width:70.22%;height:58.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0091_image059.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0091_image059.png
deleted file mode 100644
index 93c0c65..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0091_image059.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0091_image060.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0091_image060.gif
deleted file mode 100644
index 8d4cf7c..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0091_image060.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092.html
deleted file mode 100644
index 04a60ba..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092.html
+++ /dev/null
@@ -1,116 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Middleweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="821"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>80</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s840706" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s840706" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Middleweight Extensions – Example</div>
- <v:shape id="_x0000_s840708" type="#_x0000_t75" style='position:absolute;
-  left:150pt;top:126.375pt;width:420pt;height:53.25pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0092_image067.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s840708" DrawAspect="Content" ObjectID="12">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s840708"
- src="slide0092_image068.jpg" style='position:absolute;top:23.5%;left:20.78%;
- width:58.42%;height:9.75%'><![endif]><v:shape id="_x0000_s840709" type="#_x0000_t75"
-  style='position:absolute;left:77.75pt;top:192.625pt;width:564.625pt;height:294pt'
-  fillcolor="#7889fb [4]" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0092_image069.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s840709" DrawAspect="Content" ObjectID="13">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s840709"
- src="slide0092_image070.jpg" style='position:absolute;top:35.75%;left:10.86%;
- width:78.46%;height:54.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092_image067.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092_image067.png
deleted file mode 100644
index 973467a..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092_image067.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092_image068.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092_image068.jpg
deleted file mode 100644
index 5669ef3..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092_image068.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092_image069.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092_image069.png
deleted file mode 100644
index c1ec2dc..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092_image069.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092_image070.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092_image070.jpg
deleted file mode 100644
index 352ed86..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0092_image070.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0093.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0093.html
deleted file mode 100644
index 82aaea7..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0093.html
+++ /dev/null
@@ -1,132 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Middleweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="823"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>81</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s842754" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s842756" style='position:absolute;
-  left:12.125pt;top:107.875pt;width:707.875pt;height:107.875pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s842754" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Middleweight Extensions – Example</div>
- <div v:shape="_x0000_s842756" class=O>
- <div style='position:absolute;top:20.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>TestSuite testSuite =
- MiddleweightFactory.</span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:67%;color:black;mso-color-index:0'><i>eINSTANCE</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>.createTestSuite();&#13;</span></div>
- <div style='position:absolute;top:23.5%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>resource.getContents().add(testSuite);&#13;</span></div>
- <div style='position:absolute;top:26.0%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:28.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testSuite.setName(&quot;MiddleweightTests&quot;);&#13;</span></div>
- <div style='position:absolute;top:31.5%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <span style='position:absolute;top:34.0%;left:2.62%;width:98.12%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testSuite.createTest(&quot;MiddleweightExample&quot;).createTestCase(&quot;testExtension&quot;,
- </span><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'><b>null</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>, </span></span><span
- style='position:absolute;top:36.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'><b>null</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>).setObjective(&quot;Test
- middleweight extension of UML2.&quot;);</span></span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0094.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0094.html
deleted file mode 100644
index 158e142..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0094.html
+++ /dev/null
@@ -1,143 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Middleweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="825"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>82</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s844802" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s844804" style='position:absolute;
-  left:12.125pt;top:107.875pt;width:707.875pt;height:127.25pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s844802" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Middleweight Extensions – Example</div>
- <div v:shape="_x0000_s844804" class=O>
- <div style='position:absolute;top:20.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>&lt;?xml version=&quot;1.0&quot;
- encoding=&quot;UTF-8&quot;?&gt;&#13;</span></div>
- <span style='position:absolute;top:23.0%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>&lt;middleweight:TestSuite
- xmi:version=&quot;2.1&quot;
- xmlns:xmi=&quot;http://schema.omg.org/spec/XMI/2.1&quot; </span></span><span
- style='position:absolute;top:25.25%;left:2.62%;width:100.18%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>xmlns:middleweight=&quot;http://www.eclipse.org/uml2/2.1.0/Middleweight&quot;
- xmi:id=&quot;_LC9cYMjsEduSrrHOtGsqmA&quot; </span></span><span
- style='position:absolute;top:27.5%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>name=&quot;MiddleweightTests&quot;&gt;&#13;</span></span><span
- style='position:absolute;top:29.75%;left:2.62%;width:114.23%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span style='mso-spacerun:yes'> 
- </span>&lt;packagedElement xmi:type=&quot;middleweight:TestContext&quot;
- xmi:id=&quot;_LDj5UMjsEduSrrHOtGsqmA&quot;
- name=&quot;MiddleweightExample&quot; </span></span><span style='position:absolute;
- top:31.75%;left:2.62%;width:96.44%;height:2.25%'><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:56%;color:black;
- mso-color-index:0'>testCase=&quot;_LEAlQMjsEduSrrHOtGsqmA&quot;&gt;&#13;</span></span><span
- style='position:absolute;top:34.0%;left:2.62%;width:106.17%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>&lt;ownedOperation
- xmi:type=&quot;middleweight:TestCase&quot;
- xmi:id=&quot;_LEAlQMjsEduSrrHOtGsqmA&quot; name=&quot;testExtension&quot; </span></span><span
- style='position:absolute;top:36.25%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>objective=&quot;Test middleweight
- extension of UML2.&quot; context=&quot;_LDj5UMjsEduSrrHOtGsqmA&quot;/&gt;&#13;</span></span>
- <div style='position:absolute;top:38.5%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span style='mso-spacerun:yes'> 
- </span>&lt;/packagedElement&gt;&#13;</span></div>
- <div style='position:absolute;top:40.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>&lt;/middleweight:TestSuite&gt;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0096.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0096.html
deleted file mode 100644
index 8872f54..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0096.html
+++ /dev/null
@@ -1,105 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="829"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>87</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s848898" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s848898" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions – Example</div>
- <v:shape id="_x0000_s848901" type="#_x0000_t75" style='position:absolute;
-  left:149.625pt;top:107.875pt;width:420.75pt;height:374.25pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0096_image074.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s848901" DrawAspect="Content" ObjectID="16">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s848901"
- src="slide0096_image075.jpg" style='position:absolute;top:20.0%;left:20.78%;
- width:58.42%;height:69.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0096_image074.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0096_image074.png
deleted file mode 100644
index 4f2fe1d..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0096_image074.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0096_image075.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0096_image075.jpg
deleted file mode 100644
index 083e50a..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0096_image075.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0097.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0097.html
deleted file mode 100644
index 076c3fa..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0097.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="831"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>86</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s850946" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s850946" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions – Example</div>
- <v:shape id="_x0000_s850948" type="#_x0000_t75" style='position:absolute;
-  left:86.25pt;top:107.875pt;width:547.5pt;height:384pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0097_image072.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s850948"
- src="slide0097_image073.gif" style='position:absolute;top:20.0%;left:11.98%;
- width:76.02%;height:71.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0097_image072.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0097_image072.png
deleted file mode 100644
index e014e7d..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0097_image072.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0097_image073.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0097_image073.gif
deleted file mode 100644
index 2466af4..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0097_image073.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0098.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0098.html
deleted file mode 100644
index f428a78..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0098.html
+++ /dev/null
@@ -1,105 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="833"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>89</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s852994" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s852994" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions – Example</div>
- <v:shape id="_x0000_s852996" type="#_x0000_t75" style='position:absolute;
-  left:136.25pt;top:107.875pt;width:453.25pt;height:378.125pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0098_image078.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s852996" DrawAspect="Content" ObjectID="17">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s852996"
- src="slide0098_image079.jpg" style='position:absolute;top:20.0%;left:18.91%;
- width:62.92%;height:70.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0098_image078.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0098_image078.png
deleted file mode 100644
index 64837a7..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0098_image078.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0098_image079.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0098_image079.jpg
deleted file mode 100644
index 891ac59..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0098_image079.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0099.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0099.html
deleted file mode 100644
index 2e9cbc4..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0099.html
+++ /dev/null
@@ -1,126 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="835"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>96</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s855042" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s855044" style='position:absolute;
-  left:12.125pt;top:107.875pt;width:707.875pt;height:107.875pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s855042" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions – Example</div>
- <div v:shape="_x0000_s855044" class=O>
- <div style='position:absolute;top:20.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>TestSuite testSuite =
- HeavyweightFactory.</span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:67%;color:black;mso-color-index:0'><i>eINSTANCE</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>.createTestSuite();&#13;</span></div>
- <div style='position:absolute;top:23.5%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>resource.getContents().add(testSuite);&#13;</span></div>
- <div style='position:absolute;top:26.0%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:28.75%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testSuite.setName(&quot;HeavyweightTests&quot;);&#13;</span></div>
- <div style='position:absolute;top:31.5%;left:2.62%;width:96.44%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <span style='position:absolute;top:34.0%;left:2.62%;width:111.42%;height:2.75%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:67%;color:black;mso-color-index:0'>testSuite.createTest(&quot;HeavyweightExample&quot;).createTestCase(&quot;testExtension&quot;,
- &quot;Test heavyweight </span></span><span style='position:absolute;
- top:36.75%;left:2.62%;width:96.44%;height:2.75%'><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:67%;color:black;
- mso-color-index:0'>extension of UML2.&quot;);</span></span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0100.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0100.html
deleted file mode 100644
index 4a34186..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0100.html
+++ /dev/null
@@ -1,138 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="837"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>97</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s857090" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s857093" style='position:absolute;
-  left:12.125pt;top:110.75pt;width:707.875pt;height:115.25pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s857090" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions – Example</div>
- <div v:shape="_x0000_s857093" class=O>
- <div style='position:absolute;top:21.25%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>&lt;?xml version=&quot;1.0&quot;
- encoding=&quot;UTF-8&quot;?&gt;&#13;</span></div>
- <span style='position:absolute;top:23.5%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>&lt;heavyweight:TestSuite
- xmlns:xsi=&quot;http://www.w3.org/2001/XMLSchema-instance&quot; </span></span><span
- style='position:absolute;top:25.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>xmlns:heavyweight=&quot;http://www.eclipse.org/uml2/2.1.0/Heavyweight&quot;
- name=&quot;HeavyweightTests&quot;&gt;&#13;</span></span><span
- style='position:absolute;top:28.0%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span style='mso-spacerun:yes'> 
- </span>&lt;ownedType xsi:type=&quot;heavyweight:TestContext&quot;
- name=&quot;HeavyweightExample&quot; </span></span><span style='position:absolute;
- top:30.25%;left:2.62%;width:96.44%;height:2.25%'><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:56%;color:black;
- mso-color-index:0'>testCase=&quot;#//@ownedType.0/@ownedOperation.0&quot;&gt;&#13;</span></span><span
- style='position:absolute;top:32.5%;left:2.62%;width:113.1%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'>    </span>&lt;ownedOperation
- xsi:type=&quot;heavyweight:TestCase&quot; name=&quot;testExtension&quot;
- objective=&quot;Test heavyweight extension of </span></span><span
- style='position:absolute;top:34.5%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>UML2.&quot;
- context=&quot;#//@ownedType.0&quot;/&gt;&#13;</span></span>
- <div style='position:absolute;top:36.75%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'><span style='mso-spacerun:yes'> 
- </span>&lt;/ownedType&gt;&#13;</span></div>
- <div style='position:absolute;top:39.0%;left:2.62%;width:96.44%;height:2.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:56%;color:black;mso-color-index:0'>&lt;/heavyweight:TestSuite&gt;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0101.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0101.html
deleted file mode 100644
index a78ecbd..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0101.html
+++ /dev/null
@@ -1,105 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Middleweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="840"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>78</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s860162" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s860162" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Middleweight Extensions – Example</div>
- <v:shape id="_x0000_s860165" type="#_x0000_t75" style='position:absolute;
-  left:247.5pt;top:141.25pt;width:225pt;height:295.5pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0101_image065.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s860165" DrawAspect="Content" ObjectID="20">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s860165"
- src="slide0101_image066.jpg" style='position:absolute;top:26.25%;left:34.45%;
- width:31.27%;height:54.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0101_image065.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0101_image065.png
deleted file mode 100644
index 3b463a4..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0101_image065.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0101_image066.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0101_image066.jpg
deleted file mode 100644
index 66fb5a7..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0101_image066.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0102.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0102.html
deleted file mode 100644
index 4f75183..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0102.html
+++ /dev/null
@@ -1,239 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Middleweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="842"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>79</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s862210" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s862212" style='position:absolute;
-  left:12.125pt;top:121.625pt;width:707.875pt;height:359pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s862210" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Middleweight Extensions – Example</div>
- <div v:shape="_x0000_s862212" class=O>
- <div style='position:absolute;top:23.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <span style='position:absolute;top:26.5%;left:2.62%;width:100.74%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* The array of superset feature identifiers
- for the '{@link #getTests() </span></span><span style='position:absolute;
- top:29.5%;left:2.62%;width:96.44%;height:3.25%'><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>&lt;em&gt;Test&lt;/em&gt;}' reference list.&#13;</span></span>
- <div style='position:absolute;top:32.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:35.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@see</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'> #getTests()&#13;</span></div>
- <div style='position:absolute;top:42.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:45.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@ordered</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:48.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <span style='position:absolute;top:51.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>protected</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>static</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>final</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>int</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>[] </span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><i>TEST_ESUPERSETS</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> = </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>new</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>int</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>[] </span></span><span
- style='position:absolute;top:54.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>{MiddleweightPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>TEST_SUITE__PACKAGED_ELEMENT</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>};&#13;</span></span>
- <div style='position:absolute;top:57.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:60.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <div style='position:absolute;top:63.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:69.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'> NOT&#13;</span></div>
- <div style='position:absolute;top:73.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <div style='position:absolute;top:76.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> EList&lt;TestContext&gt;
- getTests() {&#13;</span></div>
- <div style='position:absolute;top:79.25%;left:2.62%;width:100.74%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><b>new</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>
- DerivedSubsetEObjectEList&lt;TestContext&gt;(TestContext.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>class</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>,&#13;</span></div>
- <div style='position:absolute;top:82.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>this</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>, MiddleweightPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>TEST_SUITE__TEST</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>, </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><i>TEST_ESUPERSETS</i></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>);&#13;</span></div>
- <div style='position:absolute;top:85.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0103.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0103.html
deleted file mode 100644
index 52292ac..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0103.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Middleweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="846"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>77</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s866306" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s866306" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Middleweight Extensions – Example</div>
- <v:shape id="_x0000_s866309" type="#_x0000_t75" style='position:absolute;
-  left:220pt;top:107.875pt;width:273pt;height:371.25pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0103_image063.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s866309"
- src="slide0103_image064.jpg" style='position:absolute;top:20.0%;left:30.52%;
- width:37.82%;height:68.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0103_image063.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0103_image063.png
deleted file mode 100644
index 805c719..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0103_image063.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0103_image064.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0103_image064.jpg
deleted file mode 100644
index 356be18..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0103_image064.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0104.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0104.html
deleted file mode 100644
index 20b5d75..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0104.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="848"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>88</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s868354" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s868354" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions – Example</div>
- <v:shape id="_x0000_s868357" type="#_x0000_t75" style='position:absolute;
-  left:194.625pt;top:154.5pt;width:330.75pt;height:279pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0104_image076.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s868357"
- src="slide0104_image077.jpg" style='position:absolute;top:28.5%;left:26.96%;
- width:45.88%;height:51.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0104_image076.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0104_image076.png
deleted file mode 100644
index 7c15f55..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0104_image076.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0104_image077.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0104_image077.jpg
deleted file mode 100644
index 0460335..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0104_image077.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0105.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0105.html
deleted file mode 100644
index d3f9fba..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0105.html
+++ /dev/null
@@ -1,101 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="850"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>90</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s870402" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s870402" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions – Example</div>
- <v:shape id="_x0000_s870404" type="#_x0000_t75" style='position:absolute;
-  left:219.625pt;top:107.875pt;width:269.375pt;height:377pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0105_image080.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s870404"
- src="slide0105_image081.jpg" style='position:absolute;top:20.0%;left:30.52%;
- width:37.45%;height:69.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0105_image080.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0105_image080.png
deleted file mode 100644
index d13d617..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0105_image080.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0105_image081.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0105_image081.jpg
deleted file mode 100644
index 0048847..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0105_image081.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0106.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0106.html
deleted file mode 100644
index 5ee0653..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0106.html
+++ /dev/null
@@ -1,105 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<link rel=OLE-Object-Data href=oledata.mso>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="852"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>91</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s872450" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s872450" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions – Example</div>
- <v:shape id="_x0000_s872453" type="#_x0000_t75" style='position:absolute;
-  left:254.75pt;top:107.875pt;width:171.25pt;height:367.625pt' fillcolor="#7889fb [4]"
-  strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:imagedata src="slide0106_image082.png" o:title=""/>
-  <v:shadow color="#ccf [2]"/>
- </v:shape><o:OLEObject Type="Embed" ProgID="Paint.Picture"
-  ShapeID="_x0000_s872453" DrawAspect="Content" ObjectID="22">
-  <p:oleclientdata menuname="Bitmap Image" clipboardname="Bitmap Image"/></o:OLEObject>
- <![if !vml]><img border=0 v:shapes="_x0000_s872453"
- src="slide0106_image083.jpg" style='position:absolute;top:20.0%;left:35.39%;
- width:23.78%;height:68.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0106_image082.png b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0106_image082.png
deleted file mode 100644
index 0d7a894..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0106_image082.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0106_image083.jpg b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0106_image083.jpg
deleted file mode 100644
index b851184..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0106_image083.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0107.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0107.html
deleted file mode 100644
index 4659678..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0107.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="854"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>92</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s874498" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s874500" style='position:absolute;
-  left:12.125pt;top:165.375pt;width:707.875pt;height:258.5pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s874498" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions – Example</div>
- <div v:shape="_x0000_s874500" class=O>
- <div style='position:absolute;top:31.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <div style='position:absolute;top:34.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:37.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:40.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-model-doc --&gt;&#13;</span></div>
- <span style='position:absolute;top:43.75%;left:2.62%;width:111.79%;height:
- 3.25%'><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* The query isMultivalued() checks whether
- this multiplicity has an upper bound </span></span><span style='position:absolute;
- top:47.0%;left:2.62%;width:96.44%;height:3.25%'><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>greater than one.&#13;</span></span>
- <div style='position:absolute;top:50.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* upperBound()-&gt;notEmpty()&#13;</span></div>
- <div style='position:absolute;top:53.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* result = upperBound() &gt; 1&#13;</span></div>
- <div style='position:absolute;top:56.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-model-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:59.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'> NOT&#13;</span></div>
- <div style='position:absolute;top:62.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <div style='position:absolute;top:65.5%;left:2.62%;width:108.98%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>static</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>boolean</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>
- isMultivalued(MultiplicityElement multiplicityElement) {&#13;</span></div>
- <div style='position:absolute;top:68.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>int</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> upperBound = multiplicityElement.upperBound();&#13;</span></div>
- <div style='position:absolute;top:71.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> upperBound == -1 || upperBound &gt; 1;&#13;</span></div>
- <div style='position:absolute;top:74.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0108.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0108.html
deleted file mode 100644
index 1b2621b..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0108.html
+++ /dev/null
@@ -1,213 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="856"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>93</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s876546" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s876549" style='position:absolute;
-  left:12.125pt;top:120.125pt;width:707.875pt;height:359pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s876546" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions – Example</div>
- <div v:shape="_x0000_s876549" class=O>
- <div style='position:absolute;top:23.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <div style='position:absolute;top:26.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:29.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:32.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'> NOT&#13;</span></div>
- <div style='position:absolute;top:35.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <span style='position:absolute;top:38.5%;left:2.62%;width:104.86%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> Integer
- createUnlimitedNaturalFromString(EDataType eDataType, String </span></span><span
- style='position:absolute;top:41.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>initialValue) {&#13;</span></span><span
- style='position:absolute;top:44.75%;left:2.62%;width:114.6%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> initialValue == </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>null</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'> ? </span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>null</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> :
- (&quot;*&quot;.equals(initialValue) ? </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>new</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'> Integer(-</span></span><span
- style='position:absolute;top:47.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>1) : Integer.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>valueOf</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>(initialValue));&#13;</span></span>
- <div style='position:absolute;top:51.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>}&#13;</span></div>
- <div style='position:absolute;top:54.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:57.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <div style='position:absolute;top:60.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:63.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:66.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'> NOT&#13;</span></div>
- <div style='position:absolute;top:69.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <span style='position:absolute;top:72.75%;left:2.62%;width:102.05%;height:
- 3.25%'><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> String
- convertUnlimitedNaturalToString(EDataType eDataType, Object </span></span><span
- style='position:absolute;top:75.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>instanceValue) {&#13;</span></span><span
- style='position:absolute;top:78.75%;left:2.62%;width:114.6%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> instanceValue == </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>null</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'> ? </span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>null</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> : (((Integer)
- instanceValue).intValue() == </span></span><span style='position:absolute;
- top:82.0%;left:2.62%;width:96.44%;height:3.25%'><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>-1 ? &quot;*&quot; : instanceValue.toString());&#13;</span></span>
- <div style='position:absolute;top:85.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0109.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0109.html
deleted file mode 100644
index 55dc26c..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0109.html
+++ /dev/null
@@ -1,239 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions – Example">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="858"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>94</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s878594" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s878596" style='position:absolute;
-  left:12.125pt;top:120.625pt;width:707.875pt;height:359pt' filled="f"
-  fillcolor="#7889fb [4]" stroked="f" strokecolor="black [0]">
-  <v:fill color2="black [0]"/>
-  <v:shadow color="#ccf [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect>
- <div v:shape="_x0000_s878594" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions – Example</div>
- <div v:shape="_x0000_s878596" class=O>
- <div style='position:absolute;top:23.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <span style='position:absolute;top:26.25%;left:2.62%;width:100.74%;height:
- 3.25%'><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* The array of superset feature identifiers
- for the '{@link #getTests() </span></span><span style='position:absolute;
- top:29.25%;left:2.62%;width:96.44%;height:3.25%'><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'>&lt;em&gt;Test&lt;/em&gt;}' reference list.&#13;</span></span>
- <div style='position:absolute;top:32.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:35.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@see</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'> #getTests()&#13;</span></div>
- <div style='position:absolute;top:41.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:44.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@ordered</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:48.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <span style='position:absolute;top:51.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>protected</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>static</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>final</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>int</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>[] </span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><i>TEST_ESUPERSETS</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> = </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><b>new</b></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>int</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>[] </span></span><span
- style='position:absolute;top:54.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>{HeavyweightPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>TEST_SUITE__OWNED_TYPE</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>};&#13;</span></span>
- <div style='position:absolute;top:57.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0;display:none'>&#13;</span></div>
- <div style='position:absolute;top:60.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>/**&#13;</span></div>
- <div style='position:absolute;top:63.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- begin-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:66.5%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* &lt;!-- end-user-doc --&gt;&#13;</span></div>
- <div style='position:absolute;top:69.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>* </span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'><b>@generated</b></span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'> NOT&#13;</span></div>
- <div style='position:absolute;top:72.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><span
- style='mso-spacerun:yes'> </span>*/&#13;</span></div>
- <div style='position:absolute;top:75.75%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>public</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'> EList&lt;TestContext&gt;
- getTests() {&#13;</span></div>
- <div style='position:absolute;top:79.0%;left:2.62%;width:100.74%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b><span
- style='mso-spacerun:yes'>    </span>return</b></span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'> </span><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";font-size:78%;color:black;mso-color-index:0'><b>new</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>
- DerivedSubsetEObjectEList&lt;TestContext&gt;(TestContext.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>class</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>,&#13;</span></div>
- <div style='position:absolute;top:82.0%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><b>this</b></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>, HeavyweightPackage.</span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'><i>TEST_SUITE__TEST</i></span><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>, </span><span style='font-family:
- "Courier New";mso-ascii-font-family:"Courier New";font-size:78%;color:black;
- mso-color-index:0'><i>TEST_ESUPERSETS</i></span><span style='font-family:"Courier New";
- mso-ascii-font-family:"Courier New";font-size:78%;color:black;mso-color-index:
- 0'>);&#13;</span></div>
- <div style='position:absolute;top:85.25%;left:2.62%;width:96.44%;height:3.25%'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- font-size:78%;color:black;mso-color-index:0'>}</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0110.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0110.html
deleted file mode 100644
index 6ef796e..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0110.html
+++ /dev/null
@@ -1,393 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Featherweight Extensions – Pros/Cons">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="860"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>63</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s880642" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:group id="_x0000_s880678" style='position:absolute;
-  left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt' coordorigin="417,1119"
-  coordsize="4874,2458" o:tableproperties="3" o:tablelimits="34.125pt 34.125pt 34.125pt 34.125pt 34.25pt 34.125pt 34.125pt 34.125pt 34.125pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s880662" style='position:absolute;left:2854;top:3304;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880661" style='position:absolute;left:417;top:3304;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880660" style='position:absolute;left:2854;
-   top:3031;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880659" style='position:absolute;left:417;top:3031;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880658" style='position:absolute;left:2854;
-   top:2758;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880657" style='position:absolute;left:417;top:2758;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880656" style='position:absolute;left:2854;
-   top:2485;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880655" style='position:absolute;left:417;top:2485;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880654" style='position:absolute;left:2854;
-   top:2211;width:2437;height:274' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880653" style='position:absolute;left:417;top:2211;
-   width:2437;height:274' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880652" style='position:absolute;left:2854;
-   top:1938;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880651" style='position:absolute;left:417;top:1938;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880650" style='position:absolute;left:2854;
-   top:1665;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880649" style='position:absolute;left:417;top:1665;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880648" style='position:absolute;left:2854;
-   top:1392;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880647" style='position:absolute;left:417;top:1392;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880646" style='position:absolute;left:2854;
-   top:1119;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s880645" style='position:absolute;left:417;top:1119;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:line id="_x0000_s880663" style='position:absolute' from="417,1119"
-   to="5291,1119" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s880664" style='position:absolute' from="417,1392"
-   to="5291,1392" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s880665" style='position:absolute' from="417,1665"
-   to="5291,1665" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s880666" style='position:absolute' from="417,1938"
-   to="5291,1938" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s880667" style='position:absolute' from="417,2211"
-   to="5291,2211" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s880668" style='position:absolute' from="417,2485"
-   to="5291,2485" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s880669" style='position:absolute' from="417,2758"
-   to="5291,2758" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s880670" style='position:absolute' from="417,3031"
-   to="5291,3031" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s880671" style='position:absolute' from="417,3304"
-   to="5291,3304" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s880672" style='position:absolute' from="417,3577"
-   to="5291,3577" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s880673" style='position:absolute' from="417,1119"
-   to="417,3577" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s880674" style='position:absolute' from="2854,1119"
-   to="2854,3577" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s880675" style='position:absolute' from="5291,1119"
-   to="5291,3577" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><p:placeholder type="table" position="1"/></v:group><![if !vml]><img
- border=0
- v:shapes="_x0000_s880678,_x0000_s880662,_x0000_s880661,_x0000_s880660,_x0000_s880659,_x0000_s880658,_x0000_s880657,_x0000_s880656,_x0000_s880655,_x0000_s880654,_x0000_s880653,_x0000_s880652,_x0000_s880651,_x0000_s880650,_x0000_s880649,_x0000_s880648,_x0000_s880647,_x0000_s880646,_x0000_s880645,_x0000_s880663,_x0000_s880664,_x0000_s880665,_x0000_s880666,_x0000_s880667,_x0000_s880668,_x0000_s880669,_x0000_s880670,_x0000_s880671,_x0000_s880672,_x0000_s880673,_x0000_s880674,_x0000_s880675"
- src="slide0110_image045.gif" style='position:absolute;top:25.75%;left:7.11%;
- width:85.2%;height:57.75%'><![endif]>
- <div v:shape="_x0000_s880642" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Featherweight Extensions – Pros/Cons</div>
- <div v:shape="_x0000_s880662">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:77.5%;
- left:50.56%;width:40.44%;height:4.0%'>file format is non-standard</div>
- </div>
- <div v:shape="_x0000_s880661">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:77.5%;left:8.23%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s880660">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:71.0%;
- left:50.56%;width:40.44%;height:4.0%'>API is domain-independent</div>
- </div>
- <div v:shape="_x0000_s880659">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:71.0%;left:8.23%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s880658">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:64.75%;
- left:50.56%;width:40.44%;height:4.0%'>tools are domain-independent</div>
- </div>
- <div v:shape="_x0000_s880657">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:64.75%;
- left:8.23%;width:40.44%;height:4.0%'>can reuse existing tools</div>
- </div>
- <div v:shape="_x0000_s880656">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:58.5%;left:50.56%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s880655">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:58.5%;
- left:8.23%;width:40.44%;height:4.0%'>no development cost</div>
- </div>
- <div v:shape="_x0000_s880654">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:52.0%;
- left:50.56%;width:40.44%;height:4.0%'>cannot add constraints</div>
- </div>
- <div v:shape="_x0000_s880653">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:52.0%;left:8.23%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s880652">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:45.75%;
- left:50.56%;width:40.44%;height:4.0%'>cannot add behavior</div>
- </div>
- <div v:shape="_x0000_s880651">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:45.75%;left:8.23%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s880650">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:39.5%;
- left:50.56%;width:40.44%;height:4.0%'>cannot add structure</div>
- </div>
- <div v:shape="_x0000_s880649">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:39.5%;left:8.23%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s880648">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:33.25%;
- left:50.56%;width:40.44%;height:4.0%'>cannot change graphical UI</div>
- </div>
- <div v:shape="_x0000_s880647">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:33.25%;
- left:8.23%;width:40.44%;height:4.0%'>can change textual UI</div>
- </div>
- <div v:shape="_x0000_s880646">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:50.56%;width:40.44%;height:4.0%'><b><i>Con</i></b></div>
- </div>
- <div v:shape="_x0000_s880645">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:8.23%;width:40.44%;height:4.0%'><b><i>Pro</i></b></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0110_image045.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0110_image045.gif
deleted file mode 100644
index 342bfbe..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0110_image045.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0111.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0111.html
deleted file mode 100644
index e877f5f..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0111.html
+++ /dev/null
@@ -1,391 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Lightweight Extensions – Pros/Cons">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="861"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>72</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s881666" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:group id="_x0000_s881704" style='position:absolute;
-  left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt' coordorigin="417,1119"
-  coordsize="4874,2458" o:tableproperties="3" o:tablelimits="34.125pt 34.125pt 34.125pt 34.125pt 34.25pt 34.125pt 34.125pt 34.125pt 34.125pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s881686" style='position:absolute;left:2854;top:3304;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881685" style='position:absolute;left:417;top:3304;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881684" style='position:absolute;left:2854;
-   top:3031;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881683" style='position:absolute;left:417;top:3031;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881682" style='position:absolute;left:2854;
-   top:2758;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881681" style='position:absolute;left:417;top:2758;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881680" style='position:absolute;left:2854;
-   top:2485;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881679" style='position:absolute;left:417;top:2485;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881678" style='position:absolute;left:2854;
-   top:2211;width:2437;height:274' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881677" style='position:absolute;left:417;top:2211;
-   width:2437;height:274' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881676" style='position:absolute;left:2854;
-   top:1938;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881675" style='position:absolute;left:417;top:1938;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881674" style='position:absolute;left:2854;
-   top:1665;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881673" style='position:absolute;left:417;top:1665;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881672" style='position:absolute;left:2854;
-   top:1392;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881671" style='position:absolute;left:417;top:1392;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881670" style='position:absolute;left:2854;
-   top:1119;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s881669" style='position:absolute;left:417;top:1119;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:line id="_x0000_s881687" style='position:absolute' from="417,1119"
-   to="5291,1119" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s881688" style='position:absolute' from="417,1392"
-   to="5291,1392" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s881689" style='position:absolute' from="417,1665"
-   to="5291,1665" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s881690" style='position:absolute' from="417,1938"
-   to="5291,1938" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s881691" style='position:absolute' from="417,2211"
-   to="5291,2211" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s881692" style='position:absolute' from="417,2485"
-   to="5291,2485" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s881693" style='position:absolute' from="417,2758"
-   to="5291,2758" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s881694" style='position:absolute' from="417,3031"
-   to="5291,3031" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s881695" style='position:absolute' from="417,3304"
-   to="5291,3304" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s881696" style='position:absolute' from="417,3577"
-   to="5291,3577" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s881697" style='position:absolute' from="417,1119"
-   to="417,3577" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s881698" style='position:absolute' from="2854,1119"
-   to="2854,3577" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s881699" style='position:absolute' from="5291,1119"
-   to="5291,3577" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><p:placeholder type="table" position="1"/></v:group><![if !vml]><img
- border=0
- v:shapes="_x0000_s881704,_x0000_s881686,_x0000_s881685,_x0000_s881684,_x0000_s881683,_x0000_s881682,_x0000_s881681,_x0000_s881680,_x0000_s881679,_x0000_s881678,_x0000_s881677,_x0000_s881676,_x0000_s881675,_x0000_s881674,_x0000_s881673,_x0000_s881672,_x0000_s881671,_x0000_s881670,_x0000_s881669,_x0000_s881687,_x0000_s881688,_x0000_s881689,_x0000_s881690,_x0000_s881691,_x0000_s881692,_x0000_s881693,_x0000_s881694,_x0000_s881695,_x0000_s881696,_x0000_s881697,_x0000_s881698,_x0000_s881699"
- src="slide0111_image058.gif" style='position:absolute;top:25.75%;left:7.11%;
- width:85.2%;height:57.75%'><![endif]>
- <div v:shape="_x0000_s881666" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Lightweight Extensions – Pros/Cons</div>
- <div v:shape="_x0000_s881686">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:77.5%;
- left:50.56%;width:40.44%;height:4.0%'>file format is bloated</div>
- </div>
- <div v:shape="_x0000_s881685">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:77.5%;
- left:8.23%;width:40.44%;height:4.0%'>file format is standard</div>
- </div>
- <div v:shape="_x0000_s881684">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:71.0%;
- left:50.56%;width:40.44%;height:4.0%'>API is domain-independent</div>
- </div>
- <div v:shape="_x0000_s881683">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:71.0%;left:8.23%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s881682">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:64.75%;
- left:50.56%;width:40.44%;height:4.0%'>tools are domain-independent</div>
- </div>
- <div v:shape="_x0000_s881681">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:64.75%;
- left:8.23%;width:40.44%;height:4.0%'>can reuse existing tools</div>
- </div>
- <div v:shape="_x0000_s881680">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:58.5%;left:50.56%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s881679">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:58.5%;
- left:8.23%;width:40.44%;height:4.0%'>low development cost</div>
- </div>
- <div v:shape="_x0000_s881678">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:52.0%;
- left:50.56%;width:40.44%;height:4.0%'>cannot modify constraints</div>
- </div>
- <div v:shape="_x0000_s881677">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:52.0%;
- left:8.23%;width:40.44%;height:4.0%'>can add constraints</div>
- </div>
- <div v:shape="_x0000_s881676">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:45.75%;
- left:50.56%;width:40.44%;height:4.0%'>cannot add behavior</div>
- </div>
- <div v:shape="_x0000_s881675">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:45.75%;left:8.23%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s881674">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:39.5%;
- left:50.56%;width:40.44%;height:4.0%'>cannot modify structure</div>
- </div>
- <div v:shape="_x0000_s881673">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:39.5%;
- left:8.23%;width:40.44%;height:4.0%'>can add structure</div>
- </div>
- <div v:shape="_x0000_s881672">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:33.25%;left:50.56%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s881671">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:33.25%;
- left:8.23%;width:48.12%;height:4.0%'>can change textual and graphical UI</div>
- </div>
- <div v:shape="_x0000_s881670">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:50.56%;width:40.44%;height:4.0%'><b><i>Con</i></b></div>
- </div>
- <div v:shape="_x0000_s881669">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:8.23%;width:40.44%;height:4.0%'><b><i>Pro</i></b></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0111_image058.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0111_image058.gif
deleted file mode 100644
index 342bfbe..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0111_image058.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0112.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0112.html
deleted file mode 100644
index a0ae668..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0112.html
+++ /dev/null
@@ -1,390 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Middleweight Extensions – Pros/Cons">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="862"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>83</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s882690" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:group id="_x0000_s882728" style='position:absolute;
-  left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt' coordorigin="417,1119"
-  coordsize="4874,2458" o:tableproperties="3" o:tablelimits="34.125pt 34.125pt 34.125pt 34.125pt 34.25pt 34.125pt 34.125pt 34.125pt 34.125pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s882710" style='position:absolute;left:2854;top:3304;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882709" style='position:absolute;left:417;top:3304;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882708" style='position:absolute;left:2854;
-   top:3031;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882707" style='position:absolute;left:417;top:3031;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882706" style='position:absolute;left:2854;
-   top:2758;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882705" style='position:absolute;left:417;top:2758;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882704" style='position:absolute;left:2854;
-   top:2485;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882703" style='position:absolute;left:417;top:2485;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882702" style='position:absolute;left:2854;
-   top:2211;width:2437;height:274' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882701" style='position:absolute;left:417;top:2211;
-   width:2437;height:274' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882700" style='position:absolute;left:2854;
-   top:1938;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882699" style='position:absolute;left:417;top:1938;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882698" style='position:absolute;left:2854;
-   top:1665;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882697" style='position:absolute;left:417;top:1665;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882696" style='position:absolute;left:2854;
-   top:1392;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882695" style='position:absolute;left:417;top:1392;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882694" style='position:absolute;left:2854;
-   top:1119;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s882693" style='position:absolute;left:417;top:1119;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:line id="_x0000_s882711" style='position:absolute' from="417,1119"
-   to="5291,1119" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s882712" style='position:absolute' from="417,1392"
-   to="5291,1392" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s882713" style='position:absolute' from="417,1665"
-   to="5291,1665" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s882714" style='position:absolute' from="417,1938"
-   to="5291,1938" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s882715" style='position:absolute' from="417,2211"
-   to="5291,2211" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s882716" style='position:absolute' from="417,2485"
-   to="5291,2485" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s882717" style='position:absolute' from="417,2758"
-   to="5291,2758" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s882718" style='position:absolute' from="417,3031"
-   to="5291,3031" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s882719" style='position:absolute' from="417,3304"
-   to="5291,3304" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s882720" style='position:absolute' from="417,3577"
-   to="5291,3577" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s882721" style='position:absolute' from="417,1119"
-   to="417,3577" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s882722" style='position:absolute' from="2854,1119"
-   to="2854,3577" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s882723" style='position:absolute' from="5291,1119"
-   to="5291,3577" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><p:placeholder type="table" position="1"/></v:group><![if !vml]><img
- border=0
- v:shapes="_x0000_s882728,_x0000_s882710,_x0000_s882709,_x0000_s882708,_x0000_s882707,_x0000_s882706,_x0000_s882705,_x0000_s882704,_x0000_s882703,_x0000_s882702,_x0000_s882701,_x0000_s882700,_x0000_s882699,_x0000_s882698,_x0000_s882697,_x0000_s882696,_x0000_s882695,_x0000_s882694,_x0000_s882693,_x0000_s882711,_x0000_s882712,_x0000_s882713,_x0000_s882714,_x0000_s882715,_x0000_s882716,_x0000_s882717,_x0000_s882718,_x0000_s882719,_x0000_s882720,_x0000_s882721,_x0000_s882722,_x0000_s882723"
- src="slide0112_image071.gif" style='position:absolute;top:25.75%;left:7.11%;
- width:85.2%;height:57.75%'><![endif]>
- <div v:shape="_x0000_s882690" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Middleweight Extensions – Pros/Cons</div>
- <div v:shape="_x0000_s882710">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:77.5%;
- left:50.56%;width:40.44%;height:4.0%'>file format is non-standard</div>
- </div>
- <div v:shape="_x0000_s882709">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:77.5%;
- left:8.23%;width:40.44%;height:4.0%'>file format is compact</div>
- </div>
- <div v:shape="_x0000_s882708">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:71.0%;
- left:50.56%;width:40.44%;height:4.0%'>API is domain-independent</div>
- </div>
- <div v:shape="_x0000_s882707">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:71.0%;
- left:8.23%;width:40.44%;height:4.0%'>API is domain-specific</div>
- </div>
- <div v:shape="_x0000_s882706">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:64.75%;
- left:50.56%;width:40.44%;height:4.0%'>tools are domain-independent</div>
- </div>
- <div v:shape="_x0000_s882705">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:64.75%;
- left:8.23%;width:40.44%;height:4.0%'>can reuse existing tools</div>
- </div>
- <div v:shape="_x0000_s882704">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:58.5%;
- left:50.56%;width:40.44%;height:4.0%'>high development cost</div>
- </div>
- <div v:shape="_x0000_s882703">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:58.5%;left:8.23%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s882702">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:52.0%;
- left:50.56%;width:40.44%;height:4.0%'>cannot modify constraints</div>
- </div>
- <div v:shape="_x0000_s882701">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:52.0%;
- left:8.23%;width:40.44%;height:4.0%'>can add constraints</div>
- </div>
- <div v:shape="_x0000_s882700">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:45.75%;
- left:50.56%;width:40.44%;height:4.0%'>cannot modify behavior</div>
- </div>
- <div v:shape="_x0000_s882699">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:45.75%;
- left:8.23%;width:40.44%;height:4.0%'>can add behavior</div>
- </div>
- <div v:shape="_x0000_s882698">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:39.5%;left:50.56%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s882697">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:39.5%;
- left:8.23%;width:40.44%;height:4.0%'>can add and modify structure</div>
- </div>
- <div v:shape="_x0000_s882696">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:33.25%;left:50.56%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s882695">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:33.25%;
- left:8.23%;width:48.12%;height:4.0%'>can change textual and graphical UI</div>
- </div>
- <div v:shape="_x0000_s882694">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:50.56%;width:40.44%;height:4.0%'><b><i>Con</i></b></div>
- </div>
- <div v:shape="_x0000_s882693">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:8.23%;width:40.44%;height:4.0%'><b><i>Pro</i></b></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0112_image071.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0112_image071.gif
deleted file mode 100644
index 342bfbe..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0112_image071.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0113.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0113.html
deleted file mode 100644
index ef3f97f..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0113.html
+++ /dev/null
@@ -1,393 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Heavyweight Extensions – Pros/Cons">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="863"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>98</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s883714" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:group id="_x0000_s883750" style='position:absolute;
-  left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt' coordorigin="417,1119"
-  coordsize="4874,2458" o:tableproperties="3" o:tablelimits="34.125pt 34.125pt 34.125pt 34.125pt 34.25pt 34.125pt 34.125pt 34.125pt 34.125pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s883734" style='position:absolute;left:2854;top:3304;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883733" style='position:absolute;left:417;top:3304;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883732" style='position:absolute;left:2854;
-   top:3031;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883731" style='position:absolute;left:417;top:3031;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883730" style='position:absolute;left:2854;
-   top:2758;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883729" style='position:absolute;left:417;top:2758;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883728" style='position:absolute;left:2854;
-   top:2485;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883727" style='position:absolute;left:417;top:2485;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883726" style='position:absolute;left:2854;
-   top:2211;width:2437;height:274' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883725" style='position:absolute;left:417;top:2211;
-   width:2437;height:274' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883724" style='position:absolute;left:2854;
-   top:1938;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883723" style='position:absolute;left:417;top:1938;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883722" style='position:absolute;left:2854;
-   top:1665;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883721" style='position:absolute;left:417;top:1665;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883720" style='position:absolute;left:2854;
-   top:1392;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883719" style='position:absolute;left:417;top:1392;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883718" style='position:absolute;left:2854;
-   top:1119;width:2437;height:273' filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:rect id="_x0000_s883717" style='position:absolute;left:417;top:1119;
-   width:2437;height:273' filled="f" fillcolor="#7889fb [4]" stroked="f"
-   strokecolor="black [0]">
-   <v:fill color2="black [0]" alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:rect><v:line id="_x0000_s883735" style='position:absolute' from="417,1119"
-   to="5291,1119" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s883736" style='position:absolute' from="417,1392"
-   to="5291,1392" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s883737" style='position:absolute' from="417,1665"
-   to="5291,1665" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s883738" style='position:absolute' from="417,1938"
-   to="5291,1938" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s883739" style='position:absolute' from="417,2211"
-   to="5291,2211" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s883740" style='position:absolute' from="417,2485"
-   to="5291,2485" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s883741" style='position:absolute' from="417,2758"
-   to="5291,2758" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s883742" style='position:absolute' from="417,3031"
-   to="5291,3031" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s883743" style='position:absolute' from="417,3304"
-   to="5291,3304" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s883744" style='position:absolute' from="417,3577"
-   to="5291,3577" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s883745" style='position:absolute' from="417,1119"
-   to="417,3577" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s883746" style='position:absolute' from="2854,1119"
-   to="2854,3577" strokecolor="white [1]" strokeweight="1pt">
-   <v:stroke imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><v:line id="_x0000_s883747" style='position:absolute' from="5291,1119"
-   to="5291,3577" strokecolor="white [1]" strokeweight="2.25pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="#ccf [2]"/>
-  </v:line><p:placeholder type="table" position="1"/></v:group><![if !vml]><img
- border=0
- v:shapes="_x0000_s883750,_x0000_s883734,_x0000_s883733,_x0000_s883732,_x0000_s883731,_x0000_s883730,_x0000_s883729,_x0000_s883728,_x0000_s883727,_x0000_s883726,_x0000_s883725,_x0000_s883724,_x0000_s883723,_x0000_s883722,_x0000_s883721,_x0000_s883720,_x0000_s883719,_x0000_s883718,_x0000_s883717,_x0000_s883735,_x0000_s883736,_x0000_s883737,_x0000_s883738,_x0000_s883739,_x0000_s883740,_x0000_s883741,_x0000_s883742,_x0000_s883743,_x0000_s883744,_x0000_s883745,_x0000_s883746,_x0000_s883747"
- src="slide0113_image088.gif" style='position:absolute;top:25.75%;left:7.11%;
- width:85.2%;height:57.75%'><![endif]>
- <div v:shape="_x0000_s883714" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Heavyweight Extensions – Pros/Cons</div>
- <div v:shape="_x0000_s883734">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:77.5%;
- left:50.56%;width:40.44%;height:4.0%'>file format is non-standard</div>
- </div>
- <div v:shape="_x0000_s883733">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:77.5%;
- left:8.23%;width:40.44%;height:4.0%'>file format is compact</div>
- </div>
- <div v:shape="_x0000_s883732">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:71.0%;left:50.56%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s883731">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:71.0%;
- left:8.23%;width:40.44%;height:4.0%'>API is domain-specific</div>
- </div>
- <div v:shape="_x0000_s883730">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:64.75%;
- left:50.56%;width:40.44%;height:4.0%'>cannot reuse existing tools</div>
- </div>
- <div v:shape="_x0000_s883729">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:64.75%;
- left:8.23%;width:40.44%;height:4.0%'>tools are domain-specific</div>
- </div>
- <div v:shape="_x0000_s883728">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:58.5%;
- left:50.56%;width:40.44%;height:4.0%'>high development cost</div>
- </div>
- <div v:shape="_x0000_s883727">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:58.5%;left:8.23%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s883726">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:52.0%;left:50.56%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s883725">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:52.0%;
- left:8.23%;width:41.76%;height:4.0%'>can add and modify constraints</div>
- </div>
- <div v:shape="_x0000_s883724">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:45.75%;left:50.56%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s883723">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:45.75%;
- left:8.23%;width:40.44%;height:4.0%'>can add and modify behavior</div>
- </div>
- <div v:shape="_x0000_s883722">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:39.5%;left:50.56%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s883721">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:39.5%;
- left:8.23%;width:40.44%;height:4.0%'>can add and modify structure</div>
- </div>
- <div v:shape="_x0000_s883720">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:33.25%;left:50.56%;width:40.44%;height:4.0%'><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s883719">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:33.25%;
- left:8.23%;width:42.32%;height:4.0%'>change textual and graphical UI</div>
- </div>
- <div v:shape="_x0000_s883718">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:50.56%;width:40.44%;height:4.0%'><b><i>Con</i></b></div>
- </div>
- <div v:shape="_x0000_s883717">
- <div class=Tbl1 style='mso-margin-left-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:26.75%;
- left:8.23%;width:40.44%;height:4.0%'><b><i>Pro</i></b></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0113_image088.gif b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0113_image088.gif
deleted file mode 100644
index 342bfbe..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0113_image088.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0114.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0114.html
deleted file mode 100644
index a5022a7..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0114.html
+++ /dev/null
@@ -1,129 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Summary">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="864"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>100</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s884738" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s884739" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s884738" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Summary</div>
- <div v:shape="_x0000_s884739" class=B><span style='position:absolute;
- top:26.75%;left:10.67%;width:89.88%;height:4.5%'><span class=BB
- style='position:absolute;left:-2.7%'>§</span>UML can be extended to suit the
- needs of your application or </span><span style='position:absolute;top:31.25%;
- left:10.67%;width:80.33%;height:4.5%'>domain&#13;</span>
- <div style='position:absolute;top:35.75%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:40.25%;left:10.67%;width:91.57%;height:
- 4.5%'><span class=BB style='position:absolute;left:-2.65%'>§</span>The UML2
- component of MDT supports several customization </span><span style='position:
- absolute;top:44.5%;left:10.67%;width:80.33%;height:4.5%'>mechanisms, each
- having their own pros and cons&#13;</span>
- <div style='position:absolute;top:49.0%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:53.5%;left:10.67%;width:95.13%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.55%'>§</span>The choice of which
- approach to take will depend on the amount </span><span style='position:absolute;
- top:58.0%;left:10.67%;width:80.33%;height:4.5%'>of overlap between your domain
- and UML&#13;</span>
- <div style='position:absolute;top:62.5%;left:8.23%;width:82.77%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.94%;width:97.05%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.03%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:66.75%;left:10.67%;width:89.7%;height:4.5%'><span
- class=BB style='position:absolute;left:-2.71%'>§</span>Domains having little
- or nothing in common with UML can be </span><span style='position:absolute;
- top:71.25%;left:10.67%;width:95.88%;height:4.5%'>supported with a domain
- specific language (DSL) developed with </span><span style='position:absolute;
- top:75.75%;left:10.67%;width:80.33%;height:4.5%'>EMF</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0115.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0115.html
deleted file mode 100644
index 52ced58..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0115.html
+++ /dev/null
@@ -1,149 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Profiles">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="867"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>51</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s887810" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s887811" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s887810" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Profiles</div>
- <div v:shape="_x0000_s887811" class=B>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:26.5%;left:10.67%;width:89.7%;height:4.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.71%;font-family:Wingdings'>§</span>UML
- provides a mechanism that allows metaclasses from an </span><span
- style='position:absolute;top:30.5%;left:10.67%;width:82.58%;height:4.5%'>existing
- metamodel to be adapted for different purposes&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:34.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:38.5%;left:10.67%;width:80.33%;height:4.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.03%;font-family:Wingdings'>§</span>A <i>profile</i>
- is a kind of package that extends a reference </span><span style='position:
- absolute;top:42.5%;left:10.67%;width:80.33%;height:4.5%'>metamodel&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:46.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:50.5%;left:10.67%;width:87.64%;height:4.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.77%;font-family:Wingdings'>§</span>A <i>stereotype</i>
- is a kind of class that may extend one or more </span><span style='position:
- absolute;top:54.5%;left:10.67%;width:87.26%;height:4.5%'>metaclasses via <i>extension</i>
- relationships, as part of a profile&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:58.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:62.5%;left:10.67%;width:88.38%;height:4.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.75%;font-family:Wingdings'>§</span>It is
- possible to interchange profiles, together with models to </span><span
- style='position:absolute;top:66.5%;left:10.67%;width:80.33%;height:4.5%'>which
- they have been applied, via XMI&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:70.5%;left:8.23%;
- width:82.77%;height:4.5%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:74.5%;left:8.23%;
- width:93.63%;height:4.5%'><span style='position:absolute;top:0%;left:2.6%;
- width:97.4%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-2.66%;font-family:Wingdings'>§</span>UML2 provides support for
- defining and interchanging profiles</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0116.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0116.html
deleted file mode 100644
index 08d575c..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0116.html
+++ /dev/null
@@ -1,174 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Extending UML(2) – Why?">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="870"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>53</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s890882" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s890883" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s890882" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Extending UML(2) – Why?</div>
- <div v:shape="_x0000_s890883" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:89.7%;height:4.0%'><span style='position:absolute;top:0%;left:2.71%;
- width:97.28%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.78%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Use terminology that is
- adapted to a particular platform or domain&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Specify a syntax for
- constructs that do not have a notation&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Specify a different
- notation for symbols that already exist&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Add semantics that are
- left unspecified in UML&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Add semantics that do
- not exist in UML&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Add constraints that
- restrict the way one may use UML&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:69.75%;left:10.67%;width:95.5%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.54%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Add information that can
- be used when transforming a model to another </span></span><span
- style='position:absolute;top:73.5%;left:10.67%;width:80.33%;height:4.0%'><span
- style='font-size:90%'>model or code</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0117.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0117.html
deleted file mode 100644
index 6df7592..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0117.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="874"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>3</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s894978" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s894979" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s894978" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s894979" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Background&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0118.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0118.html
deleted file mode 100644
index 82f8e3a..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0118.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="875"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>7</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s896002" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s896003" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s896002" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s896003" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Language Units&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0119.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0119.html
deleted file mode 100644
index 9d4f111..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0119.html
+++ /dev/null
@@ -1,176 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="876"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>9</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s897026" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s897027" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s897026" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s897027" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Compliance
- Levels&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0120.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0120.html
deleted file mode 100644
index caa7e5f..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0120.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="877"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>25</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s898050" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s898051" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s898050" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s898051" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Package Merge&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0121.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0121.html
deleted file mode 100644
index 6ace9eb..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0121.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="878"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>31</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s899074" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s899075" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s899074" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s899075" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Redefinition&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0122.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0122.html
deleted file mode 100644
index 5e20b8c..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0122.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="879"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>37</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s900098" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s900099" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s900098" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s900099" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Subsets&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0123.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0123.html
deleted file mode 100644
index bca1f8c..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0123.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="880"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>44</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s901122" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s901123" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s901122" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s901123" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Derived Unions&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0124.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0124.html
deleted file mode 100644
index 5d30ad4..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0124.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="881"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>50</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s902146" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s902147" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s902146" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s902147" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Profiles&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0125.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0125.html
deleted file mode 100644
index 8a39d3c..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0125.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="882"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>52</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s903170" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s903171" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s903170" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s903171" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Extending UML(2)&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0126.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0126.html
deleted file mode 100644
index 6cf80c0..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0126.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="883"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>57</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s904194" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s904195" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s904194" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s904195" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Featherweight
- Extensions&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0127.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0127.html
deleted file mode 100644
index 13e1021..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0127.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="884"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>64</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s905218" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s905219" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s905218" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s905219" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Lightweight
- Extensions&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0128.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0128.html
deleted file mode 100644
index 5b98c70..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0128.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="885"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>73</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s906242" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s906243" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s906242" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s906243" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Middleweight
- Extensions&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0129.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0129.html
deleted file mode 100644
index 74da640..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0129.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="886"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>84</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s907266" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s907267" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s907266" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s907267" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Heavyweight
- Extensions&#13;</b></span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Summary</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0130.html b/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0130.html
deleted file mode 100644
index 45c8929..0000000
--- a/uml2/docs/presentations/EclipseCon2007_LongTalk_files/slide0130.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../EclipseCon2007_LongTalk.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>What do YOU want UML to be?</title>
-<meta name=Description content="3/8/2007: Contents">
-<link rel=Stylesheet href="master08_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="887"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master08.xml">
- <p:shaperange href="master08.xml#_x0000_s32769"/><![if !ppt]><p:shaperange
-  href="master08.xml#_x0000_s33020"/><![if !vml]><img border=0
- v:shapes="_x0000_s33020" src="master08_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master08.xml#_x0000_s33022"/>
- <div v:shape="_x0000_s33022" class=O>
- <div style='mso-line-spacing:"100 50 0";position:absolute;top:95.0%;
- left:2.62%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-field-code:meta16'><b>99</b></span><span lang=EN-US style='mso-hansi-font-family:
- Arial;font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33023"/><![if !vml]><img border=0
- v:shapes="_x0000_s33023" src="master08_image006.gif" style='position:absolute;
- top:93.75%;left:15.73%;width:.37%;height:3.25%'><![endif]>
- <div v:shape="_x0000_s33024" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.25%;left:16.85%;width:85.39%;height:2.25%'><span lang=EN-US
- style='font-size:56%;color:black;mso-color-index:0;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span>What do YOU want UML to be?<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Long Talk<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>© Copyright 2007 by IBM Corp.; made
- available under the EPL v1.0</span></div>
- </div>
- <p:shaperange href="master08.xml#_x0000_s33027"/><![if !vml]><img border=0
- v:shapes="_x0000_s33027" src="master08_image007.jpg" style='position:absolute;
- top:1.25%;left:2.05%;width:56.55%;height:9.25%'><![endif]><![endif]><p:shaperange
-  href="master08.xml#_x0000_m32774"/><v:shape id="_x0000_s908290" type="#_x0000_m32774"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master08.xml#_x0000_m32775"/><v:shape id="_x0000_s908291" type="#_x0000_m32775"
-  style='position:absolute;left:52.125pt;top:139.875pt;width:609.25pt;height:307.25pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s908290" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Contents</div>
- <div v:shape="_x0000_s908291" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Background&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Language Units&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Compliance Levels&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Package Merge&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Redefinition&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Subsets&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Derived Unions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Profiles&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Extending UML(2)&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Featherweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Lightweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Middleweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'>Heavyweight
- Extensions&#13;</span></span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:8.23%;
- width:82.77%;height:4.0%'><span style='position:absolute;top:0%;left:2.94%;
- width:97.05%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.03%;font-family:
- Wingdings'>§</span></span><span style='font-size:90%'><b>Summary</b></span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2.html b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2.html
deleted file mode 100644
index 8fd36e7..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2.html
+++ /dev/null
@@ -1,85 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link rel=File-List
-href="EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/filelist.xml">
-<link rel=Preview
-href="EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/preview.wmf">
-<link rel=Edit-Time-Data
-href="EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/editdata.mso">
-<title>New Features Of UML2</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>James Bruck</o:Author>
-  <o:LastAuthor>jbruck</o:LastAuthor>
-  <o:Revision>154</o:Revision>
-  <o:TotalTime>4364</o:TotalTime>
-  <o:Created>2007-12-12T17:59:30Z</o:Created>
-  <o:LastSaved>2008-04-09T19:43:48Z</o:LastSaved>
-  <o:Words>1682</o:Words>
-  <o:PresentationFormat>On-screen Show</o:PresentationFormat>
-  <o:Company>IBM</o:Company>
-  <o:Bytes>325180</o:Bytes>
-  <o:Paragraphs>348</o:Paragraphs>
-  <o:Slides>57</o:Slides>
-  <o:Notes>1</o:Notes>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
- <o:OfficeDocumentSettings>
-  <o:PixelsPerInch>80</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
-</xml><![endif]-->
-<link rel=Presentation-XML
-href="EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/pres.xml">
-<meta name=Description
-content="4/9/2008: New Features of UML2: Generics, Static Profile Definition and OCL integration ">
-<meta http-equiv=expires content=0>
-<![if !ppt]><script>
-<!--
-	var ver = 0, appVer = navigator.appVersion, msie = appVer.indexOf( "MSIE " )
-	var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0)
-	if( msie >= 0 )
-		ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) )
-	else
-		ver = parseInt( appVer )
-	browserSupported=0
-	if( !isMac && ver >= 4 && msie >= 0 ) {
-		browserSupported=1
-		window.location.replace( 'EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/frame.htm'+document.location.hash )
-	}
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<script><!--
-
-if( browserSupported )
-	document.writeln('<div style="visibility:hidden">');
-
-//--></script><font face=Arial size=2><b>
-
-<p>This presentation contains content that your browser may not be able to show
-properly. This presentation was optimized for more recent versions of Microsoft
-Internet Explorer.</p>
-
-<p>If you would like to proceed anyway, click <a
-href="EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/frame.htm">here</a>.</p>
-
-</b></font><script><!--
-
-if( browserSupported )
-	document.writeln('</div>');
-
-//--></script>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/buttons.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/buttons.gif
deleted file mode 100644
index 1f2c73c..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/buttons.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/editdata.mso b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/editdata.mso
deleted file mode 100644
index 05e6a88..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/editdata.mso
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/filelist.xml b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/filelist.xml
deleted file mode 100644
index cdc3d3e..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/filelist.xml
+++ /dev/null
@@ -1,223 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:File HRef="master03.htm"/>
- <o:File HRef="master03.xml"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="master03_image001.jpg"/>
- <o:File HRef="master03_image002.jpg"/>
- <o:File HRef="editdata.mso"/>
- <o:File HRef="master04.htm"/>
- <o:File HRef="master04.xml"/>
- <o:File HRef="master02.htm"/>
- <o:File HRef="pres.xml"/>
- <o:File HRef="slide0001.htm"/>
- <o:File HRef="master04_image003.jpg"/>
- <o:File HRef="master04_image004.jpg"/>
- <o:File HRef="slide0010.htm"/>
- <o:File HRef="master03_image005.jpg"/>
- <o:File HRef="master03_image006.jpg"/>
- <o:File HRef="slide0011.htm"/>
- <o:File HRef="slide0011_image007.wmz"/>
- <o:File HRef="slide0011_image008.gif"/>
- <o:File HRef="slide0012.htm"/>
- <o:File HRef="slide0013.htm"/>
- <o:File HRef="slide0014.htm"/>
- <o:File HRef="slide0014_image009.gif"/>
- <o:File HRef="slide0015.htm"/>
- <o:File HRef="slide0015_image010.png"/>
- <o:File HRef="slide0015_image011.jpg"/>
- <o:File HRef="slide0015_image012.gif"/>
- <o:File HRef="slide0015_image013.gif"/>
- <o:File HRef="slide0015_image014.gif"/>
- <o:File HRef="slide0015_image015.gif"/>
- <o:File HRef="slide0016.htm"/>
- <o:File HRef="slide0016_image016.png"/>
- <o:File HRef="slide0016_image017.jpg"/>
- <o:File HRef="slide0017.htm"/>
- <o:File HRef="slide0017_image018.gif"/>
- <o:File HRef="slide0017_image019.gif"/>
- <o:File HRef="slide0017_image020.gif"/>
- <o:File HRef="slide0017_image021.gif"/>
- <o:File HRef="slide0017_image022.gif"/>
- <o:File HRef="slide0018.htm"/>
- <o:File HRef="slide0018_image023.png"/>
- <o:File HRef="slide0018_image024.jpg"/>
- <o:File HRef="slide0018_image025.gif"/>
- <o:File HRef="slide0018_image026.gif"/>
- <o:File HRef="slide0018_image027.gif"/>
- <o:File HRef="slide0018_image028.gif"/>
- <o:File HRef="slide0063.htm"/>
- <o:File HRef="slide0063_image029.gif"/>
- <o:File HRef="slide0063_image030.gif"/>
- <o:File HRef="slide0019.htm"/>
- <o:File HRef="slide0019_image031.png"/>
- <o:File HRef="slide0019_image032.jpg"/>
- <o:File HRef="slide0021.htm"/>
- <o:File HRef="slide0021_image033.png"/>
- <o:File HRef="slide0021_image034.jpg"/>
- <o:File HRef="slide0021_image035.png"/>
- <o:File HRef="slide0021_image036.jpg"/>
- <o:File HRef="slide0021_image037.gif"/>
- <o:File HRef="slide0021_image038.gif"/>
- <o:File HRef="slide0021_image039.gif"/>
- <o:File HRef="slide0021_image040.gif"/>
- <o:File HRef="slide0022.htm"/>
- <o:File HRef="slide0022_image041.gif"/>
- <o:File HRef="slide0023.htm"/>
- <o:File HRef="slide0023_image042.gif"/>
- <o:File HRef="slide0023_image043.png"/>
- <o:File HRef="slide0023_image044.jpg"/>
- <o:File HRef="slide0023_image045.gif"/>
- <o:File HRef="slide0023_image046.gif"/>
- <o:File HRef="slide0023_image047.gif"/>
- <o:File HRef="slide0024.htm"/>
- <o:File HRef="slide0024_image048.png"/>
- <o:File HRef="slide0024_image049.jpg"/>
- <o:File HRef="slide0025.htm"/>
- <o:File HRef="slide0025_image050.png"/>
- <o:File HRef="slide0025_image051.jpg"/>
- <o:File HRef="slide0025_image052.gif"/>
- <o:File HRef="slide0025_image053.png"/>
- <o:File HRef="slide0025_image054.jpg"/>
- <o:File HRef="slide0026.htm"/>
- <o:File HRef="slide0026_image055.gif"/>
- <o:File HRef="slide0026_image056.gif"/>
- <o:File HRef="slide0026_image057.gif"/>
- <o:File HRef="slide0026_image058.gif"/>
- <o:File HRef="slide0026_image059.gif"/>
- <o:File HRef="slide0078.htm"/>
- <o:File HRef="slide0028.htm"/>
- <o:File HRef="slide0029.htm"/>
- <o:File HRef="slide0030.htm"/>
- <o:File HRef="slide0031.htm"/>
- <o:File HRef="slide0067.htm"/>
- <o:File HRef="slide0067_image060.png"/>
- <o:File HRef="slide0067_image061.jpg"/>
- <o:File HRef="slide0067_image062.png"/>
- <o:File HRef="slide0067_image063.jpg"/>
- <o:File HRef="slide0067_image064.png"/>
- <o:File HRef="slide0067_image065.jpg"/>
- <o:File HRef="slide0067_image066.png"/>
- <o:File HRef="slide0067_image067.jpg"/>
- <o:File HRef="slide0067_image068.gif"/>
- <o:File HRef="slide0067_image069.gif"/>
- <o:File HRef="slide0074.htm"/>
- <o:File HRef="slide0074_image070.png"/>
- <o:File HRef="slide0074_image071.jpg"/>
- <o:File HRef="slide0071.htm"/>
- <o:File HRef="slide0071_image072.png"/>
- <o:File HRef="slide0071_image073.jpg"/>
- <o:File HRef="slide0071_image074.png"/>
- <o:File HRef="slide0071_image075.jpg"/>
- <o:File HRef="slide0071_image076.gif"/>
- <o:File HRef="slide0066.htm"/>
- <o:File HRef="slide0035.htm"/>
- <o:File HRef="slide0035_image077.png"/>
- <o:File HRef="slide0035_image078.jpg"/>
- <o:File HRef="slide0037.htm"/>
- <o:File HRef="slide0037_image079.png"/>
- <o:File HRef="slide0037_image080.jpg"/>
- <o:File HRef="slide0037_image081.gif"/>
- <o:File HRef="slide0038.htm"/>
- <o:File HRef="slide0038_image082.png"/>
- <o:File HRef="slide0038_image083.jpg"/>
- <o:File HRef="slide0038_image084.png"/>
- <o:File HRef="slide0038_image085.jpg"/>
- <o:File HRef="slide0038_image086.gif"/>
- <o:File HRef="slide0039.htm"/>
- <o:File HRef="slide0039_image087.png"/>
- <o:File HRef="slide0039_image088.jpg"/>
- <o:File HRef="slide0039_image089.png"/>
- <o:File HRef="slide0039_image090.jpg"/>
- <o:File HRef="slide0039_image091.png"/>
- <o:File HRef="slide0039_image092.jpg"/>
- <o:File HRef="slide0039_image093.gif"/>
- <o:File HRef="slide0039_image094.gif"/>
- <o:File HRef="slide0039_image095.gif"/>
- <o:File HRef="slide0076.htm"/>
- <o:File HRef="slide0075.htm"/>
- <o:File HRef="slide0064.htm"/>
- <o:File HRef="slide0064_image096.gif"/>
- <o:File HRef="slide0064_image097.gif"/>
- <o:File HRef="slide0064_image098.gif"/>
- <o:File HRef="slide0040.htm"/>
- <o:File HRef="slide0040_image099.gif"/>
- <o:File HRef="slide0041.htm"/>
- <o:File HRef="slide0041_image100.png"/>
- <o:File HRef="slide0041_image101.jpg"/>
- <o:File HRef="slide0041_image102.gif"/>
- <o:File HRef="slide0072.htm"/>
- <o:File HRef="slide0058.htm"/>
- <o:File HRef="slide0042.htm"/>
- <o:File HRef="slide0043.htm"/>
- <o:File HRef="slide0044.htm"/>
- <o:File HRef="slide0045.htm"/>
- <o:File HRef="slide0046.htm"/>
- <o:File HRef="slide0046_image103.png"/>
- <o:File HRef="slide0046_image104.jpg"/>
- <o:File HRef="slide0047.htm"/>
- <o:File HRef="slide0047_image105.png"/>
- <o:File HRef="slide0047_image106.jpg"/>
- <o:File HRef="slide0047_image107.gif"/>
- <o:File HRef="slide0047_image108.png"/>
- <o:File HRef="slide0047_image109.jpg"/>
- <o:File HRef="slide0047_image110.gif"/>
- <o:File HRef="slide0061.htm"/>
- <o:File HRef="slide0061_image111.png"/>
- <o:File HRef="slide0061_image112.jpg"/>
- <o:File HRef="slide0061_image113.png"/>
- <o:File HRef="slide0061_image114.jpg"/>
- <o:File HRef="slide0048.htm"/>
- <o:File HRef="slide0048_image115.png"/>
- <o:File HRef="slide0048_image116.jpg"/>
- <o:File HRef="slide0048_image117.png"/>
- <o:File HRef="slide0048_image118.jpg"/>
- <o:File HRef="slide0048_image119.gif"/>
- <o:File HRef="slide0048_image120.gif"/>
- <o:File HRef="slide0048_image121.gif"/>
- <o:File HRef="slide0073.htm"/>
- <o:File HRef="slide0073_image122.png"/>
- <o:File HRef="slide0073_image123.jpg"/>
- <o:File HRef="slide0073_image124.gif"/>
- <o:File HRef="slide0049.htm"/>
- <o:File HRef="slide0049_image125.png"/>
- <o:File HRef="slide0049_image126.jpg"/>
- <o:File HRef="slide0049_image127.png"/>
- <o:File HRef="slide0049_image128.jpg"/>
- <o:File HRef="slide0049_image129.png"/>
- <o:File HRef="slide0049_image130.jpg"/>
- <o:File HRef="slide0049_image131.gif"/>
- <o:File HRef="slide0049_image132.gif"/>
- <o:File HRef="slide0049_image133.gif"/>
- <o:File HRef="slide0050.htm"/>
- <o:File HRef="slide0050_image134.png"/>
- <o:File HRef="slide0050_image135.jpg"/>
- <o:File HRef="slide0050_image136.png"/>
- <o:File HRef="slide0050_image137.jpg"/>
- <o:File HRef="slide0050_image138.gif"/>
- <o:File HRef="slide0050_image139.gif"/>
- <o:File HRef="slide0050_image140.gif"/>
- <o:File HRef="slide0051.htm"/>
- <o:File HRef="slide0051_image141.png"/>
- <o:File HRef="slide0051_image142.jpg"/>
- <o:File HRef="slide0077.htm"/>
- <o:File HRef="slide0062.htm"/>
- <o:File HRef="slide0062_image143.png"/>
- <o:File HRef="slide0062_image144.jpg"/>
- <o:File HRef="slide0062_image145.png"/>
- <o:File HRef="slide0062_image146.jpg"/>
- <o:File HRef="slide0053.htm"/>
- <o:File HRef="slide0054.htm"/>
- <o:File HRef="slide0055.htm"/>
- <o:File HRef="slide0057.htm"/>
- <o:File HRef="slide0059.htm"/>
- <o:File HRef="master01.htm"/>
- <o:File HRef="master03_stylesheet.css"/>
- <o:File HRef="script.js"/>
- <o:MainFile HRef="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm"/>
- <o:File HRef="fullscreen.htm"/>
- <o:File HRef="notes_flag.gif"/>
- <o:File HRef="buttons.gif"/>
- <o:File HRef="frame.htm"/>
- <o:File HRef="outline.htm"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/frame.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/frame.htm
deleted file mode 100644
index 25d1b64..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/frame.htm
+++ /dev/null
@@ -1,47 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<title>New Features Of UML2</title>
-<![if !ppt]><script src=script.js></script><script>
-<!--
-var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
-function Load()
-{
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(str) PPTSld.location.replace(escape(str));
-}
-//-->
-</script>
-<!--[if gte IE 5]>
-<object id=MSOANIM classid="CLSID:A4639D2F-774E-11D3-A490-00C04F6843FB"
- codebase="http://download.microsoft.com/download/PowerPoint2002/Install/10.0.2609/WIN98MeXP/EN-US/msorun.cab#version=11,0,0,1"></object>
-<![endif]-->
-<![endif]>
-</head>
-
-<frameset rows="*,25" border=0>
- <frameset cols="25%,*" id=PPTHorizAdjust framespacing=2>
-  <frameset rows="100%,*">
-   <frame src=outline.htm title="Outline" name=PPTOtl>
-  </frameset>
-  <frameset rows="*,40" id=PPTVertAdjust framespacing=2 frameborder=1
-   onload="Load()">
-   <frame src=slide0001.htm title="Slide" name=PPTSld>
-   <frame src=slide0001.htm title="Notes" name=PPTNts>
-  </frameset>
- </frameset>
- <frameset cols="25%,*" framespacing=1>
-  <frame src=outline.htm title="Outline
-Navigation Bar" name=PPTOtlNav scrolling=no noresize>
-  <frame src=outline.htm title="Slide
-Navigation Bar" name=PPTNav scrolling=no noresize>
- </frameset>
-</frameset>
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/fullscreen.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/fullscreen.htm
deleted file mode 100644
index 6773e82..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/fullscreen.htm
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<script src=script.js></script><script><!--
-var SCREEN_MODE   = "FullScreen";
-function Load() {
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(!str) str = "slide0001.htm";
-	PPTSld.location.replace(MHTMLPrefix+escape(str));
-}
-function Unload() {
-	if ( document.body.PPTSldFrameset != null )
-		document.body.PPTSldFrameset.frames[1].document.body.resume();
-}
-//-->
-</script>
-</head>
-
-<frameset rows="*" frameborder=0 onload="Load()" onunload="Unload()">
- <frame name=PPTSld>
-</frameset>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master01.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master01.htm
deleted file mode 100644
index 50146b0..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master01.htm
+++ /dev/null
@@ -1,139 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="5"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s5121" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s5122" style='position:absolute;left:0;
- top:0;width:234pt;height:36pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s5122" class=O><span style='font-size:50%;mso-field-code:
-meta14'>‹header›</span><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-<v:shapetype id="_x0000_s5123" style='position:absolute;left:306pt;top:0;
- width:234pt;height:36pt' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
- filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="dateTime" position="1"/></v:shapetype>
-
-<div v:shape="_x0000_s5123" class=O style='text-align:right'><span lang=EN-US
-style='font-size:50%;mso-field-code:meta0'>‹date/time›</span><span
-style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-<v:shapetype id="_x0000_m5124" style='position:absolute;left:90pt;top:54pt;
- width:5in;height:270pt;v-text-anchor:middle' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter"/>
- <v:shadow obscured="t"/>
- <v:path gradientshapeok="t" fillok="f" o:connecttype="rect"/>
- <o:lock v:ext="edit" text="t"/>
- <p:placeholder type="slideImage" position="2"/></v:shapetype><v:shapetype
- id="_x0000_m5125" style='position:absolute;left:1in;top:342pt;width:396pt;
- height:324pt' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
- filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="body" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_m5125">
-
-<div class=N>Click to edit Master text styles&#13;</div>
-
-<div class=N1>Second level&#13;</div>
-
-<div class=N2>Third level&#13;</div>
-
-<div class=N3>Fourth level&#13;</div>
-
-<div class=N4>Fifth level</div>
-
-</div>
-
-<v:shapetype id="_x0000_s5126" style='position:absolute;left:0;top:684pt;
- width:234pt;height:36pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="footer" position="4" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s5126" class=O><span style='font-size:50%;mso-field-code:
-meta15'>‹footer›</span><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-<v:shapetype id="_x0000_s5127" style='position:absolute;left:306pt;top:684pt;
- width:234pt;height:36pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="slideNumber" position="5" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s5127" class=O style='text-align:right'><span
-style='font-size:50%;mso-field-code:meta16'>‹#›</span><span style='font-size:
-50%;mso-special-format:lastCR'>&#13;</span></div>
-
-<p:notes id="44" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="91"/>
- </o:shapelayout><v:shape id="_x0000_s93186" type="#_x0000_m5124" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s93187"
-  type="#_x0000_m5125" style='position:absolute;left:1in;top:342pt;width:396pt;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s93187" class=N>OCL is often used to specify operation
- precondition and postcondition constraints. A third kind of OCL expression
- defined on operations is the body expression, which defines the value of the
- operation in terms of its parameters and the properties of the context
- classifier. </div>
-</p:notes>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master02.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master02.htm
deleted file mode 100644
index 27ddcb2..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master02.htm
+++ /dev/null
@@ -1,84 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s3073" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s3074" style='position:absolute;left:0;
- top:0;width:234pt;height:36pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s3074" class=O><span style='font-size:50%;mso-field-code:
-meta14'>‹header›</span><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-<v:shapetype id="_x0000_s3075" style='position:absolute;left:306pt;top:0;
- width:234pt;height:36pt' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
- filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="dateTime" position="1" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s3075" class=O style='text-align:right'><span lang=EN-US
-style='font-size:50%;mso-field-code:meta0'>‹date/time›</span><span
-style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-<v:shapetype id="_x0000_s3076" style='position:absolute;left:0;top:684pt;
- width:234pt;height:36pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="footer" position="2" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s3076" class=O><span style='font-size:50%;mso-field-code:
-meta15'>‹footer›</span><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-<v:shapetype id="_x0000_s3077" style='position:absolute;left:306pt;top:684pt;
- width:234pt;height:36pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="slideNumber" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s3077" class=O style='text-align:right'><span
-style='font-size:50%;mso-field-code:meta16'>‹#›</span><span style='font-size:
-50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03.htm
deleted file mode 100644
index 94a0006..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03.htm
+++ /dev/null
@@ -1,57 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m1026" class=T>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m1027" style='tab-stops:.4427in'>
-
-<div class=B>Click to edit Master text styles&#13;</div>
-
-<div class=B1>Second level&#13;</div>
-
-<div class=B2>Third level&#13;</div>
-
-<div class=B3>Fourth level&#13;</div>
-
-<div class=B4>Fifth level</div>
-
-</div>
-
-<div v:shape="_x0000_s1033" class=O><span style='mso-bidi-font-family:Arial;
-font-size:42%'><span style='mso-spacerun:yes'> </span></span><span
-style='font-size:42%'>New Features of UML2</span><span lang=EN-US
-style='font-size:42%;mso-ansi-language:EN-US'> |<span
-style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM Corp.,
-2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
-
-<div v:shape="_x0000_s1035" class=O style='mso-line-spacing:"100 50 0";
-mso-char-wrap:1;mso-kinsoku-overflow:1'><span lang=EN-US style='mso-bidi-font-family:
-Arial;font-size:42%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>‹#›</b></span><span
-lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
-EN-US;mso-special-format:lastCR'><b>&#13;</b></span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03.xml b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03.xml
deleted file mode 100644
index 02575eb..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout><p:colorscheme
-  colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/>
- <v:background id="_x0000_s1025" o:bwmode="white" fillcolor="white [0]">
-  <v:fill color2="#339 [5]"/>
- </v:background><p:shaperange id="_x0000_s1032">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s1032" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master03_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_m1026">
-  <v:shapetype id="_x0000_m1026" style='position:absolute;left:54pt;top:84pt;
-   width:612pt;height:42pt;v-text-anchor:middle' coordsize="21600,21600"
-   o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f"
-   fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m1027">
-  <v:shapetype id="_x0000_m1027" style='position:absolute;left:54pt;top:138pt;
-   width:612pt;height:342pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
-   stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s1031">
-  <v:shape id="_x0000_s1031" type="#_x0000_t75" style='position:absolute;
-   left:14.75pt;top:0;width:262.125pt;height:76pt' o:userdrawn="t">
-   <v:imagedata src="master03_image002.jpg" o:title="eclipsecon_2008"
-    croptop="8573f" cropbottom="8252f"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s1033">
-  <v:rect id="_x0000_s1033" style='position:absolute;left:114pt;top:509.875pt;
-   width:606pt;height:19.25pt' o:bwmode="black" o:userdrawn="t" filled="f"
-   fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]"/>
-   <v:shadow color="gray [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-   <p:tag name="___PPTMac11" type="binary" datasize="284" dataoffset="0"/>
-  </v:rect><v:rect id="_x0000_s1035" style='position:absolute;left:0;top:514.75pt;
-   width:79.25pt;height:25.25pt' o:bwmode="black" filled="f" fillcolor="#bbe0e3 [4]"
-   stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:rect></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_image001.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_image001.jpg
deleted file mode 100644
index 6218aec..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_image001.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_image002.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_image002.jpg
deleted file mode 100644
index 6ebe300..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_image002.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_image005.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_image005.jpg
deleted file mode 100644
index df11cf0..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_image005.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_image006.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_image006.jpg
deleted file mode 100644
index 3caadfb..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_image006.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_stylesheet.css b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_stylesheet.css
deleted file mode 100644
index 38aff96..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master03_stylesheet.css
+++ /dev/null
@@ -1,476 +0,0 @@
-body
-	{width:534px;
-	height:400px;}
-.TB
-	{mso-special-format:nobullet•;}
-.T
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#2F2672;
-	font-size:133%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.BB
-	{mso-special-format:bullet•;}
-.B
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:114%;
-	mso-margin-left-alt:109;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B1B
-	{mso-special-format:bulletw;
-	font-family:Wingdings;}
-.B1
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:95%;
-	mso-margin-left-alt:395;
-	mso-text-indent-alt:252;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B2B
-	{mso-special-format:bullet§;
-	font-family:Wingdings;}
-.B2
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:85%;
-	mso-margin-left-alt:613;
-	mso-text-indent-alt:504;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B3B
-	{mso-special-format:bullet\F0AA;
-	font-family:Wingdings;}
-.B3
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:76%;
-	mso-margin-left-alt:826;
-	mso-text-indent-alt:685;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B4B
-	{mso-special-format:bullet\F0AB;
-	font-family:Wingdings;}
-.B4
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:76%;
-	mso-margin-left-alt:1081;
-	mso-text-indent-alt:935;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.NB
-	{mso-special-format:nobullet•;}
-.N
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N1B
-	{mso-special-format:nobullet•;}
-.N1
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N2B
-	{mso-special-format:nobullet•;}
-.N2
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N3B
-	{mso-special-format:nobullet•;}
-.N3
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N4N
-	{mso-special-format:nobullet•;}
-.N4
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.OB
-	{mso-special-format:nobullet•;}
-.O
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:114%;}
-.O1B
-	{mso-special-format:nobullet•;}
-.O1
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:114%;}
-.O2B
-	{mso-special-format:nobullet•;}
-.O2
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:114%;}
-.O3B
-	{mso-special-format:nobullet•;}
-.O3
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:114%;}
-.O4B
-	{mso-special-format:nobullet•;}
-.O4
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:114%;}
-.CBB
-	{mso-special-format:nobullet•;}
-.CB
-	{text-align:center;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:114%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB1B
-	{mso-special-format:nobulletw;
-	font-family:Wingdings;}
-.CB1
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:95%;
-	mso-margin-left-alt:252;
-	mso-text-indent-alt:252;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB2B
-	{mso-special-format:nobullet§;
-	font-family:Wingdings;}
-.CB2
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:85%;
-	mso-margin-left-alt:504;
-	mso-text-indent-alt:504;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB3B
-	{mso-special-format:nobullet\F0AA;
-	font-family:Wingdings;}
-.CB3
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:76%;
-	mso-margin-left-alt:685;
-	mso-text-indent-alt:685;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB4B
-	{mso-special-format:nobullet\F0AB;
-	font-family:Wingdings;}
-.CB4
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:76%;
-	mso-margin-left-alt:935;
-	mso-text-indent-alt:935;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CTB
-	{mso-special-format:nobullet•;}
-.CT
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#2F2672;
-	font-size:133%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HBB
-	{mso-special-format:bullet•;}
-.HB
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:95%;
-	mso-margin-left-alt:109;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB1B
-	{mso-special-format:bulletw;
-	font-family:Wingdings;}
-.HB1
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:85%;
-	mso-margin-left-alt:395;
-	mso-text-indent-alt:252;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB2B
-	{mso-special-format:bullet§;
-	font-family:Wingdings;}
-.HB2
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:76%;
-	mso-margin-left-alt:613;
-	mso-text-indent-alt:504;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB3B
-	{mso-special-format:bullet\F0AA;
-	font-family:Wingdings;}
-.HB3
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:826;
-	mso-text-indent-alt:685;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB4B
-	{mso-special-format:bullet\F0AB;
-	font-family:Wingdings;}
-.HB4
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:1081;
-	mso-text-indent-alt:935;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QBB
-	{mso-special-format:bullet•;}
-.QB
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:85%;
-	mso-margin-left-alt:109;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB1B
-	{mso-special-format:bulletw;
-	font-family:Wingdings;}
-.QB1
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:76%;
-	mso-margin-left-alt:395;
-	mso-text-indent-alt:252;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB2B
-	{mso-special-format:bullet§;
-	font-family:Wingdings;}
-.QB2
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:613;
-	mso-text-indent-alt:504;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB3B
-	{mso-special-format:bullet\F0AA;
-	font-family:Wingdings;}
-.QB3
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:826;
-	mso-text-indent-alt:685;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB4B
-	{mso-special-format:bullet\F0AB;
-	font-family:Wingdings;}
-.QB4
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:1081;
-	mso-text-indent-alt:935;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.TblB
-	{mso-special-format:nobullet•;}
-.Tbl
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:95%;
-	mso-margin-left-alt:109;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl1B
-	{mso-special-format:nobulletw;
-	font-family:Wingdings;}
-.Tbl1
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:85%;
-	mso-margin-left-alt:395;
-	mso-text-indent-alt:252;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl2B
-	{mso-special-format:nobullet§;
-	font-family:Wingdings;}
-.Tbl2
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:76%;
-	mso-margin-left-alt:613;
-	mso-text-indent-alt:504;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl3B
-	{mso-special-format:nobullet\F0AA;
-	font-family:Wingdings;}
-.Tbl3
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:826;
-	mso-text-indent-alt:685;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl4B
-	{mso-special-format:nobullet\F0AB;
-	font-family:Wingdings;}
-.Tbl4
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:1081;
-	mso-text-indent-alt:935;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.defaultB
-	{mso-special-format:nobullet•;}
-.default
-	{text-align:center;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-ascii-font-family:Arial;
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-weight:normal;
-	font-style:normal;
-	text-decoration:none;
-	text-shadow:none;
-	text-effect:none;
-	mso-fareast-hint:no;
-	layout-flow:horizontal;
-	color:black;
-	mso-color-index:1;
-	font-size:114%;
-	mso-text-raise:0%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:0;
-	mso-text-indent-alt:0;
-	mso-char-wrap:0;
-	mso-kinsoku-overflow:0;
-	direction:ltr;
-	mso-word-wrap:1;
-	mso-vertical-align-special:baseline;
-	mso-ansi-language:EN-US;}
-a:link
-	{color:#009999 !important;}
-a:active
-	{color:#333399 !important;}
-a:visited
-	{color:#99CC00 !important;}
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master04.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master04.htm
deleted file mode 100644
index 9cad10c..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master04.htm
+++ /dev/null
@@ -1,42 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m24579" class=CT>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m24580" class=CB style='tab-stops:.4427in'>Click to edit
-Master subtitle style</div>
-
-<div v:shape="_x0000_s24584" class=O style='mso-char-wrap:1;mso-kinsoku-overflow:
-1'><span style='mso-bidi-font-family:Arial;font-size:58%'>170</span></div>
-
-<div v:shape="_x0000_s24585" class=O><span lang=EN-US style='font-size:50%;
-mso-ansi-language:EN-US'>Copyright © IBM Corp., 2007-2008. </span><span
-style='mso-bidi-font-family:Arial;font-size:50%'>|<span
-style='mso-spacerun:yes'>  </span>March-17-2008<span style='mso-spacerun:yes'> 
-</span>|</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master04.xml b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master04.xml
deleted file mode 100644
index b9ae048..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master04.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="24"/>
- </o:shapelayout><p:colorscheme
-  colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/>
- <v:background id="_x0000_s24577" o:bwmode="white" fillcolor="white [0]">
-  <v:fill color2="#339 [5]"/>
- </v:background><p:shaperange id="_x0000_s24578">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s24578" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master03_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_m24579">
-  <v:shapetype id="_x0000_m24579" style='position:absolute;left:54pt;top:126pt;
-   width:612pt;height:90pt;v-text-anchor:middle' coordsize="21600,21600"
-   o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f"
-   fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="centerTitle"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m24580">
-  <v:shapetype id="_x0000_m24580" style='position:absolute;left:108pt;top:270pt;
-   width:7in;height:138pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
-   stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="subTitle" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s24581">
-  <v:shape id="_x0000_s24581" type="#_x0000_t75" style='position:absolute;
-   left:14.75pt;top:0;width:262.125pt;height:76pt' o:userdrawn="t">
-   <v:imagedata src="master03_image002.jpg" o:title="eclipsecon_2008"
-    croptop="8573f" cropbottom="8252f"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s24584">
-  <v:shapetype id="_x0000_s24584" style='position:absolute;left:542pt;top:19pt;
-   width:168pt;height:37.5pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
-   stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="gray [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-   <p:tag name="___PPTMac11" type="binary" datasize="284" dataoffset="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s24585">
-  <v:rect id="_x0000_s24585" style='position:absolute;left:3.625pt;top:508.375pt;
-   width:716.5pt;height:21.625pt' o:bwmode="black" o:userdrawn="t" filled="f"
-   fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]"/>
-   <v:shadow color="gray [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-   <p:tag name="___PPTMac11" type="binary" datasize="284" dataoffset="2"/>
-  </v:rect></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master04_image003.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master04_image003.jpg
deleted file mode 100644
index df11cf0..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master04_image003.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master04_image004.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master04_image004.jpg
deleted file mode 100644
index 3caadfb..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/master04_image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/notes_flag.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/notes_flag.gif
deleted file mode 100644
index 608b349..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/notes_flag.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/outline.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/outline.htm
deleted file mode 100644
index 4adc55c..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/outline.htm
+++ /dev/null
@@ -1,1583 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<script src=script.js></script><script><!--
-if( !(IsWin("PPTOtl")||IsWin("PPTNav")||IsWin("PPTOtlNav")) )
-{
-	obj = GetObj("Main-File")
-	parent.location.href=obj.href
-}
-var gOtlHiliteClr="#ffffff",gOtlNormalClr="#000000",gOtlActiveClr="#ffff00",gSelected="",gTxtState=false,gChildEntryTable=new Array()
-function Load()
-{
-	if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
-	if( g_supportsPPTHTML ) {
-		if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true; return }
-		if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); parent.gOtlNavLoaded=true; return }
-	}
-}
-function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
-function LoadNav( oId,UpdFunc )
-{
-	document.ondragstart=CancelDrag
-	document.onselectstart=CancelDrag
-	document.body.style.margin=2
-	UpdFunc()
-	obj=document.all.item(oId)
-	obj.style.display="block"
-	obj.style.visibility="visible"
-	document.bgColor="threedface"
-	if( parent.frames["PPTNts"] )
-		notesBtn.style.display = ""
-	if( parent.gHasNarration )
-		nb_voiceBorder.style.display = ""
-}
-function LoadOtl()
-{
-	var otl=GetObj("OtlObj")
-	otl.style.display="block"
-	otl.style.visibility="visible"
-	if( gOtlActiveClr == "" ) gOtlActiveClr=document.linkColor
-	if( gOtlHiliteClr == "" ) gOtlHiliteClr=document.fgColor
-	if( gOtlNormalClr == "" )
-		gOtlNormalClr=document.bgColor
-	else
-		document.bgColor=gOtlNormalClr
-	InitArray()
-	if( ObjExists( parent.gCurSld ) ) {
-		ChangeState( parent.gCurSld,gOtlNormalClr,gOtlHiliteClr )
-		gSelected=parent.gCurSld
-	}
-	else gSelected = -1
-	UpdOtl()
-}
-function UpdOtl(){ UpdIdx(parent.gCurSld) }
-function UpdIdx( idx )
-{
-	if( gSelected != idx ) {
-		if( gSelected > 0 )
-			ChangeState( gSelected,gOtlHiliteClr,gOtlNormalClr )
-		if( ObjExists( idx ) ) {
-			gSelected = idx
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-		}
-		else gSelected = -1
-	}
-	if( gTxtState != parent.gOtlTxtExp ) {
-		state = "block"
-		if( !parent.gOtlTxtExp )
-			state="none"
-		for(ii=0; ii<gChildEntryTable.length; ii++) {
-			obj=gChildEntryTable[ii];
-			if( obj.id == null ) continue;
-			if( obj.id.indexOf("PPTC") >= 0 )
-				obj.style.display=state;
-		}
-		gTxtState=parent.gOtlTxtExp
-		if( ObjExists( gSelected ) )
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-	}
-}
-function InitArray()
-{
-	count=0
-	var list=GetTags(document,"DIV");
-	for(ii=0; ii<list.length; ii++) {
-		obj=list.item(ii)
-		if( obj.id == null ) continue
-		if( obj.id.indexOf("PPTC") >= 0 )
-			gChildEntryTable[count++]=obj
-	}
-}
-function ChangeState( idx,fgColor,bgColor )
-{
-	obj=GetObj("PPTL"+idx)
-	obj.style.color=fgColor
-	obj=GetObj("PPTP"+idx)
-	obj.style.backgroundColor=bgColor
-}
-function ChgClr( o,clr ){ if( o.id != "PPTL"+gSelected ) o.style.color=clr }
-function Over( src ){ ChgClr(GetLink(src),gOtlActiveClr) }
-function Out( src ){ ChgClr(GetLink(src),gOtlHiliteClr) }
-function Follow(src){ window.location.href = GetLink(src).href; }
-function ObjExists( ii ) { obj=GetObj("PPTP"+ii ); return( obj ) }
-function GoToSld( href ){ UpdIdx(parent.GetSldNum(href)); parent.GoToSld( href ) }
-function CancelDrag(){ window.event.cancelBubble=true;window.event.returnValue=false}
-function GetLink(src)
-{
-   if(src.tagName=="A") return src
-   else return GetTags(src,"A").item(0)
-}
-function UpdNav()
-{
-	txt = "<center>";
-	if( parent.GetHrefObj( parent.gCurSld ).mOrigVis == 1 )
-		txt += "Slide " + parent.GetCurSldNum() + " of " + parent.GetNumSlds()
-	else
-		txt += "Hidden Slide"
-	txt += "</center>";
-	nav_text.innerHTML = txt;
-	if( !parent.HasPrevSld() )
-		gBtnArr["nb_prev"].Enabled(0)
-	else
-		gBtnArr["nb_prev"].Enabled(1)
-	if( !parent.HasNextSld() )
-		gBtnArr["nb_next"].Enabled(0)
-	else
-		gBtnArr["nb_next"].Enabled(1)
-	gBtnArr["nb_nts"].SetEnabled()
-	gBtnArr["nb_nts"].SetFlag( parent.gHasNts )
-	gBtnArr["nb_sldshw"].Enabled(1)
-	gBtnArr["nb_voice"].Enabled(1)
-}
-function UpdOtlNav()
-{
-	gBtnArr["nb_otl"].SetEnabled();
-	if( parent.gOtlOpen )
-		gBtnArr["nb_otlTxt"].Enabled( true );
-	else
-		document.all.item("nb_otlTxtBorder").style.visibility = "hidden";
-}
-
-//--></script>
-<style>
-<!--.PTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;
-	padding-left:2px;
-	font-weight:bold;}
-.CTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;}
-a
-	{color:white;
-	text-decoration:none;}
-ul
-	{color:white;
-	margin-bottom:0px;
-	margin-left:20px;}
-.sldNum
-	{margin-top:5px;
-	color:white;}
-.button
-	{position:absolute;
-	width:32px;
-	height:20px;
-	border-style:solid;
-	border-width:1px;
-	border-color:threedface;}
--->
-</style>
-</head>
-
-<body onload="Load()" style='margin:2px'>
-
-<div id=NavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-<table id="notesBtn" style='position:absolute;display:none;width:70px' align=left cellpadding=0
- cellspacing=0>
- <td nowrap>
- <div id="nb_ntsElem" align=center style='position:relative;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt'><img src="notes_flag.gif"
- border=0 id="notes_flag" style='display:none'><span
-style='mso-spacerun:yes'>  </span>Notes</div>
- <div title="Show/Hide Notes" id="nb_nts" style='position:absolute;top:0%;
- left:0%;width:100%;height:100%'></div>
- </td>
-</table>
-
-<table style='position:relative;width:70px' align=right cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_sldshwText" title="Full
-Screen Slide Show" align=center style='position:relative;margin-left:20px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt;cursor:default'>Slide
-Show</div>
- <div id="nb_sldshwBorder" title="Full Screen Slide Show" style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_sldshw" style='position:relative;left:-254px'></div>
- </div>
- </td>
- <td>
- <div id="nb_voiceBorder" style='display:none;position:absolute;top:0;left:-40px;
- width:20px;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_voice" title="Pause/Play Narration" style='position:
- relative;left:-290px'></div>
- </div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_prevBorder" class=button style='left:-30px'>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_prev" title="Previous Slide" style='position:relative;
- left:0px'></div>
- </div>
- <span id="nav_text" style='position:relative;top:3px;width:100px;font-family:
- Arial;color:buttontext;font-size:9pt'></span>
- <div id="nb_nextBorder" class=button>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_next" title="Next Slide" style='position:relative;
- left:-90px'></div>
- </div>
- </td>
-</table>
-</div>
-
-<div id=OtlNavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-
-<table style='position:relative;width:70px' align=left cellpadding=0 cellspacing=0>
- <td nowrap><div title="Show/Hide
-Outline" id="nb_otl"
- style='position:absolute;top:0%;left:0%;width:100%;height:100%;cursor:default'>
- <div id="nb_otlElem" align=center style='position:relative;padding:3px;font-family:Arial;
- color:buttontext;font-size:9pt'>Outline</div></div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td>
- <div style='position:absolute;left:-18px;width:24px;height:20px;border-style:
- solid;border-width:1px;border-color:threedface' id="nb_otlTxtBorder">
- <div style='position:absolute;clip:rect(0px, 22px, 18px, 0px)'><img
- src=buttons.gif id="nb_otlTxt" title="Expand/Collapse Outline"
- style='position:relative;left:-157px'></div>
- </div>
- </td>
-</table>
-
-</div>
-
-<div id=OtlObj style='display:none;visibility:hidden;'>
-
-
-<table width="100%" style='font-family:Arial;font-size:9pt'>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>1</font></div>
-  </td>
-  <td width="100%">
-  <div id=PPTP1 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0001.htm');" id=PPTL1>New Features of UML2:
-  Generics, Static Profile Definition and OCL integration</a></font></div>
-  <div id=PPTC1 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Long Talk</li>
-   <li>(170)</li>
-   <br>
-   <br>
-   <li>James Bruck</li>
-   <li>IBM Rational Software</li>
-   <li>UML2 Committer</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>2</font></div>
-  </td>
-  <td>
-  <div id=PPTP2 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0010.htm');" id=PPTL2>Agenda</a></font></div>
-  <div id=PPTC2 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduction</li>
-   <br>
-   <br>
-   <li>New Features:</li>
-   <br>
-   <br>
-   <ul>
-    <li>Generics</li>
-   </ul>
-   <br>
-   <ul>
-    <li>Static Profile Definition</li>
-   </ul>
-   <br>
-   <ul>
-    <li>OCL Integration</li>
-    <br>
-    <br>
-   </ul>
-   <li>Summary</li>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>3</font></div>
-  </td>
-  <td>
-  <div id=PPTP3 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0011.htm');" id=PPTL3>Introduction: Fill up
-  your Toolbox</a></font></div>
-  <div id=PPTC3 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Creating architectures using basic modeling techniques (Class diagrams,
-       Sequence diagrams etc.) is just the first step.</li>
-   <ul>
-    <br>
-    <br>
-   </ul>
-   <li>Expand your toolbox by adding:</li>
-   <ul>
-    <li>Generics/Templates</li>
-    <ul>
-     <li>Ability to express generic reusable behavior.</li>
-     <br>
-     <br>
-    </ul>
-    <li>Static profile definition</li>
-    <ul>
-     <li>Generate code from profile</li>
-     <li>Now you can specify behavior in your profiles.</li>
-     <br>
-     <br>
-    </ul>
-    <li>OCL Integration</li>
-    <ul>
-     <li>Ability to create constraints, attach them to your model and have all
-         the code necessary to evaluate the constraints using the MDT-OCL
-         project.</li>
-     <br>
-     <br>
-    </ul>
-   </ul>
-   <li>Combination of these tools allows you to make practical use of your
-       models.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>4</font></div>
-  </td>
-  <td>
-  <div id=PPTP4 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0012.htm');" id=PPTL4>Agenda</a></font></div>
-  <div id=PPTC4 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduction</li>
-   <br>
-   <br>
-   <li>New Features</li>
-   <br>
-   <br>
-   <ul>
-    <li>Generics</li>
-   </ul>
-   <br>
-   <ul>
-    <li>Static Profile Definition</li>
-   </ul>
-   <br>
-   <ul>
-    <li>OCL Integration</li>
-    <br>
-    <br>
-   </ul>
-   <li>Summary</li>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>5</font></div>
-  </td>
-  <td>
-  <div id=PPTP5 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0013.htm');" id=PPTL5>Generics: Why Bother?</a></font></div>
-  <div id=PPTC5 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Generics in Java™.</li>
-   <ul>
-    <li>Enhance reusability of an API by isolating generic behavior.</li>
-    <li>Lists and Maps are commonly used since the implementation doesnÂ’t care
-        about the types contained – their clients do.</li>
-    <ul>
-     <br>
-     <br>
-    </ul>
-   </ul>
-   <li>Generics in UML®.</li>
-   <ul>
-    <li>Practical Uses</li>
-    <ul>
-     <li>In an EMF-based modeling world, a practical end-goal of modeling is to
-         generate code.</li>
-     <li>Understanding how to express templates and model precisely using UML
-         constructs is useful.</li>
-    </ul>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>6</font></div>
-  </td>
-  <td>
-  <div id=PPTP6 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0014.htm');" id=PPTL6>Generics: Overview</a></font></div>
-  <div id=PPTC6 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The code generation process from UML to Java uses EMF.</li>
-   <ul>
-    <li><span style='mso-spacerun:yes'>  </span>An intermediate Ecore
-        representation is created.</li>
-    <li><span style='mso-spacerun:yes'>  </span>Behind the scenes, MDT-UML2
-        converts from UML to Ecore.</li>
-   </ul>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>7</font></div>
-  </td>
-  <td>
-  <div id=PPTP7 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0015.htm');" id=PPTL7>Generics: Concepts – The
-  Players</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>8</font></div>
-  </td>
-  <td>
-  <div id=PPTP8 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0016.htm');" id=PPTL8>Generics: Concepts - UML</a></font></div>
-  <div id=PPTC8 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>A TemplateableElement that contains a TemplateSignature is referred to
-       as a Template.</li>
-   <br>
-   <br>
-   <li><span style='mso-spacerun:yes'> </span>If a TemplateableElement has
-       template parameters, a small dashed rectangle is superimposed.</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>9</font></div>
-  </td>
-  <td>
-  <div id=PPTP9 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0017.htm');" id=PPTL9>Generics: Concepts - UML</a></font></div>
-  <div id=PPTC9 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>10</font></div>
-  </td>
-  <td>
-  <div id=PPTP10 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0018.htm');" id=PPTL10>Generics: Concepts –
-  The Players</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>11</font></div>
-  </td>
-  <td>
-  <div id=PPTP11 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0063.htm');" id=PPTL11>Generics: Concepts -
-  Java</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>12</font></div>
-  </td>
-  <td>
-  <div id=PPTP12 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0019.htm');" id=PPTL12>Generics: Concepts -
-  UML</a></font></div>
-  <div id=PPTC12 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>TemplateBinding</li>
-   <ul>
-    <li>Substitution of actual parameters for the formal template parameters.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>13</font></div>
-  </td>
-  <td>
-  <div id=PPTP13 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0021.htm');" id=PPTL13>Generics: Examples –
-  Generic Operations</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>14</font></div>
-  </td>
-  <td>
-  <div id=PPTP14 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0022.htm');" id=PPTL14>Generics: Examples -
-  Wildcards</a></font></div>
-  <div id=PPTC14 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>In Java, wildcards are represented by ? which stands for an unknown
-       type.</li>
-   <br>
-   <br>
-   <li>When we talk about bounds we refer to the ability to specify that
-       bindings must either be the super type of some classifier or extend some
-       classifier.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>15</font></div>
-  </td>
-  <td>
-  <div id=PPTP15 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0023.htm');" id=PPTL15>Generics: Examples -
-  Wildcards</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>16</font></div>
-  </td>
-  <td>
-  <div id=PPTP16 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0024.htm');" id=PPTL16>Generics: Enhanced
-  Profile</a></font></div>
-  <div id=PPTC16 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML cannot capture everything.</li>
-   <li>&lt;&lt;eGenericType&gt;&gt;</li>
-   <ul>
-    <li>For code generation, we want to mark classes as intermediary constructs
-        (not included in final Java representation).</li>
-    <li>Introduce upper and lower bounds.</li>
-   </ul>
-   <li>&lt;&lt;eTypeParameter&gt;&gt;</li>
-   <ul>
-    <li>Introduce multiple bounds.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>17</font></div>
-  </td>
-  <td>
-  <div id=PPTP17 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0025.htm');" id=PPTL17>Generics: Examples -
-  Wildcards</a></font></div>
-  <div id=PPTC17 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>LetÂ’s revisit our previous example with wildcards and now consider
-       stereotype properties.</li>
-   <ul>
-    <li>We can set the ‘upper’ and ‘lower’ bounds on our
-        &lt;&lt;EGeneric&gt;&gt; stereotype.</li>
-    <li>In the case of our Wildcard_extends_Car, we have the following:</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>18</font></div>
-  </td>
-  <td>
-  <div id=PPTP18 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0026.htm');" id=PPTL18>Generics: Examples –
-  Multiple Constraining Classifiers</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>19</font></div>
-  </td>
-  <td>
-  <div id=PPTP19 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0078.htm');" id=PPTL19>Generics: Demo</a></font></div>
-  <div id=PPTC19 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Code generation from a model with generics specified.</li>
-   <br>
-   <br>
-   <ul>
-    <br>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>20</font></div>
-  </td>
-  <td>
-  <div id=PPTP20 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0028.htm');" id=PPTL20>Generics: Tips &amp;
-  Resources</a></font></div>
-  <div id=PPTC20 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Anything that can be expressed in Java can be represented with UML
-       constructs.</li>
-   <br>
-   <br>
-   <li>Remember that in UML, you need concrete representations of your generic
-       classes (bound classes) in order to use them.</li>
-   <ul>
-    <li>These extra constructs are not required in Java or EMF.</li>
-   </ul>
-   <br>
-   <li>If you get stuck</li>
-   <ul>
-    <li>Use the Ecore to UML2 converter.<span style='mso-spacerun:yes'> 
-        </span>Start with EMF representation and then generate UML
-        representation.</li>
-    <li>Can be simpler for those who understand EMF.</li>
-    <ul>
-     <br>
-     <br>
-    </ul>
-   </ul>
-   <li>Changes to upcoming version of UML meta-model.</li>
-   <ul>
-    <li>RTF issue: http://www.omg.org/issues/uml2-rtf.html#Issue11243</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>21</font></div>
-  </td>
-  <td>
-  <div id=PPTP21 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0029.htm');" id=PPTL21>Generics: References</a></font></div>
-  <div id=PPTC21 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>More in-depth articles can be found on the UML2 wiki</li>
-   <ul>
-    <li><span style='mso-spacerun:yes'> </span>http://wiki.eclipse.org/MDT-UML2</li>
-   </ul>
-   <br>
-   <li>UML superstructure specification</li>
-   <ul>
-    <li><span style='mso-spacerun:yes'> </span>http://www.omg.org/cgi-bin/doc?formal/07-02-05</li>
-   </ul>
-   <br>
-   <li>The generics tutorial</li>
-   <ul>
-    <li>http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf</li>
-    <br>
-    <br>
-   </ul>
-   <li>Java Generics FAQ by Angelika Langer</li>
-   <ul>
-    <li>http://www.angelikalanger.com/GenericsFAQ/JavaGenericsFAQ.html</li>
-    <br>
-    <br>
-   </ul>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>22</font></div>
-  </td>
-  <td>
-  <div id=PPTP22 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0030.htm');" id=PPTL22>Agenda</a></font></div>
-  <div id=PPTC22 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduction</li>
-   <br>
-   <br>
-   <li>New Features:</li>
-   <br>
-   <br>
-   <ul>
-    <li>Generics</li>
-   </ul>
-   <br>
-   <ul>
-    <li>Static Profile Definition</li>
-   </ul>
-   <br>
-   <ul>
-    <li>OCL Integration</li>
-    <br>
-    <br>
-   </ul>
-   <li>Summary</li>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>23</font></div>
-  </td>
-  <td>
-  <div id=PPTP23 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0031.htm');" id=PPTL23>Static Profile
-  Definition: What is a profile?</a></font></div>
-  <div id=PPTC23 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>A profile is a lightweight extension mechanism for UML.</li>
-   <ul>
-    <li>Does not specialize meta-types from UML, rather uses meta-class
-        extensions.</li>
-   </ul>
-   <br>
-   <li>It enables customization of UML for a specific domain to make modeling
-       easier.</li>
-   <br>
-   <br>
-   <li>Primary extension construct is the Stereotype.</li>
-   <br>
-   <br>
-   <li>Stereotypes can be used to add:</li>
-   <ul>
-    <li>Keywords</li>
-    <li>Constraints</li>
-    <li>Images</li>
-    <li>Properties</li>
-    <li>Behavior</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>24</font></div>
-  </td>
-  <td>
-  <div id=PPTP24 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0067.htm');" id=PPTL24>Static Profile
-  Definition: Example</a></font></div>
-  <div id=PPTC24 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Stereotype extending Class meta-class from UML.</li>
-   <ul>
-    <br>
-    <br>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>25</font></div>
-  </td>
-  <td>
-  <div id=PPTP25 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0074.htm');" id=PPTL25>Static Profile
-  Definition: Workflow - Current</a></font></div>
-  <div id=PPTC25 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>We create our profile using UML.</li>
-   <li>Define our profile.</li>
-   <li>Use our profile by setting applying profile and stereotypes.</li>
-   <li>Get and set properties of the stereotype.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>26</font></div>
-  </td>
-  <td>
-  <div id=PPTP26 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0071.htm');" id=PPTL26>Static Profile
-  Definition: Current Workflow</a></font></div>
-  <div id=PPTC26 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The current workflow involves “defining” our profiles.</li>
-   <ul>
-    <li>Generates an Ecore representation.</li>
-    <li>Makes use of dynamic EMF.</li>
-    <ul>
-     <br>
-     <br>
-    </ul>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>27</font></div>
-  </td>
-  <td>
-  <div id=PPTP27 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0066.htm');" id=PPTL27>Static Profile
-  Definition: What is it?</a></font></div>
-  <div id=PPTC27 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>When we talk about “Static Profile Definition” we are talking about
-       generating code from our profile.</li>
-   <br>
-   <br>
-   <li>The “define” step is therefore no longer necessary.<span
-       style='mso-spacerun:yes'>  </span>It is replaced by a code generation
-       step.</li>
-   <ul>
-    <br>
-    <br>
-   </ul>
-   <li>Both workflows will be supported going forward.</li>
-   <ul>
-    <li>Older workflow can be useful for rapid testing.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>28</font></div>
-  </td>
-  <td>
-  <div id=PPTP28 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0035.htm');" id=PPTL28>Static Profile
-  Definition: Workflow (New)</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>29</font></div>
-  </td>
-  <td>
-  <div id=PPTP29 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0037.htm');" id=PPTL29>Static Profile
-  Definition: Setting nsURI.</a></font></div>
-  <div id=PPTC29 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Set the nsURI of the &lt;&lt;EPackage&gt;&gt; stereotype applied to the
-       profile root.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>30</font></div>
-  </td>
-  <td>
-  <div id=PPTP30 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0038.htm');" id=PPTL30>Static Profile
-  Definition: Code Generation.</a></font></div>
-  <div id=PPTC30 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Generating Code for your Profile.</li>
-   <li>Reference UML and Ecore generator models since you do not need to
-       regenerate code for them.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>31</font></div>
-  </td>
-  <td>
-  <div id=PPTP31 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0039.htm');" id=PPTL31>Static Profile
-  Definition: Extension Point.</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>32</font></div>
-  </td>
-  <td>
-  <div id=PPTP32 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0076.htm');" id=PPTL32>Static Profile
-  Definition: Demo</a></font></div>
-  <div id=PPTC32 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Code generation.</li>
-   <li>Derived properties in profiles.</li>
-   <br>
-   <br>
-   <ul>
-    <br>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>33</font></div>
-  </td>
-  <td>
-  <div id=PPTP33 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0075.htm');" id=PPTL33>Static Profile
-  Definition: Why Bother?</a></font></div>
-  <div id=PPTC33 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduce behavior.</li>
-   <br>
-   <br>
-   <li>Customize generated code.</li>
-   <br>
-   <br>
-   <li>Opens up possibilities for derived constraints.</li>
-   <br>
-   <br>
-   <li>Getting and setting values are easier and more intuitive since an
-       instance of the object is returned.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>34</font></div>
-  </td>
-  <td>
-  <div id=PPTP34 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0064.htm');" id=PPTL34>Static Profile
-  Definition: Examples - Current</a></font></div>
-  <div id=PPTC34 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Applying stereotype.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>35</font></div>
-  </td>
-  <td>
-  <div id=PPTP35 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0040.htm');" id=PPTL35>Static Profile
-  Definition: Examples - New</a></font></div>
-  <div id=PPTC35 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Applying stereotype.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>36</font></div>
-  </td>
-  <td>
-  <div id=PPTP36 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0041.htm');" id=PPTL36>Static Profile
-  Definition: Versioning Issues</a></font></div>
-  <div id=PPTC36 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>With the older way of working with profiles, when changes are made, we
-       must re-define the profile.</li>
-   <ul>
-    <li>We are left with multiple Ecore representations.</li>
-    <li>These representations can be difficult to maintain.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>37</font></div>
-  </td>
-  <td>
-  <div id=PPTP37 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0072.htm');" id=PPTL37>Static Profile
-  Definition: Versioning Issues</a></font></div>
-  <div id=PPTC37 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>With Static Profile Definition, if we introduce API breaking changes, we
-       would have to update the nsURI.</li>
-   <ul>
-    <li>Similar to how meta-models change.</li>
-    <br>
-    <br>
-   </ul>
-   <li>We donÂ’t have to change the nsURI if the changes are backward
-       compatible.</li>
-   <ul>
-    <br>
-    <br>
-   </ul>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>38</font></div>
-  </td>
-  <td>
-  <div id=PPTP38 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0058.htm');" id=PPTL38>Static Profile
-  Definition: Summary</a></font></div>
-  <div id=PPTC38 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Preferred approach going forward.</li>
-   <br>
-   <br>
-   <li>Easier to work with.</li>
-   <br>
-   <br>
-   <li>Introduce behavior.</li>
-   <br>
-   <br>
-   <li>Combine with our next topic: OCL Integration.</li>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>39</font></div>
-  </td>
-  <td>
-  <div id=PPTP39 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0042.htm');" id=PPTL39>Static Profile
-  Definition: References</a></font></div>
-  <div id=PPTC39 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>More in-depth articles can be found on the UML2 wiki: http://wiki.eclipse.org/MDT-UML2</li>
-   <br>
-   <br>
-   <li>New and Noteworthy section: http://wiki.eclipse.org/index.php/MDT_1.0_New_and_Noteworthy#Static_Profile_Definition</li>
-   <br>
-   <br>
-   <br>
-   <ul>
-    <br>
-   </ul>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>40</font></div>
-  </td>
-  <td>
-  <div id=PPTP40 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0043.htm');" id=PPTL40>Agenda</a></font></div>
-  <div id=PPTC40 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduction</li>
-   <br>
-   <br>
-   <li>New Features:</li>
-   <br>
-   <br>
-   <ul>
-    <li>Generics</li>
-   </ul>
-   <br>
-   <ul>
-    <li>Static Profile Definition</li>
-   </ul>
-   <br>
-   <ul>
-    <li>OCL Integration</li>
-    <br>
-    <br>
-   </ul>
-   <li>Summary</li>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>41</font></div>
-  </td>
-  <td>
-  <div id=PPTP41 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0044.htm');" id=PPTL41>OCL Integration: What
-  is it?</a></font></div>
-  <div id=PPTC41 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>OCL is designed to be a simple language for specification of constraints
-       and queries in models.</li>
-   <br>
-   <br>
-   <li>Specifying Constraints</li>
-   <br>
-   <br>
-   <ul>
-    <li>Invariant constraint – condition on attributes (or any feature of
-        context classifier) must always be true.</li>
-   </ul>
-   <br>
-   <ul>
-    <li>Query – specified as the body expression of an operation.</li>
-   </ul>
-   <br>
-   <li>Have code generated from the expressions entered in the UML model.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>42</font></div>
-  </td>
-  <td>
-  <div id=PPTP42 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0045.htm');" id=PPTL42>OCL Integration: Why
-  Bother?</a></font></div>
-  <div id=PPTC42 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Constraints can be evaluated at runtime.</li>
-   <ul>
-    <li>Automated constraint checking allows greater integrity of the model.</li>
-   </ul>
-   <br>
-   <li>Catch errors early.</li>
-   <br>
-   <br>
-   <li>Embellish your code with doc tags containing OCL.</li>
-   <br>
-   <br>
-   <li>UML is not enough.</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>43</font></div>
-  </td>
-  <td>
-  <div id=PPTP43 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0046.htm');" id=PPTL43>OCL Integration:
-  Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>44</font></div>
-  </td>
-  <td>
-  <div id=PPTP44 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0047.htm');" id=PPTL44>OCL Integration:
-  Example-Invariant Constraint</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>45</font></div>
-  </td>
-  <td>
-  <div id=PPTP45 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0061.htm');" id=PPTL45>OCL Integration:
-  Example-Invariant Constraint</a></font></div>
-  <div id=PPTC45 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>OCL dependencies automatically added.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>46</font></div>
-  </td>
-  <td>
-  <div id=PPTP46 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0048.htm');" id=PPTL46>OCL Integration:
-  Example-Invariant Constraint</a></font></div>
-  <div id=PPTC46 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>context: Specifies the element we are referring to.</li>
-   <ul>
-    <li>Context in this example is Car</li>
-   </ul>
-   <li>self: Keyword that indicates the current object.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>47</font></div>
-  </td>
-  <td>
-  <div id=PPTP47 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0073.htm');" id=PPTL47>OCL Integration:
-  Example-Body Condition</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>48</font></div>
-  </td>
-  <td>
-  <div id=PPTP48 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0049.htm');" id=PPTL48>OCL Integration:
-  Example-Body Condition</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>49</font></div>
-  </td>
-  <td>
-  <div id=PPTP49 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0050.htm');" id=PPTL49>OCL Integration:
-  Example-Body Condition</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>50</font></div>
-  </td>
-  <td>
-  <div id=PPTP50 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0051.htm');" id=PPTL50>OCL Integration: Code
-  Generation</a></font></div>
-  <div id=PPTC50 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <li>Specify that you would like ‘Invariant Constraints’ processed.</li>
-   <br>
-   <br>
-   <li>Specify ‘Operation Bodies’ to be added.</li>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>51</font></div>
-  </td>
-  <td>
-  <div id=PPTP51 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0077.htm');" id=PPTL51>OCL Integration: Demo</a></font></div>
-  <div id=PPTC51 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Code generation.</li>
-   <li>Validation.</li>
-   <ul>
-    <br>
-    <br>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>52</font></div>
-  </td>
-  <td>
-  <div id=PPTP52 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0062.htm');" id=PPTL52>OCL Integration: Try it
-  out.</a></font></div>
-  <div id=PPTC52 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Output</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>53</font></div>
-  </td>
-  <td>
-  <div id=PPTP53 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0053.htm');" id=PPTL53>OCL Integration: Tips</a></font></div>
-  <div id=PPTC53 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Have a look at bugzilla https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199
-       for an example of how to hook in validation of your model</li>
-   <ul>
-    <br>
-    <br>
-   </ul>
-   <li>Refer to OCL article at: http://www.eclipse.org/articles/article.php?file=Article-EMF-Codegen-with-OCL/index.html</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>54</font></div>
-  </td>
-  <td>
-  <div id=PPTP54 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0054.htm');" id=PPTL54>Agenda</a></font></div>
-  <div id=PPTC54 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduction</li>
-   <br>
-   <br>
-   <li>New Features:</li>
-   <br>
-   <br>
-   <ul>
-    <li>Generics</li>
-   </ul>
-   <br>
-   <ul>
-    <li>Static Profile Definition</li>
-   </ul>
-   <br>
-   <ul>
-    <li>OCL Integration</li>
-    <br>
-    <br>
-   </ul>
-   <li>Summary</li>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>55</font></div>
-  </td>
-  <td>
-  <div id=PPTP55 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0055.htm');" id=PPTL55>Summary</a></font></div>
-  <div id=PPTC55 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>WeÂ’ve looked at:</li>
-   <ul>
-    <li>Generics</li>
-    <li>Static Profile Definition</li>
-    <li>OCL Integration</li>
-    <br>
-    <br>
-   </ul>
-   <li>Tooling should make it easy for you to use these features.</li>
-   <br>
-   <br>
-   <li>Try it out and report issues.</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>56</font></div>
-  </td>
-  <td>
-  <div id=PPTP56 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0057.htm');" id=PPTL56>&quot;Thank You!&quot;</a></font></div>
-  <div id=PPTC56 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Thank You!</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>57</font></div>
-  </td>
-  <td>
-  <div id=PPTP57 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0059.htm');" id=PPTL57>Legal Notices</a></font></div>
-  <div id=PPTC57 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <li>Copyright © IBM Corp., 2007-2008.<span style='mso-spacerun:yes'> 
-       </span>All rights reserved.<span style='mso-spacerun:yes'> 
-       </span>Source code in this presentation is made available under the EPL,
-       v1.0; remainder of the presentation is licensed under Creative Commons
-       Att. Nc Nd 2.5 license.</li>
-   <br>
-   <br>
-   <li>IBM and the IBM logo are trademarks or registered trademarks of IBM
-       Corporation in the United States, other countries, or both.</li>
-   <br>
-   <br>
-   <li>Rational and the Rational logo are trademarks or registered trademarks
-       of International Business Corporation in the United States, other
-       countries, or both.</li>
-   <br>
-   <br>
-   <li>UML, Unified Modeling Language, and MOF are trademarks or registered
-       trademarks of Object Management Group, Inc.</li>
-   <br>
-   <br>
-   <li>Java and all Java-based trademarks, among others, are trademarks or
-       registered trademarks of Sun Microsystems in the United States, other
-       countries, or both</li>
-   <br>
-   <br>
-   <li>Eclipse and the Eclipse logo are trademarks of the Eclipse Foundation,
-       Inc.</li>
-   <br>
-   <br>
-   <li>Other company, product, and service names may be trademarks or service
-       marks of others.</li>
-   <br>
-   <br>
-   <li>THE INFORMATION DISCUSSED IN THIS PRESENTATION IS PROVIDED FOR
-       INFORMATIONAL PURPOSES ONLY.<span style='mso-spacerun:yes'> 
-       </span>WHILE EFFORTS WERE MADE TO VERIFY THE COMPLETENESS AND ACCURACY
-       OF THE INFORMATION, IT IS PROVIDED “AS IS” WITHOUT WARRANTY OF ANY KIND,
-       EXPRESS OR IMPLIED, AND IBM SHALL NOT BE RESPONSIBLE FOR ANY DAMAGES
-       ARISING OUT OF THE USE OF, OR OTHERWISE RELATED TO, SUCH
-       INFORMATION.<span style='mso-spacerun:yes'>  </span>ANY INFORMATION
-       CONCERNING IBMÂ’S PRODUCT PLANS OR STRATEGY IS SUBJECT TO CHANGE BY IBM
-       WITHOUT NOTICE.</li>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
-</table>
-
-
-
-</div>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/pres.xml b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/pres.xml
deleted file mode 100644
index 1df3392..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/pres.xml
+++ /dev/null
@@ -1,183 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <p:presentation sizeof="screen" gridspacingx="49152" gridspacingy="49152">
-  <p:master id="3" slidesn="748A66,DD262D00" type="main" href="master03.htm"
-   xmlhref="master03.xml" template="Blank Presentation" layout="title_body"
-   slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-    <p:colorscheme
-     colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/>
-    <p:colorscheme
-     colors="#FFFFFF,#000000,#969696,#000000,#FBDF53,#FF9966,#CC3300,#996600"/>
-    <p:colorscheme
-     colors="#FFFFFF,#000000,#808080,#000000,#99CCFF,#CCCCFF,#3333CC,#AF67FF"/>
-    <p:colorscheme
-     colors="#DEF6F1,#000000,#969696,#000000,#FFFFFF,#8DC6FF,#0066CC,#00A800"/>
-    <p:colorscheme
-     colors="#FFFFD9,#000000,#777777,#000000,#FFFFF7,#33CCCC,#FF5050,#FF9900"/>
-    <p:colorscheme
-     colors="#008080,#FFFFFF,#005A58,#FFFF99,#006462,#6D6FC7,#00FFFF,#00FF00"/>
-    <p:colorscheme
-     colors="#800000,#FFFFFF,#5C1F00,#DFD293,#713E39,#BE7960,#FFFF99,#D3A219"/>
-    <p:colorscheme
-     colors="#000099,#FFFFFF,#003366,#CCFFFF,#3366CC,#00B000,#66CCFF,#FFE701"/>
-    <p:colorscheme
-     colors="#000000,#FFFFFF,#336699,#E3EBF1,#003399,#468A4B,#66CCFF,#F0E500"/>
-    <p:colorscheme
-     colors="#686B5D,#FFFFFF,#777777,#D1D1CB,#909082,#809EA8,#FFCC66,#E9DCB9"/>
-    <p:colorscheme
-     colors="#666699,#FFFFFF,#3E3E5C,#FFFFFF,#60597B,#6666FF,#99CCFF,#FFFF99"/>
-    <p:colorscheme
-     colors="#523E26,#FFFFFF,#2D2015,#DFC08D,#8C7B70,#8F5F2F,#CCB400,#8C9EA0"/>
-   </p:schemes>
-  </p:master>
-  <p:master id="4" slidesn="748A69,165F9C80" type="title" href="master04.htm"
-   xmlhref="master04.xml" layout="title_subtitle"
-   slots="centerTitle,subTitle,dateTime,footer,slideNumber"/>
-  <p:master id="1" slidesn="748A67,72C1BC80" type="notes" href="master01.htm"
-   layout="notes" slots="header,dateTime,slideImage,body,footer,slideNumber"/>
-  <p:master id="2" slidesn="748A67,70F7F900" type="handout" href="master02.htm"
-   layout="handout" slots="header,dateTime,footer,slideNumber"/>
-  <p:slide id="1" slidesn="748A66,DDBEC380" href="slide0001.htm"
-   masterhref="master04.htm" layout="title_subtitle"
-   slots="centerTitle,subTitle"/>
-  <p:slide id="10" slidesn="748A68,DEF0F000" href="slide0010.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="11" slidesn="748A68,DEF0F000" href="slide0011.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="12" slidesn="748A68,DEF0F000" href="slide0012.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="13" slidesn="748A68,DEF0F000" href="slide0013.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="14" slidesn="748A68,DEF0F000" href="slide0014.htm"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="15" slidesn="748A68,DEF0F000" href="slide0015.htm"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="16" slidesn="748A68,DEF0F000" href="slide0016.htm"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="17" slidesn="748A68,DEF0F000" href="slide0017.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="18" slidesn="748A68,DEF0F000" href="slide0018.htm"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="63" slidesn="748A68,DEF0F000" href="slide0063.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="19" slidesn="748A68,DEF0F000" href="slide0019.htm"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="21" slidesn="748A68,DEF0F000" href="slide0021.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="22" slidesn="748A68,DEF0F000" href="slide0022.htm"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="23" slidesn="748A68,DEF0F000" href="slide0023.htm"
-   layout="2_columns" slots="title,object,object"/>
-  <p:slide id="24" slidesn="748A68,DEF0F000" href="slide0024.htm"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="25" slidesn="748A68,DEF0F000" href="slide0025.htm"
-   layout="column_2_rows" slots="title,body,object,object"/>
-  <p:slide id="26" slidesn="748A68,DEF0F000" href="slide0026.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="78" slidesn="748A68,DEF0F000" href="slide0078.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="28" slidesn="748A68,DEF0F000" href="slide0028.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="29" slidesn="748A68,DEF0F000" href="slide0029.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="30" slidesn="748A68,DEF0F000" href="slide0030.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="31" slidesn="748A68,DEF0F000" href="slide0031.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="67" slidesn="748A68,DEF0F000" href="slide0067.htm"
-   layout="column_2_rows" slots="title,body,object,object"/>
-  <p:slide id="74" slidesn="748A68,DEF0F000" href="slide0074.htm"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="71" slidesn="748A68,DEF0F000" href="slide0071.htm"
-   layout="column_2_rows" slots="title,body,object,object"/>
-  <p:slide id="66" slidesn="748A68,DEF0F000" href="slide0066.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="35" slidesn="748A68,DEF0F000" href="slide0035.htm"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="37" slidesn="748A68,DEF0F000" href="slide0037.htm"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="38" slidesn="748A68,DEF0F000" href="slide0038.htm"
-   layout="column_2_rows" slots="title,body,object,object"/>
-  <p:slide id="39" slidesn="748A68,DEF0F000" href="slide0039.htm"
-   layout="column_2_rows" slots="title,body,object,object"/>
-  <p:slide id="76" slidesn="748A68,DEF0F000" href="slide0076.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="75" slidesn="748A68,DEF0F000" href="slide0075.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="64" slidesn="748A68,DEF0F000" href="slide0064.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="40" slidesn="748A68,DEF0F000" href="slide0040.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="41" slidesn="748A68,DEF0F000" href="slide0041.htm"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="72" slidesn="748A68,DEF0F000" href="slide0072.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="58" slidesn="748A68,DEF0F000" href="slide0058.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="42" slidesn="748A68,DEF0F000" href="slide0042.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="43" slidesn="748A68,DEF0F000" href="slide0043.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="44" slidesn="748A68,DEF0F000" href="slide0044.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="45" slidesn="748A68,DEF0F000" href="slide0045.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="46" slidesn="748A68,DEF0F000" href="slide0046.htm"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="47" slidesn="748A68,DEF0F000" href="slide0047.htm"
-   layout="2_columns" slots="title,object,object"/>
-  <p:slide id="61" slidesn="748A68,DEF0F000" href="slide0061.htm"
-   layout="column_2_rows" slots="title,body,object,object"/>
-  <p:slide id="48" slidesn="748A68,DEF0F000" href="slide0048.htm"
-   layout="column_2_rows" slots="title,body,object,object"/>
-  <p:slide id="73" slidesn="748A68,DEF0F000" href="slide0073.htm"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="49" slidesn="748A68,DEF0F000" href="slide0049.htm"
-   layout="column_2_rows" slots="title,object,object,object"/>
-  <p:slide id="50" slidesn="748A68,DEF0F000" href="slide0050.htm"
-   layout="column_2_rows" slots="title,object,object,object"/>
-  <p:slide id="51" slidesn="748A68,DEF0F000" href="slide0051.htm"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="77" slidesn="748A68,DEF0F000" href="slide0077.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="62" slidesn="748A68,DEF0F000" href="slide0062.htm"
-   layout="column_2_rows" slots="title,body,object,object"/>
-  <p:slide id="53" slidesn="748A68,DEF0F000" href="slide0053.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="54" slidesn="748A68,DEF0F000" href="slide0054.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="55" slidesn="748A68,DEF0F000" href="slide0055.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="57" slidesn="748A68,DEF0F000" href="slide0057.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="59" slidesn="748A68,DEF0F000" href="slide0059.htm"
-   layout="title_body" slots="title,body"/>
-  <p:viewstate type="slideView" slidehref="slide0067.htm" scale="100"
-   restoredleft="156" restoredtop="887" manualadjusttop="t" hideoutlineicons="t"/>
-  <p:tag name="___PPT2001" type="binary" datasize="68" dataoffset="3"/>
-  <p:tag name="___PPTMac11" type="binary" datasize="1674" dataoffset="4"/>
-  <p:kinsoku language="Japanese" level="levelOne"/>
-  <p:font name="Arial" charset="0" type="4"/>
-  <p:font name="MS Pゴシック" charset="128" type="6" family="34"/>
-  <p:font name="Wingdings" charset="2" type="6" family="2"/>
-  <p:font name="Times" charset="0" type="4" family="80"/>
-  <p:font name="Arial Unicode MS" charset="128" type="6" family="34"/>
-  <p:font name="Times New Roman" charset="0" type="6" family="18"/>
-  <p:font name="Courier New" charset="0" type="6" family="49"/>
-  <p:headersfooters formatid="0" noheader="t"/>
-  <p:pptdocumentsettings framecolors="WhiteTextOnBlack" hideslideanimation="t"
-   browsersupport="v4"/>
-  <p:htmlpublishsettings browsersupport="v4"
-   href="C:\UMLDevelopment\EclipseCon2008\LONG_TALK\EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm"
-   noloadinbrowser="t"/>
- </p:presentation>
- <o:shapedefaults v:ext="edit" spidmax="139268" style='mso-wrap-style:none;
-  v-text-anchor:middle' strokecolor="red">
-  <v:fill opacity="0"/>
-  <v:stroke color="red"/>
-  <o:colormru v:ext="edit" colors="red"/>
-  <o:colormenu v:ext="edit" shadowcolor="black"/>
- </o:shapedefaults></xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/preview.wmf b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/preview.wmf
deleted file mode 100644
index 9d5242b..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/script.js b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/script.js
deleted file mode 100644
index 90a6f04..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/script.js
+++ /dev/null
@@ -1,836 +0,0 @@
-function LoadSld()

-{

-	var sld=GetObj("SlideObj")

-	if( !g_supportsPPTHTML ) {

-		sld.style.visibility="visible"

-		return

-	}

-	if( MakeNotesVis() ) return

-	runAnimations = _InitAnimations();

-	if( IsWin("PPTSld") )

-		parent.SldUpdated(GetSldId())

-	g_origSz=parseInt(SlideObj.style.fontSize)

-	g_origH=sld.style.posHeight

-	g_origW=sld.style.posWidth

-	g_scaleHyperlinks=(document.all.tags("AREA").length>0)

-	if( g_scaleHyperlinks )

-		InitHLinkArray()

-	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )

-		document.body.scroll="no"

-	_RSW()

-	if( IsWin("PPTSld") && parent.IsFullScrMode() )

-		FullScrInit();

-	

-	MakeSldVis();

-	ChkAutoAdv()

-

-	if( runAnimations )

-	{

-		if( document.all("NSPlay") )

-			document.all("NSPlay").autoStart = false;

-		if( sld.filters && sld.filters.revealtrans )

-			setTimeout( "document.body.start()", sld.filters.revealtrans.duration * 1000 );

-		else

-			document.body.start();

-	}

-}

-function MakeSldVis()

-{

-	var fTrans=g_showAnimation && SldHasTrans()

-	if( fTrans )

-	{

-		if( g_bgSound ) {

-			idx=g_bgSound.indexOf(",");

-			pptSound.src=g_bgSound.substr( 0, idx );

-			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));

-		}

-		SlideObj.filters.revealtrans.Apply()

-    }

-	SlideObj.style.visibility="visible"

-	if( fTrans )

-		SlideObj.filters.revealtrans.Play()

-}

-function MakeNotesVis()

-{

-	if( !IsNts() ) return false

-	SlideObj.style.display="none"

-	nObj = document.all.item("NotesObj")

-	parent.SetHasNts(0)

-	if( nObj ) {

-		nObj.style.display=""

-		parent.SetHasNts(1)

-	}

-	return 1

-}

-function ChkAutoAdv()

-{

-	if(SldHasTrans())

-		SlideObj.onfilterchange=AutoAdv

-	else

-		AutoAdv()

-}

-function AutoAdv()

-{

-	if(!IsWin("PPTSld") || !gUseSldTimings )return

-	var sld=GetCurSld()

-	if( (sld.mAdvDelay>0) && !parent.IsFramesMode() )

-		setTimeout("parent.GoToNextSld()",sld.mAdvDelay)

-}

-function GetObj(id)

-{

-	if(g_supportsPPTHTML) return document.all(id);

-	else return document.getElementById(id);

-}

-function SldHasTrans() { return SlideObj.style.getAttribute("filter")!="" }

-function GetSldId() { return sId=location.href.substring(location.href.lastIndexOf('/')+1) }

-function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }

-function IsWin( name ) { return window.name == name }

-function IsNts() { return IsWin("PPTNts") }

-function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }

-function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }

-function SupportsPPTHTML()

-{

-	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0

-	if( msie >= 0 )

-		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )

-	else

-		ver=parseInt(appVer)

-	return( ver >= 4 && msie >= 0 )

-}

-function _RSW()

-{

-	if( !g_supportsPPTHTML || IsNts() ||

-	  ( !g_scaleInFrame && (!IsWin("PPTSld") || !parent.IsFullScrMode()) ) )

-		return

-        var padding=0;

-        if( IsWin("PPTSld") && parent.IsFramesMode() ) padding=6

-	cltWidth=document.body.clientWidth-padding

-	cltHeight=document.body.clientHeight-padding

-	factor=(1.0*cltWidth)/g_origW

-	if( cltHeight < g_origH*factor )

-		factor=(1.0*cltHeight)/g_origH

-	newSize = g_origSz * factor

-	if( newSize < 1 ) newSize=1

-	s=SlideObj.style

-	s.fontSize=newSize+"px"

-	s.posWidth=g_origW*factor

-	s.posHeight=g_origH*factor

-	s.posLeft=(cltWidth-s.posWidth+padding)/2

-	s.posTop=(cltHeight-s.posHeight+padding)/2

-	if( g_scaleHyperlinks )

-		ScaleHyperlinks( factor )

-}

-function _InitAnimations()

-{

-	animRuntimeInstalled = ''+document.body.localTime != 'undefined';

-	isFullScreen = (window.name == "PPTSld") && !parent.IsFramesMode();

-	g_animUseRuntime = g_showAnimation && animRuntimeInstalled && !(isFullScreen && parent.IsSldVisited());

-	if( g_animUseRuntime ) {

-		collSeq = document.all.tags("seq");

-		if( collSeq != null ) {

-			for(ii=0;ii<collSeq.length;ii++) {

-				if( collSeq[ii].getAttribute( "p:nodeType" ) == "mainSeq" ) {

-					g_animMainSequence = collSeq[ii];

-					break;

-				}

-			}

-		}

-		if( g_animItemsToHide ) {

-			for(jj = 0; jj < g_animItemsToHide.length; jj++) {

-				if( hideObj = GetObj(g_animItemsToHide[jj]) )

-					hideObj.runtimeStyle.visibility="hidden";

-			}

-		}

-		if( g_animInteractiveItems ){

-			for(jj = 0; jj < g_animInteractiveItems.length; jj++) {

-				if( triggerObj = GetObj(g_animInteractiveItems[jj]) )

-					triggerObj.runtimeStyle.cursor="hand";

-			}

-		}

-		if( gUseSldTimings && ''+g_animSlideTime != 'undefined' ) {

-			adjustedTime = document.body.calculateAutoAdvanceTimes( g_animSlideTime, g_animEffectTimings );

-			if( IsWin("PPTSld") && adjustedTime != g_animSlideTime ) {

-			   var sld = GetCurSld();

-			   sld.mAdvDelay = adjustedTime * 1000;

-			}

-		}

-	}

-	return g_animUseRuntime;

-}

-gSldJump = 0, gSldJumpTrack = 0, gSldJumpIdx = "";

-function _KPH()

-{

-	if( IsNts() ) return;

-	if( !parent.IsFramesMode() && event.keyCode == 27 && !HideMenu() )

-		parent.window.close( self );

-	else if( event.keyCode == 32 ) {

-		if( window.name == "PPTSld" )

-			parent.PPTSld.DocumentOnClick();

-		else

-			parent.GoToNextSld();

-	}

-	CatchNumKeys( parent, event );

-}

-function CatchNumKeys( win, event ) {

-	if( win.IsFullScrMode() && (48<=event.keyCode) && (event.keyCode<=57) ) {

-		gSldJump = 1;

-		gSldJumpIdx += (event.keyCode-48).toString();

-	}

-	if( win.IsFullScrMode() && gSldJump && event.keyCode == 13 ) {

-		var numSlds = parent.GetSldList().mList.length

-		if ( gSldJumpIdx > numSlds )

-			gSldJumpIdx = numSlds;

-		if ( gSldJumpIdx >= 0 ) {

-			if ( gSldJumpIdx == 0 )

-				gSldJumpIdx = 1;

-			var jumpTo = parseInt(gSldJumpIdx);

-			gSldJump = 0; gSldJumpIdx = "";

-			win.GoToSld( parent.GetSldList().mList[jumpTo-1].mSldHref )

-		}

-	}

-}

-function _KDH()

-{

-	if( event.keyCode == 8 ) {

-		event.returnValue = 0;

-		parent.GoToPrevSld();

-	}

-}

-function DocumentOnClick()

-{

-	if( IsNts() || parent.HideMenu() ) return;

-	if( ( g_allowAdvOnClick && (window.name=="PPTSld") && !parent.IsFramesMode() ) ||

-	    (event && event.keyCode==32) ) {

-		if( g_animUseRuntime && g_animMainSequence && g_animMainSequence.cangonext )

-			return;

-		parent.GoToNextSld();

-	}

-}

-

-var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = 1, gId="", g_bgSound="",

-    g_scaleHyperlinks = false, g_allowAdvOnClick = 1, g_showInBrowser = 0, gLoopCont = 0, gUseSldTimings = 1;

-var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && ( (window.name=="PPTSld" && !parent.IsFramesMode()) || g_showInBrowser );var g_animManager = null;

-var g_animUseRuntime = false;

-var g_animItemsToHide, g_animInteractiveItems, g_animSlideTime;

-var g_animMainSequence = null;

-var ENDSHOW_MESG="End of slide show, click to exit.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=57, SCRIPT_HREF="script.js", FULLSCR_HREF="fullscreen.htm";

-var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = 0, gHasNarration = 0, gOtlOpen = true

-window.gPPTHTML=SupportsPPTHTML()

-var gMainDoc=new Array(new hrefList("slide0001.htm",1,-1,1),new hrefList("slide0010.htm",1,-1,1),new hrefList("slide0011.htm",1,-1,1),new hrefList("slide0012.htm",1,-1,1),new hrefList("slide0013.htm",1,-1,1),new hrefList("slide0014.htm",1,-1,1),new hrefList("slide0015.htm",1,-1,1),new hrefList("slide0016.htm",1,-1,1),new hrefList("slide0017.htm",1,-1,1),new hrefList("slide0018.htm",1,-1,1),new hrefList("slide0063.htm",1,-1,1),new hrefList("slide0019.htm",1,-1,1),new hrefList("slide0021.htm",1,-1,1),new hrefList("slide0022.htm",1,-1,1),new hrefList("slide0023.htm",1,-1,1),new hrefList("slide0024.htm",1,-1,1),new hrefList("slide0025.htm",1,-1,1),new hrefList("slide0026.htm",1,-1,1),new hrefList("slide0078.htm",1,-1,1),new hrefList("slide0028.htm",1,-1,1),new hrefList("slide0029.htm",1,-1,1),new hrefList("slide0030.htm",1,-1,1),new hrefList("slide0031.htm",1,-1,1),new hrefList("slide0067.htm",1,-1,1),new hrefList("slide0074.htm",1,-1,1),new hrefList("slide0071.htm",1,-1,1),new hrefList("slide0066.htm",1,-1,1),new hrefList("slide0035.htm",1,-1,1),new hrefList("slide0037.htm",1,-1,1),new hrefList("slide0038.htm",1,-1,1),new hrefList("slide0039.htm",1,-1,1),new hrefList("slide0076.htm",1,-1,1),new hrefList("slide0075.htm",1,-1,1),new hrefList("slide0064.htm",1,-1,1),new hrefList("slide0040.htm",1,-1,1),new hrefList("slide0041.htm",1,-1,1),new hrefList("slide0072.htm",1,-1,1),new hrefList("slide0058.htm",1,-1,1),new hrefList("slide0042.htm",1,-1,1),new hrefList("slide0043.htm",1,-1,1),new hrefList("slide0044.htm",1,-1,1),new hrefList("slide0045.htm",1,-1,1),new hrefList("slide0046.htm",1,-1,1),new hrefList("slide0047.htm",1,-1,1),new hrefList("slide0061.htm",1,-1,1),new hrefList("slide0048.htm",1,-1,1),new hrefList("slide0073.htm",1,-1,1),new hrefList("slide0049.htm",1,-1,1),new hrefList("slide0050.htm",1,-1,1),new hrefList("slide0051.htm",1,-1,1),new hrefList("slide0077.htm",1,-1,1),new hrefList("slide0062.htm",1,-1,1),new hrefList("slide0053.htm",1,-1,1),new hrefList("slide0054.htm",1,-1,1),new hrefList("slide0055.htm",1,-1,1),new hrefList("slide0057.htm",1,-1,1),new hrefList("slide0059.htm",1,-1,1));

-function FullScrInit()

-{

-	g_allowAdvOnClick = GetCurSld().mAdvOnClk

-	document.body.style.backgroundColor="black"

-	document.oncontextmenu=parent._CM;

-	document.onkeydown = _KDH;

-	document.ondragstart=Cancel

-	document.onselectstart=Cancel

-	self.focus()

-}

-function Redirect( frmId )

-{

-	var str=document.location.hash,idx=str.indexOf('#'), sId=GetSldId()

-	if(idx>=0) str=str.substr(1);

-	if( window.name != frmId && ( sId != str) ) {

-		obj = GetObj("Main-File")

-		window.location.href=obj.href+"#"+sId

-		return 1

-	}

-	return 0

-}

-var MHTMLPrefix = CalculateMHTMLPrefix();

-function CalculateMHTMLPrefix()

-{

-	if ( document.location.protocol == 'mhtml:') {

-		href=new String(document.location.href)

-		Start=href.indexOf('!')+1

-		End=href.lastIndexOf('/')+1

-		if (End < Start)

-			return href.substring(0, Start)

-		else

-		return href.substring(0, End)

-	}

-	return '';

-}

-function GetTags(base,tag)

-{

-	if(g_supportsPPTHTML) return base.all.tags(tag);

-	else return base.getElementsByTagName(tag);

-}

-function UpdNtsPane(){ if(frames["PPTNts"]) PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }

-function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }

-function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }

-function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }

-function SetHasNts( fVal )

-{

-	if( gHasNts != fVal ) {

-		gHasNts=fVal

-		UpdNavPane()

-	}

-}

-function ToggleOtlText()

-{

-	gOtlTxtExp=!gOtlTxtExp

-	UpdOtlPane()

-}

-function ToggleOtlPane()

-{

-	frmset=document.all("PPTHorizAdjust")

-	frm=document.all("PPTOtl")

-	if( gOtlOpen )

-		frmset.cols="*,100%"

-	else

-		frmset.cols="25%,*"

-	gOtlOpen=!gOtlOpen

-	frm.noResize=!frm.noResize

-	UpdOtNavPane()

-}

-function ToggleNtsPane()

-{

-	frmset=document.all("PPTVertAdjust")

-	frm=document.all("PPTNts")

-	if( gNtsOpen )

-		frmset.rows="100%,*"

-	else

-		frmset.rows="*,20%"

-	gNtsOpen=!gNtsOpen

-	UpdNtsPane()

-}

-function ClearMedia()

-{

-	if (PPTSld.pptSound) PPTSld.pptSound.loop = 0;

-}

-function FullScreen()

-{

-	if ( PPTSld.g_animUseRuntime )

-		PPTSld.document.body.pause();

-	ClearMedia();

-	var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;

-	if(PPTNav.event.ctrlKey) {

-		var w = (window.screen.availWidth * 1.0) / 2.0

-		var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW

-		win = window.open( MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w + ",height=" + h );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-	else

-	{

-		win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-}

-function ToggleVNarration()

-{

-	rObj=PPTSld.document.all("NSPlay")

-	if( rObj && !PPTSld.g_animUseRuntime ) {

-		if( (rObj.playState == 1)||(rObj.playState == 0) )

-			rObj.Play()

-		else if( rObj.playState == 2 )

-			rObj.Pause()

-		else

-			return;

-	}

-	else if( PPTSld.g_animUseRuntime )

-	{

-		narObj = PPTSld.document.all("narrationID")

-		if( narObj )

-			narObj.togglePause()

-	}

-}

-function GetCurSldNum()

-{

-	obj=GetHrefObj(gCurSld)

-	if( obj.mOrigVis == 1 )

-		return obj.mSldIdx

-	else

-		return gCurSld

-}

-function GetNumSlds()

-{

-	if( GetHrefObj(gCurSld).mOrigVis == 1 )

-		return GetSldList().mNumVisSlds;

-	else

-		return GetSldList().mList.length

-}

-function GetSldNum( href )

-{

-	for(ii=0; ii<GetSldList().mList.length; ii++) {

-		if ( GetSldList().mList[ii].mSldHref == href )

-			return ii+1

-	}

-	return 1

-}

-function GetHrefObj( sldIdx ){ return GetSldList().mList[sldIdx-1] }

-function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }

-function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }

-function GoToNextSld()

-{

-	ii=gCurSld + 1

-	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {

-		if( ii<=GetSldList().mList.length ) {

-			obj=GetHrefObj(ii)

-			obj.mVis=1

-			GoToSldNum(ii)

-			return

-		}

-	}

-	else {

-		obj=GetHrefObj( ii )

-		while ( obj && ( obj.mOrigVis == 0 ) )

-			obj=GetHrefObj(++ii)

-		if( obj && obj.mOrigVis ) {

-			GoToSldNum(ii)

-			return

-		}

-	}

-	if( gSldStack.length > 1 )

-		PopSldList();

-	else if( !IsFramesMode() ) {

-                if( gLoopCont )

-			GoToFirst()

-                else

-			EndShow()

-	}

-}

-function GoToPrevSld()

-{

-	ii=gCurSld-1

-	if( ii > 0 ) {

-		obj=GetHrefObj(ii)

-		while ( obj && ( obj.mVis == 0 ) && ( ii>0 ) )

-			obj=GetHrefObj(--ii)

-        if( ii == 0 ) ii=1

-		GoToSldNum(ii)

-	}

-}

-function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }

-function GoToLast()

-{

-	ii=GetSldList().mList.length

-	if( ii != gCurSld )

-		GoToSld( GetHrefObj(ii).mSldHref )

-}

-function GoToSldNum( num )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	obj = GetHrefObj( num )

-	obj.mVis=1

-	gPrevSld=gCurSld

-	gCurSld = num;

-	PPTSld.location.replace(MHTMLPrefix+obj.mSldHref)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function GoToSld( href )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	GetHrefObj( GetSldNum(href) ).mVis=1

-	PPTSld.location.replace(MHTMLPrefix+href)

-}

-function SldUpdated( id )

-{

-	if( id == GetHrefObj(gCurSld).mSldHref ) return

-	gPrevSld=gCurSld

-	gCurSld=GetSldNum(id)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }

-function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }

-function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }

-function CloseWindow() {

-	if( HideMenu() ) return;

-	var event = PPTSld.event;

-	if( !IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) )

-		window.close( self );

-	CatchNumKeys( self, event );

-}

-function Unload() { gIsEndShow=0; }

-function SetupEndShow() {

-	gIsEndShow=1;

-	PPTSld.document.body.scroll="no";

-	PPTSld.document.onkeypress=CloseWindow;

-	PPTSld.document.onclick=CloseWindow;

-	PPTSld.document.oncontextmenu=_CM;

-}

-function EndShow()

-{

-	if( IsFramesMode() ) return

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	doc=PPTSld.document

-	doc.open()

-	doc.writeln('<html><body bgcolor=black onload=parent.SetupEndShow() onunload=parent.Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')

-	doc.close()

-}

-function SetSldVisited(){ GetSldList().mList[gCurSld-1].mVisited=true }

-function IsSldVisited(){ return GetSldList().mList[gCurSld-1].mVisited }

-function hrefList( sldHref, visible, advDelay, advClk )

-{

-	this.mSldHref= this.mNtsHref = sldHref

-	this.mOrigVis= this.mVis = visible

-	this.mVisited= false

-	this.mAdvDelay= advDelay

-	this.mAdvOnClk= advClk

-}

-function SldList(arr,curSld,fEnd)

-{

-	this.mCurSld = curSld;

-	this.mList = new Array();

-	var idx = 1;

-	for(ii=0;ii<arr.length;ii++) {

-		this.mList[ii] = new hrefList( arr[ii].mSldHref, arr[ii].mOrigVis, arr[ii].mAdvDelay, arr[ii].mAdvOnClk );

-		if( arr[ii].mOrigVis )

-			this.mList[ii].mSldIdx = idx++;

-	}

-	this.mNumVisSlds = idx-1;

-	this.fEndShow = fEnd;

-}

-function GetSldList() {	return gSldStack[gSldStack.length-1] }

-function GetCurSld() { return parent.GetSldList().mList[parent.gCurSld - 1] }

-gSldStack = new Array();

-gSldStack[0] = new SldList(gMainDoc,gCurSld,1)

-function ViewCustomShow(idx,fEnd)

-{

-	if( !IsFullScrMode() ) return;

-	var sldList = new Array();

-	var custShow = custShowList[idx-1];

-	var jj = 0;

-	for( ii=0;ii<custShow.length;ii++ ) {

-		if( custShow[ii] <= gMainDoc.length )

-			sldList[jj++] = gMainDoc[custShow[ii]-1];

-	}

-	if (sldList.length > 0) {

-	PushSldList(sldList,fEnd);

-	gCurSld = 1;

-	}

-	else

-		if( PPTSld.event ) PPTSld.event.cancelBubble=true

-}

-function PushSldList(arr,fEnd) {

-	var ii = gSldStack.length;

-	gSldStack[ii] = new SldList(arr,gCurSld,fEnd);

-	GoToSld( gSldStack[ii].mList[0].mSldHref );

-}

-function PopSldList() {

-	if (gSldStack[gSldStack.length-1].fEndShow)

-		EndShow()

-	else {

-	gCurSld = gSldStack[gSldStack.length-1].mCurSld;

-	gSldStack[gSldStack.length-1] = null;

-	gSldStack.length--;

-	var sldList = gSldStack[gSldStack.length-1];

-	GoToSld( sldList.mList[gCurSld - 1].mSldHref );

-	}

-}

-var custShowList=new Array();

-function ImgBtn( oId,bId,w,action )

-{

-	var t=this

-	t.Perform    = _IBP

-	t.SetActive  = _IBSetA

-	t.SetInactive= _IBSetI

-	t.SetPressed = _IBSetP

-	t.SetDisabled= _IBSetD

-	t.Enabled    = _IBSetE

-	t.ChangeIcon = null

-	t.UserAction = action

-	t.ChgState   = _IBUI

-	t.mObjId   = oId

-	t.mBorderId= bId

-	t.mWidth   = w

-	t.mIsOn    = t.mCurState = 0

-}

-function _IBSetA()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetI()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetP()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gShadowClr,gHiliteClr,2 )

-		obj.style.posLeft+=1; obj.style.posTop+=1

-	}

-}

-function _IBSetD()

-{

-	obj=this.ChgState( gFaceClr,gFaceClr,0 )

-	obj.style.posTop=0

-}

-function _IBSetE( state )

-{

-	var t=this

-	GetObj( t.mBorderId ).style.visibility="visible"

-	if( state != t.mIsOn ) {

-		t.mIsOn=state

-		if( state )

-			t.SetInactive()

-		else

-			t.SetDisabled()

-	}

-}

-function _IBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-		if( t.ChangeIcon ) {

-			obj=GetObj(t.mObjId)

-			if( t.ChangeIcon() )

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth

-			else

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth

-		}

-		t.SetActive()

-	}

-}

-function _IBUI( clr1,clr2,nextState )

-{

-	var t=this

-	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )

-	obj=GetObj( t.mObjId )

-	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop

-	t.mCurState=nextState

-	return obj

-}

-function TxtBtn( oId,oeId,action,chkState )

-{

-	var t=this

-	t.Perform    = _TBP

-	t.SetActive  = _TBSetA

-	t.SetInactive= _TBSetI

-	t.SetPressed = _TBSetP

-	t.SetDisabled= _TBSetD

-	t.SetEnabled = _TBSetE

-	t.GetState   = chkState

-	t.UserAction = action

-	t.ChgState   = _TBUI

-	t.mObjId      = oId

-	t.m_elementsId= oeId

-	t.mIsOn       = 1

-}

-function _TBSetA()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gHiliteClr,gShadowClr,0,0 )

-}

-function _TBSetI()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-}

-function _TBSetP()

-{

-	if( this.mIsOn )

-		this.ChgState( gShadowClr,gHiliteClr,1,1 )

-}

-function _TBSetD()

-{

-	this.ChgState( gFaceClr,gFaceClr,0,0 )

-	this.mIsOn = 0

-}

-function _TBSetE()

-{

-	var t=this

-	if( !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-	else

-		t.ChgState( gShadowClr,gHiliteClr,1,1 )

-	t.mIsOn = 1

-}

-function _TBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-        if( !t.GetState )

-            return

-		if( t.GetState() )

-			t.SetPressed()

-		else

-			t.SetActive()

-	}

-}

-function _TBUI( clr1,clr2,lOffset,tOffset )

-{

-	SetBorder( GetObj( this.mObjId ),clr1,clr2 )

-	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )

-}

-function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }

-function SetBorder( obj, upperLeft, lowerRight )

-{

-	s=obj.style;

-	s.borderStyle      = "solid"

-	s.borderWidth      = 1

-	s.borderLeftColor  = s.borderTopColor = upperLeft

-	s.borderBottomColor= s.borderRightColor = lowerRight

-}

-function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }

-function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }

-function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }

-function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }

-function BtnOnUp()

-{

-	b=GetBtnObj()

-	if( b != null )

-		b.Perform()

-	else

-		Upd()

-}

-function GetNtsState(){ return parent.gNtsOpen }

-function GetOtlState(){ return parent.gOtlOpen }

-function GetOtlTxtState(){ return parent.gOtlTxtExp }

-function NtsBtnSetFlag( fVal )

-{

-	s=document.all.item( this.m_flagId ).style

-	s.display="none"

-	if( fVal )

-		s.display=""

-	else

-		s.display="none"

-}

-function _BSetA_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetActive() }

-function _BSetI_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetInactive() }

-var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"

-var gBtnArr = new Array()

-gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_otlElem"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_nts"] = new TxtBtn( "nb_nts","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )

-gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )

-gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )

-gBtnArr["nb_sldshwBorder"] = new TxtBtn( "nb_sldshw","nb_sldshwBorder",parent.FullScreen,null )

-gBtnArr["nb_sldshwBorder"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwBorder"].SetInactive = _BSetI_Border;

-gBtnArr["nb_sldshwText"] = new TxtBtn( "nb_sldshw","nb_sldshwText",parent.FullScreen,null )

-gBtnArr["nb_sldshwText"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwText"].SetInactive = _BSetI_Border;

-gBtnArr["nb_voice"]  = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )

-gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )

-gBtnArr["nb_nts"].m_flagId= "notes_flag"

-gBtnArr["nb_nts"].SetFlag = NtsBtnSetFlag

-gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState

-var sNext="Next",sPrev="Previous",sEnd="End Show",sFont="Arial",sArrow="Arrow",sFreeform="Freeform",sRect="Rectangle",sOval="Oval"

-function ShowMenu()

-{

-	BuildMenu();

-	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

-	m = PPTSld.document.all.item("ctxtmenu")

-	m.style.pixelLeft=x

-	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )

-		m.style.pixelLeft=x-m.scrollWidth

-	m.style.pixelTop=y

-	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )

-		m.style.pixelTop=y-m.scrollHeight

-	m.style.display=""

-}

-function _CM()

-{

-	if( !parent.IsFullScrMode() ) return;

-	if(!PPTSld.event.ctrlKey) {

-		ShowMenu()

-		return false

-	} else

-		HideMenu()

-}

-function BuildMenu()

-{

-	if( PPTSld.document.all.item("ctxtmenu") ) return

-	var mObj=CreateItem( PPTSld.document.body )

-	mObj.id="ctxtmenu"

-	mObj.style.visibility="hidden"

-	var s=mObj.style

-	s.position="absolute"

-	s.cursor="default"

-	s.width="120px"

-	SetCMBorder(mObj,"menu","black")

-	var iObj=CreateItem( mObj )

-	SetCMBorder( iObj, "threedhighlight","threedshadow" )

-	iObj.style.padding=2

-	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )

-	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )

-	CreateSeparator( iObj )

-	CreateMenuItem( iObj,sEnd,M_End,M_True )

-	mObj.style.visibility="visible"

-}

-function Cancel() { window.event.cancelBubble=true; window.event.returnValue=false }

-function Highlight() { ChangeClr("activecaption","threedhighlight") }

-function Deselect() { ChangeClr("threedface","menutext") }

-function Perform()

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() )

-		e.Action()

-	else

-		PPTSld.event.cancelBubble=true

-}

-function ChangeClr( bg,clr )

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() ) {

-		e.style.backgroundColor=bg

-		e.style.color=clr

-	}

-}

-function M_HasPrevSld() { return( parent.HasPrevSld() ) }

-function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }

-function M_GoPrevSld() { if( gIsEndShow ) { history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }

-function M_True() { return true }

-function M_End() { window.close( self ) }

-function CreateMenuItem( node,text,action,eval )

-{

-	var e=CreateItem( node )

-	e.type="menuitem"

-	e.Action=action

-	e.IsActive=eval

-	e.innerHTML=text

-	if( !e.IsActive() )

-		e.style.color="threedshadow"

-	e.onclick=Perform

-	e.onmouseover=Highlight

-	e.onmouseout=Deselect

-	s=e.style;

-	s.fontFamily=sFont

-	s.fontSize="9pt"

-	s.paddingLeft=2

-}

-function CreateSeparator( node )

-{

-	var sObj=CreateItem( node )

-	SetCMBorder(sObj,"menu","menu")

-	var s=sObj.style

-	s.borderTopColor="threedshadow"

-	s.borderBottomColor="threedhighlight"

-	s.height=1

-	s.fontSize="0px"

-}

-function CreateItem( node )

-{

-	var elem=PPTSld.document.createElement("DIV")

-	node.insertBefore( elem )

-	return elem

-}

-function SetCMBorder( o,ltClr,rbClr )

-{

-	var s=o.style

-	s.backgroundColor="menu"

-	s.borderStyle="solid"

-	s.borderWidth=1

-	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr

-}

diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0001.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0001.htm
deleted file mode 100644
index ca9d223..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0001.htm
+++ /dev/null
@@ -1,112 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: New Features of UML2: Generics, Static Profile Definition and OCL integration ">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:black;}
-.CT
-	{color:#2F2672;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="2"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s24577"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s24578"/><![if !vml]><img border=0
- v:shapes="_x0000_s24578" src="master04_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s24581"/><![if !vml]><img border=0
- v:shapes="_x0000_s24581" src="master04_image004.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s24585"/>
- <div v:shape="_x0000_s24585" class=O style='position:absolute;top:95.0%;
- left:1.49%;width:97.75%;height:2.75%'><span lang=EN-US style='font-size:50%;
- mso-ansi-language:EN-US'>Copyright © IBM Corp., 2007-2008. </span><span
- style='mso-bidi-font-family:Arial;font-size:50%'>|<span
- style='mso-spacerun:yes'>  </span>March-17-2008<span
- style='mso-spacerun:yes'>  </span>|</span></div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m24579"/><v:shape id="_x0000_s2050"
-  type="#_x0000_m24579" style='position:absolute;left:54pt;top:126pt;width:612pt;
-  height:90pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <p:placeholder type="centerTitle"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m24580"/><v:shape id="_x0000_s2051" type="#_x0000_m24580"
-  style='position:absolute;left:108pt;top:270pt;width:7in;height:168pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <p:placeholder type="subTitle" position="1"/></v:shape>
- <div v:shape="_x0000_s2050" class=CT><span style='position:absolute;
- top:25.75%;left:8.42%;width:98.31%;height:6.0%'>New Features of UML2:
- Generics, Static Profile </span><span style='position:absolute;top:32.0%;
- left:8.42%;width:83.14%;height:6.0%'>Definition and OCL integration </span></div>
- <div v:shape="_x0000_s2051" class=CB style='tab-stops:.4427in'>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:50.5%;left:15.91%;
- width:68.16%;height:4.5%'><span lang=EN-US style='font-size:83%;mso-ansi-language:
- EN-US'>Long Talk&#13;</span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:55.5%;left:15.91%;
- width:68.16%;height:4.5%'><span lang=EN-US style='font-size:83%;mso-ansi-language:
- EN-US'>(170)&#13;</span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:60.25%;
- left:15.91%;width:68.16%;height:4.5%'><span lang=EN-US style='font-size:83%;
- mso-ansi-language:EN-US;display:none'>&#13;</span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:65.25%;
- left:15.91%;width:68.16%;height:4.5%'><span lang=EN-US style='font-size:83%;
- mso-ansi-language:EN-US'>James Bruck&#13;</span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:70.0%;left:15.91%;
- width:68.16%;height:4.5%'><span lang=EN-US style='font-size:83%;mso-ansi-language:
- EN-US'>IBM Rational Software&#13;</span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:75.0%;left:15.91%;
- width:68.16%;height:4.5%'><span lang=EN-US style='font-size:83%;mso-ansi-language:
- EN-US'>UML2 Committer</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0010.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0010.htm
deleted file mode 100644
index e92cd6a..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0010.htm
+++ /dev/null
@@ -1,158 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Agenda">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="3,23"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O style='position:absolute;top:95.25%;
- left:16.85%;width:82.39%;height:2.25%'><span style='mso-bidi-font-family:Arial;
- font-size:42%'><span style='mso-spacerun:yes'> </span></span><span
- style='font-size:42%'>New Features of UML2</span><span lang=EN-US
- style='font-size:42%;mso-ansi-language:EN-US'> |<span
- style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM Corp.,
- 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- <div v:shape="_x0000_s1035" class=O style='mso-line-spacing:"100 50 0";
- mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;top:96.25%;
- left:.93%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>2</b></span><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s23554"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s23555" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s23554" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Agenda</div>
- <div v:shape="_x0000_s23555" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:26.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'><b><i>Introduction&#13;</i></b></span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:32.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:37.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>New Features:&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:43.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:49.25%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Generics&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:54.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:60.0%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Static Profile Definition&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:65.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:70.75%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>OCL Integration&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:75.75%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='mso-ansi-language:EN-US;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:80.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Summary&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:86.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:92.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0011.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0011.htm
deleted file mode 100644
index f7bfc3e..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0011.htm
+++ /dev/null
@@ -1,187 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Introduction: Fill up your Toolbox">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="25"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>3</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s25602"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s25603" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:642pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s25602" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Introduction: Fill up your Toolbox</div>
- <div v:shape="_x0000_s25603" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:26.25%;left:10.48%;width:97.0%;height:4.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.12%'>•</span></span><span
- style='font-size:75%'>Creating architectures using basic modeling techniques
- (Class diagrams, </span></span><span style='position:absolute;top:29.75%;
- left:10.48%;width:85.39%;height:4.0%'><span style='font-size:75%'>Sequence
- diagrams etc.) is just the first step.<span style='mso-spacerun:yes'>  
- </span>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:34.0%;
- left:12.92%;width:82.95%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.93%;width:97.06%;height:100.0%'><span style='font-size:80%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-3.02%;font-family:Wingdings'>w</span></span><span style='font-size:80%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:38.0%;
- left:8.42%;width:87.26%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.36%;width:97.85%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.41%'>•</span></span><span
- style='font-size:75%'>Expand your toolbox by adding:&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:42.5%;
- left:12.92%;width:82.95%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.93%;width:97.06%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.02%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Generics/Templates&#13;</span></span></div>
- <div class=B2 style='mso-line-spacing:"90 20 0";position:absolute;top:46.25%;
- left:17.22%;width:78.65%;height:3.25%'><span style='position:absolute;
- top:0%;left:2.38%;width:97.38%;height:100.0%'><span style='font-size:78%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.44%;font-family:
- Wingdings'>§</span></span><span style='font-size:78%'>Ability to express
- generic reusable behavior.&#13;</span></span></div>
- <div class=B2 style='mso-line-spacing:"90 20 0";position:absolute;top:49.75%;
- left:17.22%;width:78.65%;height:3.25%'><span style='position:absolute;
- top:0%;left:2.38%;width:97.38%;height:100.0%'><span style='font-size:78%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.44%;font-family:Wingdings'>§</span></span><span style='font-size:78%;
- display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:53.25%;
- left:12.92%;width:82.95%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.93%;width:97.06%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.02%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>Static profile
- definition&#13;</span></span></div>
- <div class=B2 style='mso-line-spacing:"90 20 0";position:absolute;top:57.0%;
- left:17.22%;width:78.65%;height:3.25%'><span style='position:absolute;
- top:0%;left:2.38%;width:97.38%;height:100.0%'><span style='font-size:78%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.44%;font-family:
- Wingdings'>§</span></span><span style='font-size:78%'>Generate code from
- profile&#13;</span></span></div>
- <div class=B2 style='mso-line-spacing:"90 20 0";position:absolute;top:60.5%;
- left:17.22%;width:78.65%;height:3.25%'><span style='position:absolute;
- top:0%;left:2.38%;width:97.38%;height:100.0%'><span style='font-size:78%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.44%;font-family:
- Wingdings'>§</span></span><span style='font-size:78%'>Now you can specify
- behavior in your profiles.&#13;</span></span></div>
- <div class=B2 style='mso-line-spacing:"90 20 0";position:absolute;top:64.0%;
- left:17.22%;width:78.65%;height:3.25%'><span style='position:absolute;
- top:0%;left:2.38%;width:97.38%;height:100.0%'><span style='font-size:78%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.44%;font-family:Wingdings'>§</span></span><span style='font-size:78%;
- display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:67.5%;
- left:12.92%;width:82.95%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.93%;width:97.06%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.02%;font-family:
- Wingdings'>w</span></span><span style='font-size:80%'>OCL Integration&#13;</span></span></div>
- <div class=B2 style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:71.25%;left:19.1%;width:90.26%;height:3.25%'><span style='font-size:78%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.07%;font-family:
- Wingdings'>§</span></span><span style='font-size:78%'>Ability to create
- constraints, attach them to your model and have all the code necessary </span></span><span
- style='position:absolute;top:74.0%;left:19.1%;width:76.59%;height:3.25%'><span
- style='font-size:78%'>to evaluate the constraints using the MDT-OCL project.
- &#13;</span></span></div>
- <div class=B2 style='mso-line-spacing:"90 20 0";position:absolute;top:77.5%;
- left:17.22%;width:78.65%;height:3.25%'><span style='position:absolute;
- top:0%;left:2.38%;width:97.38%;height:100.0%'><span style='font-size:78%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.44%;font-family:Wingdings'>§</span></span><span style='font-size:78%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:81.0%;
- left:8.42%;width:102.99%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.0%;width:98.18%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.03%'>•</span></span><span
- style='font-size:75%'>Combination of these tools allows you to make practical
- use of your models.</span></span></div>
- </div>
- <v:shape id="_x0000_s25604" type="#_x0000_t75" style='position:absolute;
-  left:582pt;top:12pt;width:95.625pt;height:117.875pt'>
-  <v:imagedata src="slide0011_image007.wmz" o:title="MCj03499560000[1]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s25604"
- src="slide0011_image008.gif" style='position:absolute;top:2.25%;left:80.89%;
- width:13.29%;height:21.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0011_image007.wmz b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0011_image007.wmz
deleted file mode 100644
index 461e66c..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0011_image007.wmz
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0011_image008.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0011_image008.gif
deleted file mode 100644
index 17244b6..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0011_image008.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0012.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0012.htm
deleted file mode 100644
index f1f6c33..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0012.htm
+++ /dev/null
@@ -1,165 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Agenda">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="26"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>4</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s26626"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s26627" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s26626" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>Agenda</span><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s26627" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:26.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Introduction&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:32.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:37.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>New Features&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:43.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:49.5%;
- left:12.92%;width:78.83%;height:5.25%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:120%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:120%;mso-ansi-language:
- EN-US'><b><i>Generics&#13;</i></b></span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:55.25%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:61.0%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Static Profile Definition&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:66.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:71.75%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>OCL Integration&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:76.75%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='mso-ansi-language:EN-US;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:81.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Summary&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:87.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:93.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0013.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0013.htm
deleted file mode 100644
index e07182f..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0013.htm
+++ /dev/null
@@ -1,131 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Why Bother?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="27"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>5</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s27650"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s27651" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s27650" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Why Bother?</div>
- <div v:shape="_x0000_s27651" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span>Generics
- in Java<span style='mso-bidi-font-family:Arial'>™</span>.&#13;</span></div>
- <div class=B1 style='position:absolute;top:32.75%;left:12.92%;width:90.44%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.69%;width:97.3%;
- height:100.0%'><span class=B1B style='position:absolute;left:-2.76%'>w</span>Enhance
- reusability of an API by isolating generic behavior.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:38.0%;left:15.35%;width:90.26%;
- height:4.5%'><span class=B1B style='position:absolute;left:-2.69%'>w</span>Lists
- and Maps are commonly used since the implementation </span><span
- style='position:absolute;top:42.5%;left:15.35%;width:83.52%;height:4.5%'>doesnÂ’t
- care about the types contained – their clients do.&#13;</span></div>
- <div class=B2 style='position:absolute;top:47.75%;left:17.22%;width:74.34%;
- height:4.0%'><span style='mso-special-format:nobullet;display:none;font-family:
- Wingdings'>§</span>&#13;</div>
- <div class=B style='position:absolute;top:52.75%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span>Generics
- in UML<span style='mso-bidi-font-family:Arial'>®</span>.&#13;</span></div>
- <div class=B1 style='position:absolute;top:59.0%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span>Practical
- Uses&#13;</span></div>
- <div class=B2><span style='position:absolute;top:64.25%;left:19.1%;width:75.28%;
- height:4.0%'><span class=B2B style='position:absolute;left:-2.48%'>§</span>In
- an EMF-based modeling world, a practical end-goal of </span><span
- style='position:absolute;top:68.25%;left:19.1%;width:72.47%;height:4.0%'>modeling
- is to generate code. &#13;</span></div>
- <div class=B2><span style='position:absolute;top:73.0%;left:19.1%;width:82.02%;
- height:4.0%'><span class=B2B style='position:absolute;left:-2.28%'>§</span>Understanding
- how to express templates and model precisely </span><span style='position:
- absolute;top:77.0%;left:19.1%;width:72.47%;height:4.0%'>using UML constructs
- is useful.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0014.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0014.htm
deleted file mode 100644
index da4210b..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0014.htm
+++ /dev/null
@@ -1,154 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Overview">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="28"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>6</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s28674"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s28675" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:582pt;height:102pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s28674" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Overview</div>
- <div v:shape="_x0000_s28675" style='tab-stops:.4427in'>
- <div class=HB style='position:absolute;top:26.5%;left:8.42%;width:80.52%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.55%;width:97.67%;
- height:100.0%'><span style='font-size:90%'><span class=HBB style='position:
- absolute;left:-2.61%'>•</span></span><span style='font-size:90%'>The code
- generation process from UML to Java uses EMF.<span style='mso-spacerun:yes'> 
- </span>&#13;</span></span></div>
- <div class=HB1 style='position:absolute;top:31.25%;left:12.92%;width:74.53%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.26%;width:96.73%;
- height:100.0%'><span class=HB1B style='position:absolute;left:-3.37%'>w</span><span
- style='mso-spacerun:yes'>  </span>An intermediate Ecore representation is
- created.&#13;</span></div>
- <div class=HB1 style='position:absolute;top:36.0%;left:12.92%;width:85.2%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.85%;width:97.14%;
- height:100.0%'><span class=HB1B style='position:absolute;left:-2.94%'>w</span><span
- style='mso-spacerun:yes'>  </span>Behind the scenes, MDT-UML2 converts from
- UML to Ecore.&#13;</span></div>
- <div class=HB style='position:absolute;top:41.0%;left:8.42%;width:79.02%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.6%;width:97.63%;
- height:100.0%'><span style='font-size:90%;visibility:hidden'><span class=HBB
- style='position:absolute;left:-2.66%'>•</span></span><span style='font-size:
- 90%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s28676"
-  type="#_x0000_m1027" style='position:absolute;left:108pt;top:252pt;width:486pt;
-  height:71.625pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" recolor="f" rotate="f" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0014_image009.gif" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s28676" src="slide0014_image009.gif"
- style='position:absolute;top:46.75%;left:14.98%;width:67.41%;height:13.25%'><![endif]><v:rect
-  id="_x0000_s28678" style='position:absolute;left:60pt;top:336pt;width:582pt;
-  height:48pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s28678" class=HB style='position:absolute;top:63.25%;
- left:9.36%;width:79.02%;height:4.5%;tab-stops:.4427in'><span style='position:
- absolute;top:0%;left:2.36%;width:97.63%;height:100.0%'><span class=HBB
- style='position:absolute;left:-2.42%'>•</span>We will focus on <b>UML</b> and <b>Java</b>
- representations.</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0014_image009.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0014_image009.gif
deleted file mode 100644
index 0efbdf6..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0014_image009.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015.htm
deleted file mode 100644
index 179038e..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015.htm
+++ /dev/null
@@ -1,206 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Concepts – The Players">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<!--[if gte IE 5]>
-<object id=MSOANIM classid="CLSID:A4639D2F-774E-11D3-A490-00C04F6843FB"></object>
-<object id=MSOTIME classid="CLSID:A4639D29-774E-11D3-A490-00C04F6843FB"></object>
-<![endif]-->
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<style>
-<!--
-oa\:* { BEHAVIOR: url(#MSOANIM#ANIM) url(#MSOTIME#TIME) }
-oa\:par,oa\:seq,oa\:iterate { BEHAVIOR:url(#MSOTIME) }
-oa\:video,oa\:audio {BEHAVIOR:url(#MSOTIME) url(#MSOTIME#MEDIA) }
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="29"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()" oa:clockstart="onstart">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>7</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s29698"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s29698" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Concepts – The Players</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s29700"
-  type="#_x0000_m1027" style='position:absolute;left:84pt;top:124.25pt;width:498pt;
-  height:364.625pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="white [0]">
-  <v:fill opacity="1" color2="white [0]" o:opacity2="1" recolor="f" rotate="f"
-   o:detectmouseclick="f"/>
-  <v:stroke filltype="solid" joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0015_image010.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s29700" src="slide0015_image011.jpg"
- style='position:absolute;top:23.0%;left:11.61%;width:69.1%;height:67.5%'><![endif]><v:oval
-  id="_x0000_s29703" style='position:absolute;left:408pt;top:162pt;width:120pt;
-  height:78pt;mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s29703" src="slide0015_image012.gif" style='position:absolute;
- top:30.0%;left:56.55%;width:17.04%;height:15.0%'><![endif]><v:oval id="_x0000_s29704"
-  style='position:absolute;left:130.5pt;top:159.75pt;width:114pt;height:1in;
-  mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s29704" src="slide0015_image013.gif" style='position:absolute;
- top:29.5%;left:18.16%;width:16.29%;height:14.0%'><![endif]><v:oval id="_x0000_s29705"
-  style='position:absolute;left:126pt;top:4in;width:126pt;height:174pt;
-  mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s29705" src="slide0015_image014.gif" style='position:absolute;
- top:53.25%;left:17.41%;width:17.97%;height:32.75%'><![endif]><v:oval id="_x0000_s29706"
-  style='position:absolute;left:450pt;top:282pt;width:2in;height:186pt;
-  mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s29706" src="slide0015_image015.gif" style='position:absolute;
- top:52.25%;left:62.35%;width:20.41%;height:35.0%'><![endif]></p:slide></div>
-
-<p:animation/><oa:par id="TimeNode0" dur="indefinite" restart="never"
- p:nodeType="timingRoot">
- <oa:seq id="TimeNode1" dur="indefinite" prev="document.onpptprev"
-  next="document.onpptnext" concurrent="enabled" nextAction="seek"
-  p:nodeType="mainSeq">
-  <oa:par id="TimeNode2" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode3" begin="0.0" fill="hold">
-    <oa:par id="TimeNode4" o:presetID="ppt_6" o:presetClass="emphasis"
-     o:presetSubType="0x0" begin="0.0" autoReverse="true" fill="remove"
-     p:nodeType="clickEffect">
-     <oa:animateScale id="TimeNode5" dur="2.0" fill="hold"
-      targetElement="_x0000_s29703" by="150.0,150.0"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
-  <oa:par id="TimeNode6" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode7" begin="0.0" fill="hold">
-    <oa:par id="TimeNode8" o:presetID="ppt_6" o:presetClass="emphasis"
-     o:presetSubType="0x0" begin="0.0" autoReverse="true" fill="hold"
-     p:nodeType="clickEffect">
-     <oa:animateScale id="TimeNode9" dur="2.0" fill="hold"
-      targetElement="_x0000_s29704" by="150.0,150.0"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
-  <oa:par id="TimeNode10" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode11" begin="0.0" fill="hold">
-    <oa:par id="TimeNode12" o:presetID="ppt_6" o:presetClass="emphasis"
-     o:presetSubType="0x0" begin="0.0" autoReverse="true" fill="hold"
-     p:nodeType="clickEffect">
-     <oa:animateScale id="TimeNode13" dur="2.0" fill="hold"
-      targetElement="_x0000_s29705" by="150.0,150.0"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
-  <oa:par id="TimeNode14" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode15" begin="0.0" fill="hold">
-    <oa:par id="TimeNode16" o:presetID="ppt_6" o:presetClass="emphasis"
-     o:presetSubType="0x0" begin="0.0" autoReverse="true" fill="hold"
-     p:nodeType="clickEffect">
-     <oa:animateScale id="TimeNode17" dur="2.0" fill="hold"
-      targetElement="_x0000_s29706" by="150.0,150.0"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
- </oa:seq>
-</oa:par>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image010.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image010.png
deleted file mode 100644
index a0ddb8e..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image010.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image011.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image011.jpg
deleted file mode 100644
index 802ef30..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image011.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image012.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image012.gif
deleted file mode 100644
index 3fa8062..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image012.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image013.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image013.gif
deleted file mode 100644
index c590921..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image013.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image014.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image014.gif
deleted file mode 100644
index f77756c..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image014.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image015.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image015.gif
deleted file mode 100644
index fc6066d..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0015_image015.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0016.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0016.htm
deleted file mode 100644
index d5aff87..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0016.htm
+++ /dev/null
@@ -1,143 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Concepts - UML">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="30"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>8</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s30722"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s30723" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:168pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s30722" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Concepts - UML</div>
- <div v:shape="_x0000_s30723" class=HB style='tab-stops:.4427in'><span
- style='position:absolute;top:26.5%;left:10.48%;width:90.82%;height:4.5%'><span
- class=HBB style='position:absolute;left:-2.26%'>•</span>A TemplateableElement
- that contains a TemplateSignature is </span><span style='position:absolute;
- top:31.0%;left:10.48%;width:81.27%;height:4.5%'>referred to as a Template.
- &#13;</span>
- <div style='position:absolute;top:36.25%;left:8.42%;width:83.14%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <span style='position:absolute;top:41.75%;left:10.48%;width:89.32%;height:
- 5.25%'><span style='font-size:120%'><span class=HBB style='position:absolute;
- left:-2.3%'>•</span></span><span style='font-size:120%'><span
- style='mso-spacerun:yes'> </span></span>If a TemplateableElement has template
- parameters, a small </span><span style='position:absolute;top:47.0%;
- left:10.48%;width:81.27%;height:5.25%'>dashed rectangle is superimposed<span
- style='font-size:120%'>.&#13;</span></span>
- <div style='position:absolute;top:53.25%;left:8.42%;width:83.14%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s30724"
-  type="#_x0000_m1027" style='position:absolute;left:240pt;top:333.25pt;
-  width:174pt;height:88.875pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="t" strokecolor="white [0]">
-  <v:fill opacity="1" color2="white [0]" o:opacity2="1" recolor="f" rotate="f"
-   o:detectmouseclick="f"/>
-  <v:stroke filltype="solid" joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0016_image016.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s30724" src="slide0016_image017.jpg"
- style='position:absolute;top:61.5%;left:33.14%;width:24.34%;height:16.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0016_image016.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0016_image016.png
deleted file mode 100644
index 6f3f05e..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0016_image016.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0016_image017.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0016_image017.jpg
deleted file mode 100644
index 2cf1bd1..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0016_image017.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017.htm
deleted file mode 100644
index 9284eea..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017.htm
+++ /dev/null
@@ -1,423 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Concepts - UML">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="31"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>9</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s31746"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s31748" type="#_x0000_m1027"
-  style='position:absolute;left:52pt;top:157pt;width:298.625pt;height:307.25pt'
-  o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
-  stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" recolor="f" rotate="f" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:shadow color="gray [2]"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" text="f" grouping="t"/>
-  <v:textbox style='mso-fit-shape-to-text:f'/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape><v:rect id="_x0000_s31749"
-  style='position:absolute;left:52pt;top:157pt;width:298.625pt;height:307.25pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
- </v:rect><v:line id="_x0000_s31750" style='position:absolute;flip:y' from="66pt,336pt"
-  to="661.25pt,336pt" strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0 v:shapes="_x0000_s31750"
- src="slide0017_image018.gif" style='position:absolute;top:62.25%;left:9.17%;
- width:83.14%;height:.5%'><![endif]>
- <div v:shape="_x0000_s31746" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Concepts - UML</div>
- <div v:shape="_x0000_s31748">
- <div class=HB1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=HB2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=HB3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=HB4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=HB style='mso-margin-left-alt:216;position:absolute;top:30.0%;
- left:8.23%;width:39.7%;height:4.5%'><span style='position:absolute;top:0%;
- left:9.43%;width:90.56%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-10.41%'>•</span></span>&#13;</span></div>
- <div class=HB style='mso-margin-left-alt:216;position:absolute;top:35.25%;
- left:8.23%;width:39.7%;height:4.5%'><span style='position:absolute;top:0%;
- left:9.43%;width:90.56%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-10.41%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s31749">
- <div class=HB1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=HB2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=HB3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=HB4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=HB style='mso-margin-left-alt:216;position:absolute;top:30.0%;
- left:8.23%;width:39.7%;height:4.5%'><span style='position:absolute;top:0%;
- left:9.43%;width:90.56%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-10.41%'>•</span></span>&#13;</span></div>
- <div class=HB style='mso-margin-left-alt:216;position:absolute;top:35.25%;
- left:8.23%;width:39.7%;height:4.5%'><span style='position:absolute;top:0%;
- left:9.43%;width:90.56%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-10.41%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:line id="_x0000_s31751" style='position:absolute;flip:x' from="330pt,162pt"
-  to="333pt,336.125pt" strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0 v:shapes="_x0000_s31751"
- src="slide0017_image019.gif" style='position:absolute;top:30.0%;left:45.69%;
- width:.74%;height:32.75%'><![endif]><v:shape id="_x0000_s31752" type="#_x0000_t75"
-  style='position:absolute;left:96pt;top:210pt;width:141.75pt;height:76.5pt'
-  fillcolor="#bbe0e3 [4]" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:imagedata src="slide0017_image020.gif" o:title=""/>
-  <v:shadow color="gray [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s31752"
- src="slide0017_image020.gif" style='position:absolute;top:39.0%;left:13.29%;
- width:19.66%;height:14.25%'><![endif]><v:shape id="_x0000_s31753" type="#_x0000_t75"
-  style='position:absolute;left:379.75pt;top:198.25pt;width:314.25pt;height:104.25pt'
-  fillcolor="#bbe0e3 [4]" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:imagedata src="slide0017_image021.gif" o:title=""/>
-  <v:shadow color="gray [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s31753"
- src="slide0017_image021.gif" style='position:absolute;top:36.75%;left:52.8%;
- width:43.63%;height:19.25%'><![endif]><v:group id="_x0000_s31768" style='position:absolute;
-  left:138pt;top:414pt;width:454.375pt;height:64.625pt' coordorigin="768,2810"
-  coordsize="3635,517" o:tableproperties="1" o:tablelimits="56.625pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s31755" style='position:absolute;left:768;top:2810;
-   width:3635;height:517' fillcolor="#f3f3f3" stroked="f" strokecolor="black [1]">
-   <v:fill alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="gray [2]"/>
-  </v:rect><v:line id="_x0000_s31756" style='position:absolute' from="768,2810"
-   to="4403,2810" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s31757" style='position:absolute' from="768,3327"
-   to="4403,3327" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s31758" style='position:absolute' from="768,2810"
-   to="768,3327" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s31759" style='position:absolute' from="4403,2810"
-   to="4403,3327" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line></v:group><v:group id="_x0000_s31760" style='position:absolute;
-  left:138pt;top:348pt;width:454.375pt;height:55.875pt' coordsize="2050,441"
-  o:tableproperties="1" o:tablelimits="55.875pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s31761" style='position:absolute;width:2050;height:441'
-   fillcolor="#f3f3f3" stroked="f" strokecolor="black [1]">
-   <v:fill alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="gray [2]"/>
-  </v:rect><v:line id="_x0000_s31762" style='position:absolute' from="0,0"
-   to="2050,0" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s31763" style='position:absolute' from="0,441"
-   to="2050,441" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s31764" style='position:absolute' from="0,0"
-   to="0,441" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s31765" style='position:absolute' from="2050,0"
-   to="2050,441" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line></v:group><v:rect id="_x0000_s31766" style='position:absolute;
-  left:67.375pt;top:139pt;width:148.625pt;height:45.75pt' filled="f"
-  fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
- </v:rect><v:rect id="_x0000_s31767" style='position:absolute;left:377.5pt;
-  top:139pt;width:172.875pt;height:45.75pt' filled="f" fillcolor="#bbe0e3 [4]"
-  stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
- </v:rect><![if !vml]><img border=0
- v:shapes="_x0000_s31768,_x0000_s31755,_x0000_s31756,_x0000_s31757,_x0000_s31758,_x0000_s31759,_x0000_s31760,_x0000_s31761,_x0000_s31762,_x0000_s31763,_x0000_s31764,_x0000_s31765"
- src="slide0017_image022.gif" style='position:absolute;top:64.5%;left:19.1%;
- width:63.48%;height:24.5%'><![endif]>
- <div v:shape="_x0000_s31755">
- <div class=Tbl1 style='mso-margin-left-alt:288;mso-text-indent-alt:288'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576;mso-text-indent-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864;mso-text-indent-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152;mso-text-indent-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:77.0%;left:20.22%;width:61.23%;height:3.25%'><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%'>&nbsp;</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Arial Unicode MS";mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";font-size:60%;color:#7F0055'><b>public</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>interface</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>MyClass&lt;E&gt;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>extends</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>EObject</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>{</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:79.75%;left:20.22%;
- width:61.23%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>E</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>getMyProperty();</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:82.25%;left:20.22%;
- width:61.23%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>void</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>setMyProperty(E</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>value);</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:85.0%;left:20.22%;
- width:61.23%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>}</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:Arial;
- mso-fareast-font-family:"Times New Roman";mso-special-format:lastCR;
- display:none'>&#13;</span></span></span></div>
- </div>
- <div v:shape="_x0000_s31761">
- <div class=Tbl1 style='mso-margin-left-alt:288;mso-text-indent-alt:288'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576;mso-text-indent-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864;mso-text-indent-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152;mso-text-indent-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:64.75%;left:20.22%;width:69.85%;height:3.25%'><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%'>&nbsp;</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Arial Unicode MS";mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";font-size:60%;color:#7F0055'><b>public</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>class</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>MyClassImpl&lt;E&gt;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>extends</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>EObjectImpl</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>implements</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>MyClass&lt;E&gt;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>{</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:67.5%;left:20.22%;
- width:61.23%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>protected</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>E</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>myProperty;</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:70.25%;left:20.22%;
- width:61.23%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>}</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:Arial;
- mso-fareast-font-family:"Times New Roman";font-size:60%'> </span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:Arial;mso-fareast-font-family:"Times New Roman";
- mso-special-format:lastCR;display:none'>&#13;</span></span></span></div>
- </div>
- <div v:shape="_x0000_s31766">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:26.75%;
- left:10.29%;width:20.59%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>UML Model</u></div>
- </div>
- <div v:shape="_x0000_s31767">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:26.75%;
- left:53.37%;width:22.09%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>Properties</u></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image018.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image018.gif
deleted file mode 100644
index 1bac3a0..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image018.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image019.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image019.gif
deleted file mode 100644
index 11df93b..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image019.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image020.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image020.gif
deleted file mode 100644
index 571ea53..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image020.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image021.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image021.gif
deleted file mode 100644
index 74de463..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image021.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image022.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image022.gif
deleted file mode 100644
index 5574c36..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0017_image022.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018.htm
deleted file mode 100644
index 971b294..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018.htm
+++ /dev/null
@@ -1,206 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Concepts – The Players">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<!--[if gte IE 5]>
-<object id=MSOANIM classid="CLSID:A4639D2F-774E-11D3-A490-00C04F6843FB"></object>
-<object id=MSOTIME classid="CLSID:A4639D29-774E-11D3-A490-00C04F6843FB"></object>
-<![endif]-->
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<style>
-<!--
-oa\:* { BEHAVIOR: url(#MSOANIM#ANIM) url(#MSOTIME#TIME) }
-oa\:par,oa\:seq,oa\:iterate { BEHAVIOR:url(#MSOTIME) }
-oa\:video,oa\:audio {BEHAVIOR:url(#MSOTIME) url(#MSOTIME#MEDIA) }
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="32"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()" oa:clockstart="onstart">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>10</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s32770"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s32770" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Concepts – The Players</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s32772"
-  type="#_x0000_m1027" style='position:absolute;left:109.375pt;top:124.75pt;
-  width:520.625pt;height:355.25pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="white [0]">
-  <v:fill opacity="1" color2="white [0]" o:opacity2="1" recolor="f" rotate="f"
-   o:detectmouseclick="f"/>
-  <v:stroke filltype="solid" joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0018_image023.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s32772" src="slide0018_image024.jpg"
- style='position:absolute;top:23.0%;left:15.16%;width:72.28%;height:65.75%'><![endif]><v:oval
-  id="_x0000_s32774" style='position:absolute;left:468pt;top:354pt;width:150pt;
-  height:138pt;mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s32774" src="slide0018_image025.gif" style='position:absolute;
- top:65.5%;left:64.98%;width:21.16%;height:26.0%'><![endif]><v:oval id="_x0000_s32775"
-  style='position:absolute;left:438pt;top:162pt;width:198pt;height:2in;
-  mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s32775" src="slide0018_image026.gif" style='position:absolute;
- top:30.0%;left:60.86%;width:27.9%;height:27.25%'><![endif]><v:oval id="_x0000_s32776"
-  style='position:absolute;left:234pt;top:180pt;width:54pt;height:12pt;
-  mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s32776" src="slide0018_image027.gif" style='position:absolute;
- top:33.25%;left:32.39%;width:7.86%;height:2.75%'><![endif]><v:oval id="_x0000_s32777"
-  style='position:absolute;left:240pt;top:210pt;width:54pt;height:12pt;
-  mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s32777" src="slide0018_image028.gif" style='position:absolute;
- top:38.75%;left:33.33%;width:7.86%;height:2.75%'><![endif]></p:slide></div>
-
-<p:animation/><oa:par id="TimeNode0" dur="indefinite" restart="never"
- p:nodeType="timingRoot">
- <oa:seq id="TimeNode1" dur="indefinite" prev="document.onpptprev"
-  next="document.onpptnext" concurrent="enabled" nextAction="seek"
-  p:nodeType="mainSeq">
-  <oa:par id="TimeNode2" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode3" begin="0.0" fill="hold">
-    <oa:par id="TimeNode4" o:presetID="ppt_6" o:presetClass="emphasis"
-     o:presetSubType="0x0" begin="0.0" autoReverse="true" fill="remove"
-     p:nodeType="clickEffect">
-     <oa:animateScale id="TimeNode5" dur="2.0" fill="hold"
-      targetElement="_x0000_s32774" by="150.0,150.0"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
-  <oa:par id="TimeNode6" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode7" begin="0.0" fill="hold">
-    <oa:par id="TimeNode8" o:presetID="ppt_6" o:presetClass="emphasis"
-     o:presetSubType="0x0" begin="0.0" autoReverse="true" fill="remove"
-     p:nodeType="clickEffect">
-     <oa:animateScale id="TimeNode9" dur="2.0" fill="hold"
-      targetElement="_x0000_s32775" by="150.0,150.0"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
-  <oa:par id="TimeNode10" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode11" begin="0.0" fill="hold">
-    <oa:par id="TimeNode12" o:presetID="ppt_6" o:presetClass="emphasis"
-     o:presetSubType="0x0" begin="0.0" autoReverse="true" fill="remove"
-     p:nodeType="clickEffect">
-     <oa:animateScale id="TimeNode13" dur="2.0" fill="hold"
-      targetElement="_x0000_s32776" by="150.0,150.0"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
-  <oa:par id="TimeNode14" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode15" begin="0.0" fill="hold">
-    <oa:par id="TimeNode16" o:presetID="ppt_6" o:presetClass="emphasis"
-     o:presetSubType="0x0" begin="0.0" autoReverse="true" fill="remove"
-     p:nodeType="clickEffect">
-     <oa:animateScale id="TimeNode17" dur="2.0" fill="hold"
-      targetElement="_x0000_s32777" by="150.0,150.0"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
- </oa:seq>
-</oa:par>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image023.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image023.png
deleted file mode 100644
index 2c48e7f..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image023.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image024.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image024.jpg
deleted file mode 100644
index c34ac46..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image024.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image025.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image025.gif
deleted file mode 100644
index 2cd6b13..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image025.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image026.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image026.gif
deleted file mode 100644
index 9660c9c..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image026.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image027.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image027.gif
deleted file mode 100644
index 0abcd23..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image027.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image028.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image028.gif
deleted file mode 100644
index 1e00e49..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0018_image028.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0019.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0019.htm
deleted file mode 100644
index 2014f51..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0019.htm
+++ /dev/null
@@ -1,130 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Concepts - UML">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="33"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>12</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s33794"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s33795" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:624pt;height:66pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s33794" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Concepts - UML</div>
- <div v:shape="_x0000_s33795" style='tab-stops:.4427in'>
- <div class=HB style='position:absolute;top:26.5%;left:8.42%;width:84.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.42%;width:97.79%;
- height:100.0%'><span class=HBB style='position:absolute;left:-2.48%'>•</span>TemplateBinding&#13;</span></div>
- <div class=HB1 style='position:absolute;top:31.75%;left:12.92%;width:94.19%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.58%;width:97.41%;
- height:100.0%'><span class=HB1B style='position:absolute;left:-2.65%'>w</span>Substitution
- of actual parameters for the formal template parameters.</span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s33796"
-  type="#_x0000_m1027" style='position:absolute;left:60pt;top:210pt;width:594pt;
-  height:242.25pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" recolor="f" rotate="f" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0019_image031.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s33796" src="slide0019_image032.jpg"
- style='position:absolute;top:39.0%;left:8.42%;width:82.58%;height:44.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0019_image031.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0019_image031.png
deleted file mode 100644
index 5da1431..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0019_image031.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0019_image032.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0019_image032.jpg
deleted file mode 100644
index 3458096..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0019_image032.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021.htm
deleted file mode 100644
index 65ee210..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021.htm
+++ /dev/null
@@ -1,479 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Generics: Examples – Generic Operations">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<!--[if gte IE 5]>
-<object id=MSOANIM classid="CLSID:A4639D2F-774E-11D3-A490-00C04F6843FB"></object>
-<object id=MSOTIME classid="CLSID:A4639D29-774E-11D3-A490-00C04F6843FB"></object>
-<![endif]-->
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<style>
-<!--
-oa\:* { BEHAVIOR: url(#MSOANIM#ANIM) url(#MSOTIME#TIME) }
-oa\:par,oa\:seq,oa\:iterate { BEHAVIOR:url(#MSOTIME) }
-oa\:video,oa\:audio {BEHAVIOR:url(#MSOTIME) url(#MSOTIME#MEDIA) }
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><script><!--
-g_animItemsToHide=new Array("_x0000_s35867","_x0000_s35866");
-
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="35"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()" oa:clockstart="onstart">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>13</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s35842"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s35842" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:87.82%;height:6.0%'>Generics: Examples – Generic Operations</div>
- <v:shape id="_x0000_s35845" type="#_x0000_t75" style='position:absolute;
-  left:84.75pt;top:231.125pt;width:220.5pt;height:66.75pt' fillcolor="#bbe0e3 [4]"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:imagedata src="slide0021_image033.png" o:title=""/>
-  <v:shadow color="gray [2]"/>
-  <o:lock v:ext="edit" text="t"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s35845"
- src="slide0021_image034.jpg" style='position:absolute;top:42.75%;left:11.79%;
- width:30.71%;height:12.25%'><![endif]><v:shape id="_x0000_s35846" type="#_x0000_t75"
-  style='position:absolute;left:367.25pt;top:194pt;width:298.625pt;height:105pt'
-  fillcolor="#bbe0e3 [4]" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:imagedata src="slide0021_image035.png" o:title=""/>
-  <v:shadow color="gray [2]"/>
-  <o:lock v:ext="edit" text="t"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s35846"
- src="slide0021_image036.jpg" style='position:absolute;top:36.0%;left:50.93%;
- width:41.38%;height:19.5%'><![endif]><v:group id="_x0000_s35863" style='position:absolute;
-  left:126pt;top:342pt;width:478.5pt;height:50.25pt' coordorigin="3696,3213"
-  coordsize="3828,402" o:tableproperties="1" o:tablelimits="43.25pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s35848" style='position:absolute;left:3696;top:3213;
-   width:3828;height:402' fillcolor="#f3f3f3" stroked="f" strokecolor="black [1]">
-   <v:fill alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="gray [2]"/>
-  </v:rect><v:line id="_x0000_s35849" style='position:absolute' from="3696,3213"
-   to="7524,3213" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s35850" style='position:absolute' from="3696,3615"
-   to="7524,3615" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s35851" style='position:absolute' from="3696,3213"
-   to="3696,3615" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s35852" style='position:absolute' from="7524,3213"
-   to="7524,3615" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line></v:group><v:group id="_x0000_s35864" style='position:absolute;
-  left:126pt;top:402pt;width:478.5pt;height:79pt' coordorigin="3696,3639"
-  coordsize="3828,632" o:tableproperties="1" o:tablelimits="56.375pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s35854" style='position:absolute;left:3696;top:3639;
-   width:3828;height:632' fillcolor="#f3f3f3" stroked="f" strokecolor="black [1]">
-   <v:fill alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="gray [2]"/>
-  </v:rect><v:line id="_x0000_s35855" style='position:absolute' from="3696,3639"
-   to="7524,3639" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s35856" style='position:absolute' from="3696,4271"
-   to="7524,4271" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s35857" style='position:absolute' from="3696,3639"
-   to="3696,4271" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s35858" style='position:absolute' from="7524,3639"
-   to="7524,4271" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line></v:group><v:line id="_x0000_s35859" style='position:absolute'
-  from="1in,324pt" to="660pt,324pt" strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0
- v:shapes="_x0000_s35863,_x0000_s35848,_x0000_s35849,_x0000_s35850,_x0000_s35851,_x0000_s35852,_x0000_s35864,_x0000_s35854,_x0000_s35855,_x0000_s35856,_x0000_s35857,_x0000_s35858,_x0000_s35859"
- src="slide0021_image037.gif" style='position:absolute;top:60.0%;left:9.92%;
- width:82.02%;height:29.5%'><![endif]>
- <div v:shape="_x0000_s35848">
- <div class=Tbl1 style='mso-margin-left-alt:288;mso-text-indent-alt:288'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576;mso-text-indent-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864;mso-text-indent-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152;mso-text-indent-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:63.75%;left:18.53%;width:64.6%;height:3.25%'><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%'>&nbsp;</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Arial Unicode MS";mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";font-size:60%;color:#7F0055'><b>public</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>interface</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>MyClass</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>extends</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>EObject</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>{</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:66.25%;left:18.53%;
- width:64.6%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>&lt;T&gt;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>T</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>someOperation(T</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>p1);</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:69.0%;left:18.53%;
- width:64.6%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>}</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:Arial;
- mso-fareast-font-family:"Times New Roman";mso-special-format:lastCR;
- display:none'>&#13;</span></span></span></div>
- </div>
- <div v:shape="_x0000_s35854">
- <div class=Tbl1 style='mso-margin-left-alt:288;mso-text-indent-alt:288'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576;mso-text-indent-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864;mso-text-indent-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152;mso-text-indent-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:74.75%;left:18.53%;width:64.6%;height:3.25%'><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%'>&nbsp;</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Arial Unicode MS";mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";font-size:60%;color:#7F0055'><b>public</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>class</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>MyClassImpl</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>extends</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>EObjectImpl</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>implements</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>MyClass</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>{</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:77.5%;left:18.53%;
- width:64.6%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>public</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>&lt;T&gt;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>T</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>someOperation(T</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>p1)</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>{</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:80.25%;left:18.53%;
- width:64.6%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#3F7F5F'>//...</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:82.75%;left:18.53%;
- width:64.6%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>}</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:85.5%;left:18.53%;
- width:64.6%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>}</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:Arial;
- mso-fareast-font-family:"Times New Roman";mso-special-format:lastCR;
- display:none'>&#13;</span></span></span></div>
- </div>
- <v:line id="_x0000_s35860" style='position:absolute;flip:x' from="336pt,155.5pt"
-  to="337.625pt,324pt" strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><v:rect id="_x0000_s35861" style='position:absolute;left:1in;top:138pt;
-  width:172.875pt;height:45.75pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
- </v:rect><v:rect id="_x0000_s35862" style='position:absolute;left:382.125pt;
-  top:138pt;width:172.875pt;height:45.75pt' filled="f" fillcolor="#bbe0e3 [4]"
-  stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s35860"
- src="slide0021_image038.gif" style='position:absolute;top:28.75%;left:46.62%;
- width:.56%;height:31.75%'><![endif]>
- <div v:shape="_x0000_s35861">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:26.5%;
- left:11.04%;width:22.09%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>UML Model</u></div>
- </div>
- <div v:shape="_x0000_s35862">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:26.5%;
- left:54.11%;width:22.09%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>Properties</u></div>
- </div>
- <v:oval id="_x0000_s35866" style='position:absolute;left:378pt;top:246pt;
-  width:270pt;height:48pt;flip:y;mso-wrap-style:none;v-text-anchor:middle'
-  fillcolor="#bbe0e3 [4]" strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:animation number="2" delay="0" type="object" effect="cut"
-   direction="noBlack" flag="17408"/><p:onmousemove flag="1"/></v:oval><![if !vml]><img
- border=0 v:shapes="_x0000_s35866" src="slide0021_image039.gif"
- style='position:absolute;top:45.5%;left:52.43%;width:37.82%;height:9.5%'><![endif]><v:oval
-  id="_x0000_s35867" style='position:absolute;left:78pt;top:270pt;width:3in;
-  height:18pt;mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:animation number="3" delay="0" type="object" effect="cut"
-   direction="noBlack" flag="17408"/><p:onmousemove flag="1"/></v:oval><![if !vml]><img
- border=0 v:shapes="_x0000_s35867" src="slide0021_image040.gif"
- style='position:absolute;top:50.0%;left:10.86%;width:30.33%;height:4.0%'><![endif]></p:slide></div>
-
-<p:animation number="-1177318950"/><oa:par id="TimeNode0" dur="indefinite"
- restart="never" p:nodeType="timingRoot">
- <oa:seq id="TimeNode1" dur="indefinite" prev="document.onpptprev"
-  next="document.onpptnext" concurrent="enabled" nextAction="seek"
-  p:nodeType="mainSeq">
-  <oa:par id="TimeNode2" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode3" begin="0.0" fill="hold">
-    <oa:par id="TimeNode4" o:presetID="ppt_55" o:presetClass="entrance"
-     o:presetSubType="0x0" begin="0.0" fill="hold" p:nodeType="clickEffect">
-     <oa:set id="TimeNode5" begin="0.0" dur="0.001" fill="hold"
-      targetElement="_x0000_s35866" attributeName="style.visibility"
-      to="visible"/>
-     <oa:animate id="TimeNode6" dur="1.0" fill="hold"
-      targetElement="_x0000_s35866" attributeName="ppt_w" calcmode="linear"
-      valueType="number" keyTimes="0.0;1.0" values="#ppt_w*0.70;#ppt_w"/>
-     <oa:animate id="TimeNode7" dur="1.0" fill="hold"
-      targetElement="_x0000_s35866" attributeName="ppt_h" calcmode="linear"
-      valueType="number" keyTimes="0.0;1.0" values="#ppt_h;#ppt_h"/>
-     <oa:animateFilter id="TimeNode8" dur="1.0" targetElement="_x0000_s35866"
-      transition="in" filter="fade"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
-  <oa:par id="TimeNode9" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode10" begin="0.0" fill="hold">
-    <oa:par id="TimeNode11" o:presetID="ppt_55" o:presetClass="entrance"
-     o:presetSubType="0x0" begin="0.0" fill="hold" p:nodeType="clickEffect">
-     <oa:set id="TimeNode12" begin="0.0" dur="0.001" fill="hold"
-      targetElement="_x0000_s35867" attributeName="style.visibility"
-      to="visible"/>
-     <oa:animate id="TimeNode13" dur="1.0" fill="hold"
-      targetElement="_x0000_s35867" attributeName="ppt_w" calcmode="linear"
-      valueType="number" keyTimes="0.0;1.0" values="#ppt_w*0.70;#ppt_w"/>
-     <oa:animate id="TimeNode14" dur="1.0" fill="hold"
-      targetElement="_x0000_s35867" attributeName="ppt_h" calcmode="linear"
-      valueType="number" keyTimes="0.0;1.0" values="#ppt_h;#ppt_h"/>
-     <oa:animateFilter id="TimeNode15" dur="1.0" targetElement="_x0000_s35867"
-      transition="in" filter="fade"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
- </oa:seq>
-</oa:par>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image033.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image033.png
deleted file mode 100644
index 3f161f1..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image033.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image034.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image034.jpg
deleted file mode 100644
index 6ba0951..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image034.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image035.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image035.png
deleted file mode 100644
index 7b103c2..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image035.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image036.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image036.jpg
deleted file mode 100644
index abf9061..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image036.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image037.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image037.gif
deleted file mode 100644
index da38f7a..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image037.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image038.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image038.gif
deleted file mode 100644
index c21ffc5..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image038.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image039.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image039.gif
deleted file mode 100644
index 1f80d9b..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image039.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image040.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image040.gif
deleted file mode 100644
index 7e0bb03..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0021_image040.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0022.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0022.htm
deleted file mode 100644
index fd5e3bf..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0022.htm
+++ /dev/null
@@ -1,278 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Examples - Wildcards">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="36"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>14</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s36866"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s36867" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:618pt;height:240pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape><v:group id="_x0000_s36877"
-  style='position:absolute;left:78pt;top:342pt;width:438pt;height:66pt'
-  coordorigin="624,2736" coordsize="3504,528" o:tableproperties="3"
-  o:tablelimits="66pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s36869" style='position:absolute;left:624;top:2736;
-   width:3504;height:528' fillcolor="#f3f3f3" stroked="f" strokecolor="black [1]">
-   <v:fill alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="gray [2]"/>
-  </v:rect><v:line id="_x0000_s36870" style='position:absolute' from="624,2736"
-   to="4128,2736" strokecolor="black [1]" strokeweight="1pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s36871" style='position:absolute' from="624,3264"
-   to="4128,3264" strokecolor="black [1]" strokeweight="1pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s36872" style='position:absolute' from="624,2736"
-   to="624,3264" strokecolor="black [1]" strokeweight="1pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s36873" style='position:absolute' from="4128,2736"
-   to="4128,3264" strokecolor="black [1]" strokeweight="1pt">
-   <v:stroke endcap="square" imagealignshape="f"/>
-   <v:shadow color="gray [2]"/>
-  </v:line><p:placeholder type="object" position="2" size="half"/></v:group><![if !vml]><img
- border=0
- v:shapes="_x0000_s36877,_x0000_s36869,_x0000_s36870,_x0000_s36871,_x0000_s36872,_x0000_s36873"
- src="slide0022_image041.gif" style='position:absolute;top:63.25%;left:10.67%;
- width:61.23%;height:12.75%'><![endif]>
- <div v:shape="_x0000_s36866" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Examples - Wildcards</div>
- <div v:shape="_x0000_s36867" class=HB style='tab-stops:.4427in'><span
- style='position:absolute;top:26.5%;left:10.48%;width:88.01%;height:4.5%'><span
- class=HBB style='position:absolute;left:-2.34%'>•</span>In Java, wildcards are
- represented by <b>? </b>which stands for an </span><span style='position:absolute;
- top:31.0%;left:10.48%;width:82.02%;height:4.5%'>unknown type.&#13;</span>
- <div style='position:absolute;top:36.25%;left:8.42%;width:84.08%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.44%;width:97.55%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-2.51%'>•</span></span>&#13;</span></div>
- <span style='position:absolute;top:41.5%;left:10.48%;width:94.38%;height:4.5%'><span
- class=HBB style='position:absolute;left:-2.18%'>•</span>When we talk about
- bounds we refer to the ability to specify that </span><span style='position:
- absolute;top:46.0%;left:10.48%;width:87.82%;height:4.5%'>bindings must either
- be the <b>super</b> type of some classifier or </span><span style='position:
- absolute;top:50.5%;left:10.48%;width:82.02%;height:4.5%'><b>extend</b> some
- classifier.</span></div>
- <div v:shape="_x0000_s36869">
- <div class=Tbl1 style='mso-margin-left-alt:288;mso-text-indent-alt:288'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576;mso-text-indent-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864;mso-text-indent-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152;mso-text-indent-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:63.75%;left:11.79%;width:64.6%;height:3.25%'><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%'>&nbsp;</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Arial Unicode MS";mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";font-size:60%;color:#7F0055'><b>public</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>class</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>MyClass3Impl</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>extends</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>EObjectImpl</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>implements</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>MyClass3</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>{</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:66.25%;left:11.79%;
- width:58.98%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>protected</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>List&lt;?</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>extends</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>Car&gt;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>someReference;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:69.0%;left:11.79%;
- width:58.98%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>protected</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>List&lt;?</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>super</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>Car&gt;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>anotherReference;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:71.75%;left:11.79%;
- width:58.98%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>}</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:Arial;
- mso-fareast-font-family:"Times New Roman";mso-special-format:lastCR;
- display:none'>&#13;</span></span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0022_image041.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0022_image041.gif
deleted file mode 100644
index 0f65583..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0022_image041.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023.htm
deleted file mode 100644
index efcb34c..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023.htm
+++ /dev/null
@@ -1,214 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Examples - Wildcards">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<!--[if gte IE 5]>
-<object id=MSOANIM classid="CLSID:A4639D2F-774E-11D3-A490-00C04F6843FB"></object>
-<object id=MSOTIME classid="CLSID:A4639D29-774E-11D3-A490-00C04F6843FB"></object>
-<![endif]-->
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<style>
-<!--
-oa\:* { BEHAVIOR: url(#MSOANIM#ANIM) url(#MSOTIME#TIME) }
-oa\:par,oa\:seq,oa\:iterate { BEHAVIOR:url(#MSOTIME) }
-oa\:video,oa\:audio {BEHAVIOR:url(#MSOTIME) url(#MSOTIME#MEDIA) }
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="37"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()" oa:clockstart="onstart">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>15</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s37890"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s37890" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Examples - Wildcards</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s37892"
-  type="#_x0000_m1027" style='position:absolute;left:54pt;top:126pt;width:342pt;
-  height:152.5pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0023_image042.gif" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s37892" src="slide0023_image042.gif"
- style='position:absolute;top:23.25%;left:7.49%;width:47.56%;height:28.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s37894" type="#_x0000_m1027"
-  style='position:absolute;left:342pt;top:168pt;width:366pt;height:315.625pt'
-  o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
-  fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" recolor="f" rotate="f" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0023_image043.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s37894" src="slide0023_image044.jpg"
- style='position:absolute;top:31.0%;left:47.56%;width:50.74%;height:58.5%'><![endif]><v:oval
-  id="_x0000_s37896" style='position:absolute;left:540pt;top:420pt;width:132pt;
-  height:1in;mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s37896" src="slide0023_image045.gif" style='position:absolute;
- top:77.75%;left:74.9%;width:18.72%;height:14.0%'><![endif]><v:oval id="_x0000_s37897"
-  style='position:absolute;left:570pt;top:264pt;width:138pt;height:1in;
-  mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s37897" src="slide0023_image046.gif" style='position:absolute;
- top:48.75%;left:79.02%;width:19.66%;height:14.0%'><![endif]><v:oval id="_x0000_s37898"
-  style='position:absolute;left:522pt;top:240pt;width:114pt;height:30pt;
-  mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s37898" src="slide0023_image047.gif" style='position:absolute;
- top:44.5%;left:72.47%;width:16.29%;height:6.0%'><![endif]></p:slide></div>
-
-<p:animation/><oa:par id="TimeNode0" dur="indefinite" restart="never"
- p:nodeType="timingRoot">
- <oa:seq id="TimeNode1" dur="indefinite" prev="document.onpptprev"
-  next="document.onpptnext" concurrent="enabled" nextAction="seek"
-  p:nodeType="mainSeq">
-  <oa:par id="TimeNode2" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode3" begin="0.0" fill="hold">
-    <oa:par id="TimeNode4" o:presetID="ppt_6" o:presetClass="emphasis"
-     o:presetSubType="0x0" begin="0.0" autoReverse="true" fill="remove"
-     p:nodeType="clickEffect">
-     <oa:animateScale id="TimeNode5" dur="2.0" fill="hold"
-      targetElement="_x0000_s37896" by="150.0,150.0"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
-  <oa:par id="TimeNode6" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode7" begin="0.0" fill="hold">
-    <oa:par id="TimeNode8" o:presetID="ppt_6" o:presetClass="emphasis"
-     o:presetSubType="0x0" begin="0.0" autoReverse="true" fill="remove"
-     p:nodeType="clickEffect">
-     <oa:animateScale id="TimeNode9" dur="2.0" fill="hold"
-      targetElement="_x0000_s37897" by="150.0,150.0"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
-  <oa:par id="TimeNode10" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode11" begin="0.0" fill="hold">
-    <oa:par id="TimeNode12" o:presetID="ppt_6" o:presetClass="emphasis"
-     o:presetSubType="0x0" begin="0.0" autoReverse="true" fill="remove"
-     p:nodeType="clickEffect">
-     <oa:animateScale id="TimeNode13" dur="2.0" fill="hold"
-      targetElement="_x0000_s37898" by="150.0,150.0"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
- </oa:seq>
-</oa:par>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image042.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image042.gif
deleted file mode 100644
index 5f8ed92..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image042.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image043.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image043.png
deleted file mode 100644
index 0264b5e..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image043.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image044.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image044.jpg
deleted file mode 100644
index e9abe86..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image044.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image045.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image045.gif
deleted file mode 100644
index 50a9c73..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image045.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image046.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image046.gif
deleted file mode 100644
index 66d2e37..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image046.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image047.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image047.gif
deleted file mode 100644
index ec8b9e2..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0023_image047.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0024.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0024.htm
deleted file mode 100644
index 34569a8..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0024.htm
+++ /dev/null
@@ -1,152 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Enhanced Profile">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="38"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>16</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s38916"
-  type="#_x0000_m1027" style='position:absolute;left:1in;top:241.25pt;width:552pt;
-  height:220.75pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" recolor="f" rotate="f" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0024_image048.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s38916" src="slide0024_image049.jpg"
- style='position:absolute;top:44.75%;left:9.92%;width:76.59%;height:41.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s38914" type="#_x0000_m1026"
-  style='position:absolute;left:54pt;top:84pt;width:612pt;height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s38915" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:618pt;height:174pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s38914" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Enhanced Profile</div>
- <div v:shape="_x0000_s38915" style='tab-stops:.4427in'>
- <div class=HB style='mso-line-spacing:"90 20 0";position:absolute;top:26.0%;
- left:8.42%;width:84.08%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.44%;width:97.55%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.51%'>•</span>UML cannot capture
- everything.&#13;</span></div>
- <div class=HB style='mso-line-spacing:"90 20 0";position:absolute;top:31.0%;
- left:8.42%;width:84.08%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.44%;width:97.55%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.51%'>•</span>&lt;&lt;eGenericType&gt;&gt;&#13;</span></div>
- <div class=HB1 style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:35.75%;left:15.35%;width:82.77%;height:4.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.94%;font-family:Wingdings'>w</span>For code
- generation, we want to mark classes as intermediary </span><span
- style='position:absolute;top:39.5%;left:15.35%;width:77.15%;height:4.0%'>constructs
- (not included in final Java representation).&#13;</span></div>
- <div class=HB1 style='mso-line-spacing:"90 20 0";position:absolute;top:43.75%;
- left:12.92%;width:79.58%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.05%;width:96.94%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.15%;font-family:Wingdings'>w</span>Introduce
- upper and lower bounds.&#13;</span></div>
- <div class=HB style='mso-line-spacing:"90 20 0";position:absolute;top:48.25%;
- left:8.42%;width:84.08%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.44%;width:97.55%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.51%'>•</span>&lt;&lt;eTypeParameter&gt;&gt;&#13;</span></div>
- <div class=HB1 style='mso-line-spacing:"90 20 0";position:absolute;top:53.25%;
- left:12.92%;width:79.58%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.05%;width:96.94%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.15%;font-family:Wingdings'>w</span>Introduce
- multiple bounds.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0024_image048.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0024_image048.png
deleted file mode 100644
index e03d0f7..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0024_image048.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0024_image049.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0024_image049.jpg
deleted file mode 100644
index d6d9aa0..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0024_image049.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025.htm
deleted file mode 100644
index 2d1a27b..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025.htm
+++ /dev/null
@@ -1,253 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Examples - Wildcards">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="39"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>17</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s39938"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s39939" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:618pt;height:114pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s39938" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Examples - Wildcards</div>
- <div v:shape="_x0000_s39939" style='tab-stops:.4427in'>
- <div class=HB><span style='position:absolute;top:26.5%;left:10.48%;width:88.57%;
- height:4.0%'><span style='font-size:90%'><span class=HBB style='position:absolute;
- left:-2.32%'>•</span></span><span style='font-size:90%'>Let’s revisit our
- previous example with wildcards and now consider </span></span><span
- style='position:absolute;top:30.5%;left:10.48%;width:82.02%;height:4.0%'><span
- style='font-size:90%'>stereotype properties.&#13;</span></span></div>
- <div class=HB1 style='position:absolute;top:35.25%;left:12.92%;width:92.5%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.63%;width:97.36%;
- height:100.0%'><span style='font-size:89%'><span class=HB1B style='position:
- absolute;left:-2.7%'>w</span></span><span style='font-size:89%'>We can set the
- ‘upper’ and ‘lower’ bounds on our &lt;&lt;EGeneric&gt;&gt; stereotype.&#13;</span></span></div>
- <div class=HB1 style='position:absolute;top:39.5%;left:12.92%;width:79.58%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.05%;width:96.94%;
- height:100.0%'><span style='font-size:89%'><span class=HB1B style='position:
- absolute;left:-3.15%'>w</span></span><span style='font-size:89%'>In the case
- of our Wildcard_extends_Car, we have the following:</span></span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s39940"
-  type="#_x0000_m1027" style='position:absolute;left:6in;top:330pt;width:234pt;
-  height:56.625pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" recolor="f" rotate="f" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0025_image050.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s39940" src="slide0025_image051.jpg"
- style='position:absolute;top:61.0%;left:59.92%;width:32.58%;height:10.5%'><![endif]><v:rect
-  id="_x0000_s39944" style='position:absolute;left:138pt;top:264pt;width:172.875pt;
-  height:45.75pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
- </v:rect><v:rect id="_x0000_s39945" style='position:absolute;left:448.125pt;
-  top:264pt;width:172.875pt;height:45.75pt' filled="f" fillcolor="#bbe0e3 [4]"
-  stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
- </v:rect><v:line id="_x0000_s39946" style='position:absolute;flip:x' from="408pt,306pt"
-  to="409.625pt,474.5pt" strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0 v:shapes="_x0000_s39946"
- src="slide0025_image052.gif" style='position:absolute;top:56.5%;left:56.55%;
- width:.56%;height:31.75%'><![endif]>
- <div v:shape="_x0000_s39944">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:49.75%;
- left:20.22%;width:22.09%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>UML Model</u></div>
- </div>
- <div v:shape="_x0000_s39945">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:49.75%;
- left:63.29%;width:22.09%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>Properties</u></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s39950"
-  type="#_x0000_m1027" style='position:absolute;left:60pt;top:312pt;width:330pt;
-  height:149.625pt;mso-wrap-style:none;mso-wrap-distance-left:9pt;
-  mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;
-  mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;
-  mso-position-horizontal-relative:text;mso-position-vertical:absolute;
-  mso-position-vertical-relative:text;v-text-anchor:middle' o:spt="75"
-  o:bwmode="auto" o:preferrelative="t" o:allowincell="t" o:allowoverlap="t"
-  path="m@4@5l@4@11@9@11@9@5xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="red" strokeweight=".75pt" insetpen="f" o:insetmode="custom">
-  <v:fill opacity="0" color2="white" o:opacity2="1" size="0,0" aspect="ignore"
-   origin="0,0" position="0,0" rotate="f" alignshape="t" o:detectmouseclick="f"
-   angle="0" focusposition="" focussize="" method="linear sigma" focus="0"
-   type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" imagesize="0,0"
-   imageaspect="ignore" miterlimit="8" linestyle="single" joinstyle="miter"
-   endcap="flat" rotate="f" imagealignshape="t" o:forcedash="f">
-   <o:left v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:top v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:right v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:bottom v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" insetpen="f"
-    on="f" imagealignshape="t"/>
-   <o:column v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" on="f"
-    imagealignshape="t"/>
-  </v:stroke>
-  <v:imagedata src="slide0025_image053.png" o:title=""/>
-  <v:shadow on="f" type="single" color="gray [2]" opacity="1" obscured="f"
-   color2="#cbcbcb" origin="0,0" offset="2pt,2pt" offset2="0,0" matrix="1,0,0,1,0,0"/>
-  <o:extrusion v:ext="view" specularity="0" diffusity="1" shininess="5" edge="1pt"
-   foredepth="0" backdepth="36pt" plane="XY" color="fillThenLine" on="f"
-   metal="f" lightface="t" rotationangle="0,0" orientation="100,0,0"
-   orientationangle="0" rotationcenter="0,0,0" render="solid" facet="30000f"
-   viewpoint="34.72222mm,-34.72222mm,250mm" viewpointorigin=".5,-.5"
-   skewangle="-135" skewamt="50%" brightness="20000f" lightposition="50000,0,10000"
-   lightlevel="38000f" lightposition2="-50000,0,10000" lightlevel2="38000f"
-   lockrotationcenter="t" autorotationcenter="f" type="parallel" lightharsh="t"
-   lightharsh2="f"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <o:callout v:ext="edit" gap="6pt" angle="auto" drop="user" distance="9pt"
-   length="0" minusx="f" minusy="f" dropauto="f" lengthspecified="f"/>
-  <p:placeholder type="object" position="3" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s39950" src="slide0025_image054.jpg"
- style='position:absolute;top:57.75%;left:8.42%;width:45.88%;height:27.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image050.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image050.png
deleted file mode 100644
index 41a4730..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image050.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image051.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image051.jpg
deleted file mode 100644
index 28b114a..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image051.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image052.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image052.gif
deleted file mode 100644
index 53ac764..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image052.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image053.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image053.png
deleted file mode 100644
index 1ccf064..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image053.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image054.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image054.jpg
deleted file mode 100644
index 41d2283..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0025_image054.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026.htm
deleted file mode 100644
index 4b1c213..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026.htm
+++ /dev/null
@@ -1,352 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Generics: Examples – Multiple Constraining Classifiers">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="40"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>18</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s40962"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s40962" class=T style='position:absolute;top:17.0%;
- left:8.42%;width:97.37%;height:5.25%'><span style='font-size:86%'>Generics:
- Examples – Multiple Constraining Classifiers</span></div>
- <v:shape id="_x0000_s40964" type="#_x0000_t75" style='position:absolute;
-  left:46.625pt;top:182pt;width:287.25pt;height:69pt' fillcolor="#bbe0e3 [4]"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:imagedata src="slide0026_image055.gif" o:title=""/>
-  <v:shadow color="gray [2]"/>
-  <o:lock v:ext="edit" text="t"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s40964"
- src="slide0026_image055.gif" style='position:absolute;top:33.75%;left:6.55%;
- width:39.88%;height:12.75%'><![endif]><v:group id="_x0000_s40983" style='position:absolute;
-  left:85.375pt;top:316pt;width:436.625pt;height:31.25pt' coordorigin="683,2528"
-  coordsize="3493,250" o:tableproperties="1" o:tablelimits="31.25pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s40966" style='position:absolute;left:683;top:2528;
-   width:3493;height:250' fillcolor="#f3f3f3" stroked="f" strokecolor="black [1]">
-   <v:fill alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="gray [2]"/>
-  </v:rect><v:line id="_x0000_s40967" style='position:absolute' from="683,2528"
-   to="4176,2528" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s40968" style='position:absolute' from="683,2778"
-   to="4176,2778" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s40969" style='position:absolute' from="683,2528"
-   to="683,2778" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s40970" style='position:absolute' from="4176,2528"
-   to="4176,2778" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line></v:group><v:group id="_x0000_s40971" style='position:absolute;
-  left:85.375pt;top:364.125pt;width:592.625pt;height:38pt' coordorigin="417,2106"
-  coordsize="2811,304" o:tableproperties="1" o:tablelimits="38pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s40972" style='position:absolute;left:417;top:2106;
-   width:2811;height:304' fillcolor="#f3f3f3" stroked="f" strokecolor="black [1]">
-   <v:fill alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="gray [2]"/>
-  </v:rect><v:line id="_x0000_s40973" style='position:absolute' from="417,2106"
-   to="3228,2106" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s40974" style='position:absolute' from="417,2410"
-   to="3228,2410" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s40975" style='position:absolute' from="417,2106"
-   to="417,2410" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s40976" style='position:absolute' from="3228,2106"
-   to="3228,2410" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line></v:group><![if !vml]><img border=0
- v:shapes="_x0000_s40983,_x0000_s40966,_x0000_s40967,_x0000_s40968,_x0000_s40969,_x0000_s40970,_x0000_s40971,_x0000_s40972,_x0000_s40973,_x0000_s40974,_x0000_s40975,_x0000_s40976"
- src="slide0026_image056.gif" style='position:absolute;top:58.5%;left:11.79%;
- width:82.58%;height:16.25%'><![endif]>
- <div v:shape="_x0000_s40966">
- <div class=Tbl1 style='mso-margin-left-alt:293;mso-text-indent-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576;mso-text-indent-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864;mso-text-indent-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152;mso-text-indent-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:144;position:absolute;top:59.0%;
- left:12.92%;width:61.98%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Arial Unicode MS";mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";font-size:60%;color:#7F0055'><b>public</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>interface</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>MyClass4&lt;P1</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>extends</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>A</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>&amp;</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>B&gt;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>extends</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>EObject</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>{</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-fareast-font-family:"Times New Roman";font-size:60%'>...</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>}</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:Arial;
- mso-fareast-font-family:"Times New Roman";mso-special-format:lastCR;
- display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s40972">
- <div class=Tbl1 style='mso-margin-left-alt:293;mso-text-indent-alt:293'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576;mso-text-indent-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864;mso-text-indent-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152;mso-text-indent-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:144;position:absolute;top:67.75%;
- left:12.92%;width:90.82%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Arial Unicode MS";mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";font-size:60%;color:#7F0055'><b>public</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>class</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>MyClass4Impl&lt;P1</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>extends</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>A</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>&amp;</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>B&gt;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>extends</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>EObjectImpl</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>implements</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>MyClass4&lt;P1&gt;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>{</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>Â…</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%'>&nbsp;</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Arial Unicode MS";mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";font-size:60%;color:black'>}</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:Arial;mso-fareast-font-family:"Times New Roman";
- mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <v:shape id="_x0000_s40977" type="#_x0000_t75" style='position:absolute;
-  left:363.5pt;top:202pt;width:298.625pt;height:46.5pt' fillcolor="#bbe0e3 [4]"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:imagedata src="slide0026_image057.gif" o:title=""/>
-  <v:shadow color="gray [2]"/>
-  <o:lock v:ext="edit" text="t"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s40977"
- src="slide0026_image057.gif" style='position:absolute;top:37.5%;left:50.56%;
- width:41.38%;height:8.5%'><![endif]><v:line id="_x0000_s40978" style='position:absolute'
-  from="60pt,282pt" to="660pt,282pt" strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0 v:shapes="_x0000_s40978"
- src="slide0026_image058.gif" style='position:absolute;top:52.25%;left:8.23%;
- width:83.7%;height:.5%'><![endif]><v:line id="_x0000_s40979" style='position:absolute;
-  flip:x' from="336pt,150pt" to="336pt,282pt" strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><v:rect id="_x0000_s40980" style='position:absolute;left:68.25pt;
-  top:136.25pt;width:172.875pt;height:45.75pt' filled="f" fillcolor="#bbe0e3 [4]"
-  stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
- </v:rect><v:rect id="_x0000_s40981" style='position:absolute;left:378.375pt;
-  top:136.25pt;width:172.875pt;height:45.75pt' filled="f" fillcolor="#bbe0e3 [4]"
-  stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s40979"
- src="slide0026_image059.gif" style='position:absolute;top:27.75%;left:46.62%;
- width:.37%;height:25.0%'><![endif]>
- <div v:shape="_x0000_s40980">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:26.25%;
- left:10.48%;width:22.09%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>UML Model</u></div>
- </div>
- <div v:shape="_x0000_s40981">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:26.25%;
- left:53.55%;width:22.09%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>Properties</u></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image055.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image055.gif
deleted file mode 100644
index aa645a3..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image055.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image056.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image056.gif
deleted file mode 100644
index 565627c..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image056.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image057.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image057.gif
deleted file mode 100644
index 89c83fe..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image057.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image058.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image058.gif
deleted file mode 100644
index e54a2ed..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image058.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image059.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image059.gif
deleted file mode 100644
index 19f2d3a..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0026_image059.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0028.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0028.htm
deleted file mode 100644
index 86caea4..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0028.htm
+++ /dev/null
@@ -1,168 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Tips &amp; Resources">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="42"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>20</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s43010"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s43011" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s43010" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Tips &amp; Resources</div>
- <div v:shape="_x0000_s43011" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:26.0%;left:10.48%;width:94.75%;height:4.5%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.17%'>•</span></span><span
- style='font-size:83%'>Anything that can be expressed in Java can be
- represented with </span></span><span style='position:absolute;top:30.0%;
- left:10.48%;width:81.27%;height:4.5%'><span style='font-size:83%'>UML
- constructs.&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:35.0%;
- left:8.42%;width:83.14%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:67%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:67%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:39.0%;left:10.48%;width:91.38%;height:4.5%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.25%'>•</span></span><span
- style='font-size:83%'>Remember that in UML, you need concrete representations
- of </span></span><span style='position:absolute;top:43.0%;left:10.48%;
- width:86.51%;height:4.5%'><span style='font-size:83%'>your generic classes
- (bound classes) in order to use them. &#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:47.75%;
- left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>These extra constructs
- are not required in Java or EMF.&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:52.25%;
- left:8.42%;width:83.14%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:67%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:67%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:56.25%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>If you get stuck&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:61.0%;left:15.35%;width:86.89%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.8%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Use the Ecore to UML2
- converter.<span style='mso-spacerun:yes'>  </span>Start with EMF
- representation </span></span><span style='position:absolute;top:64.75%;
- left:15.35%;width:76.21%;height:4.0%'><span style='font-size:90%'>and then
- generate UML representation.<span style='mso-spacerun:yes'>  </span>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:69.0%;
- left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Can be simpler for those
- who understand EMF.&#13;</span></span></div>
- <div class=B2 style='mso-line-spacing:"90 20 0";position:absolute;top:73.5%;
- left:17.22%;width:74.34%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.51%;width:97.48%;height:100.0%'><span style='font-size:89%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.58%;font-family:Wingdings'>§</span></span><span style='font-size:89%;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:77.5%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>Changes to upcoming version of UML meta-model.&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:82.25%;
- left:12.92%;width:78.83%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>RTF issue</span><span
- style='font-size:60%'>: </span><span style='font-size:60%'><p:onmouseclick
-  hyperlinktype="url" location="Issue11243"
-  href="http://www.omg.org/issues/uml2-rtf.html"/><a
- href="http://www.omg.org/issues/uml2-rtf.html#Issue11243" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>http://www.omg.org/issues/uml2-rtf.html#Issue11243</a></span><span
- style='font-size:60%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0029.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0029.htm
deleted file mode 100644
index 4f6e180..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0029.htm
+++ /dev/null
@@ -1,182 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: References">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="43"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>21</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s44034"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s44035" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:330pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s44034" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: References</div>
- <div v:shape="_x0000_s44035" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:8.42%;width:83.14%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:67%'><span class=BB style='position:
- absolute;left:-2.53%'>•</span></span><span style='font-size:67%'>More in-depth
- articles can be found on the UML2 wiki&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:30.5%;left:12.92%;width:78.83%;
- height:3.25%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:70%'><span class=B1B style='position:
- absolute;left:-3.19%'>w</span></span><span style='font-size:70%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:70%'><p:onmouseclick
-  hyperlinktype="url" href="http://wiki.eclipse.org/MDT-UML2"/><a
- href="http://wiki.eclipse.org/MDT-UML2" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>http://wiki.eclipse.org/MDT-UML2</a></span><span
- style='font-size:70%;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:34.5%;left:8.42%;width:83.14%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:67%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='font-size:
- 67%;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:38.75%;left:8.42%;width:83.14%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:67%'><span class=BB style='position:
- absolute;left:-2.53%'>•</span></span><span style='font-size:67%'>UML
- superstructure specification&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:42.75%;left:12.92%;width:78.83%;
- height:3.25%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:70%'><span class=B1B style='position:
- absolute;left:-3.19%'>w</span></span><span style='font-size:70%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:70%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/cgi-bin/doc?formal/07-02-05"/><a
- href="http://www.omg.org/cgi-bin/doc?formal/07-02-05" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>http://www.omg.org/cgi-bin/doc?formal/07-02-05
- </a></span><span style='font-size:70%;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:46.75%;left:8.42%;width:83.14%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:67%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='font-size:
- 67%;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:51.0%;left:8.42%;width:83.14%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:67%'><span class=BB style='position:
- absolute;left:-2.53%'>•</span></span><span style='font-size:67%'>The generics
- tutorial&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:55.25%;left:12.92%;width:78.83%;
- height:3.25%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:70%'><span class=B1B style='position:
- absolute;left:-3.19%'>w</span></span><span style='font-size:70%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf"/><a
- href="http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>http://java.sun.com/j2se/1.5/pdf/generics-tutorial.pdf</a></span><span
- style='font-size:70%;display:none'>&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:59.0%;left:12.92%;width:78.83%;
- height:3.5%'><span style='mso-special-format:nobullet;display:none;font-family:
- Wingdings'>w</span><span style='font-size:80%;color:#0033CC;display:none'>&#13;</span></div>
- <div class=B style='position:absolute;top:63.25%;left:8.42%;width:83.14%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:67%'><span class=BB style='position:
- absolute;left:-2.53%'>•</span></span><span style='font-size:67%'>Java Generics
- FAQ by Angelika Langer&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:67.5%;left:12.92%;width:78.83%;
- height:3.25%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:70%'><span class=B1B style='position:
- absolute;left:-3.19%'>w</span></span><span style='font-size:70%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.angelikalanger.com/GenericsFAQ/JavaGenericsFAQ.html"/><a
- href="http://www.angelikalanger.com/GenericsFAQ/JavaGenericsFAQ.html"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>http://www.angelikalanger.com/GenericsFAQ/JavaGenericsFAQ.html</a></span><span
- style='font-size:80%;color:#0033CC;display:none'>&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:71.25%;left:12.92%;width:78.83%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:80%;color:#0033CC;visibility:hidden'><span
- class=B1B style='position:absolute;left:-3.19%'>w</span></span><span
- style='font-size:80%;color:#0033CC;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:75.5%;left:8.42%;width:83.14%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:67%;color:#0033CC;visibility:hidden'><span
- class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:67%;color:#0033CC;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:80.25%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0030.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0030.htm
deleted file mode 100644
index 43ff3d2..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0030.htm
+++ /dev/null
@@ -1,165 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Agenda">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="44"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>22</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s45058"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s45059" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s45058" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>Agenda</span><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s45059" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:26.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Introduction&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:32.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:37.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>New Features:&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:43.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:49.25%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Generics&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:54.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:60.25%;
- left:12.92%;width:78.83%;height:5.25%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:120%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:120%;mso-ansi-language:
- EN-US'><b><i>Static Profile Definition&#13;</i></b></span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:66.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:71.75%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>OCL Integration&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:76.75%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='mso-ansi-language:EN-US;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:81.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Summary&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:87.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:93.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0031.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0031.htm
deleted file mode 100644
index b2bedc4..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0031.htm
+++ /dev/null
@@ -1,177 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Static Profile Definition: What is a profile?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="45"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>23</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s46082"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s46083" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:642pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s46082" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:85.95%;height:6.0%'>Static Profile Definition: What is a
- profile?</div>
- <div v:shape="_x0000_s46083" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:26.0%;
- left:8.42%;width:87.26%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.36%;width:97.85%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.41%'>•</span></span><span
- style='font-size:83%'>A profile is a lightweight extension mechanism for
- UML.&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:31.0%;left:15.35%;width:87.82%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.77%;font-family:
- Wingdings'>w</span></span><span style='font-size:90%'>Does not specialize
- meta-types from UML, rather uses meta-class </span></span><span
- style='position:absolute;top:34.5%;left:15.35%;width:80.52%;height:4.0%'><span
- style='font-size:90%'>extensions.&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:38.75%;
- left:8.42%;width:87.26%;height:3.25%'><span style='position:absolute;
- top:0%;left:2.36%;width:97.85%;height:100.0%'><span style='font-size:58%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.41%'>•</span></span><span style='font-size:58%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:42.5%;left:10.48%;width:91.76%;height:4.5%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.24%'>•</span></span><span
- style='font-size:83%'>It enables customization of UML for a specific domain to
- make </span></span><span style='position:absolute;top:46.5%;left:10.48%;
- width:85.39%;height:4.5%'><span style='font-size:83%'>modeling easier.&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:51.0%;
- left:8.42%;width:87.26%;height:3.25%'><span style='position:absolute;
- top:0%;left:2.36%;width:97.85%;height:100.0%'><span style='font-size:58%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.41%'>•</span></span><span style='font-size:58%;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:54.75%;
- left:8.42%;width:87.26%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.36%;width:97.85%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.41%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Primary extension
- construct is the Stereotype.&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:59.5%;
- left:8.42%;width:87.26%;height:2.75%'><span style='position:absolute;
- top:0%;left:2.36%;width:97.85%;height:100.0%'><span style='font-size:50%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.41%'>•</span></span><span lang=EN-US style='font-size:50%;mso-ansi-language:
- EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:62.5%;
- left:8.42%;width:87.26%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.36%;width:97.85%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.41%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Stereotypes can be
- used to add:&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:67.25%;
- left:12.92%;width:82.95%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.93%;width:97.06%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.02%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Keywords&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:71.25%;
- left:12.92%;width:82.95%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.93%;width:97.06%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.02%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Constraints&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:75.25%;
- left:12.92%;width:82.95%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.93%;width:97.06%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.02%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Images&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:79.25%;
- left:12.92%;width:82.95%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.93%;width:97.06%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.02%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Properties &#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:83.0%;
- left:12.92%;width:82.95%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.93%;width:97.06%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.02%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Behavior</span><span style='font-size:90%;mso-special-format:lastCR;
- display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0035.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0035.htm
deleted file mode 100644
index dbdebd1..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0035.htm
+++ /dev/null
@@ -1,170 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Static Profile Definition: Workflow (New)">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="49"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>28</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s50181"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s50181" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Static Profile Definition: Workflow (New)</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s50180"
-  type="#_x0000_m1027" style='position:absolute;left:348pt;top:234pt;width:5in;
-  height:247pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="t" strokecolor="black [1]">
-  <v:fill opacity="1" color2="white [0]" o:opacity2="1" recolor="f" rotate="f"
-   o:detectmouseclick="f"/>
-  <v:stroke filltype="solid" joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0035_image077.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s50180" src="slide0035_image078.jpg"
- style='position:absolute;top:43.25%;left:48.31%;width:50.18%;height:46.0%'><![endif]><v:rect
-  id="_x0000_s50184" style='position:absolute;left:30pt;top:138pt;width:372pt;
-  height:264pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s50184" style='tab-stops:.4427in'>
- <div class=B1 style='mso-margin-left-alt:492'></div>
- <div class=B2 style='mso-margin-left-alt:720'></div>
- <div class=B3 style='mso-margin-left-alt:877'></div>
- <div class=B4 style='mso-margin-left-alt:1127'></div>
- <div class=B style='mso-margin-left-alt:288;position:absolute;top:26.5%;
- left:5.24%;width:49.81%;height:4.5%'><span style='position:absolute;
- top:0%;left:9.77%;width:89.84%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-10.87%'>1.</span></span><span
- style='font-size:83%'>Create our profile in UML.&#13;</span></span></div>
- <div class=B style='mso-margin-left-alt:288;position:absolute;top:31.75%;
- left:5.24%;width:49.81%;height:4.5%'><span style='position:absolute;
- top:0%;left:9.77%;width:89.84%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-10.87%'>2.</span></span><span
- style='font-size:83%'>Apply Ecore profile.&#13;</span></span></div>
- <div class=B style='mso-margin-left-alt:288'><span style='position:absolute;
- top:37.25%;left:10.11%;width:52.62%;height:4.5%'><span style='font-size:83%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-9.25%'>3.</span></span><span
- style='font-size:83%'>Apply &lt;&lt;EPackage&gt;&gt; stereotype to </span></span><span
- style='position:absolute;top:41.5%;left:10.11%;width:44.75%;height:4.5%'><span
- style='font-size:83%'>the profile root.&#13;</span></span></div>
- <div class=B style='mso-margin-left-alt:288;position:absolute;top:47.0%;
- left:5.24%;width:49.81%;height:4.5%'><span style='position:absolute;
- top:0%;left:9.77%;width:89.84%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-10.87%'>4.</span></span><span
- style='font-size:83%'>Set NsURI.&#13;</span></span></div>
- <div class=B style='mso-margin-left-alt:288;position:absolute;top:52.25%;
- left:5.24%;width:49.81%;height:4.5%'><span style='position:absolute;
- top:0%;left:9.77%;width:89.84%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-10.87%'>5.</span></span><span
- style='font-size:83%'>Generate code.&#13;</span></span></div>
- <div class=B style='mso-margin-left-alt:288;position:absolute;top:57.5%;
- left:5.24%;width:49.81%;height:4.5%'><span style='position:absolute;
- top:0%;left:9.77%;width:89.84%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-10.87%'>6.</span></span><span
- style='font-size:83%'>Register extension point.&#13;</span></span></div>
- <div class=B style='mso-margin-left-alt:288;position:absolute;top:62.75%;
- left:5.24%;width:49.81%;height:4.5%'><span style='position:absolute;
- top:0%;left:9.77%;width:89.84%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-10.87%'>7.</span></span><span
- style='font-size:83%'>Apply profile and stereotypes.&#13;</span></span></div>
- <div class=B style='mso-margin-left-alt:288'><span style='position:absolute;
- top:68.25%;left:10.11%;width:44.75%;height:4.5%'><span style='font-size:83%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-10.87%'>8.</span></span><span
- style='font-size:83%'>Get and set values by calling </span></span><span
- style='position:absolute;top:72.75%;left:10.11%;width:44.75%;height:4.5%'><span
- style='font-size:83%'>getters and setters.</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0035_image077.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0035_image077.png
deleted file mode 100644
index 694f9d2..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0035_image077.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0035_image078.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0035_image078.jpg
deleted file mode 100644
index fc57d93..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0035_image078.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0037.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0037.htm
deleted file mode 100644
index 9028770..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0037.htm
+++ /dev/null
@@ -1,137 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Static Profile Definition: Setting nsURI.">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="51"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>29</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s52226"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s52227" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:150pt;width:624pt;height:84pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s52226" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Static Profile Definition: Setting nsURI.</div>
- <div v:shape="_x0000_s52227" class=HB style='tab-stops:.4427in'><span
- style='position:absolute;top:28.75%;left:10.48%;width:98.68%;height:5.25%'><span
- style='font-size:120%'><span class=HBB style='position:absolute;left:-2.08%'>•</span></span><span
- style='font-size:120%'>Set the nsURI of the &lt;&lt;EPackage&gt;&gt;
- stereotype applied </span></span><span style='position:absolute;top:34.0%;
- left:10.48%;width:82.95%;height:5.25%'><span style='font-size:120%'>to the
- profile root.</span><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s52228"
-  type="#_x0000_m1027" style='position:absolute;left:2in;top:234pt;width:5in;
-  height:224.875pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" recolor="f" rotate="f" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0037_image079.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s52228" src="slide0037_image080.jpg"
- style='position:absolute;top:43.25%;left:20.03%;width:50.0%;height:41.75%'><![endif]><v:oval
-  id="_x0000_s52231" style='position:absolute;left:138pt;top:4in;width:366pt;
-  height:36pt;mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="#339 [5]">
-  <v:fill opacity="0"/>
-  <v:shadow color="gray [2]"/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s52231"
- src="slide0037_image081.gif" style='position:absolute;top:53.25%;left:19.1%;
- width:51.31%;height:7.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0037_image079.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0037_image079.png
deleted file mode 100644
index 42c82df..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0037_image079.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0037_image080.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0037_image080.jpg
deleted file mode 100644
index d65bb92..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0037_image080.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0037_image081.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0037_image081.gif
deleted file mode 100644
index 7c49ebe..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0037_image081.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038.htm
deleted file mode 100644
index 4ed9ab5..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038.htm
+++ /dev/null
@@ -1,212 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Static Profile Definition: Code Generation.">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<!--[if gte IE 5]>
-<object id=MSOANIM classid="CLSID:A4639D2F-774E-11D3-A490-00C04F6843FB"></object>
-<object id=MSOTIME classid="CLSID:A4639D29-774E-11D3-A490-00C04F6843FB"></object>
-<![endif]-->
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<style>
-<!--
-oa\:* { BEHAVIOR: url(#MSOANIM#ANIM) url(#MSOTIME#TIME) }
-oa\:par,oa\:seq,oa\:iterate { BEHAVIOR:url(#MSOTIME) }
-oa\:video,oa\:audio {BEHAVIOR:url(#MSOTIME) url(#MSOTIME#MEDIA) }
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><script><!--
-g_animItemsToHide=new Array("_x0000_s53257");
-
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="52"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()" oa:clockstart="onstart">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>30</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s53250"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s53251" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:126pt;width:8in;height:66pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s53250" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:86.7%;height:6.0%'>Static Profile Definition: Code
- Generation.</div>
- <div v:shape="_x0000_s53251" class=HB style='tab-stops:.4427in'>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:23.5%;left:8.42%;
- width:78.08%;height:4.0%'><span style='position:absolute;top:0%;left:2.63%;
- width:97.6%;height:100.0%'><span style='font-size:90%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.7%'>•</span></span><span style='font-size:
- 90%'>Generating Code for your Profile.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0"'><span style='position:absolute;
- top:27.5%;left:10.48%;width:90.07%;height:4.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.28%'>•</span></span><span
- style='font-size:90%'>Reference UML and Ecore generator models since you do
- not need </span></span><span style='position:absolute;top:30.75%;left:10.48%;
- width:76.21%;height:4.0%'><span style='font-size:90%'>to regenerate code for
- them.</span></span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s53253"
-  type="#_x0000_m1027" style='position:absolute;left:114pt;top:192pt;width:202.875pt;
-  height:300pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" recolor="f" rotate="f" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0038_image082.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s53253" src="slide0038_image083.jpg"
- style='position:absolute;top:35.5%;left:15.91%;width:28.08%;height:55.5%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s53255" type="#_x0000_m1027"
-  style='position:absolute;left:366pt;top:180pt;width:269.125pt;height:312pt'
-  o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
-  fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" recolor="f" rotate="f" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0038_image084.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="3" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s53255" src="slide0038_image085.jpg"
- style='position:absolute;top:33.25%;left:50.74%;width:37.45%;height:57.75%'><![endif]><v:oval
-  id="_x0000_s53257" style='position:absolute;left:366pt;top:372pt;width:156pt;
-  height:54pt;mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="#339 [5]">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:animation number="2" delay="0" type="object" effect="cut"
-   direction="noBlack" flag="17412"/><p:onmousemove flag="1"/></v:oval><![if !vml]><img
- border=0 v:shapes="_x0000_s53257" src="slide0038_image086.gif"
- style='position:absolute;top:68.75%;left:50.74%;width:22.09%;height:10.5%'><![endif]></p:slide></div>
-
-<p:animation number="1279495042"/><oa:par id="TimeNode0" dur="indefinite"
- restart="never" p:nodeType="timingRoot">
- <oa:seq id="TimeNode1" dur="indefinite" prev="document.onpptprev"
-  next="document.onpptnext" concurrent="enabled" nextAction="seek"
-  p:nodeType="mainSeq">
-  <oa:par id="TimeNode2" begin="indefinite;TimeNode1.onbegin" fill="hold">
-   <oa:par id="TimeNode3" begin="0.0" fill="hold">
-    <oa:par id="TimeNode4" o:presetID="ppt_55" o:presetClass="entrance"
-     o:presetSubType="0x0" begin="0.0" fill="hold" p:nodeType="withEffect">
-     <oa:set id="TimeNode5" begin="0.0" dur="0.001" fill="hold"
-      targetElement="_x0000_s53257" attributeName="style.visibility"
-      to="visible"/>
-     <oa:animate id="TimeNode6" dur="1.0" fill="hold"
-      targetElement="_x0000_s53257" attributeName="ppt_w" calcmode="linear"
-      valueType="number" keyTimes="0.0;1.0" values="#ppt_w*0.70;#ppt_w"/>
-     <oa:animate id="TimeNode7" dur="1.0" fill="hold"
-      targetElement="_x0000_s53257" attributeName="ppt_h" calcmode="linear"
-      valueType="number" keyTimes="0.0;1.0" values="#ppt_h;#ppt_h"/>
-     <oa:animateFilter id="TimeNode8" dur="1.0" targetElement="_x0000_s53257"
-      transition="in" filter="fade"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
- </oa:seq>
-</oa:par>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image082.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image082.png
deleted file mode 100644
index 2d65643..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image082.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image083.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image083.jpg
deleted file mode 100644
index 06a367e..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image083.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image084.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image084.png
deleted file mode 100644
index 522f7f9..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image084.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image085.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image085.jpg
deleted file mode 100644
index d69bc46..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image085.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image086.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image086.gif
deleted file mode 100644
index f70c825..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0038_image086.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039.htm
deleted file mode 100644
index 0c662dc..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039.htm
+++ /dev/null
@@ -1,229 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Static Profile Definition: Extension Point.">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<!--[if gte IE 5]>
-<object id=MSOANIM classid="CLSID:A4639D2F-774E-11D3-A490-00C04F6843FB"></object>
-<object id=MSOTIME classid="CLSID:A4639D29-774E-11D3-A490-00C04F6843FB"></object>
-<![endif]-->
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<style>
-<!--
-oa\:* { BEHAVIOR: url(#MSOANIM#ANIM) url(#MSOTIME#TIME) }
-oa\:par,oa\:seq,oa\:iterate { BEHAVIOR:url(#MSOTIME) }
-oa\:video,oa\:audio {BEHAVIOR:url(#MSOTIME) url(#MSOTIME#MEDIA) }
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><script><!--
-g_animItemsToHide=new Array("_x0000_s54285","_x0000_s54284");
-
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="53"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()" oa:clockstart="onstart">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>31</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s54274"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s54274" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.52%;height:6.0%'>Static Profile Definition: Extension
- Point.</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s54278"
-  type="#_x0000_m1027" style='position:absolute;left:445.375pt;top:126pt;
-  width:269pt;height:5in' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" recolor="f" rotate="f" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0039_image087.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s54278" src="slide0039_image088.jpg"
- style='position:absolute;top:23.25%;left:61.79%;width:37.45%;height:66.75%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s54280" type="#_x0000_m1027"
-  style='position:absolute;left:36pt;top:318pt;width:378pt;height:60.625pt'
-  o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
-  fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0039_image089.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="3" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s54280" src="slide0039_image090.jpg"
- style='position:absolute;top:59.0%;left:5.05%;width:52.43%;height:11.25%'><![endif]><v:shape
-  id="_x0000_s54282" type="#_x0000_t75" style='position:absolute;left:36pt;
-  top:162pt;width:392.5pt;height:86.25pt' fillcolor="#bbe0e3 [4]"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:imagedata src="slide0039_image091.png" o:title=""/>
-  <v:shadow color="gray [2]"/>
-  <o:lock v:ext="edit" text="t"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s54282"
- src="slide0039_image092.jpg" style='position:absolute;top:30.0%;left:5.05%;
- width:54.49%;height:16.0%'><![endif]><v:line id="_x0000_s54283" style='position:absolute;
-  flip:y' from="30pt,4in" to="438pt,4in" strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0 v:shapes="_x0000_s54283"
- src="slide0039_image093.gif" style='position:absolute;top:53.25%;left:4.11%;
- width:57.11%;height:.5%'><![endif]><v:oval id="_x0000_s54284" style='position:absolute;
-  left:114pt;top:336pt;width:2in;height:24pt;mso-wrap-style:none;
-  v-text-anchor:middle' fillcolor="#bbe0e3 [4]" strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:animation number="2" delay="0" type="object" effect="cut"
-   direction="noBlack" flag="16384"/><p:onmousemove flag="1"/></v:oval><![if !vml]><img
- border=0 v:shapes="_x0000_s54284" src="slide0039_image094.gif"
- style='position:absolute;top:62.25%;left:15.73%;width:20.41%;height:5.0%'><![endif]><v:oval
-  id="_x0000_s54285" style='position:absolute;left:282pt;top:3in;width:156pt;
-  height:24pt;mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:animation number="3" delay="0" type="object" effect="cut"
-   direction="noBlack" flag="17412"/><p:onmousemove flag="1"/></v:oval><![if !vml]><img
- border=0 v:shapes="_x0000_s54285" src="slide0039_image095.gif"
- style='position:absolute;top:40.0%;left:39.13%;width:22.09%;height:5.0%'><![endif]></p:slide></div>
-
-<p:animation number="-158060592"/><oa:par id="TimeNode0" dur="indefinite"
- restart="never" p:nodeType="timingRoot">
- <oa:seq id="TimeNode1" dur="indefinite" prev="document.onpptprev"
-  next="document.onpptnext" concurrent="enabled" nextAction="seek"
-  p:nodeType="mainSeq">
-  <oa:par id="TimeNode2" begin="indefinite" fill="hold">
-   <oa:par id="TimeNode3" begin="0.0" fill="hold">
-    <oa:par id="TimeNode4" o:presetID="ppt_55" o:presetClass="entrance"
-     o:presetSubType="0x0" begin="0.0" fill="hold" p:nodeType="clickEffect">
-     <oa:set id="TimeNode5" begin="0.0" dur="0.001" fill="hold"
-      targetElement="_x0000_s54284" attributeName="style.visibility"
-      to="visible"/>
-     <oa:animate id="TimeNode6" dur="2.0" fill="hold"
-      targetElement="_x0000_s54284" attributeName="ppt_w" calcmode="linear"
-      valueType="number" keyTimes="0.0;1.0" values="#ppt_w*0.70;#ppt_w"/>
-     <oa:animate id="TimeNode7" dur="2.0" fill="hold"
-      targetElement="_x0000_s54284" attributeName="ppt_h" calcmode="linear"
-      valueType="number" keyTimes="0.0;1.0" values="#ppt_h;#ppt_h"/>
-     <oa:animateFilter id="TimeNode8" dur="2.0" targetElement="_x0000_s54284"
-      transition="in" filter="fade"/>
-    </oa:par>
-    <oa:par id="TimeNode9" o:presetID="ppt_55" o:presetClass="entrance"
-     o:presetSubType="0x0" begin="0.0" fill="hold" p:nodeType="withEffect">
-     <oa:set id="TimeNode10" begin="0.0" dur="0.001" fill="hold"
-      targetElement="_x0000_s54285" attributeName="style.visibility"
-      to="visible"/>
-     <oa:animate id="TimeNode11" dur="2.0" fill="hold"
-      targetElement="_x0000_s54285" attributeName="ppt_w" calcmode="linear"
-      valueType="number" keyTimes="0.0;1.0" values="#ppt_w*0.70;#ppt_w"/>
-     <oa:animate id="TimeNode12" dur="2.0" fill="hold"
-      targetElement="_x0000_s54285" attributeName="ppt_h" calcmode="linear"
-      valueType="number" keyTimes="0.0;1.0" values="#ppt_h;#ppt_h"/>
-     <oa:animateFilter id="TimeNode13" dur="2.0" targetElement="_x0000_s54285"
-      transition="in" filter="fade"/>
-    </oa:par>
-   </oa:par>
-  </oa:par>
- </oa:seq>
-</oa:par>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image087.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image087.png
deleted file mode 100644
index e5862d4..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image087.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image088.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image088.jpg
deleted file mode 100644
index 89df472..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image088.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image089.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image089.png
deleted file mode 100644
index 8adda41..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image089.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image090.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image090.jpg
deleted file mode 100644
index f21b294..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image090.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image091.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image091.png
deleted file mode 100644
index 84944f6..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image091.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image092.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image092.jpg
deleted file mode 100644
index 4fdcbc5..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image092.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image093.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image093.gif
deleted file mode 100644
index ec60e24..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image093.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image094.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image094.gif
deleted file mode 100644
index 151ce7d..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image094.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image095.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image095.gif
deleted file mode 100644
index fb28d9e..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0039_image095.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0040.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0040.htm
deleted file mode 100644
index 2191fde..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0040.htm
+++ /dev/null
@@ -1,171 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Static Profile Definition: Examples - New">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="54"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>35</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s55298"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s55299" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s55301"
-  style='position:absolute;left:54pt;top:252pt;width:612pt;height:48pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect><v:rect id="_x0000_s55303" style='position:absolute;left:78pt;top:186pt;
-  width:586.375pt;height:41.5pt' fillcolor="#ffc" strokecolor="#099 [6]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s55304" style='position:absolute;left:78pt;top:294pt;
-  width:586.375pt;height:24.75pt' fillcolor="#ffc" strokecolor="#099 [6]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s55305" style='position:absolute;left:78pt;top:384pt;
-  width:586.375pt;height:24.75pt' fillcolor="#ffc" strokecolor="#099 [6]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s55306" style='position:absolute;left:60pt;top:342pt;
-  width:612pt;height:48pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect><v:rect id="_x0000_s55308" style='position:absolute;left:66pt;top:426pt;
-  width:612pt;height:48pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect><![if !vml]><img border=0
- v:shapes="_x0000_s55303,_x0000_s55304,_x0000_s55305"
- src="slide0040_image099.gif" style='position:absolute;top:34.5%;left:10.86%;
- width:81.83%;height:41.75%'><![endif]>
- <div v:shape="_x0000_s55298" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.89%;height:6.0%'>Static Profile Definition: Examples - New</div>
- <div v:shape="_x0000_s55299" class=B style='position:absolute;top:26.5%;
- left:8.42%;width:83.14%;height:5.25%;tab-stops:.4427in'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.53%'>•</span>Applying stereotype.</span></div>
- <div v:shape="_x0000_s55301" class=B style='position:absolute;top:47.5%;
- left:8.42%;width:83.14%;height:5.25%;tab-stops:.4427in'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.53%'>•</span>Use the generated
- setters.</span></div>
- <div v:shape="_x0000_s55303" class=O style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1'><span style='position:absolute;top:35.25%;left:11.98%;width:79.58%;
- height:3.25%'><span style='mso-bidi-font-family:Arial;font-size:58%'><b>MyVerySpecialClass
- </b></span><span style='mso-bidi-font-family:Arial;font-size:58%'>mySpecialClass</span><span
- style='mso-bidi-font-family:Arial;font-size:58%'><b> = </b></span></span><span
- style='position:absolute;top:38.5%;left:11.98%;width:79.58%;height:3.25%'><span
- style='mso-bidi-font-family:Arial;font-size:58%'><b>(MyVerySpecialClass)</b></span><span
- style='mso-bidi-font-family:Arial;font-size:58%'>someClass</span><span
- style='mso-bidi-font-family:Arial;font-size:58%'><b>.applyStereotype(</b></span><span
- style='mso-bidi-font-family:Arial;font-size:58%'>stereotype);</span></span></div>
- <div v:shape="_x0000_s55304" class=O style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:55.25%;left:11.98%;width:79.58%;height:3.25%'><span
- style='mso-bidi-font-family:Arial;font-size:58%'>mySpecialClass.setFirstProperty(aClass);</span></div>
- <div v:shape="_x0000_s55305" class=O style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:72.0%;left:11.98%;width:79.58%;height:3.25%'><span
- style='mso-bidi-font-family:Arial;font-size:58%'>mySpecialClass.getFirstProperty();</span></div>
- <div v:shape="_x0000_s55306">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:108;position:absolute;top:64.25%;
- left:9.36%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.25%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.3%'>•</span>Use the generated getters.</span></div>
- </div>
- <div v:shape="_x0000_s55308">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:108;position:absolute;top:79.75%;
- left:10.11%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.25%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.3%'>•</span>New behavior.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0040_image099.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0040_image099.gif
deleted file mode 100644
index f3df92b..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0040_image099.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0041.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0041.htm
deleted file mode 100644
index 6266001..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0041.htm
+++ /dev/null
@@ -1,203 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Static Profile Definition: Versioning Issues">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="55"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>36</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s56322"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s56323" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:582pt;height:108pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s56322" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:86.7%;height:6.0%'>Static Profile Definition: Versioning
- Issues</div>
- <div v:shape="_x0000_s56323" style='tab-stops:.4427in'>
- <div class=HB style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:26.0%;left:10.48%;width:86.51%;height:5.25%'><span style='font-size:120%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.38%'>•</span></span><span
- style='font-size:120%'>With the older way of working with profiles, when </span></span><span
- style='position:absolute;top:30.75%;left:10.48%;width:87.26%;height:5.25%'><span
- style='font-size:120%'>changes are made, we must re-define the profile. &#13;</span></span></div>
- <div class=HB1 style='mso-line-spacing:"90 20 0";position:absolute;top:36.5%;
- left:12.92%;width:74.53%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.26%;width:96.73%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.37%;font-family:Wingdings'>w</span>We are
- left with multiple Ecore representations.&#13;</span></div>
- <div class=HB1 style='mso-line-spacing:"90 20 0";position:absolute;top:41.0%;
- left:12.92%;width:74.53%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.26%;width:96.73%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.37%;font-family:Wingdings'>w</span>These
- representations can be difficult to maintain.</span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s56324"
-  type="#_x0000_m1027" style='position:absolute;left:180pt;top:4in;width:270pt;
-  height:138pt;mso-wrap-style:none;mso-wrap-distance-left:9pt;
-  mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;
-  mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;
-  mso-position-horizontal-relative:text;mso-position-vertical:absolute;
-  mso-position-vertical-relative:text;v-text-anchor:middle' o:spt="75"
-  o:bwmode="auto" o:preferrelative="t" o:allowincell="t" o:allowoverlap="t"
-  path="m@4@5l@4@11@9@11@9@5xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="red" strokeweight=".75pt" insetpen="f" o:insetmode="custom">
-  <v:fill opacity="0" color2="white" o:opacity2="1" size="0,0" aspect="ignore"
-   origin="0,0" position="0,0" rotate="f" alignshape="t" o:detectmouseclick="f"
-   angle="0" focusposition="" focussize="" method="linear sigma" focus="0"
-   type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" imagesize="0,0"
-   imageaspect="ignore" miterlimit="8" linestyle="single" joinstyle="miter"
-   endcap="flat" rotate="f" imagealignshape="t" o:forcedash="f">
-   <o:left v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:top v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:right v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:bottom v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" insetpen="f"
-    on="f" imagealignshape="t"/>
-   <o:column v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" on="f"
-    imagealignshape="t"/>
-  </v:stroke>
-  <v:imagedata src="slide0041_image100.png" o:title=""/>
-  <v:shadow on="f" type="single" color="gray [2]" opacity="1" obscured="f"
-   color2="#cbcbcb" origin="0,0" offset="2pt,2pt" offset2="0,0" matrix="1,0,0,1,0,0"/>
-  <o:extrusion v:ext="view" specularity="0" diffusity="1" shininess="5" edge="1pt"
-   foredepth="0" backdepth="36pt" plane="XY" color="fillThenLine" on="f"
-   metal="f" lightface="t" rotationangle="0,0" orientation="100,0,0"
-   orientationangle="0" rotationcenter="0,0,0" render="solid" facet="30000f"
-   viewpoint="34.72222mm,-34.72222mm,250mm" viewpointorigin=".5,-.5"
-   skewangle="-135" skewamt="50%" brightness="20000f" lightposition="50000,0,10000"
-   lightlevel="38000f" lightposition2="-50000,0,10000" lightlevel2="38000f"
-   lockrotationcenter="t" autorotationcenter="f" type="parallel" lightharsh="t"
-   lightharsh2="f"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <o:callout v:ext="edit" gap="6pt" angle="auto" drop="user" distance="9pt"
-   length="0" minusx="f" minusy="f" dropauto="f" lengthspecified="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s56324" src="slide0041_image101.jpg"
- style='position:absolute;top:53.25%;left:25.09%;width:37.45%;height:25.5%'><![endif]><v:oval
-  id="_x0000_s56326" style='position:absolute;left:186pt;top:300pt;width:192pt;
-  height:84pt;mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="#339 [5]">
-  <v:fill opacity="0"/>
-  <v:shadow color="gray [2]"/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s56326"
- src="slide0041_image102.gif" style='position:absolute;top:55.5%;left:25.84%;
- width:27.15%;height:16.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0041_image100.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0041_image100.png
deleted file mode 100644
index bad5c3f..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0041_image100.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0041_image101.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0041_image101.jpg
deleted file mode 100644
index 7d0cdf3..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0041_image101.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0041_image102.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0041_image102.gif
deleted file mode 100644
index ad97242..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0041_image102.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0042.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0042.htm
deleted file mode 100644
index ec2ba87..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0042.htm
+++ /dev/null
@@ -1,145 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Static Profile Definition: References">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="56"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>39</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s57346"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s57347" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s57346" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Static Profile Definition: References</div>
- <div v:shape="_x0000_s57347" style='tab-stops:.4427in'>
- <div class=B><span style='position:absolute;top:26.5%;left:10.48%;width:95.88%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.14%'>•</span>More
- in-depth articles can be found on the UML2 wiki: </span><span
- style='position:absolute;top:31.75%;left:10.48%;width:81.27%;height:3.5%'><span
- style='font-size:67%'><p:onmouseclick hyperlinktype="url"
-  href="http://wiki.eclipse.org/MDT-UML2"/><a
- href="http://wiki.eclipse.org/MDT-UML2" target="_blank"
- onclick="window.event.cancelBubble=true;">http://wiki.eclipse.org/MDT-UML2</a></span><span
- style='font-size:67%;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:36.0%;left:8.42%;width:83.14%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:67%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='font-size:
- 67%;display:none'>&#13;</span></span></div>
- <div class=B><span style='position:absolute;top:40.75%;left:10.48%;width:81.27%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.53%'>•</span>New
- and Noteworthy section: </span><span style='position:absolute;top:46.0%;
- left:10.48%;width:97.19%;height:3.5%'><span style='font-size:67%'><p:onmouseclick
-  hyperlinktype="url" location="Static_Profile_Definition"
-  href="http://wiki.eclipse.org/index.php/MDT_1.0_New_and_Noteworthy"/><a
- href="http://wiki.eclipse.org/index.php/MDT_1.0_New_and_Noteworthy#Static_Profile_Definition"
- target="_blank" onclick="window.event.cancelBubble=true;">http://wiki.eclipse.org/index.php/MDT_1.0_New_and_Noteworthy#Static_Profile_D</a></span></span><span
- style='position:absolute;top:49.5%;left:10.48%;width:81.27%;height:3.5%'><span
- style='font-size:67%'><p:onmouseclick hyperlinktype="url"
-  location="Static_Profile_Definition"
-  href="http://wiki.eclipse.org/index.php/MDT_1.0_New_and_Noteworthy"/><a
- href="http://wiki.eclipse.org/index.php/MDT_1.0_New_and_Noteworthy#Static_Profile_Definition"
- target="_blank" onclick="window.event.cancelBubble=true;">efinition</a></span><span
- style='font-size:67%;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:53.75%;left:8.42%;width:83.14%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:67%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='font-size:
- 67%;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:58.5%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B1 style='position:absolute;top:64.75%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='color:#0033CC;visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.19%'>w</span></span><span style='color:#0033CC;
- display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:70.25%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0043.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0043.htm
deleted file mode 100644
index 62cc0eb..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0043.htm
+++ /dev/null
@@ -1,165 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Agenda">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="57"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>40</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s58370"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s58371" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s58370" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>Agenda</span><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s58371" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:26.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Introduction&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:32.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:37.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>New Features:&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:43.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:49.25%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Generics&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:54.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:60.0%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Static Profile Definition&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:65.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:71.0%;
- left:12.92%;width:78.83%;height:5.25%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:120%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:120%;mso-ansi-language:
- EN-US'><b><i>OCL Integration&#13;</i></b></span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:76.75%;
- left:12.92%;width:78.83%;height:5.25%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:120%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-3.19%;font-family:Wingdings'>w</span></span><span lang=EN-US
- style='font-size:120%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:82.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Summary&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:88.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:94.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0044.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0044.htm
deleted file mode 100644
index 72b237a..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0044.htm
+++ /dev/null
@@ -1,164 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: OCL Integration: What is it?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="58"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>41</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s59394"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s59395" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s59394" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>OCL Integration: What is it?</div>
- <div v:shape="_x0000_s59395" style='tab-stops:.4427in'>
- <div class=B><span style='position:absolute;top:26.5%;left:10.48%;width:81.27%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.53%'>•</span>OCL
- is designed to be a simple language for </span><span style='position:absolute;
- top:31.75%;left:10.48%;width:88.57%;height:5.25%'>specification of constraints
- and queries in models.&#13;</span></div>
- <div class=B style='position:absolute;top:37.75%;left:8.42%;width:83.14%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:58%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='font-size:
- 58%;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:42.0%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span>Specifying
- Constraints&#13;</span></div>
- <div class=B style='position:absolute;top:47.75%;left:8.42%;width:83.14%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:58%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='font-size:
- 58%;display:none'>&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:51.75%;left:15.35%;
- width:81.83%;height:4.0%'><span style='font-size:90%'><span class=B1B
- style='position:absolute;left:-2.97%'>w</span></span><span style='font-size:
- 90%'>Invariant constraint – condition on attributes (or any feature of </span></span><span
- style='position:absolute;top:55.75%;left:15.35%;width:76.21%;height:4.0%'><span
- style='font-size:90%'>context classifier) must always be true.&#13;</span></span></div>
- <div class=B style='position:absolute;top:60.75%;left:8.42%;width:83.14%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:83%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='font-size:
- 83%;display:none'>&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:66.0%;left:12.92%;width:79.4%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.06%;width:96.93%;
- height:100.0%'><span style='font-size:90%'><span class=B1B style='position:
- absolute;left:-3.16%'>w</span></span><span style='font-size:90%'>Query –
- specified as the body expression of an operation.&#13;</span></span></div>
- <div class=B style='position:absolute;top:70.75%;left:8.42%;width:83.14%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:83%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='font-size:
- 83%;display:none'>&#13;</span></span></div>
- <div class=B><span style='position:absolute;top:76.25%;left:10.48%;width:95.69%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.15%'>•</span>Have
- code generated from the expressions entered in </span><span style='position:
- absolute;top:81.75%;left:10.48%;width:81.27%;height:5.25%'>the UML model. </span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>OCL is often used to specify
-  operation precondition and postcondition constraints. A third kind of OCL
-  expression defined on operations is the body expression, which defines the
-  value of the operation in terms of its parameters and the properties of the context
-  classifier.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0045.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0045.htm
deleted file mode 100644
index eddcaf1..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0045.htm
+++ /dev/null
@@ -1,134 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: OCL Integration: Why Bother?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="59"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>42</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s60418"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s60419" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s60418" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>OCL Integration: Why Bother?</div>
- <div v:shape="_x0000_s60419" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span>Constraints
- can be evaluated at runtime.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:32.75%;left:15.35%;
- width:89.13%;height:4.5%'><span class=B1B style='position:absolute;left:-2.73%'>w</span>Automated
- constraint checking allows greater integrity of the </span><span
- style='position:absolute;top:37.25%;left:15.35%;width:76.21%;height:4.5%'>model.&#13;</span></div>
- <div class=B style='position:absolute;top:42.75%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:49.0%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span>Catch
- errors early.&#13;</span></div>
- <div class=B style='position:absolute;top:55.5%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:61.75%;left:8.42%;width:92.5%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.22%;width:97.77%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.27%'>•</span>Embellish
- your code with doc tags containing OCL.&#13;</span></div>
- <div class=B style='position:absolute;top:68.25%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:74.5%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span>UML
- is not enough.&#13;</span></div>
- <div class=B style='position:absolute;top:81.0%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0046.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0046.htm
deleted file mode 100644
index c48c023..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0046.htm
+++ /dev/null
@@ -1,185 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: OCL Integration: Example">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="60"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>43</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s61442"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:rect id="_x0000_s61446" style='position:absolute;
-  left:54pt;top:138pt;width:612pt;height:66pt' filled="f" fillcolor="#bbe0e3 [4]"
-  stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s61442" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>OCL Integration: Example</div>
- <div v:shape="_x0000_s61446">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216'><span style='position:absolute;
- top:26.5%;left:12.17%;width:90.26%;height:5.25%'><span style='mso-special-format:
- bullet;position:absolute;left:-4.14%'>•</span>We want to indicate that for our
- model to be valid a </span><span style='position:absolute;top:31.75%;
- left:12.17%;width:81.08%;height:5.25%'>Car must have an owner that is older
- than 21.</span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s61448"
-  type="#_x0000_m1027" style='position:absolute;left:2in;top:234pt;width:6in;
-  height:187.625pt;mso-wrap-style:none;mso-wrap-distance-left:9pt;
-  mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;
-  mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;
-  mso-position-horizontal-relative:text;mso-position-vertical:absolute;
-  mso-position-vertical-relative:text;v-text-anchor:middle' o:spt="75"
-  o:bwmode="auto" o:preferrelative="t" o:allowincell="t" o:allowoverlap="t"
-  path="m@4@5l@4@11@9@11@9@5xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="red" strokeweight=".75pt" insetpen="f" o:insetmode="custom">
-  <v:fill opacity="0" color2="white" o:opacity2="1" size="0,0" aspect="ignore"
-   origin="0,0" position="0,0" rotate="f" alignshape="t" o:detectmouseclick="f"
-   angle="0" focusposition="" focussize="" method="linear sigma" focus="0"
-   type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" imagesize="0,0"
-   imageaspect="ignore" miterlimit="8" linestyle="single" joinstyle="miter"
-   endcap="flat" rotate="f" imagealignshape="t" o:forcedash="f">
-   <o:left v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:top v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:right v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:bottom v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" insetpen="f"
-    on="f" imagealignshape="t"/>
-   <o:column v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" on="f"
-    imagealignshape="t"/>
-  </v:stroke>
-  <v:imagedata src="slide0046_image103.png" o:title=""/>
-  <v:shadow on="f" type="single" color="gray [2]" opacity="1" obscured="f"
-   color2="#cbcbcb" origin="0,0" offset="2pt,2pt" offset2="0,0" matrix="1,0,0,1,0,0"/>
-  <o:extrusion v:ext="view" specularity="0" diffusity="1" shininess="5" edge="1pt"
-   foredepth="0" backdepth="36pt" plane="XY" color="fillThenLine" on="f"
-   metal="f" lightface="t" rotationangle="0,0" orientation="100,0,0"
-   orientationangle="0" rotationcenter="0,0,0" render="solid" facet="30000f"
-   viewpoint="34.72222mm,-34.72222mm,250mm" viewpointorigin=".5,-.5"
-   skewangle="-135" skewamt="50%" brightness="20000f" lightposition="50000,0,10000"
-   lightlevel="38000f" lightposition2="-50000,0,10000" lightlevel2="38000f"
-   lockrotationcenter="t" autorotationcenter="f" type="parallel" lightharsh="t"
-   lightharsh2="f"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <o:callout v:ext="edit" gap="6pt" angle="auto" drop="user" distance="9pt"
-   length="0" minusx="f" minusy="f" dropauto="f" lengthspecified="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s61448" src="slide0046_image104.jpg"
- style='position:absolute;top:43.25%;left:20.03%;width:59.92%;height:34.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0046_image103.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0046_image103.png
deleted file mode 100644
index fe6db33..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0046_image103.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0046_image104.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0046_image104.jpg
deleted file mode 100644
index 3410320..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0046_image104.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047.htm
deleted file mode 100644
index 87e1c0b..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047.htm
+++ /dev/null
@@ -1,191 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: OCL Integration: Example-Invariant Constraint">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="61"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>44</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s62466"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s62466" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:96.06%;height:6.0%'>OCL Integration: Example-Invariant
- Constraint</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s62476"
-  type="#_x0000_m1027" style='position:absolute;left:58.875pt;top:213pt;
-  width:290.25pt;height:192pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0047_image105.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s62476" src="slide0047_image106.jpg"
- style='position:absolute;top:39.5%;left:8.23%;width:40.26%;height:35.5%'><![endif]><v:rect
-  id="_x0000_s62468" style='position:absolute;left:68.25pt;top:136.25pt;
-  width:172.875pt;height:45.75pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
- </v:rect><v:rect id="_x0000_s62469" style='position:absolute;left:444pt;top:138pt;
-  width:172.875pt;height:45.75pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
- </v:rect><v:line id="_x0000_s62470" style='position:absolute;flip:x' from="342pt,168pt"
-  to="343.5pt,429pt" strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0 v:shapes="_x0000_s62470"
- src="slide0047_image107.gif" style='position:absolute;top:31.0%;left:47.37%;
- width:.56%;height:49.0%'><![endif]>
- <div v:shape="_x0000_s62468">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:26.25%;
- left:10.48%;width:22.09%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>UML Model</u></div>
- </div>
- <div v:shape="_x0000_s62469">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:26.5%;
- left:62.73%;width:22.09%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>Properties</u></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s62479"
-  type="#_x0000_m1027" style='position:absolute;left:375.375pt;top:241.125pt;
-  width:281.25pt;height:135.75pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0047_image108.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s62479" src="slide0047_image109.jpg"
- style='position:absolute;top:44.75%;left:52.05%;width:39.13%;height:25.25%'><![endif]><v:oval
-  id="_x0000_s62481" style='position:absolute;left:522pt;top:270pt;width:126pt;
-  height:30pt;mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0"/>
-  <v:shadow color="gray [2]"/>
- </v:oval><v:oval id="_x0000_s62482" style='position:absolute;left:528pt;top:300pt;
-  width:60pt;height:18pt;mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0"/>
-  <v:shadow color="gray [2]"/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s62481,_x0000_s62482"
- src="slide0047_image110.gif" style='position:absolute;top:50.0%;left:72.47%;
- width:17.97%;height:9.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image105.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image105.png
deleted file mode 100644
index 4a31e62..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image105.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image106.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image106.jpg
deleted file mode 100644
index ee6a0ec..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image106.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image107.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image107.gif
deleted file mode 100644
index 2fa141a..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image107.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image108.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image108.png
deleted file mode 100644
index 4e988f4..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image108.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image109.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image109.jpg
deleted file mode 100644
index 8ab12e4..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image109.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image110.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image110.gif
deleted file mode 100644
index 2d04357..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0047_image110.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048.htm
deleted file mode 100644
index 96c38ab..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048.htm
+++ /dev/null
@@ -1,193 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: OCL Integration: Example-Invariant Constraint">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="62"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>46</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s63490"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s63491" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:90pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s63490" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:96.06%;height:6.0%'>OCL Integration: Example-Invariant
- Constraint</div>
- <div v:shape="_x0000_s63491" style='tab-stops:.4427in'>
- <div class=HB style='position:absolute;top:26.5%;left:8.42%;width:83.14%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=HBB style='position:absolute;left:-2.53%'>•</span><b><i>context</i></b>:
- Specifies the element we are referring to.&#13;</span></div>
- <div class=HB1 style='position:absolute;top:31.75%;left:12.92%;width:78.83%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=HB1B style='position:absolute;left:-3.19%'>w</span>Context
- in this example is <i>Car&#13;</i></span></div>
- <div class=HB style='position:absolute;top:36.5%;left:8.42%;width:83.14%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=HBB style='position:absolute;left:-2.53%'>•</span><b><i>self</i></b>:
- Keyword that indicates the current object.</span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s63500"
-  type="#_x0000_m1027" style='position:absolute;left:66pt;top:228pt;width:522pt;
-  height:13.875pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0048_image115.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="3" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s63500" src="slide0048_image116.jpg"
- style='position:absolute;top:42.25%;left:9.17%;width:72.47%;height:2.5%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s63503" type="#_x0000_m1027"
-  style='position:absolute;left:66pt;top:246pt;width:582pt;height:242.5pt'
-  o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
-  fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0048_image117.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s63503" src="slide0048_image118.jpg"
- style='position:absolute;top:45.5%;left:9.17%;width:80.89%;height:45.0%'><![endif]><v:oval
-  id="_x0000_s63505" style='position:absolute;left:78pt;top:270pt;width:276pt;
-  height:18pt;mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s63505" src="slide0048_image119.gif" style='position:absolute;
- top:50.0%;left:10.86%;width:38.76%;height:4.0%'><![endif]><v:oval id="_x0000_s63506"
-  style='position:absolute;left:462pt;top:222pt;width:126pt;height:24pt;
-  mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s63506" src="slide0048_image120.gif" style='position:absolute;
- top:41.0%;left:64.04%;width:17.97%;height:5.0%'><![endif]><v:oval id="_x0000_s63507"
-  style='position:absolute;left:1in;top:336pt;width:6in;height:36pt;
-  mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><v:oval id="_x0000_s63508" style='position:absolute;
-  left:306pt;top:282pt;width:366pt;height:30pt;mso-wrap-style:none;
-  v-text-anchor:middle' fillcolor="#bbe0e3 [4]" strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s63507,_x0000_s63508" src="slide0048_image121.gif"
- style='position:absolute;top:52.25%;left:9.92%;width:83.7%;height:17.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image115.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image115.png
deleted file mode 100644
index c0e0b4b..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image115.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image116.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image116.jpg
deleted file mode 100644
index df44ceb..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image116.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image117.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image117.png
deleted file mode 100644
index d3dce56..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image117.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image118.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image118.jpg
deleted file mode 100644
index f343415..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image118.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image119.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image119.gif
deleted file mode 100644
index 2b858d8..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image119.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image120.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image120.gif
deleted file mode 100644
index 8b3cf48..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image120.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image121.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image121.gif
deleted file mode 100644
index c882e16..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0048_image121.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049.htm
deleted file mode 100644
index d54c506..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049.htm
+++ /dev/null
@@ -1,221 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: OCL Integration: Example-Body Condition">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="63"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>48</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s64533"
-  type="#_x0000_m1027" style='position:absolute;left:42pt;top:204pt;width:282pt;
-  height:202.75pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0049_image125.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="3" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s64533" src="slide0049_image126.jpg"
- style='position:absolute;top:37.75%;left:5.8%;width:39.13%;height:37.5%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s64514" type="#_x0000_m1026"
-  style='position:absolute;left:54pt;top:84pt;width:612pt;height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s64514" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:87.26%;height:6.0%'>OCL Integration: Example-Body Condition</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s64527"
-  type="#_x0000_m1027" style='position:absolute;left:5in;top:186pt;width:300pt;
-  height:83pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0049_image127.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s64527" src="slide0049_image128.jpg"
- style='position:absolute;top:34.5%;left:50.0%;width:41.76%;height:15.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s64530" type="#_x0000_m1027"
-  style='position:absolute;left:354pt;top:336pt;width:289.5pt;height:141.75pt'
-  o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
-  fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0049_image129.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s64530" src="slide0049_image130.jpg"
- style='position:absolute;top:62.25%;left:49.25%;width:40.26%;height:26.25%'><![endif]><v:rect
-  id="_x0000_s64516" style='position:absolute;left:68.25pt;top:136.25pt;
-  width:172.875pt;height:45.75pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
- </v:rect><v:rect id="_x0000_s64517" style='position:absolute;left:378.375pt;
-  top:136.25pt;width:172.875pt;height:45.75pt' filled="f" fillcolor="#bbe0e3 [4]"
-  stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
- </v:rect><v:line id="_x0000_s64518" style='position:absolute' from="330pt,138pt"
-  to="330.625pt,475.875pt" strokecolor="black [1]" strokeweight="1.5pt">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0 v:shapes="_x0000_s64518"
- src="slide0049_image131.gif" style='position:absolute;top:25.5%;left:45.69%;
- width:.56%;height:63.25%'><![endif]>
- <div v:shape="_x0000_s64516">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:26.25%;
- left:10.48%;width:22.09%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>UML Model</u></div>
- </div>
- <div v:shape="_x0000_s64517">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:26.25%;
- left:53.55%;width:22.09%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>Properties</u></div>
- </div>
- <v:line id="_x0000_s64519" style='position:absolute;flip:x y' from="330pt,306pt"
-  to="646.5pt,306.75pt" strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0 v:shapes="_x0000_s64519"
- src="slide0049_image132.gif" style='position:absolute;top:56.5%;left:45.69%;
- width:44.38%;height:.75%'><![endif]><v:oval id="_x0000_s64535" style='position:absolute;
-  left:456pt;top:372pt;width:198pt;height:24pt;mso-wrap-style:none;
-  v-text-anchor:middle' fillcolor="#bbe0e3 [4]" strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><v:oval id="_x0000_s64536" style='position:absolute;
-  left:456pt;top:402pt;width:120pt;height:12pt;mso-wrap-style:none;
-  v-text-anchor:middle' fillcolor="#bbe0e3 [4]" strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s64535,_x0000_s64536" src="slide0049_image133.gif"
- style='position:absolute;top:68.75%;left:63.29%;width:27.9%;height:8.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image125.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image125.png
deleted file mode 100644
index 1195240..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image125.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image126.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image126.jpg
deleted file mode 100644
index 3c2ac4f..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image126.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image127.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image127.png
deleted file mode 100644
index 536f7dd..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image127.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image128.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image128.jpg
deleted file mode 100644
index abef06b..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image128.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image129.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image129.png
deleted file mode 100644
index 86de59d..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image129.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image130.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image130.jpg
deleted file mode 100644
index aebc2de..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image130.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image131.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image131.gif
deleted file mode 100644
index 6d5542e..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image131.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image132.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image132.gif
deleted file mode 100644
index 94ddd7e..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image132.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image133.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image133.gif
deleted file mode 100644
index 0aa9d20..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0049_image133.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050.htm
deleted file mode 100644
index 1805de0..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050.htm
+++ /dev/null
@@ -1,181 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: OCL Integration: Example-Body Condition">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="64"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>49</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s65538"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s65538" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:87.26%;height:6.0%'>OCL Integration: Example-Body Condition</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s65545"
-  type="#_x0000_m1027" style='position:absolute;left:30pt;top:198.125pt;
-  width:654pt;height:13.625pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0050_image134.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s65545" src="slide0050_image135.jpg"
- style='position:absolute;top:36.75%;left:4.11%;width:90.82%;height:2.5%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s65550" type="#_x0000_m1027"
-  style='position:absolute;left:24pt;top:222pt;width:696pt;height:171.875pt'
-  o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
-  fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0050_image136.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s65550" src="slide0050_image137.jpg"
- style='position:absolute;top:41.0%;left:3.37%;width:96.62%;height:31.75%'><![endif]><v:rect
-  id="_x0000_s65552" style='position:absolute;left:54pt;top:2in;width:612pt;
-  height:36pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect><v:oval id="_x0000_s65554" style='position:absolute;left:0;top:324pt;
-  width:7in;height:66pt;mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s65554" src="slide0050_image138.gif" style='position:absolute;
- top:60.0%;left:0%;width:70.41%;height:12.75%'><![endif]>
- <div v:shape="_x0000_s65552">
- <div class=HB1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=HB2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=HB3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=HB4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=HB style='mso-margin-left-alt:216;position:absolute;top:27.5%;
- left:8.42%;width:85.76%;height:4.5%'><span style='position:absolute;
- top:0%;left:4.36%;width:95.63%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-4.56%'>•</span><b><i>EvaluationEnvironment: </i></b>Operation
- parameters added</span></div>
- </div>
- <v:oval id="_x0000_s65555" style='position:absolute;left:438pt;top:192pt;
-  width:246pt;height:24pt;mso-wrap-style:none;v-text-anchor:middle'
-  fillcolor="#bbe0e3 [4]" strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s65555" src="slide0050_image139.gif" style='position:absolute;
- top:35.5%;left:60.86%;width:34.64%;height:5.0%'><![endif]><v:oval id="_x0000_s65556"
-  style='position:absolute;left:54pt;top:246pt;width:666pt;height:24pt;
-  mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0" o:detectmouseclick="t"/>
-  <v:shadow color="gray [2]"/>
-  <p:onmousemove flag="1"/></v:oval><![if !vml]><img border=0
- v:shapes="_x0000_s65556" src="slide0050_image140.gif" style='position:absolute;
- top:45.5%;left:7.49%;width:92.88%;height:5.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image134.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image134.png
deleted file mode 100644
index acaf178..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image134.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image135.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image135.jpg
deleted file mode 100644
index 4c2fd5c..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image135.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image136.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image136.png
deleted file mode 100644
index 3822f4c..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image136.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image137.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image137.jpg
deleted file mode 100644
index b37451b..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image137.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image138.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image138.gif
deleted file mode 100644
index e7d318b..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image138.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image139.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image139.gif
deleted file mode 100644
index 5c03b42..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image139.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image140.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image140.gif
deleted file mode 100644
index 28d8e58..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0050_image140.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0051.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0051.htm
deleted file mode 100644
index fcc645e..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0051.htm
+++ /dev/null
@@ -1,144 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: OCL Integration: Code Generation">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="65"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>50</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s66562"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s66563" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:162pt;width:324pt;height:186pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s66562" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>OCL Integration: Code Generation</div>
- <div v:shape="_x0000_s66563" class=HB style='tab-stops:.4427in'>
- <div style='position:absolute;top:31.0%;left:8.42%;width:43.07%;height:4.5%'><span
- style='position:absolute;top:0%;left:4.78%;width:95.65%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.0%'>•</span></span>&#13;</span></div>
- <span style='position:absolute;top:36.25%;left:10.48%;width:41.19%;height:
- 4.5%'><span class=HBB style='position:absolute;left:-5.0%'>•</span>Specify
- that you would like </span><span style='position:absolute;top:40.75%;
- left:10.48%;width:49.43%;height:4.5%'>‘Invariant Constraints’ processed.&#13;</span>
- <div style='position:absolute;top:46.0%;left:8.42%;width:43.07%;height:4.5%'><span
- style='position:absolute;top:0%;left:4.78%;width:95.65%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.0%'>•</span></span>&#13;</span></div>
- <span style='position:absolute;top:51.25%;left:10.48%;width:47.56%;height:
- 4.5%'><span class=HBB style='position:absolute;left:-4.33%'>•</span>Specify
- ‘Operation Bodies’ to be </span><span style='position:absolute;top:55.75%;
- left:10.48%;width:41.19%;height:4.5%'>added.&#13;</span>
- <div style='position:absolute;top:61.0%;left:8.42%;width:43.07%;height:4.5%'><span
- style='position:absolute;top:0%;left:4.78%;width:95.65%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.0%'>•</span></span>&#13;</span></div>
- <div style='position:absolute;top:66.5%;left:8.42%;width:43.07%;height:4.5%'><span
- style='position:absolute;top:0%;left:4.78%;width:95.65%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.0%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s66564"
-  type="#_x0000_m1027" style='position:absolute;left:400.25pt;top:120pt;
-  width:251.5pt;height:372pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" recolor="f" rotate="f" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0051_image141.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s66564" src="slide0051_image142.jpg"
- style='position:absolute;top:22.25%;left:55.61%;width:35.01%;height:69.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0051_image141.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0051_image141.png
deleted file mode 100644
index 60a5d37..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0051_image141.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0051_image142.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0051_image142.jpg
deleted file mode 100644
index 9a98cd2..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0051_image142.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0053.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0053.htm
deleted file mode 100644
index 7df13fb..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0053.htm
+++ /dev/null
@@ -1,131 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: OCL Integration: Tips">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="67"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>53</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s68610"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s68611" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s68610" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>OCL Integration: Tips</div>
- <div v:shape="_x0000_s68611" style='tab-stops:.4427in'>
- <div class=B><span style='position:absolute;top:26.5%;left:10.48%;width:81.27%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.53%'>•</span>Have
- a look at bugzilla </span><span style='position:absolute;top:31.75%;
- left:10.48%;width:97.19%;height:5.25%'><span style='font-size:67%'><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199" target="_blank"
- onclick="window.event.cancelBubble=true;">https://bugs.eclipse.org/bugs/show_bug.cgi?id=105199</a></span>
- for an example of </span><span style='position:absolute;top:37.25%;left:10.48%;
- width:81.27%;height:5.25%'>how to hook in validation of your model&#13;</span></div>
- <div class=B1 style='position:absolute;top:43.5%;left:12.92%;width:78.83%;
- height:5.25%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:120%;visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.19%'>w</span></span><span style='font-size:
- 120%;display:none'>&#13;</span></span></div>
- <div class=B><span style='position:absolute;top:50.0%;left:10.48%;width:81.27%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.53%'>•</span>Refer
- to OCL article at: </span><span style='position:absolute;top:55.25%;
- left:10.48%;width:87.07%;height:3.5%'><span style='font-size:67%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/articles/article.php?file=Article-EMF-Codegen-with-OCL/index.html"/><a
- href="http://www.eclipse.org/articles/article.php?file=Article-EMF-Codegen-with-OCL/index.html"
- target="_blank" onclick="window.event.cancelBubble=true;">http://www.eclipse.org/articles/article.php?file=Article-EMF-Codegen-with-</a></span></span><span
- style='position:absolute;top:58.75%;left:10.48%;width:81.27%;height:3.5%'><span
- style='font-size:67%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/articles/article.php?file=Article-EMF-Codegen-with-OCL/index.html"/><a
- href="http://www.eclipse.org/articles/article.php?file=Article-EMF-Codegen-with-OCL/index.html"
- target="_blank" onclick="window.event.cancelBubble=true;">OCL/index.html</a></span><span
- style='font-size:67%;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:63.0%;left:8.42%;width:83.14%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:67%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='font-size:
- 67%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0054.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0054.htm
deleted file mode 100644
index 992969d..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0054.htm
+++ /dev/null
@@ -1,164 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Agenda">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="68"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>54</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s69634"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s69635" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s69634" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>Agenda</span><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- <div v:shape="_x0000_s69635" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:26.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Introduction&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:32.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:37.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>New Features:&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:43.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:49.25%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Generics&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:54.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:60.0%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Static Profile Definition&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:65.0%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:70.75%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.19%;font-family:Wingdings'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>OCL Integration&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:75.75%;
- left:12.92%;width:78.83%;height:4.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='mso-ansi-language:EN-US;
- display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:80.75%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.53%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'><b><i>Summary&#13;</i></b></span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:86.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:92.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0055.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0055.htm
deleted file mode 100644
index 5294996..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0055.htm
+++ /dev/null
@@ -1,133 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Summary">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="69"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>55</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s70658"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s70659" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s70658" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Summary</div>
- <div v:shape="_x0000_s70659" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span>We’ve
- looked at:&#13;</span></div>
- <div class=B1 style='position:absolute;top:32.75%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span>Generics&#13;</span></div>
- <div class=B1 style='position:absolute;top:38.0%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span>Static
- Profile Definition&#13;</span></div>
- <div class=B1 style='position:absolute;top:43.25%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span>OCL
- Integration&#13;</span></div>
- <div class=B1 style='position:absolute;top:48.75%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.19%'>w</span></span>&#13;</span></div>
- <div class=B><span style='position:absolute;top:54.25%;left:10.48%;width:86.14%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.39%'>•</span>Tooling
- should make it easy for you to use these </span><span style='position:absolute;
- top:59.5%;left:10.48%;width:81.27%;height:5.25%'>features. &#13;</span></div>
- <div class=B style='position:absolute;top:66.0%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:72.25%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span>Try
- it out and report issues.&#13;</span></div>
- <div class=B style='position:absolute;top:78.75%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0057.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0057.htm
deleted file mode 100644
index 78392f8..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0057.htm
+++ /dev/null
@@ -1,95 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="71"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>56</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s72706"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s72707" type="#_x0000_m1027"
-  style='position:absolute;left:222pt;top:240pt;width:204pt;height:54pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s72707" class=B style='position:absolute;top:45.5%;
- left:31.83%;width:30.89%;height:7.75%;tab-stops:.4427in'><span
- style='mso-special-format:nobullet;display:none'>•</span><span
- style='font-size:150%'>Thank You!</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0058.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0058.htm
deleted file mode 100644
index 03580e4..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0058.htm
+++ /dev/null
@@ -1,129 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Static Profile Definition: Summary">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="85"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>38</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s87042"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s87043" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:666pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s87042" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Static Profile Definition: Summary</div>
- <div v:shape="_x0000_s87043" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:90.63%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.27%;width:97.93%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.32%'>•</span>Preferred approach
- going forward.&#13;</span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:90.63%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.27%;width:97.93%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.32%'>•</span></span>&#13;</span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:90.63%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.27%;width:97.93%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.32%'>•</span>Easier to work
- with.&#13;</span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:90.63%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.27%;width:97.93%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.32%'>•</span></span>&#13;</span></div>
- <div style='position:absolute;top:52.0%;left:8.42%;width:90.63%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.27%;width:97.93%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.32%'>•</span>Introduce
- behavior.<span style='mso-spacerun:yes'>  </span>&#13;</span></div>
- <div style='position:absolute;top:58.5%;left:8.42%;width:90.63%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.27%;width:97.93%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.32%'>•</span></span>&#13;</span></div>
- <div style='position:absolute;top:64.75%;left:8.42%;width:90.63%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.27%;width:97.93%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.32%'>•</span>Combine with our next
- topic: OCL Integration.&#13;</span></div>
- <div style='position:absolute;top:71.25%;left:8.42%;width:90.63%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.27%;width:97.93%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.32%'>•</span></span>&#13;</span></div>
- <div style='position:absolute;top:77.5%;left:8.42%;width:90.63%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.27%;width:97.93%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.32%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0059.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0059.htm
deleted file mode 100644
index ce06ea3..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0059.htm
+++ /dev/null
@@ -1,216 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Legal Notices">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="98"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>57</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s100354"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s100355" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s100354" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Legal Notices</div>
- <div v:shape="_x0000_s100355" class=B style='tab-stops:.4427in'>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:26.0%;left:8.42%;
- width:83.14%;height:2.25%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:42%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0"'><span style='position:absolute;
- top:28.25%;left:10.48%;width:94.19%;height:2.25%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.18%'>•</span></span><span
- lang=EN-US style='font-size:42%;mso-ansi-language:EN-US'>Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights
- reserved.<span style='mso-spacerun:yes'>  </span>Source code in this
- presentation is made available under the EPL, v1.0; </span></span><span
- style='position:absolute;top:30.0%;left:10.48%;width:81.27%;height:2.25%'><span
- lang=EN-US style='font-size:42%;mso-ansi-language:EN-US'>remainder of the
- presentation is licensed under Creative Commons Att. Nc Nd 2.5 license.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:32.25%;
- left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:34.5%;left:8.42%;
- width:95.88%;height:2.25%'><span style='position:absolute;top:0%;left:2.14%;
- width:98.04%;height:100.0%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.19%'>•</span></span><span
- style='font-size:42%'>IBM and the IBM logo are trademarks or registered
- trademarks of IBM Corporation in the United States, other countries, or
- both.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:36.75%;
- left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0"'><span style='position:absolute;
- top:39.0%;left:10.48%;width:95.5%;height:2.25%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.15%'>•</span></span><span
- style='font-size:42%'>Rational and the Rational logo are trademarks or
- registered trademarks of International Business Corporation in the United
- States, </span></span><span style='position:absolute;top:40.75%;left:10.48%;
- width:81.27%;height:2.25%'><span style='font-size:42%'>other countries, or
- both.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:43.0%;left:8.42%;
- width:83.14%;height:2.25%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:42%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:45.0%;left:8.42%;
- width:90.44%;height:2.25%'><span style='position:absolute;top:0%;left:2.27%;
- width:97.92%;height:100.0%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.32%'>•</span></span><span
- style='font-size:42%'>UML, Unified Modeling Language, and MOF are trademarks
- or registered trademarks of Object Management Group, Inc.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:47.25%;
- left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0"'><span style='position:absolute;
- top:49.5%;left:10.48%;width:94.19%;height:2.25%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.18%'>•</span></span><span
- style='font-size:42%'>Java and all Java-based trademarks, among others, are
- trademarks or registered trademarks of Sun Microsystems in the United </span></span><span
- style='position:absolute;top:51.25%;left:10.48%;width:81.27%;height:2.25%'><span
- style='font-size:42%'>States, other countries, or both&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:53.5%;left:8.42%;
- width:83.14%;height:2.25%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:42%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:55.75%;
- left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%'>Eclipse and the Eclipse logo are trademarks of the
- Eclipse Foundation, Inc.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:58.0%;left:8.42%;
- width:83.14%;height:2.25%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:42%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:60.25%;
- left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%'>Other company, product, and service names may be
- trademarks or service marks of others.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:62.5%;left:8.42%;
- width:83.14%;height:2.25%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:42%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0"'><span style='position:absolute;
- top:64.75%;left:10.48%;width:96.25%;height:2.25%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.14%'>•</span></span><span
- style='font-size:42%'>THE INFORMATION DISCUSSED IN THIS PRESENTATION IS
- PROVIDED FOR INFORMATIONAL PURPOSES ONLY.<span style='mso-spacerun:yes'> 
- </span>WHILE </span></span><span style='position:absolute;top:66.5%;
- left:10.48%;width:95.13%;height:2.25%'><span style='font-size:42%'>EFFORTS
- WERE MADE TO VERIFY THE COMPLETENESS AND ACCURACY OF THE INFORMATION, IT IS
- PROVIDED “AS </span></span><span style='position:absolute;top:68.25%;
- left:10.48%;width:90.63%;height:2.25%'><span style='font-size:42%'>IS” WITHOUT
- WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, AND IBM SHALL NOT BE RESPONSIBLE FOR
- ANY </span></span><span style='position:absolute;top:70.0%;left:10.48%;
- width:92.5%;height:2.25%'><span style='font-size:42%'>DAMAGES ARISING OUT OF
- THE USE OF, OR OTHERWISE RELATED TO, SUCH INFORMATION.<span
- style='mso-spacerun:yes'>  </span>ANY INFORMATION </span></span><span
- style='position:absolute;top:71.75%;left:10.48%;width:85.39%;height:2.25%'><span
- style='font-size:42%'>CONCERNING IBMÂ’S PRODUCT PLANS OR STRATEGY IS SUBJECT TO
- CHANGE BY IBM WITHOUT NOTICE.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:74.0%;left:8.42%;
- width:83.14%;height:2.25%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:42%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:76.25%;
- left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:42%;mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061.htm
deleted file mode 100644
index 7816f98..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061.htm
+++ /dev/null
@@ -1,164 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: OCL Integration: Example-Invariant Constraint">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="110"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>45</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s112642"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s112643" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:606pt;height:48pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s112642" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:96.06%;height:6.0%'>OCL Integration: Example-Invariant
- Constraint</div>
- <div v:shape="_x0000_s112643" class=HB style='position:absolute;top:26.5%;
- left:8.42%;width:82.39%;height:4.5%;tab-stops:.4427in'><span style='position:
- absolute;top:0%;left:2.5%;width:97.72%;height:100.0%'><span class=HBB
- style='position:absolute;left:-2.55%'>•</span>OCL dependencies automatically
- added.</span></div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s112646"
-  type="#_x0000_m1027" style='position:absolute;left:78pt;top:174pt;width:260.25pt;
-  height:145.5pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0061_image111.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="3" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s112646" src="slide0061_image112.jpg"
- style='position:absolute;top:32.25%;left:10.86%;width:36.14%;height:27.0%'><![endif]><v:rect
-  id="_x0000_s112645" style='position:absolute;left:48pt;top:318pt;width:564pt;
-  height:36pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s112645" class=HB style='position:absolute;top:59.75%;
- left:7.67%;width:90.82%;height:4.5%;tab-stops:.4427in'><span style='position:
- absolute;top:0%;left:2.06%;width:97.93%;height:100.0%'><span class=HBB
- style='position:absolute;left:-2.1%'>•</span>Javadoc for the interface
- includes the constraint information.</span></div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s112648"
-  type="#_x0000_m1027" style='position:absolute;left:1in;top:5in;width:300pt;
-  height:108.875pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0061_image113.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s112648" src="slide0061_image114.jpg"
- style='position:absolute;top:66.75%;left:9.92%;width:41.76%;height:20.25%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061_image111.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061_image111.png
deleted file mode 100644
index 8b43790..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061_image111.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061_image112.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061_image112.jpg
deleted file mode 100644
index a1d27aa..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061_image112.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061_image113.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061_image113.png
deleted file mode 100644
index 12d277a..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061_image113.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061_image114.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061_image114.jpg
deleted file mode 100644
index f554b47..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0061_image114.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062.htm
deleted file mode 100644
index cc7c114..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062.htm
+++ /dev/null
@@ -1,152 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: OCL Integration: Try it out.">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="111"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>52</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s113666"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s113667" type="#_x0000_m1027"
-  style='position:absolute;left:48pt;top:384pt;width:606pt;height:36pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s113666" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>OCL Integration: Try it out.</div>
- <div v:shape="_x0000_s113667" class=HB style='position:absolute;top:72.0%;
- left:7.67%;width:82.39%;height:4.5%;tab-stops:.4427in'><span style='position:
- absolute;top:0%;left:2.27%;width:97.72%;height:100.0%'><span class=HBB
- style='position:absolute;left:-2.32%'>•</span>Output</span></div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s113668"
-  type="#_x0000_m1027" style='position:absolute;left:66pt;top:132pt;width:354pt;
-  height:240.875pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0062_image143.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s113668" src="slide0062_image144.jpg"
- style='position:absolute;top:24.5%;left:9.17%;width:49.25%;height:44.5%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s113670" type="#_x0000_m1027"
-  style='position:absolute;left:1in;top:420pt;width:272.25pt;height:52.5pt'
-  o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
-  fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0062_image145.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="3" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s113670" src="slide0062_image146.jpg"
- style='position:absolute;top:77.75%;left:9.92%;width:37.82%;height:9.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062_image143.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062_image143.png
deleted file mode 100644
index f2adcca..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062_image143.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062_image144.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062_image144.jpg
deleted file mode 100644
index 6a5e291..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062_image144.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062_image145.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062_image145.png
deleted file mode 100644
index ffc72ec..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062_image145.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062_image146.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062_image146.jpg
deleted file mode 100644
index fb9b683..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0062_image146.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0063.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0063.htm
deleted file mode 100644
index 1661163..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0063.htm
+++ /dev/null
@@ -1,546 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Concepts - Java">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="114"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>11</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s116738"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:group id="_x0000_s116740" style='position:absolute;
-  left:96pt;top:342pt;width:514.5pt;height:50.25pt' coordorigin="912,1862"
-  coordsize="4116,402" o:tableproperties="1" o:tablelimits="43.25pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s116741" style='position:absolute;left:912;top:1862;
-   width:4116;height:402' fillcolor="#f3f3f3" stroked="f" strokecolor="black [1]">
-   <v:fill alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="gray [2]"/>
-  </v:rect><v:line id="_x0000_s116742" style='position:absolute' from="912,1862"
-   to="5028,1862" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s116743" style='position:absolute' from="912,2264"
-   to="5028,2264" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s116744" style='position:absolute' from="912,1862"
-   to="912,2264" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s116745" style='position:absolute' from="5028,1862"
-   to="5028,2264" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line></v:group><v:group id="_x0000_s116746" style='position:absolute;
-  left:96pt;top:408pt;width:514.5pt;height:50.25pt' coordorigin="912,2333"
-  coordsize="4116,402" o:tableproperties="1" o:tablelimits="43.25pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s116747" style='position:absolute;left:912;top:2333;
-   width:4116;height:402' fillcolor="#f3f3f3" stroked="f" strokecolor="black [1]">
-   <v:fill alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="gray [2]"/>
-  </v:rect><v:line id="_x0000_s116748" style='position:absolute' from="912,2333"
-   to="5028,2333" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s116749" style='position:absolute' from="912,2735"
-   to="5028,2735" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s116750" style='position:absolute' from="912,2333"
-   to="912,2735" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s116751" style='position:absolute' from="5028,2333"
-   to="5028,2735" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line></v:group><![if !vml]><img border=0
- v:shapes="_x0000_s116740,_x0000_s116741,_x0000_s116742,_x0000_s116743,_x0000_s116744,_x0000_s116745,_x0000_s116746,_x0000_s116747,_x0000_s116748,_x0000_s116749,_x0000_s116750,_x0000_s116751"
- src="slide0063_image029.gif" style='position:absolute;top:63.25%;left:13.29%;
- width:71.72%;height:22.0%'><![endif]>
- <div v:shape="_x0000_s116738" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Concepts - Java</div>
- <div v:shape="_x0000_s116741">
- <div class=Tbl1 style='mso-margin-left-alt:288;mso-text-indent-alt:288'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576;mso-text-indent-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864;mso-text-indent-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152;mso-text-indent-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:63.75%;left:14.41%;width:69.66%;height:3.25%'><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%'>&nbsp;</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Arial Unicode MS";mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";font-size:60%;color:#7F0055'><b>public</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>interface</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>TestClass</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>extends</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>EObject</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>{</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:66.25%;left:14.41%;
- width:69.66%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:white'><span style='mso-spacerun:yes'>    </span></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>ArrayList&lt;Car&gt;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>getMyCars();</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:69.0%;left:14.41%;
- width:69.66%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>}</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:Arial;
- mso-fareast-font-family:"Times New Roman";mso-special-format:lastCR;
- display:none'>&#13;</span></span></span></div>
- </div>
- <div v:shape="_x0000_s116747">
- <div class=Tbl1 style='mso-margin-left-alt:288;mso-text-indent-alt:288'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576;mso-text-indent-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864;mso-text-indent-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152;mso-text-indent-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:76.0%;left:14.41%;width:69.66%;height:3.25%'><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%'>&nbsp;</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Arial Unicode MS";mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";font-size:60%;color:#7F0055'><b>public</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>class</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>TestClassImpl</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>extends</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>EObjectImpl</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:#7F0055'><b>implements</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>TestClass</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>{</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Courier New";mso-ascii-font-family:"Courier New";
- mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:78.5%;left:14.41%;
- width:69.66%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:white'><span style='mso-spacerun:yes'>    </span></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>protected</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>ArrayList&lt;Car&gt;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>myCars;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:81.25%;left:14.41%;
- width:69.66%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>}</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:Arial;
- mso-fareast-font-family:"Times New Roman";font-size:60%'> </span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:Arial;mso-fareast-font-family:"Times New Roman";
- mso-special-format:lastCR;display:none'>&#13;</span></span></span></div>
- </div>
- <v:group id="_x0000_s116752" style='position:absolute;left:96pt;top:156pt;
-  width:514.5pt;height:31.25pt' coordorigin="912,2928" coordsize="4116,250"
-  o:tableproperties="1" o:tablelimits="31.25pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s116753" style='position:absolute;left:912;top:2928;
-   width:4116;height:250' fillcolor="#f3f3f3" stroked="f" strokecolor="black [1]">
-   <v:fill alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="gray [2]"/>
-  </v:rect><v:line id="_x0000_s116754" style='position:absolute' from="912,2928"
-   to="5028,2928" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s116755" style='position:absolute' from="912,3178"
-   to="5028,3178" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s116756" style='position:absolute' from="912,2928"
-   to="912,3178" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s116757" style='position:absolute' from="5028,2928"
-   to="5028,3178" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line></v:group><v:group id="_x0000_s116769" style='position:absolute;
-  left:96pt;top:210pt;width:514.5pt;height:81.875pt' coordorigin="768,1680"
-  coordsize="4116,655" o:tableproperties="1" o:tablelimits="67.25pt">
-  <o:lock v:ext="edit" rotation="t"/>
-  <v:rect id="_x0000_s116759" style='position:absolute;left:768;top:1680;
-   width:4116;height:655' fillcolor="#f3f3f3" stroked="f" strokecolor="black [1]">
-   <v:fill alignshape="f" o:detectmouseclick="t"/>
-   <v:shadow color="gray [2]"/>
-  </v:rect><v:line id="_x0000_s116760" style='position:absolute' from="768,1680"
-   to="4884,1680" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s116761" style='position:absolute' from="768,2335"
-   to="4884,2335" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s116762" style='position:absolute' from="768,1680"
-   to="768,2335" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line><v:line id="_x0000_s116763" style='position:absolute' from="4884,1680"
-   to="4884,2335" stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:line></v:group><v:line id="_x0000_s116764" style='position:absolute'
-  from="54pt,318pt" to="642pt,318pt" strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0
- v:shapes="_x0000_s116752,_x0000_s116753,_x0000_s116754,_x0000_s116755,_x0000_s116756,_x0000_s116757,_x0000_s116769,_x0000_s116759,_x0000_s116760,_x0000_s116761,_x0000_s116762,_x0000_s116763,_x0000_s116764"
- src="slide0063_image030.gif" style='position:absolute;top:29.0%;left:7.49%;
- width:82.02%;height:30.5%'><![endif]>
- <div v:shape="_x0000_s116753">
- <div class=Tbl1 style='mso-margin-left-alt:288;mso-text-indent-alt:288'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576;mso-text-indent-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864;mso-text-indent-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152;mso-text-indent-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0;position:absolute;top:29.25%;
- left:14.41%;width:69.66%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>public</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>interface</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>ArrayList&lt;E&gt;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>extends</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>List&lt;E&gt;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:black'>{</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>}</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:Arial;
- mso-fareast-font-family:"Times New Roman";mso-special-format:lastCR;
- display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s116759">
- <div class=Tbl1 style='mso-margin-left-alt:288;mso-text-indent-alt:288'></div>
- <div class=Tbl2 style='mso-margin-left-alt:576;mso-text-indent-alt:576'></div>
- <div class=Tbl3 style='mso-margin-left-alt:864;mso-text-indent-alt:864'></div>
- <div class=Tbl4 style='mso-margin-left-alt:1152;mso-text-indent-alt:1152'></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:39.25%;left:14.41%;width:69.85%;height:3.25%'><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%'>&nbsp;</span></span><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:"Arial Unicode MS";mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";font-size:60%;color:#7F0055'><b>public</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>class</b></span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>ArrayListImpl&lt;E&gt;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>extends</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>ListImpl&lt;E&gt;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>implements</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>ArrayList&lt;E&gt;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>{</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:42.0%;left:14.41%;
- width:69.66%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:white'><span style='mso-spacerun:yes'>   </span></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b>protected</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>&nbsp;</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>ArrayListImpl()</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:black'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>{</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:44.75%;left:14.41%;
- width:69.66%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;&nbsp;&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:white'><span style='mso-spacerun:yes'>    </span></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:#7F0055'><b><span style='mso-spacerun:yes'>  </span></b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:#7F0055'><b>Â…</b></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:Arial;
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- mso-hansi-font-family:Arial;font-size:60%;color:white'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:white;display:none'>&#13;</span></span></span></div>
- <div class=Tbl style='mso-margin-left-alt:0'><span style='position:absolute;
- top:47.75%;left:14.41%;width:69.66%;height:3.25%'><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:white'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Arial Unicode MS";mso-ascii-font-family:
- "Arial Unicode MS";mso-fareast-font-family:"Times New Roman";font-size:60%;
- color:white'><span style='mso-spacerun:yes'>     </span></span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>}</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:"Courier New";mso-ascii-font-family:
- "Courier New";mso-fareast-font-family:"Times New Roman";font-size:60%'><br>
-  </span></span></span><span style='position:absolute;top:50.5%;left:14.41%;
- width:69.66%;height:3.25%'><span style='mso-bidi-font-family:"Courier New"'><span
- style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:
- "Times New Roman";mso-hansi-font-family:Arial;font-size:60%'>&nbsp;</span></span><span
- style='mso-bidi-font-family:"Courier New"'><span style='font-family:"Arial Unicode MS";
- mso-ascii-font-family:"Arial Unicode MS";mso-fareast-font-family:"Times New Roman";
- font-size:60%;color:black'>}</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:"Arial Unicode MS";
- mso-fareast-font-family:"Times New Roman";mso-hansi-font-family:Arial;
- font-size:60%;color:black'>&nbsp;</span></span><span style='mso-bidi-font-family:
- "Courier New"'><span style='font-family:Arial;mso-ascii-font-family:Arial;
- mso-fareast-font-family:"Times New Roman";mso-special-format:lastCR;
- display:none'>&#13;</span></span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0063_image029.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0063_image029.gif
deleted file mode 100644
index b0aac84..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0063_image029.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0063_image030.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0063_image030.gif
deleted file mode 100644
index 94d6750..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0063_image030.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0064.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0064.htm
deleted file mode 100644
index 5311aab..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0064.htm
+++ /dev/null
@@ -1,170 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Static Profile Definition: Examples - Current">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="115"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>34</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s117762"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s117763" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:36pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s117766"
-  style='position:absolute;left:60pt;top:192pt;width:586.375pt;height:24.75pt'
-  fillcolor="#ffc" strokecolor="#099 [6]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s117766"
- src="slide0064_image096.gif" style='position:absolute;top:35.5%;left:8.23%;
- width:81.83%;height:5.25%'><![endif]>
- <div v:shape="_x0000_s117762" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:90.07%;height:6.0%'>Static Profile Definition: Examples -
- Current</div>
- <div v:shape="_x0000_s117763" class=B style='position:absolute;top:26.5%;
- left:8.42%;width:83.14%;height:5.25%;tab-stops:.4427in'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.53%'>•</span>Applying stereotype.</span></div>
- <div v:shape="_x0000_s117766" class=O style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:36.5%;left:9.36%;width:79.58%;height:3.25%'><span
- style='mso-bidi-font-family:Arial;font-size:58%'>namedElement.</span><span
- style='mso-bidi-font-family:Arial;font-size:58%'><b>applyStereotype(</b></span><span
- style='mso-bidi-font-family:Arial;font-size:58%'>stereotype);</span></div>
- <v:rect id="_x0000_s117767" style='position:absolute;left:60pt;top:282pt;
-  width:586.375pt;height:24.75pt' fillcolor="#ffc" strokecolor="#099 [6]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s117767"
- src="slide0064_image097.gif" style='position:absolute;top:52.25%;left:8.23%;
- width:81.83%;height:5.25%'><![endif]>
- <div v:shape="_x0000_s117767" class=O style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:53.25%;left:9.36%;width:79.58%;height:3.25%'><span
- style='mso-bidi-font-family:Arial;font-size:58%'>Object value = namedElement.</span><span
- style='mso-bidi-font-family:Arial;font-size:58%'><b>getValue</b></span><span
- style='mso-bidi-font-family:Arial;font-size:58%'>(stereotype,
- property.getName());</span></div>
- <v:rect id="_x0000_s117768" style='position:absolute;left:60pt;top:378pt;
-  width:586.375pt;height:24.75pt' fillcolor="#ffc" strokecolor="#099 [6]">
-  <v:fill color2="white [0]"/>
-  <v:shadow color="gray [2]"/>
-  <v:textbox style='mso-fit-shape-to-text:t'/>
- </v:rect><v:rect id="_x0000_s117769" style='position:absolute;left:54pt;top:240pt;
-  width:612pt;height:36pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect><v:rect id="_x0000_s117770" style='position:absolute;left:54pt;top:336pt;
-  width:612pt;height:36pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s117768"
- src="slide0064_image098.gif" style='position:absolute;top:70.0%;left:8.23%;
- width:81.83%;height:5.25%'><![endif]>
- <div v:shape="_x0000_s117768" class=O style='mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:71.0%;left:9.36%;width:79.58%;height:3.25%'><span
- style='mso-bidi-font-family:Arial;font-size:58%'>namedElement.</span><span
- style='mso-bidi-font-family:Arial;font-size:58%'><b>setValue</b></span><span
- style='mso-bidi-font-family:Arial;font-size:58%'>(stereotype,
- property.getName(), value);</span></div>
- <div v:shape="_x0000_s117769">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:45.5%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:4.5%;width:95.49%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-4.71%'>•</span>Getting values.</span></div>
- </div>
- <div v:shape="_x0000_s117770">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:63.25%;
- left:8.42%;width:83.14%;height:5.25%'><span style='position:absolute;
- top:0%;left:4.5%;width:95.49%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-4.71%'>•</span>Setting values.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0064_image096.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0064_image096.gif
deleted file mode 100644
index 1b93a31..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0064_image096.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0064_image097.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0064_image097.gif
deleted file mode 100644
index 1fbb619..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0064_image097.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0064_image098.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0064_image098.gif
deleted file mode 100644
index 1fbb619..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0064_image098.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0066.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0066.htm
deleted file mode 100644
index 8e8a25e..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0066.htm
+++ /dev/null
@@ -1,125 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Static Profile Definition: What is it?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="117"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>27</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s119810"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s119811" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s119810" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Static Profile Definition: What is it?</div>
- <div v:shape="_x0000_s119811" style='tab-stops:.4427in'>
- <div class=B><span style='position:absolute;top:26.5%;left:10.48%;width:92.5%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.22%'>•</span>When
- we talk about “Static Profile Definition” we are </span><span
- style='position:absolute;top:31.75%;left:10.48%;width:81.83%;height:5.25%'>talking
- about generating code from our profile.&#13;</span></div>
- <div class=B style='position:absolute;top:38.25%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div class=B><span style='position:absolute;top:44.5%;left:10.48%;width:94.19%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.18%'>•</span>The
- “define” step is therefore no longer necessary.<span
- style='mso-spacerun:yes'>  </span>It </span><span style='position:absolute;
- top:50.0%;left:10.48%;width:81.27%;height:5.25%'>is replaced by a code
- generation step.&#13;</span></div>
- <div class=B1 style='position:absolute;top:56.0%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.19%'>w</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:61.75%;left:8.42%;width:86.7%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.37%;width:97.84%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.42%'>•</span>Both
- workflows will be supported going forward.&#13;</span></div>
- <div class=B1 style='position:absolute;top:67.75%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span>Older
- workflow can be useful for rapid testing.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067.htm
deleted file mode 100644
index cba6ddf..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067.htm
+++ /dev/null
@@ -1,313 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Static Profile Definition: Example">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="118"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>24</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s120834"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s120835" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:636pt;height:102pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s120834" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Static Profile Definition: Example</div>
- <div v:shape="_x0000_s120835" style='tab-stops:.4427in'>
- <div class=HB style='position:absolute;top:26.5%;left:8.42%;width:91.19%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.25%;width:97.94%;
- height:100.0%'><span style='font-size:120%'><span class=HBB style='position:
- absolute;left:-2.3%'>•</span></span><span style='font-size:120%'>Stereotype
- extending Class meta-class from UML.&#13;</span></span></div>
- <div class=HB1 style='position:absolute;top:32.75%;left:12.92%;width:82.2%;
- height:4.5%'><span style='mso-special-format:nobullet;display:none;font-family:
- Wingdings'>w</span><span style='font-size:111%;mso-special-format:lastCR;
- display:none'>&#13;</span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s120836"
-  type="#_x0000_m1027" style='position:absolute;left:246pt;top:174pt;width:180pt;
-  height:141.5pt;mso-wrap-style:none;mso-wrap-distance-left:9pt;
-  mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;
-  mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;
-  mso-position-horizontal-relative:text;mso-position-vertical:absolute;
-  mso-position-vertical-relative:text;v-text-anchor:middle' o:spt="75"
-  o:bwmode="auto" o:preferrelative="t" o:allowincell="t" o:allowoverlap="t"
-  path="m@4@5l@4@11@9@11@9@5xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="red" strokeweight=".75pt" insetpen="f" o:insetmode="custom">
-  <v:fill opacity="0" color2="white" o:opacity2="1" size="0,0" aspect="ignore"
-   origin="0,0" position="0,0" rotate="f" alignshape="t" o:detectmouseclick="f"
-   angle="0" focusposition="" focussize="" method="linear sigma" focus="0"
-   type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" imagesize="0,0"
-   imageaspect="ignore" miterlimit="8" linestyle="single" joinstyle="miter"
-   endcap="flat" rotate="f" imagealignshape="t" o:forcedash="f">
-   <o:left v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:top v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:right v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:bottom v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" insetpen="f"
-    on="f" imagealignshape="t"/>
-   <o:column v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" on="f"
-    imagealignshape="t"/>
-  </v:stroke>
-  <v:imagedata src="slide0067_image060.png" o:title=""/>
-  <v:shadow on="f" type="single" color="gray [2]" opacity="1" obscured="f"
-   color2="#cbcbcb" origin="0,0" offset="2pt,2pt" offset2="0,0" matrix="1,0,0,1,0,0"/>
-  <o:extrusion v:ext="view" specularity="0" diffusity="1" shininess="5" edge="1pt"
-   foredepth="0" backdepth="36pt" plane="XY" color="fillThenLine" on="f"
-   metal="f" lightface="t" rotationangle="0,0" orientation="100,0,0"
-   orientationangle="0" rotationcenter="0,0,0" render="solid" facet="30000f"
-   viewpoint="34.72222mm,-34.72222mm,250mm" viewpointorigin=".5,-.5"
-   skewangle="-135" skewamt="50%" brightness="20000f" lightposition="50000,0,10000"
-   lightlevel="38000f" lightposition2="-50000,0,10000" lightlevel2="38000f"
-   lockrotationcenter="t" autorotationcenter="f" type="parallel" lightharsh="t"
-   lightharsh2="f"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <o:callout v:ext="edit" gap="6pt" angle="auto" drop="user" distance="9pt"
-   length="0" minusx="f" minusy="f" dropauto="f" lengthspecified="f"/>
-  <p:placeholder type="object" position="2" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s120836" src="slide0067_image061.jpg"
- style='position:absolute;top:32.25%;left:34.08%;width:25.09%;height:26.25%'><![endif]><v:rect
-  id="_x0000_s120838" style='position:absolute;left:54pt;top:318pt;width:636pt;
-  height:42pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s120838">
- <div class=HB1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=HB2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=HB3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=HB4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=HB style='mso-margin-left-alt:216;position:absolute;top:59.75%;
- left:8.42%;width:86.51%;height:5.25%'><span style='position:absolute;
- top:0%;left:4.32%;width:95.67%;height:100.0%'><span style='font-size:120%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.52%'>•</span></span><span
- style='font-size:120%'>A UPDM example.</span><span style='font-size:120%;
- mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s120839"
-  type="#_x0000_m1027" style='position:absolute;left:84pt;top:384pt;width:99.75pt;
-  height:83.25pt;mso-wrap-style:none;mso-wrap-distance-left:9pt;
-  mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;
-  mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;
-  mso-position-horizontal-relative:text;mso-position-vertical:absolute;
-  mso-position-vertical-relative:text;v-text-anchor:middle' o:spt="75"
-  o:bwmode="auto" o:preferrelative="t" o:allowincell="t" o:allowoverlap="t"
-  path="m@4@5l@4@11@9@11@9@5xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="red" strokeweight=".75pt" insetpen="f" o:insetmode="custom">
-  <v:fill opacity="0" color2="white" o:opacity2="1" size="0,0" aspect="ignore"
-   origin="0,0" position="0,0" rotate="f" alignshape="t" o:detectmouseclick="f"
-   angle="0" focusposition="" focussize="" method="linear sigma" focus="0"
-   type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" imagesize="0,0"
-   imageaspect="ignore" miterlimit="8" linestyle="single" joinstyle="miter"
-   endcap="flat" rotate="f" imagealignshape="t" o:forcedash="f">
-   <o:left v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:top v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:right v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:bottom v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" insetpen="f"
-    on="f" imagealignshape="t"/>
-   <o:column v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" on="f"
-    imagealignshape="t"/>
-  </v:stroke>
-  <v:imagedata src="slide0067_image062.png" o:title=""/>
-  <v:shadow on="f" type="single" color="gray [2]" opacity="1" obscured="f"
-   color2="#cbcbcb" origin="0,0" offset="2pt,2pt" offset2="0,0" matrix="1,0,0,1,0,0"/>
-  <o:extrusion v:ext="view" specularity="0" diffusity="1" shininess="5" edge="1pt"
-   foredepth="0" backdepth="36pt" plane="XY" color="fillThenLine" on="f"
-   metal="f" lightface="t" rotationangle="0,0" orientation="100,0,0"
-   orientationangle="0" rotationcenter="0,0,0" render="solid" facet="30000f"
-   viewpoint="34.72222mm,-34.72222mm,250mm" viewpointorigin=".5,-.5"
-   skewangle="-135" skewamt="50%" brightness="20000f" lightposition="50000,0,10000"
-   lightlevel="38000f" lightposition2="-50000,0,10000" lightlevel2="38000f"
-   lockrotationcenter="t" autorotationcenter="f" type="parallel" lightharsh="t"
-   lightharsh2="f"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <o:callout v:ext="edit" gap="6pt" angle="auto" drop="user" distance="9pt"
-   length="0" minusx="f" minusy="f" dropauto="f" lengthspecified="f"/>
-  <p:placeholder type="object" position="3" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s120839" src="slide0067_image063.jpg"
- style='position:absolute;top:71.0%;left:11.61%;width:13.85%;height:15.5%'><![endif]><v:shape
-  id="_x0000_s120841" type="#_x0000_t75" style='position:absolute;left:480pt;
-  top:384pt;width:193.5pt;height:55.5pt;mso-wrap-style:none;v-text-anchor:middle'
-  fillcolor="#bbe0e3 [4]" strokecolor="red">
-  <v:fill opacity="0"/>
-  <v:imagedata src="slide0067_image064.png" o:title=""/>
-  <v:shadow color="gray [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s120841"
- src="slide0067_image065.jpg" style='position:absolute;top:71.0%;left:66.66%;
- width:26.96%;height:10.25%'><![endif]><v:shape id="_x0000_s120842" type="#_x0000_t75"
-  style='position:absolute;left:3in;top:402pt;width:241.5pt;height:23.25pt;
-  mso-wrap-style:none;v-text-anchor:middle' fillcolor="#bbe0e3 [4]"
-  strokecolor="red">
-  <v:fill opacity="0"/>
-  <v:imagedata src="slide0067_image066.png" o:title=""/>
-  <v:shadow color="gray [2]"/>
- </v:shape><![if !vml]><img border=0 v:shapes="_x0000_s120842"
- src="slide0067_image067.jpg" style='position:absolute;top:74.5%;left:29.96%;
- width:33.52%;height:4.25%'><![endif]><v:line id="_x0000_s120843" style='position:absolute;
-  mso-wrap-style:none;v-text-anchor:middle' from="198pt,372pt" to="198pt,480pt"
-  strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0 v:shapes="_x0000_s120843"
- src="slide0067_image068.gif" style='position:absolute;top:68.75%;left:27.52%;
- width:.37%;height:20.5%'><![endif]><v:line id="_x0000_s120844" style='position:absolute;
-  mso-wrap-style:none;v-text-anchor:middle' from="468pt,366pt" to="468pt,486pt"
-  strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0 v:shapes="_x0000_s120844"
- src="slide0067_image069.gif" style='position:absolute;top:67.75%;left:64.98%;
- width:.37%;height:22.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image060.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image060.png
deleted file mode 100644
index f15ec74..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image060.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image061.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image061.jpg
deleted file mode 100644
index cb7f167..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image061.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image062.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image062.png
deleted file mode 100644
index cf686a3..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image062.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image063.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image063.jpg
deleted file mode 100644
index 4507054..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image063.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image064.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image064.png
deleted file mode 100644
index 5c0699c..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image064.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image065.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image065.jpg
deleted file mode 100644
index 914555e..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image065.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image066.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image066.png
deleted file mode 100644
index cc5d59b..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image066.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image067.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image067.jpg
deleted file mode 100644
index 8d9e629..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image067.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image068.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image068.gif
deleted file mode 100644
index 15bd6e5..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image068.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image069.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image069.gif
deleted file mode 100644
index 0a71e53..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0067_image069.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071.htm
deleted file mode 100644
index 0c933a3..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071.htm
+++ /dev/null
@@ -1,282 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Static Profile Definition: Current Workflow">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="125"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>26</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s128002"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s128003" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:624pt;height:102pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s128002" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:85.95%;height:6.0%'>Static Profile Definition: Current
- Workflow</div>
- <div v:shape="_x0000_s128003" style='tab-stops:.4427in'>
- <div class=HB style='position:absolute;top:26.5%;left:8.42%;width:94.56%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.17%;width:98.01%;
- height:100.0%'><span style='font-size:120%'><span class=HBB style='position:
- absolute;left:-2.22%'>•</span></span><span style='font-size:120%'>The current
- workflow involves “defining” our profiles.&#13;</span></span></div>
- <div class=HB1 style='position:absolute;top:32.5%;left:12.92%;width:80.52%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.02%;width:96.74%;
- height:100.0%'><span class=HB1B style='position:absolute;left:-3.12%'>w</span>Generates
- an Ecore representation.&#13;</span></div>
- <div class=HB1 style='position:absolute;top:37.5%;left:12.92%;width:80.52%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.02%;width:96.74%;
- height:100.0%'><span class=HB1B style='position:absolute;left:-3.12%'>w</span>Makes
- use of dynamic EMF.<span style='mso-spacerun:yes'>  </span>&#13;</span></div>
- <div class=HB2 style='position:absolute;top:42.0%;left:17.22%;width:76.02%;
- height:3.5%'><span style='mso-special-format:nobullet;display:none;font-family:
- Wingdings'>§</span><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s128004"
-  type="#_x0000_m1027" style='position:absolute;left:66pt;top:246pt;width:240pt;
-  height:218.125pt;mso-wrap-style:none;mso-wrap-distance-left:9pt;
-  mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;
-  mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;
-  mso-position-horizontal-relative:text;mso-position-vertical:absolute;
-  mso-position-vertical-relative:text;v-text-anchor:middle' o:spt="75"
-  o:bwmode="auto" o:preferrelative="t" o:allowincell="t" o:allowoverlap="t"
-  path="m@4@5l@4@11@9@11@9@5xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="red" strokeweight=".75pt" insetpen="f" o:insetmode="custom">
-  <v:fill opacity="0" color2="white" o:opacity2="1" size="0,0" aspect="ignore"
-   origin="0,0" position="0,0" rotate="f" alignshape="t" o:detectmouseclick="f"
-   angle="0" focusposition="" focussize="" method="linear sigma" focus="0"
-   type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" imagesize="0,0"
-   imageaspect="ignore" miterlimit="8" linestyle="single" joinstyle="miter"
-   endcap="flat" rotate="f" imagealignshape="t" o:forcedash="f">
-   <o:left v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:top v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:right v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:bottom v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" insetpen="f"
-    on="f" imagealignshape="t"/>
-   <o:column v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" on="f"
-    imagealignshape="t"/>
-  </v:stroke>
-  <v:imagedata src="slide0071_image072.png" o:title=""/>
-  <v:shadow on="f" type="single" color="gray [2]" opacity="1" obscured="f"
-   color2="#cbcbcb" origin="0,0" offset="2pt,2pt" offset2="0,0" matrix="1,0,0,1,0,0"/>
-  <o:extrusion v:ext="view" specularity="0" diffusity="1" shininess="5" edge="1pt"
-   foredepth="0" backdepth="36pt" plane="XY" color="fillThenLine" on="f"
-   metal="f" lightface="t" rotationangle="0,0" orientation="100,0,0"
-   orientationangle="0" rotationcenter="0,0,0" render="solid" facet="30000f"
-   viewpoint="34.72222mm,-34.72222mm,250mm" viewpointorigin=".5,-.5"
-   skewangle="-135" skewamt="50%" brightness="20000f" lightposition="50000,0,10000"
-   lightlevel="38000f" lightposition2="-50000,0,10000" lightlevel2="38000f"
-   lockrotationcenter="t" autorotationcenter="f" type="parallel" lightharsh="t"
-   lightharsh2="f"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <o:callout v:ext="edit" gap="6pt" angle="auto" drop="user" distance="9pt"
-   length="0" minusx="f" minusy="f" dropauto="f" lengthspecified="f"/>
-  <p:placeholder type="object" position="2" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s128004" src="slide0071_image073.jpg"
- style='position:absolute;top:45.5%;left:9.17%;width:33.33%;height:40.5%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s128005" type="#_x0000_m1027"
-  style='position:absolute;left:342pt;top:258pt;width:366pt;height:181.375pt;
-  mso-wrap-style:none;mso-wrap-distance-left:9pt;mso-wrap-distance-top:0;
-  mso-wrap-distance-right:9pt;mso-wrap-distance-bottom:0;
-  mso-position-horizontal:absolute;mso-position-horizontal-relative:text;
-  mso-position-vertical:absolute;mso-position-vertical-relative:text;
-  v-text-anchor:middle' o:spt="75" o:bwmode="auto" o:preferrelative="t"
-  o:allowincell="t" o:allowoverlap="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
-  fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="red" strokeweight=".75pt"
-  insetpen="f" o:insetmode="custom">
-  <v:fill opacity="0" color2="white" o:opacity2="1" size="0,0" aspect="ignore"
-   origin="0,0" position="0,0" rotate="f" alignshape="t" o:detectmouseclick="f"
-   angle="0" focusposition="" focussize="" method="linear sigma" focus="0"
-   type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" imagesize="0,0"
-   imageaspect="ignore" miterlimit="8" linestyle="single" joinstyle="miter"
-   endcap="flat" rotate="f" imagealignshape="t" o:forcedash="f">
-   <o:left v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:top v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:right v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:bottom v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" insetpen="f"
-    on="f" imagealignshape="t"/>
-   <o:column v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" on="f"
-    imagealignshape="t"/>
-  </v:stroke>
-  <v:imagedata src="slide0071_image074.png" o:title=""/>
-  <v:shadow on="f" type="single" color="gray [2]" opacity="1" obscured="f"
-   color2="#cbcbcb" origin="0,0" offset="2pt,2pt" offset2="0,0" matrix="1,0,0,1,0,0"/>
-  <o:extrusion v:ext="view" specularity="0" diffusity="1" shininess="5" edge="1pt"
-   foredepth="0" backdepth="36pt" plane="XY" color="fillThenLine" on="f"
-   metal="f" lightface="t" rotationangle="0,0" orientation="100,0,0"
-   orientationangle="0" rotationcenter="0,0,0" render="solid" facet="30000f"
-   viewpoint="34.72222mm,-34.72222mm,250mm" viewpointorigin=".5,-.5"
-   skewangle="-135" skewamt="50%" brightness="20000f" lightposition="50000,0,10000"
-   lightlevel="38000f" lightposition2="-50000,0,10000" lightlevel2="38000f"
-   lockrotationcenter="t" autorotationcenter="f" type="parallel" lightharsh="t"
-   lightharsh2="f"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <o:callout v:ext="edit" gap="6pt" angle="auto" drop="user" distance="9pt"
-   length="0" minusx="f" minusy="f" dropauto="f" lengthspecified="f"/>
-  <p:placeholder type="object" position="3" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s128005" src="slide0071_image075.jpg"
- style='position:absolute;top:47.75%;left:47.56%;width:50.74%;height:33.5%'><![endif]><v:line
-  id="_x0000_s128006" style='position:absolute;mso-wrap-style:none;
-  v-text-anchor:middle' from="318pt,246pt" to="318pt,474pt" strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0 v:shapes="_x0000_s128006"
- src="slide0071_image076.gif" style='position:absolute;top:45.5%;left:44.19%;
- width:.37%;height:42.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image072.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image072.png
deleted file mode 100644
index f93d1bc..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image072.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image073.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image073.jpg
deleted file mode 100644
index d3a6ead..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image073.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image074.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image074.png
deleted file mode 100644
index d34b8a1..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image074.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image075.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image075.jpg
deleted file mode 100644
index 1643293..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image075.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image076.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image076.gif
deleted file mode 100644
index 44432b5..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0071_image076.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0072.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0072.htm
deleted file mode 100644
index bdf7bdf..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0072.htm
+++ /dev/null
@@ -1,127 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Static Profile Definition: Versioning Issues">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="126"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>37</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s129026"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s129027" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s129026" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:86.7%;height:6.0%'>Static Profile Definition: Versioning
- Issues</div>
- <div v:shape="_x0000_s129027" style='tab-stops:.4427in'>
- <div class=B><span style='position:absolute;top:26.5%;left:10.48%;width:85.2%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.41%'>•</span>With
- Static Profile Definition, if we introduce API </span><span style='position:
- absolute;top:31.75%;left:10.48%;width:85.01%;height:5.25%'>breaking changes,
- we would have to update the </span><span style='position:absolute;top:37.25%;
- left:10.48%;width:81.27%;height:5.25%'>nsURI.&#13;</span></div>
- <div class=B1 style='position:absolute;top:43.25%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span>Similar
- to how meta-models change.&#13;</span></div>
- <div class=B1 style='position:absolute;top:48.75%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.19%'>w</span></span>&#13;</span></div>
- <div class=B><span style='position:absolute;top:54.25%;left:10.48%;width:96.25%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.14%'>•</span>We
- donÂ’t have to change the nsURI if the changes are </span><span
- style='position:absolute;top:59.5%;left:10.48%;width:81.27%;height:5.25%'>backward
- compatible.&#13;</span></div>
- <div class=B1 style='position:absolute;top:65.75%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.19%'>w</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:71.25%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0073.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0073.htm
deleted file mode 100644
index a9efec6..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0073.htm
+++ /dev/null
@@ -1,177 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: OCL Integration: Example-Body Condition">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="128"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>47</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s131088"
-  type="#_x0000_m1027" style='position:absolute;left:60pt;top:186pt;width:588.875pt;
-  height:170.25pt;mso-wrap-style:none;mso-wrap-distance-left:9pt;
-  mso-wrap-distance-top:0;mso-wrap-distance-right:9pt;
-  mso-wrap-distance-bottom:0;mso-position-horizontal:absolute;
-  mso-position-horizontal-relative:text;mso-position-vertical:absolute;
-  mso-position-vertical-relative:text;v-text-anchor:middle' o:spt="75"
-  o:bwmode="auto" o:preferrelative="t" o:allowincell="t" o:allowoverlap="t"
-  path="m@4@5l@4@11@9@11@9@5xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="red" strokeweight=".75pt" insetpen="f" o:insetmode="custom">
-  <v:fill opacity="0" color2="white" o:opacity2="1" size="0,0" aspect="ignore"
-   origin="0,0" position="0,0" rotate="f" alignshape="t" o:detectmouseclick="f"
-   angle="0" focusposition="" focussize="" method="linear sigma" focus="0"
-   type="solid"/>
-  <v:stroke dashstyle="solid" opacity="1" filltype="solid" imagesize="0,0"
-   imageaspect="ignore" miterlimit="8" linestyle="single" joinstyle="miter"
-   endcap="flat" rotate="f" imagealignshape="t" o:forcedash="f">
-   <o:left v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:top v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:right v:ext="view" dashstyle="solid" startarrow="none" startarrowwidth="medium"
-    startarrowlength="medium" endarrow="none" endarrowwidth="medium"
-    endarrowlength="medium" color="black" opacity="1" color2="white"
-    filltype="solid" imagesize="0,0" imageaspect="ignore" weight=".75pt"
-    miterlimit="8" linestyle="single" endcap="flat" insetpen="f" on="f"
-    imagealignshape="t"/>
-   <o:bottom v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" insetpen="f"
-    on="f" imagealignshape="t"/>
-   <o:column v:ext="view" dashstyle="solid" startarrow="none"
-    startarrowwidth="medium" startarrowlength="medium" endarrow="none"
-    endarrowwidth="medium" endarrowlength="medium" color="black" opacity="1"
-    color2="white" filltype="solid" imagesize="0,0" imageaspect="ignore"
-    weight=".75pt" miterlimit="8" linestyle="single" endcap="flat" on="f"
-    imagealignshape="t"/>
-  </v:stroke>
-  <v:imagedata src="slide0073_image122.png" o:title=""/>
-  <v:shadow on="f" type="single" color="gray [2]" opacity="1" obscured="f"
-   color2="#cbcbcb" origin="0,0" offset="2pt,2pt" offset2="0,0" matrix="1,0,0,1,0,0"/>
-  <o:extrusion v:ext="view" specularity="0" diffusity="1" shininess="5" edge="1pt"
-   foredepth="0" backdepth="36pt" plane="XY" color="fillThenLine" on="f"
-   metal="f" lightface="t" rotationangle="0,0" orientation="100,0,0"
-   orientationangle="0" rotationcenter="0,0,0" render="solid" facet="30000f"
-   viewpoint="34.72222mm,-34.72222mm,250mm" viewpointorigin=".5,-.5"
-   skewangle="-135" skewamt="50%" brightness="20000f" lightposition="50000,0,10000"
-   lightlevel="38000f" lightposition2="-50000,0,10000" lightlevel2="38000f"
-   lockrotationcenter="t" autorotationcenter="f" type="parallel" lightharsh="t"
-   lightharsh2="f"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <o:callout v:ext="edit" gap="6pt" angle="auto" drop="user" distance="9pt"
-   length="0" minusx="f" minusy="f" dropauto="f" lengthspecified="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s131088" src="slide0073_image123.jpg"
- style='position:absolute;top:34.5%;left:8.42%;width:81.83%;height:31.5%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s131075" type="#_x0000_m1026"
-  style='position:absolute;left:54pt;top:84pt;width:612pt;height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><v:oval id="_x0000_s131086" style='position:absolute;
-  left:204pt;top:234pt;width:258pt;height:36pt;mso-wrap-style:none;
-  v-text-anchor:middle' fillcolor="#bbe0e3 [4]" strokecolor="#339 [5]">
-  <v:fill opacity="0"/>
-  <v:shadow color="gray [2]"/>
- </v:oval><![if !vml]><img border=0 v:shapes="_x0000_s131086"
- src="slide0073_image124.gif" style='position:absolute;top:43.25%;left:28.27%;
- width:36.32%;height:7.25%'><![endif]>
- <div v:shape="_x0000_s131075" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:87.26%;height:6.0%'>OCL Integration: Example-Body Condition</div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0073_image122.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0073_image122.png
deleted file mode 100644
index 82c33d2..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0073_image122.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0073_image123.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0073_image123.jpg
deleted file mode 100644
index 7baa75c..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0073_image123.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0073_image124.gif b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0073_image124.gif
deleted file mode 100644
index ce101ac..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0073_image124.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0074.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0074.htm
deleted file mode 100644
index f0ce6d2..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0074.htm
+++ /dev/null
@@ -1,149 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Static Profile Definition: Workflow - Current">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="129"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>25</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s132098"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s132099" type="#_x0000_m1027"
-  style='position:absolute;left:48pt;top:2in;width:5in;height:168pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s132098" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:88.76%;height:6.0%'>Static Profile Definition: Workflow -
- Current</div>
- <div v:shape="_x0000_s132099" style='tab-stops:.4427in'>
- <div class=HB1 style='mso-margin-left-alt:444'></div>
- <div class=HB2 style='mso-margin-left-alt:672'></div>
- <div class=HB3 style='mso-margin-left-alt:829'></div>
- <div class=HB style='mso-line-spacing:"90 20 0";mso-margin-left-alt:216;
- position:absolute;top:27.25%;left:7.67%;width:52.62%;height:4.5%'><span
- style='position:absolute;top:0%;left:7.11%;width:92.88%;height:100.0%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-7.66%'>1.</span>We
- create our profile using UML.&#13;</span></div>
- <div class=HB style='mso-line-spacing:"90 20 0";mso-margin-left-alt:216;
- position:absolute;top:32.0%;left:7.67%;width:48.12%;height:4.5%'><span
- style='position:absolute;top:0%;left:7.78%;width:92.21%;height:100.0%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-8.43%'>2.</span>Define
- our profile.&#13;</span></div>
- <div class=HB style='mso-line-spacing:"90 20 0";mso-margin-left-alt:216'><span
- style='position:absolute;top:37.0%;left:11.42%;width:50.37%;height:4.5%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-7.43%'>3.</span>Use
- our profile by setting applying </span><span style='position:absolute;
- top:41.0%;left:11.42%;width:44.38%;height:4.5%'>profile and stereotypes.&#13;</span></div>
- <div class=HB style='mso-line-spacing:"90 20 0";mso-margin-left-alt:216'><span
- style='position:absolute;top:46.0%;left:11.42%;width:44.38%;height:4.5%'><span
- style='mso-special-format:"numbullet3\,1";position:absolute;left:-8.43%'>4.</span>Get
- and set properties of the </span><span style='position:absolute;top:50.0%;
- left:11.42%;width:44.38%;height:4.5%'>stereotype.</span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s132100"
-  type="#_x0000_m1027" style='position:absolute;left:5in;top:246pt;width:336pt;
-  height:224.875pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="t" strokecolor="black [1]">
-  <v:fill opacity="1" color2="white [0]" o:opacity2="1" recolor="f" rotate="f"
-   o:detectmouseclick="f"/>
-  <v:stroke filltype="solid" joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0074_image070.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s132100" src="slide0074_image071.jpg"
- style='position:absolute;top:45.5%;left:49.81%;width:46.81%;height:42.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0074_image070.png b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0074_image070.png
deleted file mode 100644
index 94e65d6..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0074_image070.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0074_image071.jpg b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0074_image071.jpg
deleted file mode 100644
index 3545d99..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0074_image071.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0075.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0075.htm
deleted file mode 100644
index 499a472..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0075.htm
+++ /dev/null
@@ -1,123 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Static Profile Definition: Why Bother?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="130"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>33</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s133122"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s133123" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s133122" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Static Profile Definition: Why Bother?</div>
- <div v:shape="_x0000_s133123" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.53%'>•</span>Introduce
- behavior.&#13;</span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.53%'>•</span>Customize generated
- code.&#13;</span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <div style='position:absolute;top:52.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.53%'>•</span>Opens up possibilities
- for derived constraints.&#13;</span></div>
- <div style='position:absolute;top:58.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span>&#13;</span></div>
- <span style='position:absolute;top:64.75%;left:10.48%;width:83.33%;height:
- 5.25%'><span class=BB style='position:absolute;left:-2.47%'>•</span>Getting
- and setting values are easier and more </span><span style='position:absolute;
- top:70.25%;left:10.48%;width:89.88%;height:5.25%'>intuitive since an instance
- of the object is returned.</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0076.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0076.htm
deleted file mode 100644
index dc671dc..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0076.htm
+++ /dev/null
@@ -1,115 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Static Profile Definition: Demo">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="134"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>32</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s137218"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s137221" type="#_x0000_m1027"
-  style='position:absolute;left:126pt;top:168pt;width:444pt;height:120pt'
-  o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
-  stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:path gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" text="f" grouping="t"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s137218" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Static Profile Definition: Demo</div>
- <div v:shape="_x0000_s137221" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:32.0%;left:18.53%;width:59.73%;
- height:5.25%'><span style='position:absolute;top:0%;left:3.13%;width:96.86%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.23%'>•</span>Code
- generation.&#13;</span></div>
- <div class=B style='position:absolute;top:38.5%;left:18.53%;width:59.73%;
- height:5.25%'><span style='position:absolute;top:0%;left:3.13%;width:96.86%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.23%'>•</span>Derived
- properties in profiles.&#13;</span></div>
- <div class=B style='position:absolute;top:44.75%;left:18.53%;width:59.73%;
- height:5.25%'><span style='position:absolute;top:0%;left:3.13%;width:96.86%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.23%'>•</span></span>&#13;</span></div>
- <div class=B1 style='position:absolute;top:51.0%;left:22.84%;width:55.43%;
- height:4.5%'><span style='mso-special-format:nobullet;display:none;font-family:
- Wingdings'>w</span><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0077.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0077.htm
deleted file mode 100644
index f2e1081..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0077.htm
+++ /dev/null
@@ -1,107 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: OCL Integration: Demo">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="135"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>51</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s138242"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s138243" type="#_x0000_m1027"
-  style='position:absolute;left:180pt;top:186pt;width:312pt;height:156pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s138242" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>OCL Integration: Demo</div>
- <div v:shape="_x0000_s138243" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:35.5%;left:26.02%;width:41.57%;
- height:5.25%'><span style='position:absolute;top:0%;left:4.5%;width:95.04%;
- height:100.0%'><span class=BB style='position:absolute;left:-4.73%'>•</span>Code
- generation.&#13;</span></div>
- <div class=B style='position:absolute;top:41.75%;left:26.02%;width:41.57%;
- height:5.25%'><span style='position:absolute;top:0%;left:4.5%;width:95.04%;
- height:100.0%'><span class=BB style='position:absolute;left:-4.73%'>•</span>Validation.&#13;</span></div>
- <div class=B1 style='position:absolute;top:48.0%;left:30.33%;width:37.07%;
- height:4.5%'><span style='mso-special-format:nobullet;display:none;font-family:
- Wingdings'>w</span><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0078.htm b/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0078.htm
deleted file mode 100644
index ff41015..0000000
--- a/uml2/docs/presentations/EclipseCon2008_LongTalk_NewFeaturesOfUML2_files/slide0078.htm
+++ /dev/null
@@ -1,106 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_LongTalk_NewFeaturesOfUML2.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Generics: Demo">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="136"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span></span><span style='font-size:42%'>New
- Features of UML2</span><span lang=EN-US style='font-size:42%;mso-ansi-language:
- EN-US'> |<span style='mso-spacerun:yes'>  </span>Long Talk | Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>19</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s139266"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s139267" type="#_x0000_m1027"
-  style='position:absolute;left:60pt;top:180pt;width:636pt;height:96pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s139266" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Generics: Demo</div>
- <div v:shape="_x0000_s139267" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:34.25%;left:9.36%;width:98.68%;
- height:5.25%'><span style='position:absolute;top:0%;left:1.89%;width:98.1%;
- height:100.0%'><span class=BB style='position:absolute;left:-1.93%'>•</span>Code
- generation from a model with generics specified.&#13;</span></div>
- <div class=B style='position:absolute;top:40.75%;left:9.36%;width:86.51%;
- height:5.25%'><span style='mso-special-format:nobullet;display:none'>•</span>&#13;</div>
- <div class=B1 style='position:absolute;top:46.75%;left:13.67%;width:82.2%;
- height:4.5%'><span style='mso-special-format:nobullet;display:none;font-family:
- Wingdings'>w</span><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview.html
deleted file mode 100644
index 92413c4..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview.html
+++ /dev/null
@@ -1,82 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link rel=File-List href="UML2_1_1_ReleaseReview_files/filelist.xml">
-<link rel=Preview href="UML2_1_1_ReleaseReview_files/preview.wmf">
-<link rel=Edit-Time-Data href="UML2_1_1_ReleaseReview_files/editdata.mso">
-<title>Eclipse Foundation</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>Sharon Wolfe</o:Author>
-  <o:Template>eclipse temple</o:Template>
-  <o:LastAuthor>khussey</o:LastAuthor>
-  <o:Revision>27</o:Revision>
-  <o:TotalTime>1526</o:TotalTime>
-  <o:Created>2004-11-09T19:58:12Z</o:Created>
-  <o:LastSaved>2005-06-17T15:14:59Z</o:LastSaved>
-  <o:Words>1772</o:Words>
-  <o:PresentationFormat>On-screen Show</o:PresentationFormat>
-  <o:Company>Eclipse Foundation Inc.</o:Company>
-  <o:Bytes>281038</o:Bytes>
-  <o:Paragraphs>181</o:Paragraphs>
-  <o:Slides>19</o:Slides>
-  <o:Notes>12</o:Notes>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
- <o:OfficeDocumentSettings>
-  <o:ShowReviewingToolbar/>
-  <o:PixelsPerInch>80</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
-</xml><![endif]-->
-<link rel=Presentation-XML href="UML2_1_1_ReleaseReview_files/pres.xml">
-<meta name=Description content="6/17/2005: UML2 1.1 Release Review">
-<meta http-equiv=expires content=0>
-<![if !ppt]><script>
-<!--
-	var ver = 0, appVer = navigator.appVersion, msie = appVer.indexOf( "MSIE " )
-	var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0)
-	if( msie >= 0 )
-		ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) )
-	else
-		ver = parseInt( appVer )
-	browserSupported=0
-	if( !isMac && ver >= 4 && msie >= 0 ) {
-		browserSupported=1
-		window.location.replace( 'UML2_1_1_ReleaseReview_files/frame.html'+document.location.hash )
-	}
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<script><!--
-
-if( browserSupported )
-	document.writeln('<div style="visibility:hidden">');
-
-//--></script><font face=Arial size=2><b>
-
-<p>This presentation contains content that your browser may not be able to show
-properly. This presentation was optimized for more recent versions of Microsoft
-Internet Explorer.</p>
-
-<p>If you would like to proceed anyway, click <a
-href="UML2_1_1_ReleaseReview_files/frame.html">here</a>.</p>
-
-</b></font><script><!--
-
-if( browserSupported )
-	document.writeln('</div>');
-
-//--></script>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/buttons.gif b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/buttons.gif
deleted file mode 100644
index 1f2c73c..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/buttons.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/filelist.xml b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/filelist.xml
deleted file mode 100644
index adad7b3..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/filelist.xml
+++ /dev/null
@@ -1,45 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:File HRef="master04.html"/>
- <o:File HRef="master04.xml"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="master04_image001.jpg"/>
- <o:File HRef="master04_image002.jpg"/>
- <o:File HRef="master05.html"/>
- <o:File HRef="master05.xml"/>
- <o:File HRef="master05_image003.jpg"/>
- <o:File HRef="master05_image004.jpg"/>
- <o:File HRef="pres.xml"/>
- <o:File HRef="slide0139.html"/>
- <o:File HRef="master05_image005.jpg"/>
- <o:File HRef="master05_image006.jpg"/>
- <o:File HRef="slide0134.html"/>
- <o:File HRef="master04_image007.jpg"/>
- <o:File HRef="master04_image008.jpg"/>
- <o:File HRef="slide0153.html"/>
- <o:File HRef="slide0152.html"/>
- <o:File HRef="slide0150.html"/>
- <o:File HRef="slide0151.html"/>
- <o:File HRef="slide0140.html"/>
- <o:File HRef="slide0141.html"/>
- <o:File HRef="slide0142.html"/>
- <o:File HRef="slide0143.html"/>
- <o:File HRef="slide0144.html"/>
- <o:File HRef="slide0145.html"/>
- <o:File HRef="slide0146.html"/>
- <o:File HRef="slide0147.html"/>
- <o:File HRef="slide0148.html"/>
- <o:File HRef="slide0149.html"/>
- <o:File HRef="slide0154.html"/>
- <o:File HRef="slide0155.html"/>
- <o:File HRef="slide0115.html"/>
- <o:File HRef="master01.html"/>
- <o:File HRef="master04_stylesheet.css"/>
- <o:File HRef="script.js"/>
- <o:MainFile HRef="../UML2_1_1_ReleaseReview.html"/>
- <o:File HRef="fullscreen.html"/>
- <o:File HRef="notes_flag.gif"/>
- <o:File HRef="buttons.gif"/>
- <o:File HRef="frame.html"/>
- <o:File HRef="outline.html"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/frame.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/frame.html
deleted file mode 100644
index 213856e..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/frame.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<title>Eclipse Foundation</title>
-<![if !ppt]><script src=script.js></script><script>
-<!--
-var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
-function Load()
-{
-	str=document.location.hash,idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(str) PPTSld.location.replace(str);
-}
-//-->
-</script>
-<![endif]>
-</head>
-
-<frameset rows="*,25" border=0>
- <frameset cols="25%,*" id=PPTHorizAdjust framespacing=2>
-  <frameset rows="100%,*">
-   <frame src=outline.html title="Outline" name=PPTOtl>
-  </frameset>
-  <frameset rows="*,40" id=PPTVertAdjust framespacing=2 frameborder=1
-   onload="Load()">
-   <frame src=slide0139.html title="Slide" name=PPTSld>
-   <frame src=slide0139.html title="Notes" name=PPTNts>
-  </frameset>
- </frameset>
- <frameset cols="25%,*" framespacing=1>
-  <frame src=outline.html title="Outline
-Navigation Bar" name=PPTOtlNav scrolling=no noresize>
-  <frame src=outline.html title="Slide
-Navigation Bar" name=PPTNav scrolling=no noresize>
- </frameset>
-</frameset>
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/fullscreen.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/fullscreen.html
deleted file mode 100644
index f27e9bf..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/fullscreen.html
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<script src=script.js></script><script><!--
-var SCREEN_MODE   = "FullScreen";
-function Load() {
-	str=document.location.hash,idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(!str) str = "slide0139.html";
-	PPTSld.location.replace(MHTMLPrefix+str);
-}
-function Unload() {
-	if ( document.body.PPTSldFrameset != null )
-		document.body.PPTSldFrameset.frames[1].document.body.resume();
-}
-//-->
-</script>
-</head>
-
-<frameset rows="*" frameborder=0 onload="Load()" onunload="Unload()">
- <frame name=PPTSld>
-</frameset>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master01.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master01.html
deleted file mode 100644
index a537c75..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master01.html
+++ /dev/null
@@ -1,422 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="58"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s59393" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s59394" style='position:absolute;left:0;
- top:0;width:234pt;height:36pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s59394" class=O><span style='font-size:67%;mso-field-code:
-meta14'>‹header›</span><span style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-<v:shapetype id="_x0000_s59395" style='position:absolute;left:305.875pt;top:0;
- width:234pt;height:36pt' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
- filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="dateTime" position="1"/></v:shapetype>
-
-<div v:shape="_x0000_s59395" class=O style='text-align:right'><span lang=EN-US
-style='font-size:67%;mso-field-code:meta0'>‹date/time›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-<v:shapetype id="_x0000_m59396" style='position:absolute;left:90pt;top:54pt;
- width:5in;height:270pt;v-text-anchor:middle' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter"/>
- <v:shadow obscured="t"/>
- <v:path gradientshapeok="t" fillok="f" o:connecttype="rect"/>
- <o:lock v:ext="edit" rotation="t" text="t"/>
- <p:placeholder type="slideImage" position="2"/></v:shapetype><v:shapetype
- id="_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
- height:324pt' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
- filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="body" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_m59397">
-
-<div class=N>Click to edit Master text styles&#13;</div>
-
-<div class=N1>Second level&#13;</div>
-
-<div class=N2>Third level&#13;</div>
-
-<div class=N3>Fourth level&#13;</div>
-
-<div class=N4>Fifth level</div>
-
-</div>
-
-<v:shapetype id="_x0000_s59398" style='position:absolute;left:0;top:683.875pt;
- width:234pt;height:36pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="footer" position="4" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s59398" class=O><span style='font-size:67%;mso-field-code:
-meta15'>‹footer›</span><span style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-<v:shapetype id="_x0000_s59399" style='position:absolute;left:305.875pt;top:683.875pt;
- width:234pt;height:36pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="slideNumber" position="5" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s59399" class=O style='text-align:right'><span
-style='font-size:67%;mso-field-code:meta16'>‹#›</span><span style='font-size:
-67%;mso-special-format:lastCR'>&#13;</span></div>
-
-<p:notes id="153" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="214"/>
- </o:shapelayout><v:shape id="_x0000_s219138" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s219139"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s219139" class=N>Summarize the major features of this
- release as well as any other features that have generated significant
- discussion amongst the community during the development cycle. Compare the
- features against the Roadmap to understand the project's conformance or
- divergence (note: compare against the Project Plan section as the forward
- looking sections apply to the next release). References to existing New &amp;
- Noteworthy documentation is a useful addition to this summary. &#13;<b><i>Reason:</i></b><i>
- </i>The community will use this release and the ecosystem will build products
- on top of this release, and both need to know what features were included or
- excluded.</div>
-</p:notes><p:notes id="150" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="210"/>
- </o:shapelayout><v:shape id="_x0000_s215042" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s215043"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s215043" class=N>Summarize the state of the non-code
- aspects of the release including: user documentation,
- localization/externalization, examples, tutorials, articles, and so on. Have
- the existing artifacts been updated? Are there new artifacts? Have the
- obsolete ones been retired or at least marked as pertaining only to older material?
- &#13;<b><i>Reason:</i></b> The non-code aspects are essential for the
- wide-spread adoption of the release.</div>
-</p:notes><p:notes id="140" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="189"/>
- </o:shapelayout><v:shape id="_x0000_s193538" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s193539"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s193539" class=N>Certify that the APIs in this release
- are <i>Eclipse Quality</i>. (See the <i><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/org/processes/Eclipse Quality APIs v2.pdf"/><a
- href="http://www.eclipse.org/org/processes/Eclipse%20Quality%20APIs%20v2.pdf"
- target="_blank" onclick="window.event.cancelBubble=true;">Eclipse </a></i><i><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/org/processes/Eclipse Quality APIs v2.pdf"/><a
- href="http://www.eclipse.org/org/processes/Eclipse%20Quality%20APIs%20v2.pdf"
- target="_blank" onclick="window.event.cancelBubble=true;">Quality APIs</a></i>
- document for more discussion.) The project's Architecture Council
- representative will personally certify that the requirements for quality have
- been met. &#13;<b><i>Reason:</i></b> Eclipse members build commercial tools on
- top of the extensible frameworks and thus the quality of the APIs is extremely
- important.</div>
-</p:notes><p:notes id="141" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="191"/>
- </o:shapelayout><v:shape id="_x0000_s195586" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s195587"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s195587" class=N>Summarize the architectural quality of
- the release. Discuss the <i>intrinsic nature </i><i>of being extensible</i>
- embodied by this project. Discuss issues such as unresolved overlap with other
- projects, unpaid &quot;merge debt&quot; from incorporating various components,
- and so on. &#13;<b><i>Reason: </i></b>Eclipse members build commercial tools
- on top of the extensible frameworks and thus the quality of the architecture
- is important.</div>
-</p:notes><p:notes id="142" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="193"/>
- </o:shapelayout><v:shape id="_x0000_s197634" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s197635"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s197635" class=N>Summarize the features (APIs and any
- significant user features) from previous releases that are being end-of-life'd
- in this release. End of life includes both deprecation and actual removal.
- &#13;<b><i>Reason:</i></b> The community builds products that rely on features
- and so they need to know when these features are changing.</div>
-</p:notes><p:notes id="143" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="195"/>
- </o:shapelayout><v:shape id="_x0000_s199682" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s199683"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s199683" class=N>Summarize the bugzilla situation. How
- many bug records (defects and enhancements) have been
- opened/closed/deferred/new, etc? How many P1, P2, ..., bug records are
- outstanding? &#13;<b><i>Reason:</i></b> Summaries of the bugzilla records
- offer a glimpse into the project productivity. They also offer an estimate of
- the outstanding risk. And the summary is used to alert the community to known
- issues.</div>
-</p:notes><p:notes id="144" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="197"/>
- </o:shapelayout><v:shape id="_x0000_s201730" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s201731"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s201731" class=N>Summarize the standards compliance of
- this release. If the features are based on defined, pending, or ad-hoc
- standards, what is the state of those standards and what is the state of the
- support for those standards in this release. &#13;<b><i>Reason: </i></b>Eclipse
- is about building frameworks and tools based on standards, so we need to make
- sure that we are conforming to the appropriate standards.</div>
-</p:notes><p:notes id="145" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="199"/>
- </o:shapelayout><v:shape id="_x0000_s203778" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s203779"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s203779" class=N>Discuss the initial schedule and any
- changes to the schedule over the course of the release, i.e., what the project
- team achieved. Discuss whether milestones were met or slipped. &#13;<b><i>Reason:</i></b>
- The community relies on consistent schedules from Eclipse so that projects and
- products can plan for the correct dependencies.</div>
-</p:notes><p:notes id="146" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="201"/>
- </o:shapelayout><v:shape id="_x0000_s205826" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s205827"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s205827" class=N>Summarize the project's conformance to
- the <p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/org/documents/Eclipse Development Process 2003_11_09 FINAL.pdf"/><a
- href="http://www.eclipse.org/org/documents/Eclipse%20Development%20Process%202003_11_09%20FINAL.pdf"
- target="_blank" onclick="window.event.cancelBubble=true;">Eclipse Development
- Process</a>. Has this release been developed using open, transparent, and
- inclusive processes?&nbsp; Has this release followed its charter
- principles?&nbsp; Consider the use of bugzilla, the mailing lists, the
- newsgroups, conference calls, committer elections/removals, etc. &#13;<b><i>Reason:</i></b>
- It is important for Eclipse projects to build a community around the project,
- not just deliver code for a project. This review item is about the process of
- building the community.</div>
-</p:notes><p:notes id="147" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="203"/>
- </o:shapelayout><v:shape id="_x0000_s207874" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s207875"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s207875" class=N>Summarize the project's development of
- its community. Consider the interactions on bugzilla, the mailing lists, the
- newsgroups, public conference calls, blogs, PR activities, code camps,
- conference tutorials, coordinating with other Eclipse projects and other open
- source projects (Apache, ObjectWeb, etc), ... &#13;<b><i>Reason:</i></b> It is
- important for Eclipse projects to build a community around the project, not
- just deliver code for a project. This review item is about the success of
- building a community.</div>
-</p:notes><p:notes id="148" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="205"/>
- </o:shapelayout><v:shape id="_x0000_s209922" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s209923"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s209923" class=N>
- <div style='mso-line-spacing:"90 30 0"'>As per the <p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/org/documents/Eclipse IP Policy2003_12_03 Final.pdf"/><a
- href="http://www.eclipse.org/org/documents/Eclipse%20IP%20Policy2003_12_03%20Final.pdf"
- target="_blank" onclick="window.event.cancelBubble=true;">Eclipse IP Policy</a>,
- the project verifies that: &#13;</div>
- <div style='mso-line-spacing:"90 30 0"'>... that the about files and use
- licenses are in place &#13;</div>
- <div style='mso-line-spacing:"90 30 0"'>... all contributions (code,
- documentation, images, etc) have been committed by individuals who are either
- Members of the Foundation, or have signed the appropriate Committer Agreement.
- In either case, these are individuals who have signed, and are abiding by, the
- Eclipse IP Policy. &#13;</div>
- <div style='mso-line-spacing:"90 30 0"'>... that all significant contributions
- have been reviewed by the Foundation's legal staff. &#13;</div>
- <div style='mso-line-spacing:"90 30 0"'>... that all non-committer code
- contributions, including third-party libraries, have been documented in the
- release and reviewed by the Foundation's legal staff &#13;</div>
- <div style='mso-line-spacing:"90 30 0"'>... that all contribution
- questionnaires have been completed&#13;</div>
- <div style='mso-line-spacing:"90 30 0"'>&#13;</div>
- <div style='mso-line-spacing:"90 30 0"'>The EMO explicitly asks during the
- Release Review if any Member would like to assert that this release infringes
- their IP rights. If so, the EMO and the project will follow the Eclipse IP
- Policy in discussions with that Member. &#13;</div>
- <div style='mso-line-spacing:"90 30 0"'><b><i>Reason:</i></b> One of the
- important benefits that the Eclipse Foundation provides for its members is the
- consistent application of the <p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/org/documents/Eclipse IP Policy2003_12_03 Final.pdf"/><a
- href="http://www.eclipse.org/org/documents/Eclipse%20IP%20Policy2003_12_03%20Final.pdf"
- target="_blank" onclick="window.event.cancelBubble=true;">Eclipse IP Policy</a>
- which helps ensure (but does not guarantee) that the framework and tools are useable
- in commercial products.</div>
- </div>
-</p:notes><p:notes id="149" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="207"/>
- </o:shapelayout><v:shape id="_x0000_s211970" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s211971"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s211971" class=N>If there is a Project Plan (full or even
- a draft) for the next release, the final issue to cover in the Release Review
- is the unveiling of the new plan.</div>
-</p:notes>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04.html
deleted file mode 100644
index 9a5749e..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04.html
+++ /dev/null
@@ -1,46 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m4098" class=T>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m4099">
-
-<div class=B>Click to edit Master text styles&#13;</div>
-
-<div class=B1>Second level&#13;</div>
-
-<div class=B2>Third level&#13;</div>
-
-<div class=B3>Fourth level&#13;</div>
-
-<div class=B4>Fifth level</div>
-
-</div>
-
-<div v:shape="_x0000_s4101" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span style='font-size:56%'>Eclipse Foundation, Inc.</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04.xml b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04.xml
deleted file mode 100644
index a220bc2..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04.xml
+++ /dev/null
@@ -1,72 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="4"/>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s4097" o:bwmode="white" fillcolor="#322c72"/>
- <p:shaperange id="_x0000_m4098">
-  <v:shapetype id="_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-   width:649.25pt;height:39.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m4099">
-  <v:shapetype id="_x0000_m4099" style='position:absolute;left:87.625pt;top:139.875pt;
-   width:578.625pt;height:307.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="white [1]" stroked="f"
-   strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s4100">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s4100" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt'>
-   <v:imagedata src="master04_image001.jpg" o:title="dark4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s4101">
-  <v:rect id="_x0000_s4101" style='position:absolute;left:12.125pt;top:508.5pt;
-   width:407pt;height:19.25pt' o:bwmode="black" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s4102">
-  <v:shape id="_x0000_s4102" type="#_x0000_t75" style='position:absolute;
-   left:8in;top:0;width:2in;height:71.875pt'>
-   <v:imagedata src="master04_image002.jpg" o:title="eclipse_neg_logo_fc_sm"
-    croptop=".25" cropbottom=".25"/>
-  </v:shape></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_image001.jpg b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_image001.jpg
deleted file mode 100644
index 86c4fa8..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_image001.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_image002.jpg b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_image002.jpg
deleted file mode 100644
index 97b7e17..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_image002.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_image007.jpg b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_image007.jpg
deleted file mode 100644
index de7c2dd..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_image007.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_image008.jpg b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_image008.jpg
deleted file mode 100644
index 830b1bb..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_image008.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_stylesheet.css b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_stylesheet.css
deleted file mode 100644
index fc61cb3..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master04_stylesheet.css
+++ /dev/null
@@ -1,470 +0,0 @@
-body
-	{width:534px;
-	height:400px;}
-.TB
-	{mso-special-format:nobullet•;}
-.T
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#CCCCFF;
-	mso-color-index:2;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.BB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.NB
-	{mso-special-format:nobullet•;}
-.N
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N1B
-	{mso-special-format:nobullet•;}
-.N1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N2B
-	{mso-special-format:nobullet•;}
-.N2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N3B
-	{mso-special-format:nobullet•;}
-.N3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N4N
-	{mso-special-format:nobullet•;}
-.N4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.OB
-	{mso-special-format:nobullet•;}
-.O
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CBB
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:95%;
-	mso-line-spacing:"100 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CTB
-	{mso-special-format:nobullet•;}
-.CT
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HBB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QBB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.TblB
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl1B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl2B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl3B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl4B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.defaultB
-	{mso-special-format:nobullet•;}
-.default
-	{text-align:left;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-weight:normal;
-	font-style:normal;
-	text-decoration:none;
-	text-shadow:none;
-	text-effect:none;
-	mso-fareast-hint:no;
-	layout-flow:horizontal;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-text-raise:-25%;
-	mso-line-spacing:"100 50 0";
-	mso-margin-left-alt:0;
-	mso-text-indent-alt:0;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;
-	direction:ltr;
-	mso-word-wrap:1;
-	mso-vertical-align-special:baseline;
-	mso-ansi-language:EN-US;}
-a:link
-	{color:silver !important;}
-a:active
-	{color:#DFFF66 !important;}
-a:visited
-	{color:#D18213 !important;}
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05.html
deleted file mode 100644
index db6c14e..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05.html
+++ /dev/null
@@ -1,58 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m5122" class=CT>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m5123" class=CB>Click to edit Master subtitle style</div>
-
-<div v:shape="_x0000_s5124" class=O style='text-align:right;mso-char-wrap:0;
-mso-kinsoku-overflow:0'><span style='font-size:56%'>© 2002 IBM Corporation</span></div>
-
-<div v:shape="_x0000_s5125">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O style='mso-line-spacing:"98 20 0";mso-margin-left-alt:216'><span
-style='mso-hansi-font-family:Arial;font-size:72%'>Confidential<span
-style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
-</span>Date<span style='mso-spacerun:yes'>  </span>|<span
-style='mso-spacerun:yes'>  </span>Other Information, if necessary</span></div>
-
-</div>
-
-<div v:shape="_x0000_s5127" class=O><span style='font-size:78%;mso-field-code:
-meta16'>‹#›</span><span style='font-size:78%;mso-special-format:lastCR'>&#13;</span></div>
-
-<div v:shape="_x0000_s5128" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span style='font-size:72%'>June 17, 2005</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05.xml b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05.xml
deleted file mode 100644
index b3a1718..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05.xml
+++ /dev/null
@@ -1,98 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="5"/>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s5121" o:bwmode="white" fillcolor="#322c72"/>
- <p:shaperange id="_x0000_m5122">
-  <v:shapetype id="_x0000_m5122" style='position:absolute;left:30.75pt;top:152.375pt;
-   width:626.375pt;height:115.75pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="centerTitle"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m5123">
-  <v:shapetype id="_x0000_m5123" style='position:absolute;left:153.5pt;top:279.375pt;
-   width:7in;height:109pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="subTitle" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s5124">
-  <v:rect id="_x0000_s5124" style='position:absolute;left:576.75pt;top:511.75pt;
-   width:122pt;height:19.25pt' o:bwmode="white" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect><v:rect id="_x0000_s5125" style='position:absolute;left:159.375pt;
-   top:490.25pt;width:324pt;height:24.125pt;v-text-anchor:middle' o:bwmode="black"
-   filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox inset="1.44pt,1.44pt,1.44pt,1.44pt"/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s5126">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s5126" type="#_x0000_t75" style='position:absolute;
-   left:0;top:418.5pt;width:10in;height:121.5pt'>
-   <v:imagedata src="master05_image003.jpg" o:title="dark2"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s5127">
-  <v:shapetype id="_x0000_s5127" style='position:absolute;left:542pt;top:20pt;
-   width:168pt;height:37.5pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s5128">
-  <v:rect id="_x0000_s5128" style='position:absolute;left:3.5pt;top:495pt;
-   width:492.5pt;height:22.875pt' o:bwmode="black" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s5129">
-  <v:shape id="_x0000_s5129" type="#_x0000_t75" style='position:absolute;
-   left:.25pt;top:0;width:248.375pt;height:108pt'>
-   <v:imagedata src="master05_image004.jpg" o:title="eclipse_neg_logo_fc_med"
-    croptop="19661f" cropbottom="19661f" cropleft="5243f"/>
-  </v:shape></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05_image003.jpg b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05_image003.jpg
deleted file mode 100644
index e8299a5..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05_image003.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05_image004.jpg b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05_image004.jpg
deleted file mode 100644
index 2696264..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05_image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05_image005.jpg b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05_image005.jpg
deleted file mode 100644
index d8632d9..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05_image005.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05_image006.jpg b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05_image006.jpg
deleted file mode 100644
index 71b2342..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/master05_image006.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/notes_flag.gif b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/notes_flag.gif
deleted file mode 100644
index 608b349..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/notes_flag.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/outline.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/outline.html
deleted file mode 100644
index f81aa40..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/outline.html
+++ /dev/null
@@ -1,802 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<script src=script.js></script><script><!--
-if( !(IsWin("PPTOtl")||IsWin("PPTNav")||IsWin("PPTOtlNav")) )
-{
-	obj = GetObj("Main-File")
-	parent.location.href=obj.href
-}
-var gOtlHiliteClr="#ffffff",gOtlNormalClr="#000000",gOtlActiveClr="#ffff00",gSelected="",gTxtState=false,gChildEntryTable=new Array()
-function Load()
-{
-	if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
-	if( g_supportsPPTHTML ) {
-		if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true; return }
-		if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); parent.gOtlNavLoaded=true; return }
-	}
-}
-function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
-function LoadNav( oId,UpdFunc )
-{
-	document.ondragstart=CancelDrag
-	document.onselectstart=CancelDrag
-	document.body.style.margin=2
-	UpdFunc()
-	obj=document.all.item(oId)
-	obj.style.display="block"
-	obj.style.visibility="visible"
-	document.bgColor="threedface"
-	if( parent.frames["PPTNts"] )
-		notesBtn.style.display = ""
-	if( parent.gHasNarration )
-		nb_voiceBorder.style.display = ""
-}
-function LoadOtl()
-{
-	var otl=GetObj("OtlObj")
-	otl.style.display="block"
-	otl.style.visibility="visible"
-	if( gOtlActiveClr == "" ) gOtlActiveClr=document.linkColor
-	if( gOtlHiliteClr == "" ) gOtlHiliteClr=document.fgColor
-	if( gOtlNormalClr == "" )
-		gOtlNormalClr=document.bgColor
-	else
-		document.bgColor=gOtlNormalClr
-	InitArray()
-	if( ObjExists( parent.gCurSld ) ) {
-		ChangeState( parent.gCurSld,gOtlNormalClr,gOtlHiliteClr )
-		gSelected=parent.gCurSld
-	}
-	else gSelected = -1
-	UpdOtl()
-}
-function UpdOtl(){ UpdIdx(parent.gCurSld) }
-function UpdIdx( idx )
-{
-	if( gSelected != idx ) {
-		if( gSelected > 0 )
-			ChangeState( gSelected,gOtlHiliteClr,gOtlNormalClr )
-		if( ObjExists( idx ) ) {
-			gSelected = idx
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-		}
-		else gSelected = -1
-	}
-	if( gTxtState != parent.gOtlTxtExp ) {
-		state = "block"
-		if( !parent.gOtlTxtExp )
-			state="none"
-		for(ii=0; ii<gChildEntryTable.length; ii++) {
-			obj=gChildEntryTable[ii];
-			if( obj.id == null ) continue;
-			if( obj.id.indexOf("PPTC") >= 0 )
-				obj.style.display=state;
-		}
-		gTxtState=parent.gOtlTxtExp
-		if( ObjExists( gSelected ) )
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-	}
-}
-function InitArray()
-{
-	count=0
-	var list=GetTags(document,"DIV");
-	for(ii=0; ii<list.length; ii++) {
-		obj=list.item(ii)
-		if( obj.id == null ) continue
-		if( obj.id.indexOf("PPTC") >= 0 )
-			gChildEntryTable[count++]=obj
-	}
-}
-function ChangeState( idx,fgColor,bgColor )
-{
-	obj=GetObj("PPTL"+idx)
-	obj.style.color=fgColor
-	obj=GetObj("PPTP"+idx)
-	obj.style.backgroundColor=bgColor
-}
-function ChgClr( o,clr ){ if( o.id != "PPTL"+gSelected ) o.style.color=clr }
-function Over( src ){ ChgClr(GetLink(src),gOtlActiveClr) }
-function Out( src ){ ChgClr(GetLink(src),gOtlHiliteClr) }
-function Follow(src){ window.location.href = GetLink(src).href; }
-function ObjExists( ii ) { obj=GetObj("PPTP"+ii ); return( obj ) }
-function GoToSld( href ){ UpdIdx(parent.GetSldNum(href)); parent.GoToSld( href ) }
-function CancelDrag(){ window.event.cancelBubble=true;window.event.returnValue=false}
-function GetLink(src)
-{
-   if(src.tagName=="A") return src
-   else return GetTags(src,"A").item(0)
-}
-function UpdNav()
-{
-	txt = "<center>";
-	if( parent.GetHrefObj( parent.gCurSld ).mOrigVis == 1 )
-		txt += "Slide " + parent.GetCurSldNum() + " of " + parent.GetNumSlds()
-	else
-		txt += "Hidden Slide"
-	txt += "</center>";
-	nav_text.innerHTML = txt;
-	if( !parent.HasPrevSld() )
-		gBtnArr["nb_prev"].Enabled(0)
-	else
-		gBtnArr["nb_prev"].Enabled(1)
-	if( !parent.HasNextSld() )
-		gBtnArr["nb_next"].Enabled(0)
-	else
-		gBtnArr["nb_next"].Enabled(1)
-	gBtnArr["nb_nts"].SetEnabled()
-	gBtnArr["nb_nts"].SetFlag( parent.gHasNts )
-	gBtnArr["nb_sldshw"].Enabled(1)
-	gBtnArr["nb_voice"].Enabled(1)
-}
-function UpdOtlNav()
-{
-	gBtnArr["nb_otl"].SetEnabled();
-	if( parent.gOtlOpen )
-		gBtnArr["nb_otlTxt"].Enabled( true );
-	else
-		document.all.item("nb_otlTxtBorder").style.visibility = "hidden";
-}
-
-//--></script>
-<style>
-<!--.PTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;
-	padding-left:2px;
-	font-weight:bold;}
-.CTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;}
-a
-	{color:white;
-	text-decoration:none;}
-ul
-	{color:white;
-	margin-bottom:0px;
-	margin-left:20px;}
-.sldNum
-	{margin-top:5px;
-	color:white;}
-.button
-	{position:absolute;
-	width:32px;
-	height:20px;
-	border-style:solid;
-	border-width:1px;
-	border-color:threedface;}
--->
-</style>
-</head>
-
-<body onload="Load()" style='margin:2px'>
-
-<div id=NavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-<table id="notesBtn" style='position:absolute;display:none;width:70px' align=left cellpadding=0
- cellspacing=0>
- <td nowrap>
- <div id="nb_ntsElem" align=center style='position:relative;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt'><img src="notes_flag.gif"
- border=0 id="notes_flag" style='display:none'><span
-style='mso-spacerun:yes'>  </span>Notes</div>
- <div title="Show/Hide Notes" id="nb_nts" style='position:absolute;top:0%;
- left:0%;width:100%;height:100%'></div>
- </td>
-</table>
-
-<table style='position:relative;width:70px' align=right cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_sldshwText" title="Full
-Screen Slide Show" align=center style='position:relative;margin-left:20px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt;cursor:default'>Slide
-Show</div>
- <div id="nb_sldshwBorder" title="Full Screen Slide Show" style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_sldshw" style='position:relative;left:-254px'></div>
- </div>
- </td>
- <td>
- <div id="nb_voiceBorder" style='display:none;position:absolute;top:0;left:-40px;
- width:20px;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_voice" title="Pause/Play Narration" style='position:
- relative;left:-290px'></div>
- </div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_prevBorder" class=button style='left:-30px'>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_prev" title="Previous Slide" style='position:relative;
- left:0px'></div>
- </div>
- <span id="nav_text" style='position:relative;top:3px;width:100px;font-family:
- Arial;color:buttontext;font-size:9pt'></span>
- <div id="nb_nextBorder" class=button>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_next" title="Next Slide" style='position:relative;
- left:-90px'></div>
- </div>
- </td>
-</table>
-</div>
-
-<div id=OtlNavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-
-<table style='position:relative;width:70px' align=left cellpadding=0 cellspacing=0>
- <td nowrap><div title="Show/Hide
-Outline" id="nb_otl"
- style='position:absolute;top:0%;left:0%;width:100%;height:100%;cursor:default'>
- <div id="nb_otlElem" align=center style='position:relative;padding:3px;font-family:Arial;
- color:buttontext;font-size:9pt'>Outline</div></div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td>
- <div style='position:absolute;left:-18px;width:24px;height:20px;border-style:
- solid;border-width:1px;border-color:threedface' id="nb_otlTxtBorder">
- <div style='position:absolute;clip:rect(0px, 22px, 18px, 0px)'><img
- src=buttons.gif id="nb_otlTxt" title="Expand/Collapse Outline"
- style='position:relative;left:-157px'></div>
- </div>
- </td>
-</table>
-
-</div>
-
-<div id=OtlObj style='display:none;visibility:hidden;'>
-
-
-<table width="100%" style='font-family:Arial;font-size:9pt'>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>1</font></div>
-  </td>
-  <td width="100%">
-  <div id=PPTP1 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0139.html');" id=PPTL1>UML2 1.1 Release Review</a></font></div>
-  <div id=PPTC1 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Kenn Hussey</li>
-   <li>UML2 Project Lead</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>2</font></div>
-  </td>
-  <td>
-  <div id=PPTP2 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0134.html');" id=PPTL2>Agenda</a></font></div>
-  <div id=PPTC2 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Features</li>
-   <li>Non-Code Aspects</li>
-   <li>APIs</li>
-   <li>Architectural Issues</li>
-   <li>End-of-Life</li>
-   <li>Bugzilla</li>
-   <li>Standards</li>
-   <li>Schedule</li>
-   <li>Process</li>
-   <li>Community</li>
-   <li>IP Issues</li>
-   <li>Project Plan</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>3</font></div>
-  </td>
-  <td>
-  <div id=PPTP3 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0153.html');" id=PPTL3>Features</a></font></div>
-  <div id=PPTC3 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>1.1 Plan available at
-       http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_1_1.html.</li>
-   <br>
-   <br>
-   <li>Major features</li>
-   <ul>
-    <li>Migration Framework. Provide a mechanism (using the Ecore2Ecore mapping
-        framework and extended metadata) for migrating resources based on
-        different (older) versions of the UML2 schema.</li>
-    <li>Resource Localization. Provide a mechanism for arbitrary (named)
-        elements to be localized via properties bundles either co-located with
-        the resource or distributed in a fragment; enhance the existing
-        stereotype keyword mechanism to support properties bundles distributed
-        in fragments.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>4</font></div>
-  </td>
-  <td>
-  <div id=PPTP4 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0152.html');" id=PPTL4>Features (Continued)</a></font></div>
-  <div id=PPTC4 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Major features (continued)</li>
-   <ul>
-    <li>EMF Generator Extensions. Refactor the custom Ecore “builder” and JET
-        templates that were used to generate the UML2 metamodel and deliver
-        them to the open source community, pending the availability of EMF
-        generator extensibility enhancements; provide an extension that builds
-        Ecore models from UML2 models.</li>
-    <li>More Examples. Deliver resource generation utilities to the open source
-        community as examples. Introduce robust actions for converting models
-        between Ecore and UML2 (and deprecate the existing import wizards).</li>
-   </ul>
-   <br>
-   <li>1.1 release notes available at
-       http://download.eclipse.org/tools/uml2/scripts/news-release-notes.php?ver=1.1.0.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>5</font></div>
-  </td>
-  <td>
-  <div id=PPTP5 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0150.html');" id=PPTL5>Non-Code Aspects</a></font></div>
-  <div id=PPTC5 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Documentation available at
-       http://www.eclipse.org/modeling/mdt/docs.php?project=uml2</li>
-   <ul>
-    <li>FAQ (updated)</li>
-    <li>Javadoc (for 1.0, 1.0.1, 1.0.2, 1.0.3, 1.1)</li>
-    <li>Link to OMG’s UML™ Resource Page (new)</li>
-   </ul>
-   <br>
-   <li>Localization/externalization</li>
-   <ul>
-    <li>Now optional (see bugs 77406, 85982).</li>
-    <li>NL packs for 1.0.x available at
-        http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2.</li>
-    <li>NL packs for 1.1 to be available by September.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>6</font></div>
-  </td>
-  <td>
-  <div id=PPTP6 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0151.html');" id=PPTL6>Non-Code Aspects
-  (Continued)</a></font></div>
-  <div id=PPTC6 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Examples available as part of org.eclipse.uml2.examples feature</li>
-   <ul>
-    <li>Actions to convert models to metamodels, model libraries (new)</li>
-    <li>Actions to generate metamodels, libraries, profiles (new)</li>
-    <li>Actions to externalize labels, keywords (new)</li>
-    <li>EMOF2Ecore mapping resource (new)</li>
-   </ul>
-   <br>
-   <li>Articles</li>
-   <ul>
-    <li>Getting Started with UML2 (needs to be updated)</li>
-    <li>Introduction to UML2 Profiles (needs to be updated)</li>
-    <li>Others (TBD) – see bug 77413</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>7</font></div>
-  </td>
-  <td>
-  <div id=PPTP7 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0140.html');" id=PPTL7>APIs</a></font></div>
-  <div id=PPTC7 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The APIs in this release are Eclipse Quality.</li>
-   <br>
-   <br>
-   <li>Internal APIs marked as such using new Eclipse 3.1 capability.</li>
-   <br>
-   <br>
-   <li>Support for instance creation – see bug 78296.</li>
-   <br>
-   <br>
-   <li>More convenience operations.</li>
-   <br>
-   <br>
-   <li>Improved factory methods.</li>
-   <br>
-   <br>
-   <li>New utilities class available.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>8</font></div>
-  </td>
-  <td>
-  <div id=PPTP8 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0141.html');" id=PPTL8>Architectural Issues</a></font></div>
-  <div id=PPTC8 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Improved architectural quality</li>
-   <ul>
-    <li>Less redundancy</li>
-    <li>Refactored code generator</li>
-    <li>Smaller, cleaner metadata</li>
-    <li>More efficient support for derived unions</li>
-    <li>New common plug-ins</li>
-   </ul>
-   <br>
-   <li>Generic features contributed to EMF</li>
-   <ul>
-    <li>Generation of unit tests</li>
-    <li>Support for Boolean flags</li>
-    <li>Migration framework (Ecore2XML)</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>9</font></div>
-  </td>
-  <td>
-  <div id=PPTP9 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0142.html');" id=PPTL9>End-of-Life</a></font></div>
-  <div id=PPTC9 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>User features</li>
-   <ul>
-    <li>Ecore2UML2, UML22Ecore import wizards retired in favor of new editor
-        actions (in Ecore, UML2 editors).</li>
-   </ul>
-   <br>
-   <li>APIs</li>
-   <ul>
-    <li>Factory methods with unnecessary EClass argument deprecated.</li>
-    <li>Profile/stereotype methods with Ecore arguments deprecated.</li>
-    <li>Item property descriptor, property descriptor, property source, adapter
-        factory content provider deprecated (moved to UML2Editor, made
-        internal).</li>
-    <li>Subset/superset lists, cache adapter, qualified text provider
-        interface, change command deprecated (refactored into common plug-ins).</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>10</font></div>
-  </td>
-  <td>
-  <div id=PPTP10 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0143.html');" id=PPTL10>Bugzilla</a></font></div>
-  <div id=PPTC10 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>44 bugs opened</li>
-   <br>
-   <br>
-   <li>38 bugs resolved/closed</li>
-   <br>
-   <br>
-   <li>0 bugs deferred</li>
-   <br>
-   <br>
-   <li>5 new bugs</li>
-   <br>
-   <br>
-   <li>1 P1 bug outstanding (77405)</li>
-   <br>
-   <br>
-   <li>1 P2 bug outstanding (77413)</li>
-   <br>
-   <br>
-   <li>3 P3 bugs outstanding (NLS)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>11</font></div>
-  </td>
-  <td>
-  <div id=PPTP11 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0144.html');" id=PPTL11>Standards</a></font></div>
-  <div id=PPTC11 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>1.1 release (still) based on interim draft of UML 2.0 specification
-       (U2P-UML-Super-v2-PDF-040502).</li>
-   <br>
-   <br>
-   <li>OMG to finalize specification (for real) very soon.</li>
-   <br>
-   <br>
-   <li>2.0 release to be based on released specification (ptc-04-10-02).</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>12</font></div>
-  </td>
-  <td>
-  <div id=PPTP12 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0145.html');" id=PPTL12>Schedule</a></font></div>
-  <div id=PPTC12 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Project team met all milestones despite challenges</li>
-   <ul>
-    <li>unplanned EMF contributions</li>
-    <li>limited resources</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>13</font></div>
-  </td>
-  <td>
-  <div id=PPTP13 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0146.html');" id=PPTL13>Process</a></font></div>
-  <div id=PPTC13 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>This release has been developed using open, transparent, and inclusive
-       processes.</li>
-   <br>
-   <br>
-   <li>This release has followed its charter principles.</li>
-   <br>
-   <br>
-   <li>The UML2 project makes appropriate use of Bugzilla, mailing lists (mdt-uml2.dev@eclipse.org),
-       newsgroups (eclipse.tools.uml2), and conference calls.</li>
-   <br>
-   <br>
-   <li>There were no committer elections/removals during the 1.1 release cycle.</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>14</font></div>
-  </td>
-  <td>
-  <div id=PPTP14 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0147.html');" id=PPTL14>Community</a></font></div>
-  <div id=PPTC14 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Increased interaction in Bugzilla and on newsgroup.</li>
-   <br>
-   <br>
-   <li>UML2 represented at EclipseCon 2005 (project sprint) and OMG MDA, SOA
-       and Web Services Workshop (workshop session).</li>
-   <br>
-   <br>
-   <li>Increased coordination with EMF tools project.</li>
-   <br>
-   <br>
-   <li>Coordination with new GMF technology project.</li>
-   <br>
-   <br>
-   <li>UML2 is the 6<sup>th</sup> most popular download at Eclipse.org.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>15</font></div>
-  </td>
-  <td>
-  <div id=PPTP15 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0148.html');" id=PPTL15>IP Issues</a></font></div>
-  <div id=PPTC15 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The UML2 project verifies that:</li>
-   <ul>
-    <li>the about files and use licenses are in place</li>
-    <li>all contributions (code, documentation, images, etc) have been
-        committed by individuals who are either Members of the Foundation, or
-        have signed the appropriate Committer Agreement; in either case, these
-        are individuals who have signed, and are abiding by, the Eclipse IP
-        Policy</li>
-    <li>all significant contributions have been reviewed by the Foundation's
-        legal staff</li>
-    <li>that all non-committer code contributions, including third-party
-        libraries, have been documented in the release and reviewed by the
-        Foundation's legal staff</li>
-    <li>all contribution questionnaires have been completed</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>16</font></div>
-  </td>
-  <td>
-  <div id=PPTP16 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0149.html');" id=PPTL16>Project Plan</a></font></div>
-  <div id=PPTC16 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Draft 2.0 plan available at
-       http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html.</li>
-   <br>
-   <br>
-   <li>Committed features</li>
-   <ul>
-    <li>UML™ 2.0 Conformance. Implement the revised package merge algorithm and
-        regenerate the code using a source model based on the finalized UML™
-        2.0 Superstructure specification (compliance level L3). Update UML2
-        resources (libraries, metamodels, profiles), examples, and EMF generator
-        extensions as necessary. Enhance the generator extensions (developed in
-        UML2 1.1) to facilitate code generation for an arbitrary compliance
-        level. Provide a resource migration extension to migrate resources
-        based on the UML2 1.x schema to 2.0.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>17</font></div>
-  </td>
-  <td>
-  <div id=PPTP17 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0154.html');" id=PPTL17>Project Plan
-  (Continued)</a></font></div>
-  <div id=PPTC17 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Committed features (continued)</li>
-   <ul>
-    <li>Reduced Memory Footprint. Reduce the memory footprint of UML models by,
-        for example, providing alternative implementations and/or lightweight
-        alternatives to heavyweight representations of certain concepts (e.g.
-        lower and upper bounds).</li>
-   </ul>
-   <br>
-   <li>Planned features (planned)</li>
-   <ul>
-    <li>UML™ 2.0 Interchange. Provide support for importing/exporting resources
-        based on the official OMG XMI representation of UML™ 2.0.</li>
-    <li>Validation Rules. Complete the generation and implementation of
-        validation rules from the UML™ 2.0 source model.</li>
-    <li>Javadoc. Complete the generation of model documentation from the UML™
-        2.0 source model.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>18</font></div>
-  </td>
-  <td>
-  <div id=PPTP18 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0155.html');" id=PPTL18>Project Plan
-  (Continued)</a></font></div>
-  <div id=PPTC18 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Planned features (continued)</li>
-   <ul>
-    <li>Enhanced Icons. Provide meaningful icons for most, if not all, of the
-        types in UML.</li>
-    <li>Resource Fragments. Provide support for segregation of UML2 resources
-        into ‘fragments’ with packages as root elements.</li>
-    <li>Tools. Engage partners and tool developers to contribute tools based on
-        UML2, e.g. a mechanism for import/exporting resources based on Unisys
-        XMI for UML 1.x.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>19</font></div>
-  </td>
-  <td>
-  <div id=PPTP19 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0115.html');" id=PPTL19>Thank you!</a></font></div>
-  <div id=PPTC19 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Q&amp;A</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
-</table>
-
-
-
-</div>
-
-<div style='display:none'><a href=master04.html></a><a href=master04.xml></a><a
-href=preview.wmf></a><a href="master04_image001.jpg"></a><a
-href="master04_image002.jpg"></a><a href=master05.html></a><a
-href=master05.xml></a><a href="master05_image003.jpg"></a><a
-href="master05_image004.jpg"></a><a href=pres.xml></a><a href=slide0139.html></a><a
-href="master05_image005.jpg"></a><a href="master05_image006.jpg"></a><a
-href=slide0134.html></a><a href="master04_image007.jpg"></a><a
-href="master04_image008.jpg"></a><a href=slide0153.html></a><a
-href=slide0152.html></a><a href=slide0150.html></a><a href=slide0151.html></a><a
-href=slide0140.html></a><a href=slide0141.html></a><a href=slide0142.html></a><a
-href=slide0143.html></a><a href=slide0144.html></a><a href=slide0145.html></a><a
-href=slide0146.html></a><a href=slide0147.html></a><a href=slide0148.html></a><a
-href=slide0149.html></a><a href=slide0154.html></a><a href=slide0155.html></a><a
-href=slide0115.html></a><a href=master01.html></a><a
-href="master04_stylesheet.css"></a><a href=script.js></a><a
-href="../UML2_1_1_ReleaseReview.html"></a><a href=fullscreen.html></a><a
-href="notes_flag.gif"></a><a href=buttons.gif></a><a href=frame.html></a><a
-href=outline.html></a></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/pres.xml b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/pres.xml
deleted file mode 100644
index 635b054..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/pres.xml
+++ /dev/null
@@ -1,80 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <p:presentation sizeof="screen" gridspacingx="49152" gridspacingy="49152">
-  <p:master id="4" slidesn="1C24AB8,8B769EC0" type="main" href="master04.html"
-   xmlhref="master04.xml" template="eclipse temple" preserved="t"
-   layout="title_body" slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-    <p:colorscheme
-     colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
-   </p:schemes>
-  </p:master>
-  <p:master id="5" slidesn="1C24D0E,1F75CD10" type="title" href="master05.html"
-   xmlhref="master05.xml" preserved="t" layout="title_subtitle"
-   slots="centerTitle,subTitle,dateTime,footer,slideNumber"/>
-  <p:master id="1" slidesn="1C48145,6A7A8F40" type="notes" href="master01.html"
-   layout="notes" slots="header,dateTime,slideImage,body,footer,slideNumber"/>
-  <p:slide id="139" slidesn="1C56AC0,44D4D0B0" href="slide0139.html"
-   masterhref="master05.html" layout="title_subtitle"
-   slots="centerTitle,subTitle"/>
-  <p:slide id="134" slidesn="1C4C1B0,8BC47750" href="slide0134.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="153" slidesn="1C57023,3C2681D0" href="slide0153.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="152" slidesn="1C57022,8C2103A0" href="slide0152.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="150" slidesn="1C5701F,45A9A510" href="slide0150.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="151" slidesn="1C57020,A06F4BC0" href="slide0151.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="140" slidesn="1C56AC1,3B3EC910" href="slide0140.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="141" slidesn="1C56AC1,4EB14540" href="slide0141.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="142" slidesn="1C56AC1,61325C90" href="slide0142.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="143" slidesn="1C56AC2,16246210" href="slide0143.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="144" slidesn="1C56AC2,28E73D50" href="slide0144.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="145" slidesn="1C56AC2,34AE1230" href="slide0145.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="146" slidesn="1C56AC2,4BA60BA0" href="slide0146.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="147" slidesn="1C56AC2,5BF7E6E0" href="slide0147.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="148" slidesn="1C56AC2,6A97A550" href="slide0148.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="149" slidesn="1C56AC2,A333FC60" href="slide0149.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="154" slidesn="1C5702C,CD2F53B0" href="slide0154.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="155" slidesn="1C57039,B09C7EA0" href="slide0155.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="115" slidesn="1C4991E,88CC3750" href="slide0115.html"
-   masterhref="master05.html" layout="title_subtitle"
-   slots="centerTitle,subTitle"/>
-  <p:viewstate type="slideView" restoredleft="153" restoredtop="929"
-   manualadjustleft="t" manualadjusttop="t" hideoutlineicons="t"/>
-  <p:font name="Arial" charset="0" type="4"/>
-  <p:font name="Wingdings" charset="2" type="6" family="2"/>
-  <p:font name="Times" charset="0" type="10" family="18"/>
-  <p:headersfooters formatid="0" noheader="t" nodate="t"/>
-  <p:headersfooters notes="t" slidenumber="t"/>
-  <p:pptdocumentsettings framecolors="WhiteTextOnBlack" hideslideanimation="t"
-   browsersupport="v4"/>
- </p:presentation>
- <o:shapedefaults v:ext="edit" spidmax="221188" fillcolor="silver"
-  strokecolor="none [0]">
-  <v:fill color="silver"/>
-  <v:stroke color="none [0]"/>
-  <v:imagedata embosscolor="shadow add(51)"/>
-  <v:shadow on="t" type="emboss" color="lineOrFill darken(153)" color2="shadow add(102)"
-   offset="1pt,1pt"/>
-  <v:textbox inset="2.5mm,1.3mm,2.5mm,1.3mm"/>
-  <o:colormru v:ext="edit" colors="#ddd,#b2b2b2"/>
-  <o:colormenu v:ext="edit" fillcolor="none [2]" shadowcolor="none"
-   extrusioncolor="none"/>
- </o:shapedefaults></xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/preview.wmf b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/preview.wmf
deleted file mode 100644
index 9d7be67..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/script.js b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/script.js
deleted file mode 100644
index 9ec2579..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/script.js
+++ /dev/null
@@ -1,833 +0,0 @@
-function LoadSld()

-{

-	var sld=GetObj("SlideObj")

-	if( !g_supportsPPTHTML ) {

-		sld.style.visibility="visible"

-		return

-	}

-	if( MakeNotesVis() ) return

-	runAnimations = _InitAnimations();

-	if( IsWin("PPTSld") )

-		parent.SldUpdated(GetSldId())

-	g_origSz=parseInt(SlideObj.style.fontSize)

-	g_origH=sld.style.posHeight

-	g_origW=sld.style.posWidth

-	g_scaleHyperlinks=(document.all.tags("AREA").length>0)

-	if( g_scaleHyperlinks )

-		InitHLinkArray()

-	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )

-		document.body.scroll="no"

-	_RSW()

-	if( IsWin("PPTSld") && parent.IsFullScrMode() )

-		FullScrInit();

-	

-	MakeSldVis();

-	ChkAutoAdv()

-

-	if( runAnimations )

-	{

-		if( document.all("NSPlay") )

-			document.all("NSPlay").autoStart = false;

-		if( sld.filters && sld.filters.revealtrans )

-			setTimeout( "document.body.start()", sld.filters.revealtrans.duration * 1000 );

-		else

-			document.body.start();

-	}

-}

-function MakeSldVis()

-{

-	var fTrans=g_showAnimation && SldHasTrans()

-	if( fTrans )

-	{

-		if( g_bgSound ) {

-			idx=g_bgSound.indexOf(",");

-			pptSound.src=g_bgSound.substr( 0, idx );

-			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));

-		}

-		SlideObj.filters.revealtrans.Apply()

-    }

-	SlideObj.style.visibility="visible"

-	if( fTrans )

-		SlideObj.filters.revealtrans.Play()

-}

-function MakeNotesVis()

-{

-	if( !IsNts() ) return false

-	SlideObj.style.display="none"

-	nObj = document.all.item("NotesObj")

-	parent.SetHasNts(0)

-	if( nObj ) {

-		nObj.style.display=""

-		parent.SetHasNts(1)

-	}

-	return 1

-}

-function ChkAutoAdv()

-{

-	if(SldHasTrans())

-		SlideObj.onfilterchange=AutoAdv

-	else

-		AutoAdv()

-}

-function AutoAdv()

-{

-	if(!IsWin("PPTSld") || !gUseSldTimings )return

-	var sld=GetCurSld()

-	if( (sld.mAdvDelay>0) && !parent.IsFramesMode() )

-		setTimeout("parent.GoToNextSld()",sld.mAdvDelay)

-}

-function GetObj(id)

-{

-	if(g_supportsPPTHTML) return document.all(id);

-	else return document.getElementById(id);

-}

-function SldHasTrans() { return SlideObj.style.getAttribute("filter")!="" }

-function GetSldId() { return sId=location.href.substring(location.href.lastIndexOf('/')+1) }

-function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }

-function IsWin( name ) { return window.name == name }

-function IsNts() { return IsWin("PPTNts") }

-function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }

-function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }

-function SupportsPPTHTML()

-{

-	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0

-	if( msie >= 0 )

-		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )

-	else

-		ver=parseInt(appVer)

-	return( ver >= 4 && msie >= 0 )

-}

-function _RSW()

-{

-	if( !g_supportsPPTHTML || IsNts() ||

-	  ( !g_scaleInFrame && (!IsWin("PPTSld") || !parent.IsFullScrMode()) ) )

-		return

-        var padding=0;

-        if( IsWin("PPTSld") && parent.IsFramesMode() ) padding=6

-	cltWidth=document.body.clientWidth-padding

-	cltHeight=document.body.clientHeight-padding

-	factor=(1.0*cltWidth)/g_origW

-	if( cltHeight < g_origH*factor )

-		factor=(1.0*cltHeight)/g_origH

-	newSize = g_origSz * factor

-	if( newSize < 1 ) newSize=1

-	s=SlideObj.style

-	s.fontSize=newSize+"px"

-	s.posWidth=g_origW*factor

-	s.posHeight=g_origH*factor

-	s.posLeft=(cltWidth-s.posWidth+padding)/2

-	s.posTop=(cltHeight-s.posHeight+padding)/2

-	if( g_scaleHyperlinks )

-		ScaleHyperlinks( factor )

-}

-function _InitAnimations()

-{

-	animRuntimeInstalled = ''+document.body.localTime != 'undefined';

-	isFullScreen = (window.name == "PPTSld") && !parent.IsFramesMode();

-	g_animUseRuntime = g_showAnimation && animRuntimeInstalled && !(isFullScreen && parent.IsSldVisited());

-	if( g_animUseRuntime ) {

-		collSeq = document.all.tags("seq");

-		if( collSeq != null ) {

-			for(ii=0;ii<collSeq.length;ii++) {

-				if( collSeq[ii].getAttribute( "p:nodeType" ) == "mainSeq" ) {

-					g_animMainSequence = collSeq[ii];

-					break;

-				}

-			}

-		}

-		if( g_animItemsToHide ) {

-			for(jj = 0; jj < g_animItemsToHide.length; jj++) {

-				if( hideObj = GetObj(g_animItemsToHide[jj]) )

-					hideObj.runtimeStyle.visibility="hidden";

-			}

-		}

-		if( g_animInteractiveItems ){

-			for(jj = 0; jj < g_animInteractiveItems.length; jj++) {

-				if( triggerObj = GetObj(g_animInteractiveItems[jj]) )

-					triggerObj.runtimeStyle.cursor="hand";

-			}

-		}

-		if( gUseSldTimings && ''+g_animSlideTime != 'undefined' ) {

-			adjustedTime = document.body.calculateAutoAdvanceTimes( g_animSlideTime, g_animEffectTimings );

-			if( IsWin("PPTSld") && adjustedTime != g_animSlideTime ) {

-			   var sld = GetCurSld();

-			   sld.mAdvDelay = adjustedTime * 1000;

-			}

-		}

-	}

-	return g_animUseRuntime;

-}

-gSldJump = 0, gSldJumpTrack = 0, gSldJumpIdx = "";

-function _KPH()

-{

-	if( IsNts() ) return;

-	if( !parent.IsFramesMode() && event.keyCode == 27 && !HideMenu() )

-		parent.window.close( self );

-	else if( event.keyCode == 32 ) {

-		if( window.name == "PPTSld" )

-			parent.PPTSld.DocumentOnClick();

-		else

-			parent.GoToNextSld();

-	}

-	CatchNumKeys( parent, event );

-}

-function CatchNumKeys( win, event ) {

-	if( win.IsFullScrMode() && (48<=event.keyCode) && (event.keyCode<=57) ) {

-		gSldJump = 1;

-		gSldJumpIdx += (event.keyCode-48).toString();

-	}

-	if( win.IsFullScrMode() && gSldJump && event.keyCode == 13 ) {

-		var numSlds = parent.GetSldList().mList.length

-		if ( gSldJumpIdx > numSlds )

-			gSldJumpIdx = numSlds;

-		if ( gSldJumpIdx >= 0 ) {

-			if ( gSldJumpIdx == 0 )

-				gSldJumpIdx = 1;

-			var jumpTo = parseInt(gSldJumpIdx);

-			gSldJump = 0; gSldJumpIdx = "";

-			win.GoToSld( parent.GetSldList().mList[jumpTo-1].mSldHref )

-		}

-	}

-}

-function _KDH()

-{

-	if( event.keyCode == 8 ) {

-		event.returnValue = 0;

-		parent.GoToPrevSld();

-	}

-}

-function DocumentOnClick()

-{

-	if( IsNts() || parent.HideMenu() ) return;

-	if( ( g_allowAdvOnClick && !parent.IsFramesMode() ) ||

-	    (event && (event.keyCode==32) ) )

-		parent.GoToNextSld();

-}

-

-var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = 1, gId="", g_bgSound="",

-    g_scaleHyperlinks = false, g_allowAdvOnClick = 1, g_showInBrowser = 0, gLoopCont = 0, gUseSldTimings = 1;

-var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && ( (window.name=="PPTSld" && !parent.IsFramesMode()) || g_showInBrowser );var g_animManager = null;

-var g_animUseRuntime = false;

-var g_animItemsToHide, g_animInteractiveItems, g_animSlideTime;

-var g_animMainSequence = null;

-var ENDSHOW_MESG="End of slide show, click to exit.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=19, SCRIPT_HREF="script.js", FULLSCR_HREF="fullscreen.html";

-var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = 0, gHasNarration = 0, gOtlOpen = true

-window.gPPTHTML=SupportsPPTHTML()

-var gMainDoc=new Array(new hrefList("slide0139.html",1,-1,1),new hrefList("slide0134.html",1,-1,1),new hrefList("slide0153.html",1,-1,1),new hrefList("slide0152.html",1,-1,1),new hrefList("slide0150.html",1,-1,1),new hrefList("slide0151.html",1,-1,1),new hrefList("slide0140.html",1,-1,1),new hrefList("slide0141.html",1,-1,1),new hrefList("slide0142.html",1,-1,1),new hrefList("slide0143.html",1,-1,1),new hrefList("slide0144.html",1,-1,1),new hrefList("slide0145.html",1,-1,1),new hrefList("slide0146.html",1,-1,1),new hrefList("slide0147.html",1,-1,1),new hrefList("slide0148.html",1,-1,1),new hrefList("slide0149.html",1,-1,1),new hrefList("slide0154.html",1,-1,1),new hrefList("slide0155.html",1,-1,1),new hrefList("slide0115.html",1,-1,1));

-function FullScrInit()

-{

-	g_allowAdvOnClick = GetCurSld().mAdvOnClk

-	document.body.style.backgroundColor="black"

-	document.oncontextmenu=parent._CM;

-	document.onkeydown = _KDH;

-	document.ondragstart=Cancel

-	document.onselectstart=Cancel

-	self.focus()

-}

-function Redirect( frmId )

-{

-	var str=document.location.hash,idx=str.indexOf('#'), sId=GetSldId()

-	if(idx>=0) str=str.substr(1);

-	if( window.name != frmId && ( sId != str) ) {

-		obj = GetObj("Main-File")

-		window.location.href=obj.href+"#"+sId

-		return 1

-	}

-	return 0

-}

-var MHTMLPrefix = CalculateMHTMLPrefix();

-function CalculateMHTMLPrefix()

-{

-	if ( document.location.protocol == 'mhtml:') {

-		href=new String(document.location.href)

-		Start=href.indexOf('!')+1

-		End=href.lastIndexOf('/')+1

-		if (End < Start)

-			return href.substring(0, Start)

-		else

-		return href.substring(0, End)

-	}

-	return '';

-}

-function GetTags(base,tag)

-{

-	if(g_supportsPPTHTML) return base.all.tags(tag);

-	else return base.getElementsByTagName(tag);

-}

-function UpdNtsPane(){ if(frames["PPTNts"]) PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }

-function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }

-function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }

-function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }

-function SetHasNts( fVal )

-{

-	if( gHasNts != fVal ) {

-		gHasNts=fVal

-		UpdNavPane()

-	}

-}

-function ToggleOtlText()

-{

-	gOtlTxtExp=!gOtlTxtExp

-	UpdOtlPane()

-}

-function ToggleOtlPane()

-{

-	frmset=document.all("PPTHorizAdjust")

-	frm=document.all("PPTOtl")

-	if( gOtlOpen )

-		frmset.cols="*,100%"

-	else

-		frmset.cols="25%,*"

-	gOtlOpen=!gOtlOpen

-	frm.noResize=!frm.noResize

-	UpdOtNavPane()

-}

-function ToggleNtsPane()

-{

-	frmset=document.all("PPTVertAdjust")

-	frm=document.all("PPTNts")

-	if( gNtsOpen )

-		frmset.rows="100%,*"

-	else

-		frmset.rows="*,20%"

-	gNtsOpen=!gNtsOpen

-	UpdNtsPane()

-}

-function ClearMedia()

-{

-	if (PPTSld.pptSound) PPTSld.pptSound.loop = 0;

-}

-function FullScreen()

-{

-	if ( PPTSld.g_animUseRuntime )

-		PPTSld.document.body.pause();

-	ClearMedia();

-	var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;

-	if(PPTNav.event.ctrlKey) {

-		var w = (window.screen.availWidth * 1.0) / 2.0

-		var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW

-		win = window.open( MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w + ",height=" + h );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-	else

-	{

-		win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-}

-function ToggleVNarration()

-{

-	rObj=PPTSld.document.all("NSPlay")

-	if( rObj && !PPTSld.g_animUseRuntime ) {

-		if( (rObj.playState == 1)||(rObj.playState == 0) )

-			rObj.Play()

-		else if( rObj.playState == 2 )

-			rObj.Pause()

-		else

-			return;

-	}

-	else if( PPTSld.g_animUseRuntime )

-	{

-		narObj = PPTSld.document.all("narrationID")

-		if( narObj )

-			narObj.togglePause()

-	}

-}

-function GetCurSldNum()

-{

-	obj=GetHrefObj(gCurSld)

-	if( obj.mOrigVis == 1 )

-		return obj.mSldIdx

-	else

-		return gCurSld

-}

-function GetNumSlds()

-{

-	if( GetHrefObj(gCurSld).mOrigVis == 1 )

-		return GetSldList().mNumVisSlds;

-	else

-		return GetSldList().mList.length

-}

-function GetSldNum( href )

-{

-	for(ii=0; ii<GetSldList().mList.length; ii++) {

-		if ( GetSldList().mList[ii].mSldHref == href )

-			return ii+1

-	}

-	return 1

-}

-function GetHrefObj( sldIdx ){ return GetSldList().mList[sldIdx-1] }

-function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }

-function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }

-function GoToNextSld()

-{

-	ii=gCurSld + 1

-	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {

-		if( ii<=GetSldList().mList.length ) {

-			obj=GetHrefObj(ii)

-			obj.mVis=1

-			GoToSldNum(ii)

-			return

-		}

-	}

-	else {

-		obj=GetHrefObj( ii )

-		while ( obj && ( obj.mOrigVis == 0 ) )

-			obj=GetHrefObj(++ii)

-		if( obj && obj.mOrigVis ) {

-			GoToSldNum(ii)

-			return

-		}

-	}

-	if( gSldStack.length > 1 )

-		PopSldList();

-	else if( !IsFramesMode() ) {

-                if( gLoopCont )

-			GoToFirst()

-                else

-			EndShow()

-	}

-}

-function GoToPrevSld()

-{

-	ii=gCurSld-1

-	if( ii > 0 ) {

-		obj=GetHrefObj(ii)

-		while ( obj && ( obj.mVis == 0 ) && ( ii>0 ) )

-			obj=GetHrefObj(--ii)

-        if( ii == 0 ) ii=1

-		GoToSldNum(ii)

-	}

-}

-function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }

-function GoToLast()

-{

-	ii=GetSldList().mList.length

-	if( ii != gCurSld )

-		GoToSld( GetHrefObj(ii).mSldHref )

-}

-function GoToSldNum( num )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	obj = GetHrefObj( num )

-	obj.mVis=1

-	gPrevSld=gCurSld

-	gCurSld = num;

-	PPTSld.location.replace(MHTMLPrefix+obj.mSldHref)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function GoToSld( href )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	GetHrefObj( GetSldNum(href) ).mVis=1

-	PPTSld.location.replace(MHTMLPrefix+href)

-}

-function SldUpdated( id )

-{

-	if( id == GetHrefObj(gCurSld).mSldHref ) return

-	gPrevSld=gCurSld

-	gCurSld=GetSldNum(id)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }

-function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }

-function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }

-function CloseWindow() {

-	if( HideMenu() ) return;

-	var event = PPTSld.event;

-	if( !IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) )

-		window.close( self );

-	CatchNumKeys( self, event );

-}

-function Unload() { gIsEndShow=0; }

-function SetupEndShow() {

-	gIsEndShow=1;

-	PPTSld.document.body.scroll="no";

-	PPTSld.document.onkeypress=CloseWindow;

-	PPTSld.document.onclick=CloseWindow;

-	PPTSld.document.oncontextmenu=_CM;

-}

-function EndShow()

-{

-	if( IsFramesMode() ) return

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	doc=PPTSld.document

-	doc.open()

-	doc.writeln('<html><body bgcolor=black onload=parent.SetupEndShow() onunload=parent.Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')

-	doc.close()

-}

-function SetSldVisited(){ GetSldList().mList[gCurSld-1].mVisited=true }

-function IsSldVisited(){ return GetSldList().mList[gCurSld-1].mVisited }

-function hrefList( sldHref, visible, advDelay, advClk )

-{

-	this.mSldHref= this.mNtsHref = sldHref

-	this.mOrigVis= this.mVis = visible

-	this.mVisited= false

-	this.mAdvDelay= advDelay

-	this.mAdvOnClk= advClk

-}

-function SldList(arr,curSld,fEnd)

-{

-	this.mCurSld = curSld;

-	this.mList = new Array();

-	var idx = 1;

-	for(ii=0;ii<arr.length;ii++) {

-		this.mList[ii] = new hrefList( arr[ii].mSldHref, arr[ii].mOrigVis, arr[ii].mAdvDelay, arr[ii].mAdvOnClk );

-		if( arr[ii].mOrigVis )

-			this.mList[ii].mSldIdx = idx++;

-	}

-	this.mNumVisSlds = idx-1;

-	this.fEndShow = fEnd;

-}

-function GetSldList() {	return gSldStack[gSldStack.length-1] }

-function GetCurSld() { return parent.GetSldList().mList[parent.gCurSld - 1] }

-gSldStack = new Array();

-gSldStack[0] = new SldList(gMainDoc,gCurSld,1)

-function ViewCustomShow(idx,fEnd)

-{

-	if( !IsFullScrMode() ) return;

-	var sldList = new Array();

-	var custShow = custShowList[idx-1];

-	var jj = 0;

-	for( ii=0;ii<custShow.length;ii++ ) {

-		if( custShow[ii] <= gMainDoc.length )

-			sldList[jj++] = gMainDoc[custShow[ii]-1];

-	}

-	if (sldList.length > 0) {

-	PushSldList(sldList,fEnd);

-	gCurSld = 1;

-	}

-	else

-		if( PPTSld.event ) PPTSld.event.cancelBubble=true

-}

-function PushSldList(arr,fEnd) {

-	var ii = gSldStack.length;

-	gSldStack[ii] = new SldList(arr,gCurSld,fEnd);

-	GoToSld( gSldStack[ii].mList[0].mSldHref );

-}

-function PopSldList() {

-	if (gSldStack[gSldStack.length-1].fEndShow)

-		EndShow()

-	else {

-	gCurSld = gSldStack[gSldStack.length-1].mCurSld;

-	gSldStack[gSldStack.length-1] = null;

-	gSldStack.length--;

-	var sldList = gSldStack[gSldStack.length-1];

-	GoToSld( sldList.mList[gCurSld - 1].mSldHref );

-	}

-}

-var custShowList=new Array();

-function ImgBtn( oId,bId,w,action )

-{

-	var t=this

-	t.Perform    = _IBP

-	t.SetActive  = _IBSetA

-	t.SetInactive= _IBSetI

-	t.SetPressed = _IBSetP

-	t.SetDisabled= _IBSetD

-	t.Enabled    = _IBSetE

-	t.ChangeIcon = null

-	t.UserAction = action

-	t.ChgState   = _IBUI

-	t.mObjId   = oId

-	t.mBorderId= bId

-	t.mWidth   = w

-	t.mIsOn    = t.mCurState = 0

-}

-function _IBSetA()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetI()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetP()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gShadowClr,gHiliteClr,2 )

-		obj.style.posLeft+=1; obj.style.posTop+=1

-	}

-}

-function _IBSetD()

-{

-	obj=this.ChgState( gFaceClr,gFaceClr,0 )

-	obj.style.posTop=0

-}

-function _IBSetE( state )

-{

-	var t=this

-	GetObj( t.mBorderId ).style.visibility="visible"

-	if( state != t.mIsOn ) {

-		t.mIsOn=state

-		if( state )

-			t.SetInactive()

-		else

-			t.SetDisabled()

-	}

-}

-function _IBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-		if( t.ChangeIcon ) {

-			obj=GetObj(t.mObjId)

-			if( t.ChangeIcon() )

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth

-			else

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth

-		}

-		t.SetActive()

-	}

-}

-function _IBUI( clr1,clr2,nextState )

-{

-	var t=this

-	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )

-	obj=GetObj( t.mObjId )

-	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop

-	t.mCurState=nextState

-	return obj

-}

-function TxtBtn( oId,oeId,action,chkState )

-{

-	var t=this

-	t.Perform    = _TBP

-	t.SetActive  = _TBSetA

-	t.SetInactive= _TBSetI

-	t.SetPressed = _TBSetP

-	t.SetDisabled= _TBSetD

-	t.SetEnabled = _TBSetE

-	t.GetState   = chkState

-	t.UserAction = action

-	t.ChgState   = _TBUI

-	t.mObjId      = oId

-	t.m_elementsId= oeId

-	t.mIsOn       = 1

-}

-function _TBSetA()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gHiliteClr,gShadowClr,0,0 )

-}

-function _TBSetI()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-}

-function _TBSetP()

-{

-	if( this.mIsOn )

-		this.ChgState( gShadowClr,gHiliteClr,1,1 )

-}

-function _TBSetD()

-{

-	this.ChgState( gFaceClr,gFaceClr,0,0 )

-	this.mIsOn = 0

-}

-function _TBSetE()

-{

-	var t=this

-	if( !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-	else

-		t.ChgState( gShadowClr,gHiliteClr,1,1 )

-	t.mIsOn = 1

-}

-function _TBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-        if( !t.GetState )

-            return

-		if( t.GetState() )

-			t.SetPressed()

-		else

-			t.SetActive()

-	}

-}

-function _TBUI( clr1,clr2,lOffset,tOffset )

-{

-	SetBorder( GetObj( this.mObjId ),clr1,clr2 )

-	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )

-}

-function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }

-function SetBorder( obj, upperLeft, lowerRight )

-{

-	s=obj.style;

-	s.borderStyle      = "solid"

-	s.borderWidth      = 1

-	s.borderLeftColor  = s.borderTopColor = upperLeft

-	s.borderBottomColor= s.borderRightColor = lowerRight

-}

-function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }

-function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }

-function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }

-function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }

-function BtnOnUp()

-{

-	b=GetBtnObj()

-	if( b != null )

-		b.Perform()

-	else

-		Upd()

-}

-function GetNtsState(){ return parent.gNtsOpen }

-function GetOtlState(){ return parent.gOtlOpen }

-function GetOtlTxtState(){ return parent.gOtlTxtExp }

-function NtsBtnSetFlag( fVal )

-{

-	s=document.all.item( this.m_flagId ).style

-	s.display="none"

-	if( fVal )

-		s.display=""

-	else

-		s.display="none"

-}

-function _BSetA_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetActive() }

-function _BSetI_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetInactive() }

-var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"

-var gBtnArr = new Array()

-gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_otlElem"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_nts"] = new TxtBtn( "nb_nts","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )

-gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )

-gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )

-gBtnArr["nb_sldshwBorder"] = new TxtBtn( "nb_sldshw","nb_sldshwBorder",parent.FullScreen,null )

-gBtnArr["nb_sldshwBorder"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwBorder"].SetInactive = _BSetI_Border;

-gBtnArr["nb_sldshwText"] = new TxtBtn( "nb_sldshw","nb_sldshwText",parent.FullScreen,null )

-gBtnArr["nb_sldshwText"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwText"].SetInactive = _BSetI_Border;

-gBtnArr["nb_voice"]  = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )

-gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )

-gBtnArr["nb_nts"].m_flagId= "notes_flag"

-gBtnArr["nb_nts"].SetFlag = NtsBtnSetFlag

-gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState

-var sNext="Next",sPrev="Previous",sEnd="End Show",sFont="Arial",sArrow="Arrow",sFreeform="Freeform",sRect="Rectangle",sOval="Oval"

-function ShowMenu()

-{

-	BuildMenu();

-	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

-	m = PPTSld.document.all.item("ctxtmenu")

-	m.style.pixelLeft=x

-	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )

-		m.style.pixelLeft=x-m.scrollWidth

-	m.style.pixelTop=y

-	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )

-		m.style.pixelTop=y-m.scrollHeight

-	m.style.display=""

-}

-function _CM()

-{

-	if( !parent.IsFullScrMode() ) return;

-	if(!PPTSld.event.ctrlKey) {

-		ShowMenu()

-		return false

-	} else

-		HideMenu()

-}

-function BuildMenu()

-{

-	if( PPTSld.document.all.item("ctxtmenu") ) return

-	var mObj=CreateItem( PPTSld.document.body )

-	mObj.id="ctxtmenu"

-	mObj.style.visibility="hidden"

-	var s=mObj.style

-	s.position="absolute"

-	s.cursor="default"

-	s.width="120px"

-	SetCMBorder(mObj,"menu","black")

-	var iObj=CreateItem( mObj )

-	SetCMBorder( iObj, "threedhighlight","threedshadow" )

-	iObj.style.padding=2

-	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )

-	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )

-	CreateSeparator( iObj )

-	CreateMenuItem( iObj,sEnd,M_End,M_True )

-	mObj.style.visibility="visible"

-}

-function Cancel() { window.event.cancelBubble=true; window.event.returnValue=false }

-function Highlight() { ChangeClr("activecaption","threedhighlight") }

-function Deselect() { ChangeClr("threedface","menutext") }

-function Perform()

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() )

-		e.Action()

-	else

-		PPTSld.event.cancelBubble=true

-}

-function ChangeClr( bg,clr )

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() ) {

-		e.style.backgroundColor=bg

-		e.style.color=clr

-	}

-}

-function M_HasPrevSld() { return( parent.HasPrevSld() ) }

-function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }

-function M_GoPrevSld() { if( gIsEndShow ) { history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }

-function M_True() { return true }

-function M_End() { window.close( self ) }

-function CreateMenuItem( node,text,action,eval )

-{

-	var e=CreateItem( node )

-	e.type="menuitem"

-	e.Action=action

-	e.IsActive=eval

-	e.innerHTML=text

-	if( !e.IsActive() )

-		e.style.color="threedshadow"

-	e.onclick=Perform

-	e.onmouseover=Highlight

-	e.onmouseout=Deselect

-	s=e.style;

-	s.fontFamily=sFont

-	s.fontSize="9pt"

-	s.paddingLeft=2

-}

-function CreateSeparator( node )

-{

-	var sObj=CreateItem( node )

-	SetCMBorder(sObj,"menu","menu")

-	var s=sObj.style

-	s.borderTopColor="threedshadow"

-	s.borderBottomColor="threedhighlight"

-	s.height=1

-	s.fontSize="0px"

-}

-function CreateItem( node )

-{

-	var elem=PPTSld.document.createElement("DIV")

-	node.insertBefore( elem )

-	return elem

-}

-function SetCMBorder( o,ltClr,rbClr )

-{

-	var s=o.style

-	s.backgroundColor="menu"

-	s.borderStyle="solid"

-	s.borderWidth=1

-	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr

-}

diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0115.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0115.html
deleted file mode 100644
index 3a11214..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0115.html
+++ /dev/null
@@ -1,107 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Thank you!">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:white;}
-.CT
-	{color:white;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="154"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master05.xml">
- <p:shaperange href="master05.xml#_x0000_s5121"/><![if !ppt]><p:shaperange
-  href="master05.xml#_x0000_s5124"/>
- <div v:shape="_x0000_s5124" class=O style='text-align:right;mso-char-wrap:
- 0;mso-kinsoku-overflow:0;position:absolute;top:95.5%;left:78.08%;width:18.16%;
- height:2.25%'><span style='font-size:56%'>© 2002 IBM Corporation</span></div>
- <div v:shape="_x0000_s5125">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-line-spacing:"98 20 0";mso-margin-left-alt:216;
- position:absolute;top:91.75%;left:22.28%;width:51.87%;height:3.0%'><span
- style='mso-hansi-font-family:Arial;font-size:72%'>Confidential<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Date<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Other Information, if necessary</span></div>
- </div>
- <p:shaperange href="master05.xml#_x0000_s5126"/><![if !vml]><img border=0
- v:shapes="_x0000_s5126" src="master05_image005.jpg" style='position:absolute;
- top:77.5%;left:0%;width:100.0%;height:22.5%'><![endif]><p:shaperange
-  href="master05.xml#_x0000_s5128"/>
- <div v:shape="_x0000_s5128" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:92.5%;left:1.49%;width:66.47%;height:3.0%'><span
- style='font-size:72%'>June 17, 2005</span></div>
- <p:shaperange href="master05.xml#_x0000_s5129"/><![if !vml]><img border=0
- v:shapes="_x0000_s5129" src="master05_image006.jpg" style='position:absolute;
- top:0%;left:0%;width:34.45%;height:20.0%'><![endif]><![endif]><p:shaperange
-  href="master05.xml#_x0000_m5122"/><v:shape id="_x0000_s157700" type="#_x0000_m5122"
-  style='position:absolute;left:.5pt;top:156.625pt;width:455.875pt;height:115.75pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="centerTitle"/></v:shape><p:shaperange
-  href="master05.xml#_x0000_m5123"/><v:shape id="_x0000_s157701" type="#_x0000_m5123"
-  style='position:absolute;left:153.5pt;top:279.375pt;width:7in;height:109pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="subTitle" position="1"/></v:shape>
- <div v:shape="_x0000_s157700" class=CT style='text-align:center;position:absolute;
- top:29.5%;left:1.12%;width:61.42%;height:6.0%'>Thank you!</div>
- <div v:shape="_x0000_s157701" class=CB style='position:absolute;top:52.75%;
- left:22.28%;width:68.16%;height:7.75%'><span style='font-size:180%'>Q&amp;A</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0134.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0134.html
deleted file mode 100644
index 08c107b..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0134.html
+++ /dev/null
@@ -1,126 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Agenda">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="179"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span
- style='font-size:56%'>Eclipse Foundation, Inc.</span></div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s183298" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s183299" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s183298" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Agenda</div>
- <div v:shape="_x0000_s183299" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Features&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Non-Code Aspects&#13;</span></div>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>APIs&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Architectural
- Issues&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>End-of-Life&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Bugzilla&#13;</span></div>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Standards&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Schedule&#13;</span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Process&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Community&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>IP Issues&#13;</span></div>
- <div style='position:absolute;top:70.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Project Plan&#13;</span></div>
- <div style='position:absolute;top:74.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0139.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0139.html
deleted file mode 100644
index 3f61c28..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0139.html
+++ /dev/null
@@ -1,111 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: UML2 1.1 Release Review">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:white;}
-.CT
-	{color:white;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="184"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master05.xml">
- <p:shaperange href="master05.xml#_x0000_s5121"/><![if !ppt]><p:shaperange
-  href="master05.xml#_x0000_s5124"/>
- <div v:shape="_x0000_s5124" class=O style='text-align:right;mso-char-wrap:
- 0;mso-kinsoku-overflow:0;position:absolute;top:95.5%;left:78.08%;width:18.16%;
- height:2.25%'><span style='font-size:56%'>© 2002 IBM Corporation</span></div>
- <div v:shape="_x0000_s5125">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-line-spacing:"98 20 0";mso-margin-left-alt:216;
- position:absolute;top:91.75%;left:22.28%;width:51.87%;height:3.0%'><span
- style='mso-hansi-font-family:Arial;font-size:72%'>Confidential<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Date<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Other Information, if necessary</span></div>
- </div>
- <p:shaperange href="master05.xml#_x0000_s5126"/><![if !vml]><img border=0
- v:shapes="_x0000_s5126" src="master05_image005.jpg" style='position:absolute;
- top:77.5%;left:0%;width:100.0%;height:22.5%'><![endif]><p:shaperange
-  href="master05.xml#_x0000_s5128"/>
- <div v:shape="_x0000_s5128" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:92.5%;left:1.49%;width:66.47%;height:3.0%'><span
- style='font-size:72%'>June 17, 2005</span></div>
- <p:shaperange href="master05.xml#_x0000_s5129"/><![if !vml]><img border=0
- v:shapes="_x0000_s5129" src="master05_image006.jpg" style='position:absolute;
- top:0%;left:0%;width:34.45%;height:20.0%'><![endif]><![endif]><p:shaperange
-  href="master05.xml#_x0000_m5122"/><v:shape id="_x0000_s188420" type="#_x0000_m5122"
-  style='position:absolute;left:30.75pt;top:152.375pt;width:626.375pt;height:115.75pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="centerTitle"/></v:shape><p:shaperange
-  href="master05.xml#_x0000_m5123"/><v:shape id="_x0000_s188421" type="#_x0000_m5123"
-  style='position:absolute;left:153.5pt;top:279.375pt;width:7in;height:109pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="subTitle" position="1"/></v:shape>
- <div v:shape="_x0000_s188420" class=CT style='position:absolute;top:28.75%;
- left:5.24%;width:85.2%;height:6.0%'>UML2 1.1 Release Review</div>
- <div v:shape="_x0000_s188421" class=CB>
- <div style='position:absolute;top:52.75%;left:22.28%;width:68.16%;height:4.5%'>Kenn
- Hussey&#13;</div>
- <div style='position:absolute;top:57.0%;left:22.28%;width:68.16%;height:4.5%'>UML2
- Project Lead</div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0140.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0140.html
deleted file mode 100644
index cee22e2..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0140.html
+++ /dev/null
@@ -1,163 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: APIs">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="188"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s192514" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s192515" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s192514" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>APIs</div>
- <div v:shape="_x0000_s192515" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>The APIs in this
- release are <i><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/org/processes/Eclipse Quality APIs v2.pdf"/><a
- href="http://www.eclipse.org/org/processes/Eclipse%20Quality%20APIs%20v2.pdf"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Eclipse Quality</a></i>.&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:34.75%;left:13.1%;width:85.95%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.05%;width:96.94%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.14%'>§</span>Internal APIs marked as
- such using new Eclipse 3.1 capability.&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Support for instance
- creation – see bug <p:onmouseclick hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=78296"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=78296" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>78296</a>.&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>More convenience
- operations.&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Improved factory
- methods.&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>New utilities class
- available.</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Certify that the APIs in
-  this release are <i>Eclipse Quality</i>. (See the <i>Eclipse Quality APIs</i>
-  document for more discussion.) The project's Architecture Council
-  representative will personally certify that the requirements for quality have
-  been met.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b>
-  Eclipse members build commercial tools on top of the extensible frameworks
-  and thus the quality of the APIs is extremely important.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0141.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0141.html
deleted file mode 100644
index 8c563a6..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0141.html
+++ /dev/null
@@ -1,161 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Architectural Issues">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="190"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s194562" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s194563" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s194562" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Architectural Issues</div>
- <div v:shape="_x0000_s194563">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Improved
- architectural quality&#13;</span></div>
- <div class=B1 style='position:absolute;top:31.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Less
- redundancy&#13;</span></div>
- <div class=B1 style='position:absolute;top:36.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Refactored
- code generator&#13;</span></div>
- <div class=B1 style='position:absolute;top:41.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Smaller,
- cleaner metadata&#13;</span></div>
- <div class=B1 style='position:absolute;top:46.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>More
- efficient support for derived unions&#13;</span></div>
- <div class=B1 style='position:absolute;top:51.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>New
- common plug-ins&#13;</span></div>
- <div class=B style='position:absolute;top:55.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:59.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Generic
- features contributed to EMF&#13;</span></div>
- <div class=B1 style='position:absolute;top:64.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Generation
- of unit tests&#13;</span></div>
- <div class=B1 style='position:absolute;top:69.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Support
- for Boolean flags&#13;</span></div>
- <div class=B1 style='position:absolute;top:74.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Migration
- framework (Ecore2XML)</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the architectural
-  quality of the release. Discuss the <i>intrinsic nature of being extensible</i>
-  embodied by this project. Discuss issues such as unresolved overlap with
-  other projects, unpaid &quot;merge debt&quot; from incorporating various
-  components, and so on.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason: </i></b>Eclipse
-  members build commercial tools on top of the extensible frameworks and thus
-  the quality of the architecture is important.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0142.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0142.html
deleted file mode 100644
index 7153172..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0142.html
+++ /dev/null
@@ -1,151 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: End-of-Life">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="192"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s196610" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s196611" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s196610" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>End-of-Life</div>
- <div v:shape="_x0000_s196611">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>User
- features&#13;</span></div>
- <div class=B1><span style='position:absolute;top:31.75%;left:21.34%;
- width:77.15%;height:3.5%'><span class=B1B style='position:absolute;left:-3.88%'>§</span>Ecore2UML2,
- UML22Ecore import wizards retired in favor of new </span><span
- style='position:absolute;top:35.25%;left:21.34%;width:70.22%;height:3.5%'>editor
- actions (in Ecore, UML2 editors).&#13;</span></div>
- <div class=B style='position:absolute;top:39.5%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:43.5%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>APIs&#13;</span></div>
- <div class=B1 style='position:absolute;top:48.25%;left:18.35%;width:80.52%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.72%;width:96.04%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.87%'>§</span>Factory
- methods with unnecessary EClass argument deprecated.&#13;</span></div>
- <div class=B1 style='position:absolute;top:53.25%;left:18.35%;width:76.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.92%;width:95.83%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.09%'>§</span>Profile/stereotype
- methods with Ecore arguments deprecated.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:58.25%;left:21.34%;
- width:82.77%;height:3.5%'><span class=B1B style='position:absolute;left:-3.61%'>§</span>Item
- property descriptor, property descriptor, property source, adapter </span><span
- style='position:absolute;top:61.75%;left:21.34%;width:77.71%;height:3.5%'>factory
- content provider deprecated (moved to UML2Editor, made </span><span
- style='position:absolute;top:65.5%;left:21.34%;width:70.22%;height:3.5%'>internal).&#13;</span></div>
- <div class=B1><span style='position:absolute;top:70.5%;left:21.34%;width:81.83%;
- height:3.5%'><span class=B1B style='position:absolute;left:-3.66%'>§</span>Subset/superset
- lists, cache adapter, qualified text provider interface, </span><span
- style='position:absolute;top:74.0%;left:21.34%;width:76.96%;height:3.5%'>change
- command deprecated (refactored into common plug-ins).</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the features (APIs
-  and any significant user features) from previous releases that are being
-  end-of-life'd in this release. End of life includes both deprecation and
-  actual removal.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> The
-  community builds products that rely on features and so they need to know when
-  these features are changing.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0143.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0143.html
deleted file mode 100644
index 89d4390..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0143.html
+++ /dev/null
@@ -1,164 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Bugzilla">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="194"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s198658" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s198659" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s198658" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Bugzilla</div>
- <div v:shape="_x0000_s198659" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>44 bugs opened&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>38 bugs
- resolved/closed&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>0 bugs deferred&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>5 new bugs&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>1 P1 bug outstanding (<p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77405" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>77405</a>)&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:66.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>1 P2 bug outstanding (<p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>77413</a>)&#13;</span></div>
- <div style='position:absolute;top:70.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:74.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>3 P3 bugs outstanding
- (NLS)</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the bugzilla
-  situation. How many bug records (defects and enhancements) have been
-  opened/closed/deferred/new, etc? How many P1, P2, ..., bug records are
-  outstanding?</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b>
-  Summaries of the bugzilla records offer a glimpse into the project
-  productivity. They also offer an estimate of the outstanding risk. And the
-  summary is used to alert the community to known issues.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0144.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0144.html
deleted file mode 100644
index 96f63f3..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0144.html
+++ /dev/null
@@ -1,134 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Standards">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="196"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s200706" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s200707" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s200706" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Standards</div>
- <div v:shape="_x0000_s200707" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:84.83%;height:4.0%'><span class=BB
- style='position:absolute;left:-3.09%'>§</span>1.1 release (still) based on
- interim draft of UML 2.0 specification </span><span style='position:absolute;
- top:30.75%;left:15.73%;width:76.02%;height:4.0%'>(U2P-UML-Super-v2-PDF-040502).&#13;</span>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>OMG to finalize
- specification (for real) very soon.&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:88.57%;height:4.0%'><span
- style='position:absolute;top:0%;left:2.95%;width:97.04%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.05%'>§</span>2.0 release to be based
- on released specification (ptc-04-10-02).</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the standards
-  compliance of this release. If the features are based on defined, pending, or
-  ad-hoc standards, what is the state of those standards and what is the state
-  of the support for those standards in this release.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason: </i></b>Eclipse
-  is about building frameworks and tools based on standards, so we need to make
-  sure that we are conforming to the appropriate standards.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0145.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0145.html
deleted file mode 100644
index 7a87a28..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0145.html
+++ /dev/null
@@ -1,127 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Schedule">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="198"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s202754" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s202755" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s202754" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Schedule</div>
- <div v:shape="_x0000_s202755">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Project
- team met all milestones despite challenges&#13;</span></div>
- <div class=B1 style='position:absolute;top:31.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>unplanned
- EMF contributions&#13;</span></div>
- <div class=B1 style='position:absolute;top:36.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>limited
- resources</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Discuss the initial schedule
-  and any changes to the schedule over the course of the release, i.e., what
-  the project team achieved. Discuss whether milestones were met or slipped.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> The
-  community relies on consistent schedules from Eclipse so that projects and
-  products can plan for the correct dependencies.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0146.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0146.html
deleted file mode 100644
index 1bb721f..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0146.html
+++ /dev/null
@@ -1,157 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Process">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="200"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s204802" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s204803" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s204802" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Process</div>
- <div v:shape="_x0000_s204803" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:83.33%;height:4.0%'><span class=BB
- style='position:absolute;left:-3.14%'>§</span>This release has been developed
- using open, transparent, and </span><span style='position:absolute;top:30.75%;
- left:15.73%;width:76.02%;height:4.0%'>inclusive processes.&#13;</span>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>This release has
- followed its charter principles.&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:46.75%;left:15.73%;width:87.26%;height:
- 4.0%'><span class=BB style='position:absolute;left:-3.0%'>§</span>The UML2
- project makes appropriate use of Bugzilla, mailing lists </span><span
- style='position:absolute;top:50.75%;left:15.73%;width:83.33%;height:4.0%'>(<p:onmouseclick
-  hyperlinktype="url" href="mailto:mdt-uml2.dev@eclipse.org"/><a
- href="mailto:mdt-uml2.dev@eclipse.org" target="_blank"
- onclick="window.event.cancelBubble=true;">mdt-uml2.dev@eclipse.org</a>),
- newsgroups (<p:onmouseclick hyperlinktype="url"
-  href="news://news.eclipse.org/eclipse.tools.uml2"/><a
- href="news://news.eclipse.org/eclipse.tools.uml2" target="_blank"
- onclick="window.event.cancelBubble=true;">eclipse.tools.uml2</a>), and </span><span
- style='position:absolute;top:54.75%;left:15.73%;width:76.02%;height:4.0%'>conference
- calls.&#13;</span>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:62.75%;left:15.73%;width:88.95%;height:
- 4.0%'><span class=BB style='position:absolute;left:-2.94%'>§</span>There were
- no committer elections/removals during the 1.1 release </span><span
- style='position:absolute;top:66.75%;left:15.73%;width:76.02%;height:4.0%'>cycle.&#13;</span>
- <div style='position:absolute;top:70.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the project's
-  conformance to the Eclipse Development Process. Has this release been
-  developed using open, transparent, and inclusive processes?&nbsp; Has this
-  release followed its charter principles?&nbsp; Consider the use of bugzilla,
-  the mailing lists, the newsgroups, conference calls, committer
-  elections/removals, etc.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> It is
-  important for Eclipse projects to build a community around the project, not
-  just deliver code for a project. This review item is about the process of
-  building the community.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0147.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0147.html
deleted file mode 100644
index 733261b..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0147.html
+++ /dev/null
@@ -1,156 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Community">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="202"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s206850" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s206851" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s206850" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Community</div>
- <div v:shape="_x0000_s206851" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Increased interaction
- in Bugzilla and on newsgroup.&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:34.75%;left:15.73%;width:85.76%;height:
- 4.0%'><span class=BB style='position:absolute;left:-3.05%'>§</span>UML2
- represented at <i>EclipseCon 2005</i> (project sprint) and <i>OMG </i></span><span
- style='position:absolute;top:38.75%;left:15.73%;width:81.83%;height:4.0%'><i>MDA,
- SOA and Web Services Workshop</i> (workshop session).&#13;</span>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Increased coordination
- with EMF tools project.&#13;</span></div>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Coordination with new
- GMF technology project.&#13;</span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:62.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>UML2 is the 6<span
- style='mso-hansi-font-family:Arial;font-size:67%;position:relative;top:-.45em;
- mso-text-raise:30%'>th</span><span style='mso-spacerun:yes'> </span>most
- popular download at <p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/downloads/index.php"/><a
- href="http://www.eclipse.org/downloads/index.php" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Eclipse.org</a>.</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the project's
-  development of its community. Consider the interactions on bugzilla, the
-  mailing lists, the newsgroups, public conference calls, blogs, PR activities,
-  code camps, conference tutorials, coordinating with other Eclipse projects
-  and other open source projects (Apache, ObjectWeb, etc), ...</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> It is
-  important for Eclipse projects to build a community around the project, not
-  just deliver code for a project. This review item is about the success of
-  building a community.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0148.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0148.html
deleted file mode 100644
index d831e93..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0148.html
+++ /dev/null
@@ -1,198 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: IP Issues">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="204"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s208898" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s208899" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s208898" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>IP Issues</div>
- <div v:shape="_x0000_s208899">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>The
- UML2 project verifies that:&#13;</span></div>
- <div class=B1 style='position:absolute;top:31.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>the
- about files and use licenses are in place&#13;</span></div>
- <div class=B1><span style='position:absolute;top:36.75%;left:21.34%;
- width:74.34%;height:3.5%'><span class=B1B style='position:absolute;left:-4.03%'>§</span>all
- contributions (code, documentation, images, etc) have been </span><span
- style='position:absolute;top:40.25%;left:21.34%;width:84.08%;height:3.5%'>committed
- by individuals who are either Members of the Foundation, or </span><span
- style='position:absolute;top:43.75%;left:21.34%;width:78.27%;height:3.5%'>have
- signed the appropriate Committer Agreement; in either case, </span><span
- style='position:absolute;top:47.5%;left:21.34%;width:83.14%;height:3.5%'>these
- are individuals who have signed, and are abiding by, the Eclipse </span><span
- style='position:absolute;top:51.0%;left:21.34%;width:70.22%;height:3.5%'>IP
- Policy&#13;</span></div>
- <div class=B1><span style='position:absolute;top:56.0%;left:21.34%;width:79.77%;
- height:3.5%'><span class=B1B style='position:absolute;left:-3.75%'>§</span>all
- significant contributions have been reviewed by the Foundation's </span><span
- style='position:absolute;top:59.5%;left:21.34%;width:70.22%;height:3.5%'>legal
- staff&#13;</span></div>
- <div class=B1><span style='position:absolute;top:64.5%;left:21.34%;width:83.89%;
- height:3.5%'><span class=B1B style='position:absolute;left:-3.57%'>§</span>that
- all non-committer code contributions, including third-party libraries, </span><span
- style='position:absolute;top:68.0%;left:21.34%;width:70.22%;height:3.5%'>have
- been documented in the release and reviewed by the </span><span
- style='position:absolute;top:71.75%;left:21.34%;width:70.22%;height:3.5%'>Foundation's
- legal staff&#13;</span></div>
- <div class=B1 style='position:absolute;top:76.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>all
- contribution questionnaires have been completed</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>As per the Eclipse IP Policy,
-  the project verifies that:</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>... that the about files and
-  use licenses are in place</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>... all contributions (code,
-  documentation, images, etc) have been committed by individuals who are either
-  Members of the Foundation, or have signed the appropriate Committer
-  Agreement. In either case, these are individuals who have signed, and are
-  abiding by, the Eclipse IP Policy.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>... that all significant
-  contributions have been reviewed by the Foundation's legal staff.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>... that all non-committer
-  code contributions, including third-party libraries, have been documented in
-  the release and reviewed by the Foundation's legal staff</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>... that all contribution
-  questionnaires have been completed</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>The EMO explicitly asks
-  during the Release Review if any Member would like to assert that this
-  release infringes their IP rights. If so, the EMO and the project will follow
-  the Eclipse IP Policy in discussions with that Member.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> One of
-  the important benefits that the Eclipse Foundation provides for its members
-  is the consistent application of the Eclipse IP Policy which helps ensure
-  (but does not guarantee) that the framework and tools are useable in
-  commercial products.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0149.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0149.html
deleted file mode 100644
index dec19b2..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0149.html
+++ /dev/null
@@ -1,141 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Project Plan">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="206"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s210946" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s210947" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s210946" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Project Plan</div>
- <div v:shape="_x0000_s210947">
- <div class=B><span style='position:absolute;top:26.75%;left:15.73%;width:76.02%;
- height:4.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Draft
- 2.0 plan available at </span><span style='position:absolute;top:30.75%;
- left:15.73%;width:91.01%;height:4.0%'>http://www.eclipse.org/modeling/mdt/?project=uml2#uml2</span><span
- style='position:absolute;top:34.75%;left:15.73%;width:76.02%;height:4.0%'>/docs/plans/uml2_project_plan_2_0.html.&#13;</span></div>
- <div class=B style='position:absolute;top:38.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:42.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Committed
- features&#13;</span></div>
- <div class=B1><span style='position:absolute;top:47.75%;left:21.34%;
- width:77.9%;height:3.5%'><span class=B1B style='position:absolute;left:-3.84%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>UML™ 2.0
- Conformance</a></b><b>.</b> Implement the revised package merge </span><span
- style='position:absolute;top:51.25%;left:21.34%;width:83.14%;height:3.5%'>algorithm
- and regenerate the code using a source model based on the </span><span
- style='position:absolute;top:54.75%;left:21.34%;width:83.7%;height:3.5%'>finalized
- UML™ 2.0 Superstructure specification (compliance level L3). </span><span
- style='position:absolute;top:58.5%;left:21.34%;width:80.71%;height:3.5%'>Update
- UML2 resources (libraries, metamodels, profiles), examples, </span><span
- style='position:absolute;top:62.0%;left:21.34%;width:81.64%;height:3.5%'>and
- EMF generator extensions as necessary. Enhance the generator </span><span
- style='position:absolute;top:65.5%;left:21.34%;width:83.89%;height:3.5%'>extensions
- (developed in UML2 1.1) to facilitate code generation for an </span><span
- style='position:absolute;top:69.0%;left:21.34%;width:81.08%;height:3.5%'>arbitrary
- compliance level. Provide a resource migration extension to </span><span
- style='position:absolute;top:72.75%;left:21.34%;width:70.22%;height:3.5%'>migrate
- resources based on the UML2 1.x schema to 2.0.</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>If there is a Project Plan
-  (full or even a draft) for the next release, the final issue to cover in the
-  Release Review is the unveiling of the new plan.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0150.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0150.html
deleted file mode 100644
index b98de7a..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0150.html
+++ /dev/null
@@ -1,194 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Non-Code Aspects">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="209"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s214018" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s214019" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s214018" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Non-Code Aspects</div>
- <div v:shape="_x0000_s214019">
- <div class=B><span style='position:absolute;top:26.75%;left:15.73%;width:76.02%;
- height:4.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Documentation
- available at </span><span style='position:absolute;top:30.75%;left:15.73%;
- width:91.01%;height:4.0%'>http://www.eclipse.org/modeling/mdt/?project=uml2#uml2</span><span
- style='position:absolute;top:34.75%;left:15.73%;width:76.02%;height:4.0%'>/docs.html&#13;</span></div>
- <div class=B1 style='position:absolute;top:39.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span><p:onmouseclick
-  hyperlinktype="url" location="6"
-  href="http://www.eclipse.org/modeling/mdt/faq.php?project=uml2"/><a
- href="http://www.eclipse.org/modeling/mdt/faq.php?project=uml2#6"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>FAQ</a><span style='mso-spacerun:yes'> </span>(updated)&#13;</span></div>
- <div class=B1 style='position:absolute;top:44.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Javadoc
- (for <p:onmouseclick hyperlinktype="url"
-  href="http://download.eclipse.org/tools/uml2/1.0.0/javadoc/"/><a
- href="http://download.eclipse.org/tools/uml2/1.0.0/javadoc/" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>1.0</a>, <p:onmouseclick
-  hyperlinktype="url"
-  href="http://download.eclipse.org/tools/uml2/1.0.1/javadoc/"/><a
- href="http://download.eclipse.org/tools/uml2/1.0.1/javadoc/" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>1.0.1</a>,
- <p:onmouseclick hyperlinktype="url"
-  href="http://download.eclipse.org/tools/uml2/1.0.2/javadoc/"/><a
- href="http://download.eclipse.org/tools/uml2/1.0.2/javadoc/" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>1.0.2</a>,
- <p:onmouseclick hyperlinktype="url"
-  href="http://download.eclipse.org/tools/uml2/1.0.3/javadoc/"/><a
- href="http://download.eclipse.org/tools/uml2/1.0.3/javadoc/" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>1.0.3</a>,
- <p:onmouseclick hyperlinktype="url"
-  href="http://download.eclipse.org/tools/uml2/1.1.0/javadoc/"/><a
- href="http://download.eclipse.org/tools/uml2/1.1.0/javadoc/" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>1.1</a>)&#13;</span></div>
- <div class=B1 style='position:absolute;top:49.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Link
- to OMGÂ’s <p:onmouseclick hyperlinktype="url" href="http://www.omg.org/uml"/><a
- href="http://www.omg.org/uml" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>UML</a><span
- style='font-family:Arial;mso-hansi-font-family:Arial'><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/uml"/><a
- href="http://www.omg.org/uml" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>™</a></span><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/uml"/><a
- href="http://www.omg.org/uml" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'><span
- style='mso-spacerun:yes'> </span>Resource Page</a><span
- style='mso-spacerun:yes'> </span>(<b>new</b>)&#13;</span></div>
- <div class=B style='position:absolute;top:53.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:57.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Localization/externalization&#13;</span></div>
- <div class=B1 style='position:absolute;top:62.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Now
- optional (see bugs <p:onmouseclick hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>77406</a>,
- <p:onmouseclick hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85982"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85982" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>85982</a>).&#13;</span></div>
- <div class=B1><span style='position:absolute;top:67.75%;left:21.34%;
- width:70.22%;height:3.5%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>NL
- packs for 1.0.x available at </span><span style='position:absolute;top:71.25%;
- left:21.34%;width:72.65%;height:3.5%'>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2.&#13;</span></div>
- <div class=B1 style='position:absolute;top:76.25%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>NL
- packs for 1.1 to be available by September.</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the state of the
-  non-code aspects of the release including: user documentation,
-  localization/externalization, examples, tutorials, articles, and so on. Have
-  the existing artifacts been updated? Are there new artifacts? Have the
-  obsolete ones been retired or at least marked as pertaining only to older
-  material?</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> The
-  non-code aspects are essential for the wide-spread adoption of the release.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0151.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0151.html
deleted file mode 100644
index 77a6fdb..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0151.html
+++ /dev/null
@@ -1,140 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Non-Code Aspects (Continued)">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="211"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s216066" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s216067" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s216066" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Non-Code Aspects (Continued)</div>
- <div v:shape="_x0000_s216067">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:91.01%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.88%;width:97.32%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.95%'>§</span>Examples
- available as part of <b>org.eclipse.uml2.examples</b> feature&#13;</span></div>
- <div class=B1 style='position:absolute;top:31.75%;left:18.35%;width:78.65%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.8%;width:95.95%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.97%'>§</span>Actions
- to convert models to metamodels, model libraries (<b>new</b>)&#13;</span></div>
- <div class=B1 style='position:absolute;top:36.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Actions
- to generate metamodels, libraries, profiles (<b>new</b>)&#13;</span></div>
- <div class=B1 style='position:absolute;top:41.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Actions
- to externalize labels, keywords (<b>new</b>)&#13;</span></div>
- <div class=B1 style='position:absolute;top:46.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>EMOF2Ecore
- mapping resource (<b>new</b>)&#13;</span></div>
- <div class=B style='position:absolute;top:50.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:54.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Articles&#13;</span></div>
- <div class=B1 style='position:absolute;top:59.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Getting_Started_with_UML2/article.html"/><a
- href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Getting_Started_with_UML2/article.html"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Getting Started with UML2</a><span
- style='mso-spacerun:yes'> </span>(needs to be updated)&#13;</span></div>
- <div class=B1 style='position:absolute;top:64.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Introduction_to_UML2_Profiles/article.html"/><a
- href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Introduction_to_UML2_Profiles/article.html"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Introduction to UML2 Profiles</a><span
- style='mso-spacerun:yes'> </span>(needs to be updated)&#13;</span></div>
- <div class=B1 style='position:absolute;top:69.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Others
- (TBD) – see bug <p:onmouseclick hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>77413</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0152.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0152.html
deleted file mode 100644
index 33cf137..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0152.html
+++ /dev/null
@@ -1,126 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Features (Continued)">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="212"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s217090" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s217091" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s217090" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Features (Continued)</div>
- <div v:shape="_x0000_s217091">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Major
- features (continued)&#13;</span></div>
- <div class=B1><span style='position:absolute;top:31.75%;left:21.34%;
- width:83.14%;height:3.5%'><span class=B1B style='position:absolute;left:-3.6%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77408" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>EMF
- Generator Extensions</a></b><b>.</b> Refactor the custom Ecore “builder” and </span><span
- style='position:absolute;top:35.25%;left:21.34%;width:81.27%;height:3.5%'>JET
- templates that were used to generate the UML2 metamodel and </span><span
- style='position:absolute;top:38.75%;left:21.34%;width:82.58%;height:3.5%'>deliver
- them to the open source community, pending the availability of </span><span
- style='position:absolute;top:42.5%;left:21.34%;width:82.02%;height:3.5%'>EMF
- generator extensibility enhancements; provide an extension that </span><span
- style='position:absolute;top:46.0%;left:21.34%;width:70.22%;height:3.5%'>builds
- Ecore models from UML2 models.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:51.0%;left:21.34%;width:76.96%;
- height:3.5%'><span class=B1B style='position:absolute;left:-3.89%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77412" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>More
- Examples</a></b><b>.</b> Deliver resource generation utilities to the open </span><span
- style='position:absolute;top:54.5%;left:21.34%;width:71.34%;height:3.5%'>source
- community as examples. Introduce robust actions for </span><span
- style='position:absolute;top:58.0%;left:21.34%;width:76.59%;height:3.5%'>converting
- models between Ecore and UML2 (and deprecate the </span><span
- style='position:absolute;top:61.75%;left:21.34%;width:70.22%;height:3.5%'>existing
- import wizards).&#13;</span></div>
- <div class=B style='position:absolute;top:65.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B><span style='position:absolute;top:69.75%;left:15.73%;width:76.02%;
- height:4.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>1.1
- release notes available at </span><span style='position:absolute;top:73.75%;
- left:15.73%;width:79.58%;height:4.0%'>http://download.eclipse.org/tools/uml2/scripts/news-release-</span><span
- style='position:absolute;top:77.75%;left:15.73%;width:76.02%;height:4.0%'>notes.php?ver=1.1.0.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0153.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0153.html
deleted file mode 100644
index 50cc858..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0153.html
+++ /dev/null
@@ -1,157 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Features">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="213"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s218114" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s218115" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s218114" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Features</div>
- <div v:shape="_x0000_s218115">
- <div class=B><span style='position:absolute;top:26.75%;left:15.73%;width:76.02%;
- height:4.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>1.1
- Plan available at </span><span style='position:absolute;top:30.75%;left:15.73%;
- width:91.01%;height:4.0%'>http://www.eclipse.org/modeling/mdt/?project=uml2#uml2</span><span
- style='position:absolute;top:34.75%;left:15.73%;width:76.02%;height:4.0%'>/docs/plans/uml2_project_plan_1_1.html.&#13;</span></div>
- <div class=B style='position:absolute;top:38.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:42.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Major
- features&#13;</span></div>
- <div class=B1><span style='position:absolute;top:47.75%;left:21.34%;
- width:82.95%;height:3.5%'><span class=B1B style='position:absolute;left:-3.61%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77410" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Migration
- Framework</a></b><b>.</b> Provide a mechanism (using the Ecore2Ecore </span><span
- style='position:absolute;top:51.25%;left:21.34%;width:81.27%;height:3.5%'>mapping
- framework and extended metadata) for migrating resources </span><span
- style='position:absolute;top:54.75%;left:21.34%;width:70.22%;height:3.5%'>based
- on different (older) versions of the UML2 schema.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:59.75%;left:21.34%;
- width:80.71%;height:3.5%'><span class=B1B style='position:absolute;left:-3.71%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77406" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Resource
- Localization</a></b><b>.</b> Provide a mechanism for arbitrary (named) </span><span
- style='position:absolute;top:63.5%;left:21.34%;width:81.46%;height:3.5%'>elements
- to be localized via properties bundles either co-located with </span><span
- style='position:absolute;top:67.0%;left:21.34%;width:73.4%;height:3.5%'>the
- resource or distributed in a fragment; enhance the existing </span><span
- style='position:absolute;top:70.5%;left:21.34%;width:73.03%;height:3.5%'>stereotype
- keyword mechanism to support properties bundles </span><span style='position:
- absolute;top:74.0%;left:21.34%;width:70.22%;height:3.5%'>distributed in
- fragments.</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the major features
-  of this release as well as any other features that have generated significant
-  discussion amongst the community during the development cycle. Compare the
-  features against the Roadmap to understand the project's conformance or divergence
-  (note: compare against the Project Plan section as the forward looking
-  sections apply to the next release). References to existing New &amp;
-  Noteworthy documentation is a useful addition to this summary.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b><i> </i>The
-  community will use this release and the ecosystem will build products on top
-  of this release, and both need to know what features were included or
-  excluded.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0154.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0154.html
deleted file mode 100644
index a47dfec..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0154.html
+++ /dev/null
@@ -1,135 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Project Plan (Continued)">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="215"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s220162" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s220163" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s220162" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Project Plan (Continued)</div>
- <div v:shape="_x0000_s220163">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Committed
- features (continued)&#13;</span></div>
- <div class=B1><span style='position:absolute;top:31.75%;left:21.34%;
- width:80.14%;height:3.5%'><span class=B1B style='position:absolute;left:-3.73%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Reduced
- Memory Footprint</a></b><b>.</b> Reduce the memory footprint of UML </span><span
- style='position:absolute;top:35.25%;left:21.34%;width:81.64%;height:3.5%'>models
- by, for example, providing alternative implementations and/or </span><span
- style='position:absolute;top:38.75%;left:21.34%;width:76.59%;height:3.5%'>lightweight
- alternatives to heavyweight representations of certain </span><span
- style='position:absolute;top:42.5%;left:21.34%;width:70.22%;height:3.5%'>concepts
- (e.g. lower and upper bounds).&#13;</span></div>
- <div class=B style='position:absolute;top:46.5%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:50.5%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Planned
- features (planned)&#13;</span></div>
- <div class=B1><span style='position:absolute;top:55.5%;left:21.34%;width:76.4%;
- height:3.5%'><span class=B1B style='position:absolute;left:-3.92%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>UML™ 2.0
- Interchange</a></b><b>.</b> Provide support for importing/exporting </span><span
- style='position:absolute;top:59.0%;left:21.34%;width:84.08%;height:3.5%'>resources
- based on the official OMG XMI representation of UML™ 2.0.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:64.0%;left:21.34%;width:78.65%;
- height:3.5%'><span class=B1B style='position:absolute;left:-3.8%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80307" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Validation
- Rules</a></b><b>.</b> Complete the generation and implementation of </span><span
- style='position:absolute;top:67.5%;left:21.34%;width:70.22%;height:3.5%'>validation
- rules from the UML™ 2.0 source model.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:72.5%;left:21.34%;width:81.27%;
- height:3.5%'><span class=B1B style='position:absolute;left:-3.68%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Javadoc</a></b><b>.</b>
- Complete the generation of model documentation from the </span><span
- style='position:absolute;top:76.0%;left:21.34%;width:70.22%;height:3.5%'>UML™
- 2.0 source model.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0155.html b/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0155.html
deleted file mode 100644
index affff1e..0000000
--- a/uml2/docs/presentations/UML2_1_1_ReleaseReview_files/slide0155.html
+++ /dev/null
@@ -1,117 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_1_1_ReleaseReview.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>Eclipse Foundation</title>
-<meta name=Description content="6/17/2005: Project Plan (Continued)">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="216"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:54.68%;height:2.25%'><span style='font-size:56%'>Eclipse
- Foundation, Inc.</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><![endif]><p:shaperange
-  href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s221186" type="#_x0000_m4098"
-  style='position:absolute;left:12.125pt;top:68.625pt;width:649.25pt;height:39.25pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s221187" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s221186" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Project Plan (Continued)</div>
- <div v:shape="_x0000_s221187">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Planned
- features (continued)&#13;</span></div>
- <div class=B1><span style='position:absolute;top:31.75%;left:21.34%;
- width:81.08%;height:3.5%'><span class=B1B style='position:absolute;left:-3.69%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Enhanced
- Icons</a></b><b>.</b> Provide meaningful icons for most, if not all, of the </span><span
- style='position:absolute;top:35.25%;left:21.34%;width:70.22%;height:3.5%'>types
- in UML.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:40.25%;left:21.34%;
- width:76.21%;height:3.5%'><span class=B1B style='position:absolute;left:-3.93%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Resource
- Fragments</a></b><b>.</b> Provide support for segregation of UML2 </span><span
- style='position:absolute;top:43.75%;left:21.34%;width:70.22%;height:3.5%'>resources
- into ‘fragments’ with packages as root elements.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:48.75%;left:21.34%;
- width:82.39%;height:3.5%'><span class=B1B style='position:absolute;left:-3.63%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80318" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Tools</a></b><b>.</b>
- Engage partners and tool developers to contribute tools based </span><span
- style='position:absolute;top:52.5%;left:21.34%;width:81.46%;height:3.5%'>on
- UML2, e.g. a mechanism for import/exporting resources based on </span><span
- style='position:absolute;top:56.0%;left:21.34%;width:70.22%;height:3.5%'>Unisys
- XMI for UML 1.x.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review.html b/uml2/docs/presentations/UML2_2.0_Release_Review.html
deleted file mode 100644
index 3c5e346..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review.html
+++ /dev/null
@@ -1,81 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link rel=File-List href="UML2_2.0_Release_Review_files/filelist.xml">
-<link rel=Preview href="UML2_2.0_Release_Review_files/preview.wmf">
-<link rel=Edit-Time-Data href="UML2_2.0_Release_Review_files/editdata.mso">
-<title>UML2 2.0 Release Review</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>Kenn Hussey</o:Author>
-  <o:Template>eclipse temple</o:Template>
-  <o:LastAuthor>Kenn Hussey</o:LastAuthor>
-  <o:Revision>48</o:Revision>
-  <o:TotalTime>2065</o:TotalTime>
-  <o:Created>2004-11-09T19:58:12Z</o:Created>
-  <o:LastSaved>2006-06-09T07:25:15Z</o:LastSaved>
-  <o:Words>2101</o:Words>
-  <o:PresentationFormat>On-screen Show</o:PresentationFormat>
-  <o:Bytes>179784</o:Bytes>
-  <o:Paragraphs>213</o:Paragraphs>
-  <o:Slides>21</o:Slides>
-  <o:Notes>16</o:Notes>
-  <o:Version>10.6735</o:Version>
- </o:DocumentProperties>
- <o:OfficeDocumentSettings>
-  <o:ShowReviewingToolbar/>
-  <o:PixelsPerInch>80</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
-</xml><![endif]-->
-<link rel=Presentation-XML href="UML2_2.0_Release_Review_files/pres.xml">
-<meta name=Description content="6/9/2006: UML2 2.0 Release Review">
-<meta http-equiv=expires content=0>
-<![if !ppt]><script>
-<!--
-	var ver = 0, appVer = navigator.appVersion, msie = appVer.indexOf( "MSIE " )
-	var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0)
-	if( msie >= 0 )
-		ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) )
-	else
-		ver = parseInt( appVer )
-	browserSupported=0
-	if( !isMac && ver >= 4 && msie >= 0 ) {
-		browserSupported=1
-		window.location.replace( 'UML2_2.0_Release_Review_files/frame.htm'+document.location.hash )
-	}
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<script><!--
-
-if( browserSupported )
-	document.writeln('<div style="visibility:hidden">');
-
-//--></script><font face=Arial size=2><b>
-
-<p>This presentation contains content that your browser may not be able to show
-properly. This presentation was optimized for more recent versions of Microsoft
-Internet Explorer.</p>
-
-<p>If you would like to proceed anyway, click <a
-href="UML2_2.0_Release_Review_files/frame.htm">here</a>.</p>
-
-</b></font><script><!--
-
-if( browserSupported )
-	document.writeln('</div>');
-
-//--></script>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/buttons.gif b/uml2/docs/presentations/UML2_2.0_Release_Review_files/buttons.gif
deleted file mode 100644
index 1f2c73c..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/buttons.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/filelist.xml b/uml2/docs/presentations/UML2_2.0_Release_Review_files/filelist.xml
deleted file mode 100644
index b1eb67f..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/filelist.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:File HRef="master04.htm"/>
- <o:File HRef="master04.xml"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="master04_image001.jpg"/>
- <o:File HRef="master04_image002.jpg"/>
- <o:File HRef="master05.htm"/>
- <o:File HRef="master05.xml"/>
- <o:File HRef="master05_image003.jpg"/>
- <o:File HRef="master05_image004.jpg"/>
- <o:File HRef="pres.xml"/>
- <o:File HRef="slide0139.htm"/>
- <o:File HRef="master05_image005.jpg"/>
- <o:File HRef="master05_image006.jpg"/>
- <o:File HRef="slide0134.htm"/>
- <o:File HRef="master04_image007.jpg"/>
- <o:File HRef="master04_image008.jpg"/>
- <o:File HRef="slide0153.htm"/>
- <o:File HRef="slide0152.htm"/>
- <o:File HRef="slide0158.htm"/>
- <o:File HRef="slide0150.htm"/>
- <o:File HRef="slide0151.htm"/>
- <o:File HRef="slide0140.htm"/>
- <o:File HRef="slide0156.htm"/>
- <o:File HRef="slide0141.htm"/>
- <o:File HRef="slide0142.htm"/>
- <o:File HRef="slide0143.htm"/>
- <o:File HRef="slide0144.htm"/>
- <o:File HRef="slide0157.htm"/>
- <o:File HRef="slide0145.htm"/>
- <o:File HRef="slide0146.htm"/>
- <o:File HRef="slide0147.htm"/>
- <o:File HRef="slide0148.htm"/>
- <o:File HRef="slide0149.htm"/>
- <o:File HRef="slide0159.htm"/>
- <o:File HRef="slide0115.htm"/>
- <o:File HRef="master01.htm"/>
- <o:File HRef="master04_stylesheet.css"/>
- <o:File HRef="script.js"/>
- <o:MainFile HRef="../UML2_2.0_Release_Review.htm"/>
- <o:File HRef="fullscreen.htm"/>
- <o:File HRef="notes_flag.gif"/>
- <o:File HRef="buttons.gif"/>
- <o:File HRef="frame.htm"/>
- <o:File HRef="outline.htm"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/frame.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/frame.htm
deleted file mode 100644
index 16c4866..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/frame.htm
+++ /dev/null
@@ -1,42 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<title>UML2 2.0 Release Review</title>
-<![if !ppt]><script src=script.js></script><script>
-<!--
-var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
-function Load()
-{
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(str) PPTSld.location.replace(escape(str));
-}
-//-->
-</script>
-<![endif]>
-</head>
-
-<frameset rows="*,25" border=0>
- <frameset cols="25%,*" id=PPTHorizAdjust framespacing=2>
-  <frameset rows="100%,*">
-   <frame src=outline.htm title="Outline" name=PPTOtl>
-  </frameset>
-  <frameset rows="*,40" id=PPTVertAdjust framespacing=2 frameborder=1
-   onload="Load()">
-   <frame src=slide0139.htm title="Slide" name=PPTSld>
-   <frame src=slide0139.htm title="Notes" name=PPTNts>
-  </frameset>
- </frameset>
- <frameset cols="25%,*" framespacing=1>
-  <frame src=outline.htm title="Outline
-Navigation Bar" name=PPTOtlNav scrolling=no noresize>
-  <frame src=outline.htm title="Slide
-Navigation Bar" name=PPTNav scrolling=no noresize>
- </frameset>
-</frameset>
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/fullscreen.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/fullscreen.htm
deleted file mode 100644
index 670ed97..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/fullscreen.htm
+++ /dev/null
@@ -1,29 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<script src=script.js></script><script><!--
-var SCREEN_MODE   = "FullScreen";
-function Load() {
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(!str) str = "slide0139.htm";
-	PPTSld.location.replace(MHTMLPrefix+escape(str));
-}
-function Unload() {
-	if ( document.body.PPTSldFrameset != null )
-		document.body.PPTSldFrameset.frames[1].document.body.resume();
-}
-//-->
-</script>
-</head>
-
-<frameset rows="*" frameborder=0 onload="Load()" onunload="Unload()">
- <frame name=PPTSld>
-</frameset>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master01.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master01.htm
deleted file mode 100644
index 6ce42a0..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master01.htm
+++ /dev/null
@@ -1,539 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="58"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s59393" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s59394" style='position:absolute;left:0;
- top:0;width:234pt;height:36pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s59394" class=O><span style='font-size:67%;mso-field-code:
-meta14'>‹header›</span><span style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-<v:shapetype id="_x0000_s59395" style='position:absolute;left:305.875pt;top:0;
- width:234pt;height:36pt' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
- filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="dateTime" position="1"/></v:shapetype>
-
-<div v:shape="_x0000_s59395" class=O style='text-align:right'><span lang=EN-US
-style='font-size:67%;mso-field-code:meta0'>‹date/time›</span><span
-style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-<v:shapetype id="_x0000_m59396" style='position:absolute;left:90pt;top:54pt;
- width:5in;height:270pt;v-text-anchor:middle' coordsize="21600,21600" o:master=""
- o:spt="1" path="m,l,21600r21600,l21600,xe">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter"/>
- <v:shadow obscured="t"/>
- <v:path gradientshapeok="t" fillok="f" o:connecttype="rect"/>
- <o:lock v:ext="edit" rotation="t" text="t"/>
- <p:placeholder type="slideImage" position="2"/></v:shapetype><v:shapetype
- id="_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
- height:324pt' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
- filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="body" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_m59397">
-
-<div class=N>Click to edit Master text styles&#13;</div>
-
-<div class=N1>Second level&#13;</div>
-
-<div class=N2>Third level&#13;</div>
-
-<div class=N3>Fourth level&#13;</div>
-
-<div class=N4>Fifth level</div>
-
-</div>
-
-<v:shapetype id="_x0000_s59398" style='position:absolute;left:0;top:683.875pt;
- width:234pt;height:36pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="footer" position="4" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s59398" class=O><span style='font-size:67%;mso-field-code:
-meta15'>‹footer›</span><span style='font-size:67%;mso-special-format:lastCR'>&#13;</span></div>
-
-<v:shapetype id="_x0000_s59399" style='position:absolute;left:305.875pt;top:683.875pt;
- width:234pt;height:36pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:shadow color="gray [2]"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <p:placeholder type="slideNumber" position="5" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s59399" class=O style='text-align:right'><span
-style='font-size:67%;mso-field-code:meta16'>‹#›</span><span style='font-size:
-67%;mso-special-format:lastCR'>&#13;</span></div>
-
-<p:notes id="139" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="222"/>
- </o:shapelayout><v:shape id="_x0000_s227330" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s227331"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape></p:notes><p:notes id="153"
- layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="214"/>
- </o:shapelayout><v:shape id="_x0000_s219138" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s219139"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s219139" class=N>Summarize the major features of this
- release as well as any other features that have generated significant
- discussion amongst the community during the development cycle. Compare the
- features against the Roadmap to understand the project's conformance or
- divergence (note: compare against the Project Plan section as the forward
- looking sections apply to the next release). References to existing New &amp;
- Noteworthy documentation is a useful addition to this summary. &#13;<b><i>Reason:</i></b><i>
- </i>The community will use this release and the ecosystem will build products
- on top of this release, and both need to know what features were included or
- excluded.</div>
-</p:notes><p:notes id="150" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="210"/>
- </o:shapelayout><v:shape id="_x0000_s215042" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s215043"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s215043" class=N>Summarize the state of the non-code
- aspects of the release including: user documentation,
- localization/externalization, examples, tutorials, articles, and so on. Have
- the existing artifacts been updated? Are there new artifacts? Have the
- obsolete ones been retired or at least marked as pertaining only to older material?
- &#13;<b><i>Reason:</i></b> The non-code aspects are essential for the
- wide-spread adoption of the release.</div>
-</p:notes><p:notes id="140" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="189"/>
- </o:shapelayout><v:shape id="_x0000_s193538" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s193539"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s193539" class=N>Certify that the APIs in this release
- are <i>Eclipse Quality</i>. The project's Architecture Council representative
- will personally certify that the requirements for quality have been met and/or
- discuss any deficiences.&#13;<b><i>Reason:</i></b> Eclipse members build
- commercial tools on top of the extensible frameworks and thus the quality of
- the APIs is extremely important.</div>
-</p:notes><p:notes id="156" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="218"/>
- </o:shapelayout><v:shape id="_x0000_s223234" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s223235"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s223235" class=N>Summarize the usability of the tools.
- Usability in this sense is about using the tools to solve development
- problems, not the more academic sense of UI evaluation/testing.&#13;<b>Reason:</b>
- Without usable tools, the project will not attract the user community necessary
- to enable the ecosystem.</div>
-</p:notes><p:notes id="141" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="191"/>
- </o:shapelayout><v:shape id="_x0000_s195586" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s195587"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s195587" class=N>Summarize the architectural quality of
- the release. Discuss the <i>intrinsic nature </i><i>of being extensible</i>
- embodied by this project. Discuss issues such as unresolved overlap with other
- projects, unpaid &quot;merge debt&quot; from incorporating various components,
- and so on. &#13;<b><i>Reason: </i></b>Eclipse members build commercial tools
- on top of the extensible frameworks and thus the quality of the architecture
- is important.</div>
-</p:notes><p:notes id="142" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="193"/>
- </o:shapelayout><v:shape id="_x0000_s197634" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s197635"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s197635" class=N>Summarize the features (APIs and any
- significant user features) from previous releases that are being end-of-life'd
- in this release. End of life includes both deprecation and actual removal.
- &#13;<b><i>Reason:</i></b> The community builds products that rely on features
- and so they need to know when these features are changing.</div>
-</p:notes><p:notes id="143" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="195"/>
- </o:shapelayout><v:shape id="_x0000_s199682" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s199683"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s199683" class=N>Summarize the bugzilla situation. How
- many bug records (defects and enhancements) have been
- opened/closed/deferred/new, etc? How many P1, P2, ..., bug records are
- outstanding? &#13;<b><i>Reason:</i></b> Summaries of the bugzilla records
- offer a glimpse into the project productivity. They also offer an estimate of
- the outstanding risk. And the summary is used to alert the community to known
- issues.</div>
-</p:notes><p:notes id="144" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="197"/>
- </o:shapelayout><v:shape id="_x0000_s201730" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s201731"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s201731" class=N>Summarize the standards compliance of
- this release. If the features are based on defined, pending, or ad-hoc
- standards, what is the state of those standards and what is the state of the
- support for those standards in this release. &#13;<b><i>Reason: </i></b>Eclipse
- is about building frameworks and tools based on standards, so we need to make
- sure that we are conforming to the appropriate standards.</div>
-</p:notes><p:notes id="157" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="220"/>
- </o:shapelayout><v:shape id="_x0000_s225282" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s225283"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s225283" class=N>Summarize the user interface usability
- of the tools include section 508 compliance, language pack conformance (does
- the code support multiple languages), etc..&#13;<b>Reason:</b> The user
- community is larger than just mouse-wielding, English-speaking, computer
- jockeys. We need to support that larger community.</div>
-</p:notes><p:notes id="145" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="199"/>
- </o:shapelayout><v:shape id="_x0000_s203778" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s203779"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s203779" class=N>Discuss the initial schedule and any
- changes to the schedule over the course of the release, i.e., what the project
- team achieved. Discuss whether milestones were met or slipped. &#13;<b><i>Reason:</i></b>
- The community relies on consistent schedules from Eclipse so that projects and
- products can plan for the correct dependencies.</div>
-</p:notes><p:notes id="146" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="201"/>
- </o:shapelayout><v:shape id="_x0000_s205826" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s205827"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s205827" class=N>Summarize the project's conformance to
- the <p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/org/documents/Eclipse Development Process 2003_11_09 FINAL.pdf"/><a
- href="http://www.eclipse.org/org/documents/Eclipse%20Development%20Process%202003_11_09%20FINAL.pdf"
- target="_blank" onclick="window.event.cancelBubble=true;">Eclipse Development
- Process</a>. Has this release been developed using open, transparent, and
- inclusive processes?&nbsp; Has this release followed its charter
- principles?&nbsp; Consider the use of bugzilla, the mailing lists, the
- newsgroups, conference calls, committer elections/removals, etc. &#13;<b><i>Reason:</i></b>
- It is important for Eclipse projects to build a community around the project,
- not just deliver code for a project. This review item is about the process of
- building the community.</div>
-</p:notes><p:notes id="147" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="203"/>
- </o:shapelayout><v:shape id="_x0000_s207874" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s207875"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s207875" class=N>Summarize the project's development of
- its three communities. Consider the interactions on bugzilla, the mailing
- lists, the newsgroups, public conference calls, blogs, PR activities, code
- camps, conference tutorials, coordinating with other Eclipse projects and
- other open source projects (Apache, ObjectWeb, etc), ... &#13;<b><i>Reason:</i></b>
- It is important for Eclipse projects to build a community around the project,
- not just deliver code for a project. This review item is about the success of
- building a community.</div>
-</p:notes><p:notes id="148" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="205"/>
- </o:shapelayout><v:shape id="_x0000_s209922" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s209923"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s209923">
- <div class=N2 style='mso-margin-left-alt:720'></div>
- <div class=N3 style='mso-margin-left-alt:1008'></div>
- <div class=N4 style='mso-margin-left-alt:1296'></div>
- <div class=N style='mso-line-spacing:"80 30 0";mso-margin-left-alt:144'><span
- style='font-size:75%'>As per the </span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/org/documents/Eclipse IP Policy2003_12_03 Final.pdf"/><a
- href="http://www.eclipse.org/org/documents/Eclipse%20IP%20Policy2003_12_03%20Final.pdf"
- target="_blank" onclick="window.event.cancelBubble=true;">Eclipse IP Policy</a></span><span
- style='font-size:75%'>, these steps must be done:&#13;</span></div>
- <div class=N style='mso-line-spacing:"80 30 0";mso-margin-left-alt:144'><span
- style='font-size:75%'>The project leadership verifies that: &#13;</span></div>
- <div class=N1 style='mso-line-spacing:"80 30 0";mso-margin-left-alt:432'><span
- style='font-size:75%'>... that the about files and use licenses are in place
- as per the </span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/legal/guidetolegaldoc.php"/><a
- href="http://www.eclipse.org/legal/guidetolegaldoc.php" target="_blank"
- onclick="window.event.cancelBubble=true;">Guidelines to Legal </a></span><span
- style='font-size:75%'><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/legal/guidetolegaldoc.php"/><a
- href="http://www.eclipse.org/legal/guidetolegaldoc.php" target="_blank"
- onclick="window.event.cancelBubble=true;">Documentation</a></span><span
- style='font-size:75%'>. &#13;</span></div>
- <div class=N1 style='mso-line-spacing:"80 30 0";mso-margin-left-alt:432'><span
- style='font-size:75%'>... all contributions (code, documentation, images, etc)
- has been committed by individuals who </span><span style='font-size:75%'>are
- either Members of the Foundation, or have signed the appropriate Committer </span><span
- style='font-size:75%'>Agreement. In either case, these are individuals who
- have signed, and are abiding by, the </span><span style='font-size:75%'>Eclipse
- IP Policy. (see below) &#13;</span></div>
- <div class=N1 style='mso-line-spacing:"80 30 0";mso-margin-left-alt:432'><span
- style='font-size:75%'>... that all significant contributions have been
- reviewed by the Foundation's legal staff. (see </span><span style='font-size:
- 75%'>below) &#13;</span></div>
- <div class=N1 style='mso-line-spacing:"80 30 0";mso-margin-left-alt:432'><span
- style='font-size:75%'>... that all non-committer code contributions, including
- third-party libraries, have been </span><span style='font-size:75%'>documented
- in the release and reviewed by the Foundation's legal staff (see below) &#13;</span></div>
- <div class=N1 style='mso-line-spacing:"80 30 0";mso-margin-left-alt:432'><span
- style='font-size:75%'>... that all contribution questionnaires have been
- completed (see below) &#13;</span></div>
- <div class=N1 style='mso-line-spacing:"80 30 0";mso-margin-left-alt:432'><span
- style='font-size:75%'>... the &quot;provider&quot; field of each plug-in is
- set to &quot;eclipse.org&quot; &#13;</span></div>
- <div class=N1 style='mso-line-spacing:"80 30 0";mso-margin-left-alt:432'><span
- style='font-size:75%'>... the &quot;copyright&quot; field of each plug-in is
- set to the copyright owner. &#13;</span></div>
- <div class=N1 style='mso-line-spacing:"80 30 0";mso-margin-left-alt:432'><span
- style='font-size:75%'>... that any third-party logos or trademarks included in
- the distribution (icons, help file logos, etc) </span><span style='font-size:
- 75%'>have been licensed under the EPL. &#13;</span></div>
- <div class=N1 style='mso-line-spacing:"80 30 0";mso-margin-left-alt:432'><span
- style='font-size:75%'>... that any fonts or similar third-party images
- included in the distribution (e.g. in PDF or EPS </span><span
- style='font-size:75%'>files) have been licensed under the EPL. &#13;</span></div>
- <div class=N style='mso-line-spacing:"80 30 0";mso-margin-left-alt:144'><span
- style='font-size:75%'>The PMC provides a </span><span style='font-size:75%'><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/project-log.php"/><a
- href="http://www.eclipse.org/projects/dev_process/project-log.php"
- target="_blank" onclick="window.event.cancelBubble=true;">Project Log</a></span><span
- style='font-size:75%'> that enumerates: &#13;</span></div>
- <div class=N1 style='mso-line-spacing:"80 30 0";mso-margin-left-alt:432'><span
- style='font-size:75%'>every piece of third party software including
- information on the license &#13;</span></div>
- <div class=N1 style='mso-line-spacing:"80 30 0";mso-margin-left-alt:432'><span
- style='font-size:75%'>every major contribution &#13;</span></div>
- <div class=N1 style='mso-line-spacing:"80 30 0";mso-margin-left-alt:432'><span
- style='font-size:75%'>the name of every contributor including non-committer
- contributions via bug fixes with bug #'s &#13;</span></div>
- <div class=N1 style='mso-line-spacing:"80 30 0";mso-margin-left-alt:432'><span
- style='font-size:75%'>the About files which contain any non-standard terms
- (e.g., a reference to a license other than </span><span style='font-size:75%'>the
- EPL, etc) &#13;</span></div>
- <div class=N style='mso-line-spacing:"80 30 0";mso-margin-left-alt:144'><span
- style='font-size:75%'>The EMO will validate for (a) and (b) that contribution
- questionnaires have been properly submitted and </span><span style='font-size:
- 75%'>EMO approvals have been completed. &#13;</span></div>
- <div class=N style='mso-line-spacing:"80 30 0";mso-margin-left-alt:144'><span
- style='font-size:75%'>A frozen copy of the
- reviewed-and-approved-by-Eclipse-legal Project Log is part of the Release
- Review </span><span style='font-size:75%'>documentation. It can be included in
- the slides or as a separate document.</span></div>
- </div>
-</p:notes><p:notes id="149" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="207"/>
- </o:shapelayout><v:shape id="_x0000_s211970" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s211971"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s211971" class=N>If there is a Project Plan (full or even
- a draft) for the next release, the final issue to cover in the Release Review
- is the unveiling of the new plan.</div>
-</p:notes><p:notes id="159" layout="notes" slots="slideImage,body">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="224"/>
- </o:shapelayout><v:shape id="_x0000_s229378" type="#_x0000_m59396" style='position:absolute;
-  left:90pt;top:54pt;width:5in;height:270pt'>
-  <v:fill o:detectmouseclick="t"/>
-  <v:stroke o:forcedash="t"/>
-  <o:lock v:ext="edit" text="t"/>
-  <p:placeholder type="slideImage"/></v:shape><v:shape id="_x0000_s229379"
-  type="#_x0000_m59397" style='position:absolute;left:54pt;top:342pt;width:6in;
-  height:324pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s229379" class=N>The slides should include reference to
- the version of this document the Review is based on.&#13;<b><i>Reason:</i></b>
- The guidelines are continually evolving and a reader in the future will want
- to know what version of the guidelines were in place when the Release Review
- was completed.</div>
-</p:notes>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04.htm
deleted file mode 100644
index 443f5fe..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04.htm
+++ /dev/null
@@ -1,51 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m4098" class=T>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m4099">
-
-<div class=B>Click to edit Master text styles&#13;</div>
-
-<div class=B1>Second level&#13;</div>
-
-<div class=B2>Third level&#13;</div>
-
-<div class=B3>Fourth level&#13;</div>
-
-<div class=B4>Fifth level</div>
-
-</div>
-
-<div v:shape="_x0000_s4101" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span style='font-family:Arial;mso-hansi-font-family:Arial;font-size:67%'>©
-2006 by IBM; made available under the EPL v1.0 |<span
-style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
-
-<div v:shape="_x0000_s4103" class=O><span style='font-size:78%;mso-field-code:
-meta16'>‹#›</span><span style='font-size:78%;mso-special-format:lastCR'>&#13;</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04.xml b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04.xml
deleted file mode 100644
index f39bf24..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04.xml
+++ /dev/null
@@ -1,84 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="4"/>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s4097" o:bwmode="white" fillcolor="#322c72"/>
- <p:shaperange id="_x0000_m4098">
-  <v:shapetype id="_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-   width:649.25pt;height:39.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m4099">
-  <v:shapetype id="_x0000_m4099" style='position:absolute;left:87.625pt;top:139.875pt;
-   width:578.625pt;height:307.25pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="white [1]" stroked="f"
-   strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s4100">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s4100" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt'>
-   <v:imagedata src="master04_image001.jpg" o:title="dark4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s4101">
-  <v:rect id="_x0000_s4101" style='position:absolute;left:12.125pt;top:508.5pt;
-   width:407pt;height:21.625pt' o:bwmode="black" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s4102">
-  <v:shape id="_x0000_s4102" type="#_x0000_t75" style='position:absolute;
-   left:8in;top:0;width:2in;height:71.875pt'>
-   <v:imagedata src="master04_image002.jpg" o:title="eclipse_neg_logo_fc_sm"
-    croptop=".25" cropbottom=".25"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s4103">
-  <v:shapetype id="_x0000_s4103" style='position:absolute;left:552pt;top:502.5pt;
-   width:168pt;height:37.5pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_image001.jpg b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_image001.jpg
deleted file mode 100644
index 86c4fa8..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_image001.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_image002.jpg b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_image002.jpg
deleted file mode 100644
index 97b7e17..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_image002.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_image007.jpg b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_image007.jpg
deleted file mode 100644
index de7c2dd..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_image007.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_image008.jpg b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_image008.jpg
deleted file mode 100644
index 830b1bb..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_image008.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_stylesheet.css b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_stylesheet.css
deleted file mode 100644
index fc61cb3..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master04_stylesheet.css
+++ /dev/null
@@ -1,470 +0,0 @@
-body
-	{width:534px;
-	height:400px;}
-.TB
-	{mso-special-format:nobullet•;}
-.T
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#CCCCFF;
-	mso-color-index:2;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.BB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.B4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.NB
-	{mso-special-format:nobullet•;}
-.N
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N1B
-	{mso-special-format:nobullet•;}
-.N1
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N2B
-	{mso-special-format:nobullet•;}
-.N2
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N3B
-	{mso-special-format:nobullet•;}
-.N3
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N4N
-	{mso-special-format:nobullet•;}
-.N4
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.OB
-	{mso-special-format:nobullet•;}
-.O
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:85%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.O4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CBB
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:95%;
-	mso-line-spacing:"100 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 25 15";
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.CB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CTB
-	{mso-special-format:nobullet•;}
-.CT
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:white;
-	mso-color-index:1;
-	font-size:133%;
-	mso-line-spacing:"90 0 0";
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HBB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.HB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QBB
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB1B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:293;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB2B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:576;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB3B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:864;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB4B
-	{mso-special-format:bullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.QB4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:1152;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.TblB
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:76%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:144;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl1B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl1
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-line-spacing:"100 25 15";
-	mso-margin-left-alt:473;
-	mso-text-indent-alt:293;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl2B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl2
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl3B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl3
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl4B
-	{mso-special-format:nobullet§;
-	color:white;
-	mso-color-index:1;
-	font-family:Wingdings;}
-.Tbl4
-	{font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-size:66%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.defaultB
-	{mso-special-format:nobullet•;}
-.default
-	{text-align:left;
-	font-family:Arial;
-	mso-ascii-font-family:Arial;
-	mso-bidi-font-family:Arial;
-	font-weight:normal;
-	font-style:normal;
-	text-decoration:none;
-	text-shadow:none;
-	text-effect:none;
-	mso-fareast-hint:no;
-	layout-flow:horizontal;
-	color:black;
-	mso-color-index:0;
-	font-size:76%;
-	mso-text-raise:-25%;
-	mso-line-spacing:"100 50 0";
-	mso-margin-left-alt:0;
-	mso-text-indent-alt:0;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;
-	direction:ltr;
-	mso-word-wrap:1;
-	mso-vertical-align-special:baseline;
-	mso-ansi-language:EN-US;}
-a:link
-	{color:silver !important;}
-a:active
-	{color:#DFFF66 !important;}
-a:visited
-	{color:#D18213 !important;}
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05.htm
deleted file mode 100644
index 0808df1..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05.htm
+++ /dev/null
@@ -1,60 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m5122" class=CT>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m5123" class=CB>Click to edit Master subtitle style</div>
-
-<div v:shape="_x0000_s5124" class=O style='text-align:right;mso-char-wrap:0;
-mso-kinsoku-overflow:0'><span style='font-size:56%'>© 2002 IBM Corporation</span></div>
-
-<div v:shape="_x0000_s5125">
-
-<div class=O1 style='mso-margin-left-alt:468'></div>
-
-<div class=O2 style='mso-margin-left-alt:720'></div>
-
-<div class=O3 style='mso-margin-left-alt:1008'></div>
-
-<div class=O4 style='mso-margin-left-alt:1296'></div>
-
-<div class=O style='mso-line-spacing:"98 20 0";mso-margin-left-alt:216'><span
-style='mso-hansi-font-family:Arial;font-size:72%'>Confidential<span
-style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
-</span>Date<span style='mso-spacerun:yes'>  </span>|<span
-style='mso-spacerun:yes'>  </span>Other Information, if necessary</span></div>
-
-</div>
-
-<div v:shape="_x0000_s5127" class=O><span style='font-size:78%;mso-field-code:
-meta16'>‹#›</span><span style='font-size:78%;mso-special-format:lastCR'>&#13;</span></div>
-
-<div v:shape="_x0000_s5128" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
-0'><span style='font-family:Arial;mso-hansi-font-family:Arial;font-size:67%'>©
-2006 by IBM; made available under the EPL v1.0 |<span
-style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05.xml b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05.xml
deleted file mode 100644
index c6c8693..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05.xml
+++ /dev/null
@@ -1,98 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="5"/>
- </o:shapelayout><p:colorscheme
-  colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
- <v:background id="_x0000_s5121" o:bwmode="white" fillcolor="#322c72"/>
- <p:shaperange id="_x0000_m5122">
-  <v:shapetype id="_x0000_m5122" style='position:absolute;left:30.75pt;top:152.375pt;
-   width:626.375pt;height:115.75pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="centerTitle"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m5123">
-  <v:shapetype id="_x0000_m5123" style='position:absolute;left:153.5pt;top:279.375pt;
-   width:7in;height:109pt' coordsize="21600,21600" o:master="" o:spt="1"
-   o:bwmode="black" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="subTitle" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s5124">
-  <v:rect id="_x0000_s5124" style='position:absolute;left:576.75pt;top:511.75pt;
-   width:122pt;height:19.25pt' o:bwmode="white" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect><v:rect id="_x0000_s5125" style='position:absolute;left:159.375pt;
-   top:490.25pt;width:324pt;height:24.125pt;v-text-anchor:middle' o:bwmode="black"
-   filled="f" fillcolor="#7889fb [4]" stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox inset="1.44pt,1.44pt,1.44pt,1.44pt"/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s5126">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s5126" type="#_x0000_t75" style='position:absolute;
-   left:0;top:418.5pt;width:10in;height:121.5pt'>
-   <v:imagedata src="master05_image003.jpg" o:title="dark2"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s5127">
-  <v:shapetype id="_x0000_s5127" style='position:absolute;left:552pt;top:502.5pt;
-   width:168pt;height:37.5pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s5128">
-  <v:rect id="_x0000_s5128" style='position:absolute;left:3.5pt;top:495pt;
-   width:492.5pt;height:21.625pt' o:bwmode="black" filled="f" fillcolor="#7889fb [4]"
-   stroked="f" strokecolor="white [1]">
-   <v:fill color2="black [0]"/>
-   <v:shadow color="#ccf [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-  </v:rect></p:shaperange>
- <p:shaperange id="_x0000_s5129">
-  <v:shape id="_x0000_s5129" type="#_x0000_t75" style='position:absolute;
-   left:.25pt;top:0;width:248.375pt;height:108pt'>
-   <v:imagedata src="master05_image004.jpg" o:title="eclipse_neg_logo_fc_med"
-    croptop="19661f" cropbottom="19661f" cropleft="5243f"/>
-  </v:shape></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05_image003.jpg b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05_image003.jpg
deleted file mode 100644
index e8299a5..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05_image003.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05_image004.jpg b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05_image004.jpg
deleted file mode 100644
index 2696264..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05_image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05_image005.jpg b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05_image005.jpg
deleted file mode 100644
index d8632d9..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05_image005.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05_image006.jpg b/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05_image006.jpg
deleted file mode 100644
index 71b2342..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/master05_image006.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/notes_flag.gif b/uml2/docs/presentations/UML2_2.0_Release_Review_files/notes_flag.gif
deleted file mode 100644
index 608b349..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/notes_flag.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/outline.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/outline.htm
deleted file mode 100644
index c80f510..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/outline.htm
+++ /dev/null
@@ -1,841 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<script src=script.js></script><script><!--
-if( !(IsWin("PPTOtl")||IsWin("PPTNav")||IsWin("PPTOtlNav")) )
-{
-	obj = GetObj("Main-File")
-	parent.location.href=obj.href
-}
-var gOtlHiliteClr="#ffffff",gOtlNormalClr="#000000",gOtlActiveClr="#ffff00",gSelected="",gTxtState=false,gChildEntryTable=new Array()
-function Load()
-{
-	if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
-	if( g_supportsPPTHTML ) {
-		if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true; return }
-		if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); parent.gOtlNavLoaded=true; return }
-	}
-}
-function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
-function LoadNav( oId,UpdFunc )
-{
-	document.ondragstart=CancelDrag
-	document.onselectstart=CancelDrag
-	document.body.style.margin=2
-	UpdFunc()
-	obj=document.all.item(oId)
-	obj.style.display="block"
-	obj.style.visibility="visible"
-	document.bgColor="threedface"
-	if( parent.frames["PPTNts"] )
-		notesBtn.style.display = ""
-	if( parent.gHasNarration )
-		nb_voiceBorder.style.display = ""
-}
-function LoadOtl()
-{
-	var otl=GetObj("OtlObj")
-	otl.style.display="block"
-	otl.style.visibility="visible"
-	if( gOtlActiveClr == "" ) gOtlActiveClr=document.linkColor
-	if( gOtlHiliteClr == "" ) gOtlHiliteClr=document.fgColor
-	if( gOtlNormalClr == "" )
-		gOtlNormalClr=document.bgColor
-	else
-		document.bgColor=gOtlNormalClr
-	InitArray()
-	if( ObjExists( parent.gCurSld ) ) {
-		ChangeState( parent.gCurSld,gOtlNormalClr,gOtlHiliteClr )
-		gSelected=parent.gCurSld
-	}
-	else gSelected = -1
-	UpdOtl()
-}
-function UpdOtl(){ UpdIdx(parent.gCurSld) }
-function UpdIdx( idx )
-{
-	if( gSelected != idx ) {
-		if( gSelected > 0 )
-			ChangeState( gSelected,gOtlHiliteClr,gOtlNormalClr )
-		if( ObjExists( idx ) ) {
-			gSelected = idx
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-		}
-		else gSelected = -1
-	}
-	if( gTxtState != parent.gOtlTxtExp ) {
-		state = "block"
-		if( !parent.gOtlTxtExp )
-			state="none"
-		for(ii=0; ii<gChildEntryTable.length; ii++) {
-			obj=gChildEntryTable[ii];
-			if( obj.id == null ) continue;
-			if( obj.id.indexOf("PPTC") >= 0 )
-				obj.style.display=state;
-		}
-		gTxtState=parent.gOtlTxtExp
-		if( ObjExists( gSelected ) )
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-	}
-}
-function InitArray()
-{
-	count=0
-	var list=GetTags(document,"DIV");
-	for(ii=0; ii<list.length; ii++) {
-		obj=list.item(ii)
-		if( obj.id == null ) continue
-		if( obj.id.indexOf("PPTC") >= 0 )
-			gChildEntryTable[count++]=obj
-	}
-}
-function ChangeState( idx,fgColor,bgColor )
-{
-	obj=GetObj("PPTL"+idx)
-	obj.style.color=fgColor
-	obj=GetObj("PPTP"+idx)
-	obj.style.backgroundColor=bgColor
-}
-function ChgClr( o,clr ){ if( o.id != "PPTL"+gSelected ) o.style.color=clr }
-function Over( src ){ ChgClr(GetLink(src),gOtlActiveClr) }
-function Out( src ){ ChgClr(GetLink(src),gOtlHiliteClr) }
-function Follow(src){ window.location.href = GetLink(src).href; }
-function ObjExists( ii ) { obj=GetObj("PPTP"+ii ); return( obj ) }
-function GoToSld( href ){ UpdIdx(parent.GetSldNum(href)); parent.GoToSld( href ) }
-function CancelDrag(){ window.event.cancelBubble=true;window.event.returnValue=false}
-function GetLink(src)
-{
-   if(src.tagName=="A") return src
-   else return GetTags(src,"A").item(0)
-}
-function UpdNav()
-{
-	txt = "<center>";
-	if( parent.GetHrefObj( parent.gCurSld ).mOrigVis == 1 )
-		txt += "Slide " + parent.GetCurSldNum() + " of " + parent.GetNumSlds()
-	else
-		txt += "Hidden Slide"
-	txt += "</center>";
-	nav_text.innerHTML = txt;
-	if( !parent.HasPrevSld() )
-		gBtnArr["nb_prev"].Enabled(0)
-	else
-		gBtnArr["nb_prev"].Enabled(1)
-	if( !parent.HasNextSld() )
-		gBtnArr["nb_next"].Enabled(0)
-	else
-		gBtnArr["nb_next"].Enabled(1)
-	gBtnArr["nb_nts"].SetEnabled()
-	gBtnArr["nb_nts"].SetFlag( parent.gHasNts )
-	gBtnArr["nb_sldshw"].Enabled(1)
-	gBtnArr["nb_voice"].Enabled(1)
-}
-function UpdOtlNav()
-{
-	gBtnArr["nb_otl"].SetEnabled();
-	if( parent.gOtlOpen )
-		gBtnArr["nb_otlTxt"].Enabled( true );
-	else
-		document.all.item("nb_otlTxtBorder").style.visibility = "hidden";
-}
-
-//--></script>
-<style>
-<!--.PTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;
-	padding-left:2px;
-	font-weight:bold;}
-.CTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;}
-a
-	{color:white;
-	text-decoration:none;}
-ul
-	{color:white;
-	margin-bottom:0px;
-	margin-left:20px;}
-.sldNum
-	{margin-top:5px;
-	color:white;}
-.button
-	{position:absolute;
-	width:32px;
-	height:20px;
-	border-style:solid;
-	border-width:1px;
-	border-color:threedface;}
--->
-</style>
-</head>
-
-<body onload="Load()" style='margin:2px'>
-
-<div id=NavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-<table id="notesBtn" style='position:absolute;display:none;width:70px' align=left cellpadding=0
- cellspacing=0>
- <td nowrap>
- <div id="nb_ntsElem" align=center style='position:relative;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt'><img src="notes_flag.gif"
- border=0 id="notes_flag" style='display:none'><span
-style='mso-spacerun:yes'>  </span>Notes</div>
- <div title="Show/Hide Notes" id="nb_nts" style='position:absolute;top:0%;
- left:0%;width:100%;height:100%'></div>
- </td>
-</table>
-
-<table style='position:relative;width:70px' align=right cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_sldshwText" title="Full
-Screen Slide Show" align=center style='position:relative;margin-left:20px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt;cursor:default'>Slide
-Show</div>
- <div id="nb_sldshwBorder" title="Full Screen Slide Show" style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_sldshw" style='position:relative;left:-254px'></div>
- </div>
- </td>
- <td>
- <div id="nb_voiceBorder" style='display:none;position:absolute;top:0;left:-40px;
- width:20px;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_voice" title="Pause/Play Narration" style='position:
- relative;left:-290px'></div>
- </div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_prevBorder" class=button style='left:-30px'>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_prev" title="Previous Slide" style='position:relative;
- left:0px'></div>
- </div>
- <span id="nav_text" style='position:relative;top:3px;width:100px;font-family:
- Arial;color:buttontext;font-size:9pt'></span>
- <div id="nb_nextBorder" class=button>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_next" title="Next Slide" style='position:relative;
- left:-90px'></div>
- </div>
- </td>
-</table>
-</div>
-
-<div id=OtlNavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-
-<table style='position:relative;width:70px' align=left cellpadding=0 cellspacing=0>
- <td nowrap><div title="Show/Hide
-Outline" id="nb_otl"
- style='position:absolute;top:0%;left:0%;width:100%;height:100%;cursor:default'>
- <div id="nb_otlElem" align=center style='position:relative;padding:3px;font-family:Arial;
- color:buttontext;font-size:9pt'>Outline</div></div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td>
- <div style='position:absolute;left:-18px;width:24px;height:20px;border-style:
- solid;border-width:1px;border-color:threedface' id="nb_otlTxtBorder">
- <div style='position:absolute;clip:rect(0px, 22px, 18px, 0px)'><img
- src=buttons.gif id="nb_otlTxt" title="Expand/Collapse Outline"
- style='position:relative;left:-157px'></div>
- </div>
- </td>
-</table>
-
-</div>
-
-<div id=OtlObj style='display:none;visibility:hidden;'>
-
-
-<table width="100%" style='font-family:Arial;font-size:9pt'>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>1</font></div>
-  </td>
-  <td width="100%">
-  <div id=PPTP1 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0139.htm');" id=PPTL1>UML2 2.0 Release Review</a></font></div>
-  <div id=PPTC1 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Kenn Hussey</li>
-   <li>UML2 Project Lead</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>2</font></div>
-  </td>
-  <td>
-  <div id=PPTP2 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0134.htm');" id=PPTL2>Agenda</a></font></div>
-  <div id=PPTC2 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Features</li>
-   <li>Non-Code Aspects</li>
-   <li>APIs</li>
-   <li>Tool Usability</li>
-   <li>Architectural Issues</li>
-   <li>End-of-Life</li>
-   <li>Bugzilla</li>
-   <li>Standards</li>
-   <li>UI Usability</li>
-   <li>Schedule</li>
-   <li>Process</li>
-   <li>Communities</li>
-   <li>IP Issues</li>
-   <li>Project Plan</li>
-   <li>Release Review Version</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>3</font></div>
-  </td>
-  <td>
-  <div id=PPTP3 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0153.htm');" id=PPTL3>Features</a></font></div>
-  <div id=PPTC3 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>2.0 Plan available at
-       http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html</li>
-   <br>
-   <br>
-   <li>Major features</li>
-   <ul>
-    <li>UML™ 2.1 Conformance. Implement the revised package merge algorithm and
-        regenerate the code using a source model based on the finalized UML™
-        2.1 Superstructure specification (compliance level L3). Update UML2
-        resources (libraries, metamodels, profiles), examples, and EMF
-        generator extensions as necessary. Enhance the generator extensions
-        (developed in UML2 1.1) to facilitate code generation for an arbitrary
-        compliance level.</li>
-    <li>UML™ 2.1 Interchange. Provide support for importing/exporting resources
-        based on the official OMG XMI representation of UML™ 2.1.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>4</font></div>
-  </td>
-  <td>
-  <div id=PPTP4 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0152.htm');" id=PPTL4>Features (Continued)</a></font></div>
-  <div id=PPTC4 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Major features (continued)</li>
-   <ul>
-    <li>UML2 2.0 Migration. Provide a mechanism to migrate resources based on
-        the UML2 1.x schema to 2.0.</li>
-    <li>Reduced Memory Footprint / Improved Performance. Reduce the memory
-        footprint of UML models. Improve performance of key operations such as
-        model load, save, traversal, etc..</li>
-    <li>Improved Convenience Methods. Provide improved factory and convenience
-        methods. For example, factory methods that accept a name as an argument
-        (for named element creation), and retrieval methods that accept
-        arguments indicating whether name comparisons should be case-sensitive
-        and whether elements should be created on demand. Ensure that metadata
-        exists for custom operations. Also provide query methods for retrieving
-        the reverse of one-way references.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>5</font></div>
-  </td>
-  <td>
-  <div id=PPTP5 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0158.htm');" id=PPTL5>Features (continued)</a></font></div>
-  <div id=PPTC5 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Major features (continued)</li>
-   <ul>
-    <li>Resource Fragments. Provide support for segregation of UML2 resources
-        into 'fragments' (e.g. *.fragment.uml2) with packages as root elements.</li>
-    <li>Derived Features. Make derived features changeable (where appropriate)
-        and improve support for unions, subsets, and supersets (where
-        possible).</li>
-    <li>UML Ecore Importer / Exporter. Provide an exporter that takes advantage
-        of the new exporter framework in EMF to convert Ecore models to UML
-        (*.uml) models, in addition to an importer that converts UML models to
-        Ecore.</li>
-   </ul>
-   <br>
-   <li>2.0 release notes available at
-       http://www.eclipse.org/modeling/mdt/news/release-notes.php?project=uml2&amp;=2.0.0</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>6</font></div>
-  </td>
-  <td>
-  <div id=PPTP6 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0150.htm');" id=PPTL6>Non-Code Aspects</a></font></div>
-  <div id=PPTC6 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Documentation available at http://www.eclipse.org/modeling/mdt/docs.php?project=uml2</li>
-   <ul>
-    <li>FAQ</li>
-    <li>Javadoc (for 1.0, 1.0.1, 1.0.2, 1.0.3, 1.1, 2.0)</li>
-    <li>UML2 2.0 Plan and Migration Guide</li>
-    <li>Link to OMG’s UML™ Resource Page</li>
-    <li>Link to UML2 Project Dashboard</li>
-   </ul>
-   <br>
-   <li>Localization/externalization</li>
-   <ul>
-    <li>NL packs for 1. x available at
-        http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2</li>
-    <li>NL packs for 2.0 to be made available</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>7</font></div>
-  </td>
-  <td>
-  <div id=PPTP7 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0151.htm');" id=PPTL7>Non-Code Aspects
-  (Continued)</a></font></div>
-  <div id=PPTC7 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Examples available as part of org.eclipse.uml2.examples feature</li>
-   <ul>
-    <li>Actions to convert models to metamodels, model libraries</li>
-    <li>Actions to generate metamodels, libraries, profiles</li>
-    <li>Actions to externalize labels, keywords</li>
-    <li>Actions to convert between Ecore and UML formats</li>
-   </ul>
-   <br>
-   <li>Articles</li>
-   <ul>
-    <li>Getting Started with UML2 (needs to be updated)</li>
-    <li>Introduction to UML2 Profiles (needs to be updated)</li>
-    <li>Others (TBD) – see bug 77413</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>8</font></div>
-  </td>
-  <td>
-  <div id=PPTP8 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0140.htm');" id=PPTL8>APIs</a></font></div>
-  <div id=PPTC8 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The APIs in this release are Eclipse Quality</li>
-   <br>
-   <br>
-   <li>Internal APIs marked as such</li>
-   <br>
-   <br>
-   <li>More convenience operations</li>
-   <br>
-   <br>
-   <li>Improved factory methods</li>
-   <br>
-   <br>
-   <li>New utilities available</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>9</font></div>
-  </td>
-  <td>
-  <div id=PPTP9 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0156.htm');" id=PPTL9>Tool Usability</a></font></div>
-  <div id=PPTC9 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The usability of the UML editor has been improved as follows:</li>
-   <ul>
-    <li>new icons introduced to aid in recognition of concepts</li>
-    <li>labels enhanced to include keywords</li>
-    <li>support added for display of stereotype icons</li>
-    <li>display of stereotype applications refactored under base element</li>
-    <li>properties organized into categories in Properties view</li>
-    <br>
-    <br>
-   </ul>
-   <li>Import/export wizards were added/updated to round-trip models between
-       Ecore and UML</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>10</font></div>
-  </td>
-  <td>
-  <div id=PPTP10 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0141.htm');" id=PPTL10>Architectural Issues</a></font></div>
-  <div id=PPTC10 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Improved architectural quality</li>
-   <ul>
-    <li>Less redundancy</li>
-    <li>Smaller, cleaner metadata</li>
-    <li>More efficient support for derived unions</li>
-   </ul>
-   <br>
-   <li>Generic features contributed to EMF</li>
-   <ul>
-    <li>Virtual feature delegation</li>
-    <li>Package literals</li>
-    <li>FlatEObjectImpl</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>11</font></div>
-  </td>
-  <td>
-  <div id=PPTP11 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0142.htm');" id=PPTL11>End-of-Life</a></font></div>
-  <div id=PPTC11 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>User features</li>
-   <ul>
-    <li>UML2 editor (*.uml2) replaced with UML editor (*.uml)</li>
-    <li>Ecore2XML example retired</li>
-   </ul>
-   <br>
-   <li>APIs</li>
-   <ul>
-    <li>Legacy 1.x API (org.eclipse.uml2.*) replaced with 2.0 API
-        (org.eclipse.uml2.uml.*)</li>
-    <li>Factory methods replaced with overloads offering more options</li>
-    <li>Some profile/stereotype methods renamed</li>
-    <li>Subset/superset lists deprecated (merged into combined implementations)</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>12</font></div>
-  </td>
-  <td>
-  <div id=PPTP12 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0143.htm');" id=PPTL12>Bugzilla</a></font></div>
-  <div id=PPTC12 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>158 bugs opened</li>
-   <br>
-   <br>
-   <li>151 bugs resolved/closed</li>
-   <br>
-   <br>
-   <li>6 bugs deferred</li>
-   <br>
-   <br>
-   <li>12 new bugs</li>
-   <br>
-   <br>
-   <li>1 P1 bug outstanding (87260) – plan to resolve by GA</li>
-   <br>
-   <br>
-   <li>1 P2 bug outstanding (77413) – plan to resolve by GA</li>
-   <br>
-   <br>
-   <li>2 P3 bugs outstanding (143357, 85177) – plan to resolve by GA</li>
-   <br>
-   <br>
-   <li>2 P4 bugs outstanding (80308, 80315)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>13</font></div>
-  </td>
-  <td>
-  <div id=PPTP13 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0144.htm');" id=PPTL13>Standards</a></font></div>
-  <div id=PPTC13 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>2.0 release based on convenience document ptc-06-04-02 of UML 2.1
-       specification</li>
-   <br>
-   <br>
-   <li>OMG to finalize specification soon</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>14</font></div>
-  </td>
-  <td>
-  <div id=PPTP14 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0157.htm');" id=PPTL14>UI Usability</a></font></div>
-  <div id=PPTC14 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>UML2 tools use Eclipse platform APIs to provide accessible UI</li>
-   <ul>
-    <li>No outstanding accessibility bugs</li>
-   </ul>
-   <br>
-   <li>All text is externalized, and has been translated into 14 languages,
-       including BiDi languages</li>
-   <ul>
-    <li>Brazilian Portuguese, French, German, Spanish, Italian, Japanese,
-        Korean, Simplified Chinese, Traditional Chinese, Russian, Hungarian,
-        Czech, Polish, Arabic</li>
-    <li>Translation verification testing in progress, to complete mid-June</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>15</font></div>
-  </td>
-  <td>
-  <div id=PPTP15 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0145.htm');" id=PPTL15>Schedule</a></font></div>
-  <div id=PPTC15 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>M1 met on November 10</li>
-   <br>
-   <br>
-   <li>M2 slipped from December 22 to January 5</li>
-   <br>
-   <br>
-   <li>M3 slipped from<span style='mso-spacerun:yes'>  </span>to February 23 to
-       March 2</li>
-   <br>
-   <br>
-   <li>M4 slipped from April 6 to April 13</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>16</font></div>
-  </td>
-  <td>
-  <div id=PPTP16 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0146.htm');" id=PPTL16>Process</a></font></div>
-  <div id=PPTC16 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>This release has been developed using open, transparent, and inclusive
-       processes</li>
-   <br>
-   <br>
-   <li>This release has followed its charter principles</li>
-   <br>
-   <br>
-   <li>The UML2 project makes appropriate use of Bugzilla, mailing lists (mdt-uml2.dev@eclipse.org),
-       newsgroups (eclipse.tools.uml2), and conference calls</li>
-   <br>
-   <br>
-   <li>There were no committer elections/removals during the 2.0 release cycle,
-       although contributions were made by a new contributor</li>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>17</font></div>
-  </td>
-  <td>
-  <div id=PPTP17 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0147.htm');" id=PPTL17>Communities</a></font></div>
-  <div id=PPTC17 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Increased interaction in Bugzilla and on newsgroup</li>
-   <br>
-   <br>
-   <li>UML2 represented at EclipseCon 2006 (short talk, code camp)</li>
-   <br>
-   <br>
-   <li>Continued coordination with EMF tools project</li>
-   <br>
-   <br>
-   <li>Orientation with new Modeling top level project</li>
-   <br>
-   <br>
-   <li>UML2 is among the most active projects at Eclipse</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>18</font></div>
-  </td>
-  <td>
-  <div id=PPTP18 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0148.htm');" id=PPTL18>IP Issues</a></font></div>
-  <div id=PPTC18 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>The UML2 project leadership verifies that:</li>
-   <ul>
-    <li>the about files and use licenses are in place as per the Guidelines to
-        Legal Documentation</li>
-    <li>all contributions (code, documentation, images, etc) have been
-        committed by individuals who are either Members of the Foundation, or
-        have signed the appropriate Committer Agreement; in either case, these
-        are individuals who have signed, and are abiding by, the Eclipse IP
-        Policy</li>
-    <li>all significant contributions have been reviewed by the Foundation's
-        legal staff</li>
-    <li>that all non-committer code contributions, including third-party
-        libraries, have been documented in the release and reviewed by the
-        Foundation's legal staff</li>
-    <li>all contribution questionnaires have been completed</li>
-    <li>the &quot;provider&quot; field of each plug-in is set to
-        &quot;eclipse.org“</li>
-    <li>the &quot;copyright&quot; field of each plug-in is set to the copyright
-        owner</li>
-    <li>that any third-party logos or trademarks included in the distribution
-        (icons, help file logos, etc) have been licensed under the EPL</li>
-    <li>that any fonts or similar third-party images included in the
-        distribution (e.g. in PDF or EPS files) have been licensed under the
-        EPL</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>19</font></div>
-  </td>
-  <td>
-  <div id=PPTP19 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0149.htm');" id=PPTL19>Project Plan</a></font></div>
-  <div id=PPTC19 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Draft 2.1 plan not yet available</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>20</font></div>
-  </td>
-  <td>
-  <div id=PPTP20 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0159.htm');" id=PPTL20>Release Review Version</a></font></div>
-  <div id=PPTC20 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>This presentation is based on Release Review version 032, dated January
-       15, 2006</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>21</font></div>
-  </td>
-  <td>
-  <div id=PPTP21 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0115.htm');" id=PPTL21>Thank you!</a></font></div>
-  <div id=PPTC21 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Q&amp;A</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
-</table>
-
-
-
-</div>
-
-<div style='display:none'><a href=master04.htm></a><a href=master04.xml></a><a
-href=preview.wmf></a><a href="master04_image001.jpg"></a><a
-href="master04_image002.jpg"></a><a href=master05.htm></a><a href=master05.xml></a><a
-href="master05_image003.jpg"></a><a href="master05_image004.jpg"></a><a
-href=pres.xml></a><a href=slide0139.htm></a><a href="master05_image005.jpg"></a><a
-href="master05_image006.jpg"></a><a href=slide0134.htm></a><a
-href="master04_image007.jpg"></a><a href="master04_image008.jpg"></a><a
-href=slide0153.htm></a><a href=slide0152.htm></a><a href=slide0158.htm></a><a
-href=slide0150.htm></a><a href=slide0151.htm></a><a href=slide0140.htm></a><a
-href=slide0156.htm></a><a href=slide0141.htm></a><a href=slide0142.htm></a><a
-href=slide0143.htm></a><a href=slide0144.htm></a><a href=slide0157.htm></a><a
-href=slide0145.htm></a><a href=slide0146.htm></a><a href=slide0147.htm></a><a
-href=slide0148.htm></a><a href=slide0149.htm></a><a href=slide0159.htm></a><a
-href=slide0115.htm></a><a href=master01.htm></a><a
-href="master04_stylesheet.css"></a><a href=script.js></a><a
-href="../UML2_2.0_Release_Review.htm"></a><a href=fullscreen.htm></a><a
-href="notes_flag.gif"></a><a href=buttons.gif></a><a href=frame.htm></a><a
-href=outline.htm></a></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/pres.xml b/uml2/docs/presentations/UML2_2.0_Release_Review_files/pres.xml
deleted file mode 100644
index 47950b8..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/pres.xml
+++ /dev/null
@@ -1,84 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <p:presentation sizeof="screen" gridspacingx="49152" gridspacingy="49152">
-  <p:master id="4" slidesn="1C24AB8,8B769EC0" type="main" href="master04.htm"
-   xmlhref="master04.xml" template="eclipse temple" preserved="t"
-   layout="title_body" slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-    <p:colorscheme
-     colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"/>
-   </p:schemes>
-  </p:master>
-  <p:master id="5" slidesn="1C24D0E,1F75CD10" type="title" href="master05.htm"
-   xmlhref="master05.xml" preserved="t" layout="title_subtitle"
-   slots="centerTitle,subTitle,dateTime,footer,slideNumber"/>
-  <p:master id="1" slidesn="1C48145,6A7A8F40" type="notes" href="master01.htm"
-   layout="notes" slots="header,dateTime,slideImage,body,footer,slideNumber"/>
-  <p:slide id="139" slidesn="1C56AC0,44D4D0B0" href="slide0139.htm"
-   masterhref="master05.htm" layout="title_subtitle"
-   slots="centerTitle,subTitle"/>
-  <p:slide id="134" slidesn="1C4C1B0,8BC47750" href="slide0134.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="153" slidesn="1C57023,3C2681D0" href="slide0153.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="152" slidesn="1C57022,8C2103A0" href="slide0152.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="158" slidesn="1C67F68,374E6A10" href="slide0158.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="150" slidesn="1C5701F,45A9A510" href="slide0150.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="151" slidesn="1C57020,A06F4BC0" href="slide0151.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="140" slidesn="1C56AC1,3B3EC910" href="slide0140.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="156" slidesn="1C67F3A,56B9DD90" href="slide0156.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="141" slidesn="1C56AC1,4EB14540" href="slide0141.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="142" slidesn="1C56AC1,61325C90" href="slide0142.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="143" slidesn="1C56AC2,16246210" href="slide0143.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="144" slidesn="1C56AC2,28E73D50" href="slide0144.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="157" slidesn="1C67F3F,3A3F9330" href="slide0157.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="145" slidesn="1C56AC2,34AE1230" href="slide0145.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="146" slidesn="1C56AC2,4BA60BA0" href="slide0146.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="147" slidesn="1C56AC2,5BF7E6E0" href="slide0147.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="148" slidesn="1C56AC2,6A97A550" href="slide0148.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="149" slidesn="1C56AC2,A333FC60" href="slide0149.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="159" slidesn="1C68350,3D9C8CD0" href="slide0159.htm"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="115" slidesn="1C4991E,88CC3750" href="slide0115.htm"
-   masterhref="master05.htm" layout="title_subtitle"
-   slots="centerTitle,subTitle"/>
-  <p:viewstate type="slideView" restoredleft="153" restoredtop="929"
-   manualadjustleft="t" manualadjusttop="t" hideoutlineicons="t"/>
-  <p:font name="Arial" charset="0" type="4"/>
-  <p:font name="Wingdings" charset="2" type="6" family="2"/>
-  <p:font name="Times" charset="0" type="10" family="18"/>
-  <p:headersfooters slidenumber="t" formatid="0" noheader="t" nodate="t"/>
-  <p:headersfooters notes="t" slidenumber="t"/>
-  <p:pptdocumentsettings framecolors="WhiteTextOnBlack" hideslideanimation="t"
-   browsersupport="v4"/>
- </p:presentation>
- <o:shapedefaults v:ext="edit" spidmax="229380" fillcolor="silver"
-  strokecolor="none [0]">
-  <v:fill color="silver"/>
-  <v:stroke color="none [0]"/>
-  <v:imagedata embosscolor="shadow add(51)"/>
-  <v:shadow on="t" type="emboss" color="lineOrFill darken(153)" color2="shadow add(102)"
-   offset="1pt,1pt"/>
-  <v:textbox inset="2.5mm,1.3mm,2.5mm,1.3mm"/>
-  <o:colormru v:ext="edit" colors="#ddd,#b2b2b2"/>
-  <o:colormenu v:ext="edit" fillcolor="none [2]" shadowcolor="none"
-   extrusioncolor="none"/>
- </o:shapedefaults></xml>
\ No newline at end of file
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/preview.wmf b/uml2/docs/presentations/UML2_2.0_Release_Review_files/preview.wmf
deleted file mode 100644
index 781b2f1..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/script.js b/uml2/docs/presentations/UML2_2.0_Release_Review_files/script.js
deleted file mode 100644
index dbd403e..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/script.js
+++ /dev/null
@@ -1,833 +0,0 @@
-function LoadSld()

-{

-	var sld=GetObj("SlideObj")

-	if( !g_supportsPPTHTML ) {

-		sld.style.visibility="visible"

-		return

-	}

-	if( MakeNotesVis() ) return

-	runAnimations = _InitAnimations();

-	if( IsWin("PPTSld") )

-		parent.SldUpdated(GetSldId())

-	g_origSz=parseInt(SlideObj.style.fontSize)

-	g_origH=sld.style.posHeight

-	g_origW=sld.style.posWidth

-	g_scaleHyperlinks=(document.all.tags("AREA").length>0)

-	if( g_scaleHyperlinks )

-		InitHLinkArray()

-	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )

-		document.body.scroll="no"

-	_RSW()

-	if( IsWin("PPTSld") && parent.IsFullScrMode() )

-		FullScrInit();

-	

-	MakeSldVis();

-	ChkAutoAdv()

-

-	if( runAnimations )

-	{

-		if( document.all("NSPlay") )

-			document.all("NSPlay").autoStart = false;

-		if( sld.filters && sld.filters.revealtrans )

-			setTimeout( "document.body.start()", sld.filters.revealtrans.duration * 1000 );

-		else

-			document.body.start();

-	}

-}

-function MakeSldVis()

-{

-	var fTrans=g_showAnimation && SldHasTrans()

-	if( fTrans )

-	{

-		if( g_bgSound ) {

-			idx=g_bgSound.indexOf(",");

-			pptSound.src=g_bgSound.substr( 0, idx );

-			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));

-		}

-		SlideObj.filters.revealtrans.Apply()

-    }

-	SlideObj.style.visibility="visible"

-	if( fTrans )

-		SlideObj.filters.revealtrans.Play()

-}

-function MakeNotesVis()

-{

-	if( !IsNts() ) return false

-	SlideObj.style.display="none"

-	nObj = document.all.item("NotesObj")

-	parent.SetHasNts(0)

-	if( nObj ) {

-		nObj.style.display=""

-		parent.SetHasNts(1)

-	}

-	return 1

-}

-function ChkAutoAdv()

-{

-	if(SldHasTrans())

-		SlideObj.onfilterchange=AutoAdv

-	else

-		AutoAdv()

-}

-function AutoAdv()

-{

-	if(!IsWin("PPTSld") || !gUseSldTimings )return

-	var sld=GetCurSld()

-	if( (sld.mAdvDelay>0) && !parent.IsFramesMode() )

-		setTimeout("parent.GoToNextSld()",sld.mAdvDelay)

-}

-function GetObj(id)

-{

-	if(g_supportsPPTHTML) return document.all(id);

-	else return document.getElementById(id);

-}

-function SldHasTrans() { return SlideObj.style.getAttribute("filter")!="" }

-function GetSldId() { return sId=location.href.substring(location.href.lastIndexOf('/')+1) }

-function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }

-function IsWin( name ) { return window.name == name }

-function IsNts() { return IsWin("PPTNts") }

-function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }

-function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }

-function SupportsPPTHTML()

-{

-	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0

-	if( msie >= 0 )

-		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )

-	else

-		ver=parseInt(appVer)

-	return( ver >= 4 && msie >= 0 )

-}

-function _RSW()

-{

-	if( !g_supportsPPTHTML || IsNts() ||

-	  ( !g_scaleInFrame && (!IsWin("PPTSld") || !parent.IsFullScrMode()) ) )

-		return

-        var padding=0;

-        if( IsWin("PPTSld") && parent.IsFramesMode() ) padding=6

-	cltWidth=document.body.clientWidth-padding

-	cltHeight=document.body.clientHeight-padding

-	factor=(1.0*cltWidth)/g_origW

-	if( cltHeight < g_origH*factor )

-		factor=(1.0*cltHeight)/g_origH

-	newSize = g_origSz * factor

-	if( newSize < 1 ) newSize=1

-	s=SlideObj.style

-	s.fontSize=newSize+"px"

-	s.posWidth=g_origW*factor

-	s.posHeight=g_origH*factor

-	s.posLeft=(cltWidth-s.posWidth+padding)/2

-	s.posTop=(cltHeight-s.posHeight+padding)/2

-	if( g_scaleHyperlinks )

-		ScaleHyperlinks( factor )

-}

-function _InitAnimations()

-{

-	animRuntimeInstalled = ''+document.body.localTime != 'undefined';

-	isFullScreen = (window.name == "PPTSld") && !parent.IsFramesMode();

-	g_animUseRuntime = g_showAnimation && animRuntimeInstalled && !(isFullScreen && parent.IsSldVisited());

-	if( g_animUseRuntime ) {

-		collSeq = document.all.tags("seq");

-		if( collSeq != null ) {

-			for(ii=0;ii<collSeq.length;ii++) {

-				if( collSeq[ii].getAttribute( "p:nodeType" ) == "mainSeq" ) {

-					g_animMainSequence = collSeq[ii];

-					break;

-				}

-			}

-		}

-		if( g_animItemsToHide ) {

-			for(jj = 0; jj < g_animItemsToHide.length; jj++) {

-				if( hideObj = GetObj(g_animItemsToHide[jj]) )

-					hideObj.runtimeStyle.visibility="hidden";

-			}

-		}

-		if( g_animInteractiveItems ){

-			for(jj = 0; jj < g_animInteractiveItems.length; jj++) {

-				if( triggerObj = GetObj(g_animInteractiveItems[jj]) )

-					triggerObj.runtimeStyle.cursor="hand";

-			}

-		}

-		if( gUseSldTimings && ''+g_animSlideTime != 'undefined' ) {

-			adjustedTime = document.body.calculateAutoAdvanceTimes( g_animSlideTime, g_animEffectTimings );

-			if( IsWin("PPTSld") && adjustedTime != g_animSlideTime ) {

-			   var sld = GetCurSld();

-			   sld.mAdvDelay = adjustedTime * 1000;

-			}

-		}

-	}

-	return g_animUseRuntime;

-}

-gSldJump = 0, gSldJumpTrack = 0, gSldJumpIdx = "";

-function _KPH()

-{

-	if( IsNts() ) return;

-	if( !parent.IsFramesMode() && event.keyCode == 27 && !HideMenu() )

-		parent.window.close( self );

-	else if( event.keyCode == 32 ) {

-		if( window.name == "PPTSld" )

-			parent.PPTSld.DocumentOnClick();

-		else

-			parent.GoToNextSld();

-	}

-	CatchNumKeys( parent, event );

-}

-function CatchNumKeys( win, event ) {

-	if( win.IsFullScrMode() && (48<=event.keyCode) && (event.keyCode<=57) ) {

-		gSldJump = 1;

-		gSldJumpIdx += (event.keyCode-48).toString();

-	}

-	if( win.IsFullScrMode() && gSldJump && event.keyCode == 13 ) {

-		var numSlds = parent.GetSldList().mList.length

-		if ( gSldJumpIdx > numSlds )

-			gSldJumpIdx = numSlds;

-		if ( gSldJumpIdx >= 0 ) {

-			if ( gSldJumpIdx == 0 )

-				gSldJumpIdx = 1;

-			var jumpTo = parseInt(gSldJumpIdx);

-			gSldJump = 0; gSldJumpIdx = "";

-			win.GoToSld( parent.GetSldList().mList[jumpTo-1].mSldHref )

-		}

-	}

-}

-function _KDH()

-{

-	if( event.keyCode == 8 ) {

-		event.returnValue = 0;

-		parent.GoToPrevSld();

-	}

-}

-function DocumentOnClick()

-{

-	if( IsNts() || parent.HideMenu() ) return;

-	if( ( g_allowAdvOnClick && !parent.IsFramesMode() ) ||

-	    (event && (event.keyCode==32) ) )

-		parent.GoToNextSld();

-}

-

-var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = 1, gId="", g_bgSound="",

-    g_scaleHyperlinks = false, g_allowAdvOnClick = 1, g_showInBrowser = 0, gLoopCont = 0, gUseSldTimings = 1;

-var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && ( (window.name=="PPTSld" && !parent.IsFramesMode()) || g_showInBrowser );var g_animManager = null;

-var g_animUseRuntime = false;

-var g_animItemsToHide, g_animInteractiveItems, g_animSlideTime;

-var g_animMainSequence = null;

-var ENDSHOW_MESG="End of slide show, click to exit.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=21, SCRIPT_HREF="script.js", FULLSCR_HREF="fullscreen.htm";

-var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = 0, gHasNarration = 0, gOtlOpen = true

-window.gPPTHTML=SupportsPPTHTML()

-var gMainDoc=new Array(new hrefList("slide0139.htm",1,-1,1),new hrefList("slide0134.htm",1,-1,1),new hrefList("slide0153.htm",1,-1,1),new hrefList("slide0152.htm",1,-1,1),new hrefList("slide0158.htm",1,-1,1),new hrefList("slide0150.htm",1,-1,1),new hrefList("slide0151.htm",1,-1,1),new hrefList("slide0140.htm",1,-1,1),new hrefList("slide0156.htm",1,-1,1),new hrefList("slide0141.htm",1,-1,1),new hrefList("slide0142.htm",1,-1,1),new hrefList("slide0143.htm",1,-1,1),new hrefList("slide0144.htm",1,-1,1),new hrefList("slide0157.htm",1,-1,1),new hrefList("slide0145.htm",1,-1,1),new hrefList("slide0146.htm",1,-1,1),new hrefList("slide0147.htm",1,-1,1),new hrefList("slide0148.htm",1,-1,1),new hrefList("slide0149.htm",1,-1,1),new hrefList("slide0159.htm",1,-1,1),new hrefList("slide0115.htm",1,-1,1));

-function FullScrInit()

-{

-	g_allowAdvOnClick = GetCurSld().mAdvOnClk

-	document.body.style.backgroundColor="black"

-	document.oncontextmenu=parent._CM;

-	document.onkeydown = _KDH;

-	document.ondragstart=Cancel

-	document.onselectstart=Cancel

-	self.focus()

-}

-function Redirect( frmId )

-{

-	var str=document.location.hash,idx=str.indexOf('#'), sId=GetSldId()

-	if(idx>=0) str=str.substr(1);

-	if( window.name != frmId && ( sId != str) ) {

-		obj = GetObj("Main-File")

-		window.location.href=obj.href+"#"+sId

-		return 1

-	}

-	return 0

-}

-var MHTMLPrefix = CalculateMHTMLPrefix();

-function CalculateMHTMLPrefix()

-{

-	if ( document.location.protocol == 'mhtml:') {

-		href=new String(document.location.href)

-		Start=href.indexOf('!')+1

-		End=href.lastIndexOf('/')+1

-		if (End < Start)

-			return href.substring(0, Start)

-		else

-		return href.substring(0, End)

-	}

-	return '';

-}

-function GetTags(base,tag)

-{

-	if(g_supportsPPTHTML) return base.all.tags(tag);

-	else return base.getElementsByTagName(tag);

-}

-function UpdNtsPane(){ if(frames["PPTNts"]) PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }

-function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }

-function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }

-function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }

-function SetHasNts( fVal )

-{

-	if( gHasNts != fVal ) {

-		gHasNts=fVal

-		UpdNavPane()

-	}

-}

-function ToggleOtlText()

-{

-	gOtlTxtExp=!gOtlTxtExp

-	UpdOtlPane()

-}

-function ToggleOtlPane()

-{

-	frmset=document.all("PPTHorizAdjust")

-	frm=document.all("PPTOtl")

-	if( gOtlOpen )

-		frmset.cols="*,100%"

-	else

-		frmset.cols="25%,*"

-	gOtlOpen=!gOtlOpen

-	frm.noResize=!frm.noResize

-	UpdOtNavPane()

-}

-function ToggleNtsPane()

-{

-	frmset=document.all("PPTVertAdjust")

-	frm=document.all("PPTNts")

-	if( gNtsOpen )

-		frmset.rows="100%,*"

-	else

-		frmset.rows="*,20%"

-	gNtsOpen=!gNtsOpen

-	UpdNtsPane()

-}

-function ClearMedia()

-{

-	if (PPTSld.pptSound) PPTSld.pptSound.loop = 0;

-}

-function FullScreen()

-{

-	if ( PPTSld.g_animUseRuntime )

-		PPTSld.document.body.pause();

-	ClearMedia();

-	var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;

-	if(PPTNav.event.ctrlKey) {

-		var w = (window.screen.availWidth * 1.0) / 2.0

-		var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW

-		win = window.open( MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w + ",height=" + h );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-	else

-	{

-		win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-}

-function ToggleVNarration()

-{

-	rObj=PPTSld.document.all("NSPlay")

-	if( rObj && !PPTSld.g_animUseRuntime ) {

-		if( (rObj.playState == 1)||(rObj.playState == 0) )

-			rObj.Play()

-		else if( rObj.playState == 2 )

-			rObj.Pause()

-		else

-			return;

-	}

-	else if( PPTSld.g_animUseRuntime )

-	{

-		narObj = PPTSld.document.all("narrationID")

-		if( narObj )

-			narObj.togglePause()

-	}

-}

-function GetCurSldNum()

-{

-	obj=GetHrefObj(gCurSld)

-	if( obj.mOrigVis == 1 )

-		return obj.mSldIdx

-	else

-		return gCurSld

-}

-function GetNumSlds()

-{

-	if( GetHrefObj(gCurSld).mOrigVis == 1 )

-		return GetSldList().mNumVisSlds;

-	else

-		return GetSldList().mList.length

-}

-function GetSldNum( href )

-{

-	for(ii=0; ii<GetSldList().mList.length; ii++) {

-		if ( GetSldList().mList[ii].mSldHref == href )

-			return ii+1

-	}

-	return 1

-}

-function GetHrefObj( sldIdx ){ return GetSldList().mList[sldIdx-1] }

-function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }

-function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }

-function GoToNextSld()

-{

-	ii=gCurSld + 1

-	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {

-		if( ii<=GetSldList().mList.length ) {

-			obj=GetHrefObj(ii)

-			obj.mVis=1

-			GoToSldNum(ii)

-			return

-		}

-	}

-	else {

-		obj=GetHrefObj( ii )

-		while ( obj && ( obj.mOrigVis == 0 ) )

-			obj=GetHrefObj(++ii)

-		if( obj && obj.mOrigVis ) {

-			GoToSldNum(ii)

-			return

-		}

-	}

-	if( gSldStack.length > 1 )

-		PopSldList();

-	else if( !IsFramesMode() ) {

-                if( gLoopCont )

-			GoToFirst()

-                else

-			EndShow()

-	}

-}

-function GoToPrevSld()

-{

-	ii=gCurSld-1

-	if( ii > 0 ) {

-		obj=GetHrefObj(ii)

-		while ( obj && ( obj.mVis == 0 ) && ( ii>0 ) )

-			obj=GetHrefObj(--ii)

-        if( ii == 0 ) ii=1

-		GoToSldNum(ii)

-	}

-}

-function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }

-function GoToLast()

-{

-	ii=GetSldList().mList.length

-	if( ii != gCurSld )

-		GoToSld( GetHrefObj(ii).mSldHref )

-}

-function GoToSldNum( num )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	obj = GetHrefObj( num )

-	obj.mVis=1

-	gPrevSld=gCurSld

-	gCurSld = num;

-	PPTSld.location.replace(MHTMLPrefix+obj.mSldHref)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function GoToSld( href )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	GetHrefObj( GetSldNum(href) ).mVis=1

-	PPTSld.location.replace(MHTMLPrefix+href)

-}

-function SldUpdated( id )

-{

-	if( id == GetHrefObj(gCurSld).mSldHref ) return

-	gPrevSld=gCurSld

-	gCurSld=GetSldNum(id)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }

-function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }

-function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }

-function CloseWindow() {

-	if( HideMenu() ) return;

-	var event = PPTSld.event;

-	if( !IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) )

-		window.close( self );

-	CatchNumKeys( self, event );

-}

-function Unload() { gIsEndShow=0; }

-function SetupEndShow() {

-	gIsEndShow=1;

-	PPTSld.document.body.scroll="no";

-	PPTSld.document.onkeypress=CloseWindow;

-	PPTSld.document.onclick=CloseWindow;

-	PPTSld.document.oncontextmenu=_CM;

-}

-function EndShow()

-{

-	if( IsFramesMode() ) return

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	doc=PPTSld.document

-	doc.open()

-	doc.writeln('<html><body bgcolor=black onload=parent.SetupEndShow() onunload=parent.Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')

-	doc.close()

-}

-function SetSldVisited(){ GetSldList().mList[gCurSld-1].mVisited=true }

-function IsSldVisited(){ return GetSldList().mList[gCurSld-1].mVisited }

-function hrefList( sldHref, visible, advDelay, advClk )

-{

-	this.mSldHref= this.mNtsHref = sldHref

-	this.mOrigVis= this.mVis = visible

-	this.mVisited= false

-	this.mAdvDelay= advDelay

-	this.mAdvOnClk= advClk

-}

-function SldList(arr,curSld,fEnd)

-{

-	this.mCurSld = curSld;

-	this.mList = new Array();

-	var idx = 1;

-	for(ii=0;ii<arr.length;ii++) {

-		this.mList[ii] = new hrefList( arr[ii].mSldHref, arr[ii].mOrigVis, arr[ii].mAdvDelay, arr[ii].mAdvOnClk );

-		if( arr[ii].mOrigVis )

-			this.mList[ii].mSldIdx = idx++;

-	}

-	this.mNumVisSlds = idx-1;

-	this.fEndShow = fEnd;

-}

-function GetSldList() {	return gSldStack[gSldStack.length-1] }

-function GetCurSld() { return parent.GetSldList().mList[parent.gCurSld - 1] }

-gSldStack = new Array();

-gSldStack[0] = new SldList(gMainDoc,gCurSld,1)

-function ViewCustomShow(idx,fEnd)

-{

-	if( !IsFullScrMode() ) return;

-	var sldList = new Array();

-	var custShow = custShowList[idx-1];

-	var jj = 0;

-	for( ii=0;ii<custShow.length;ii++ ) {

-		if( custShow[ii] <= gMainDoc.length )

-			sldList[jj++] = gMainDoc[custShow[ii]-1];

-	}

-	if (sldList.length > 0) {

-	PushSldList(sldList,fEnd);

-	gCurSld = 1;

-	}

-	else

-		if( PPTSld.event ) PPTSld.event.cancelBubble=true

-}

-function PushSldList(arr,fEnd) {

-	var ii = gSldStack.length;

-	gSldStack[ii] = new SldList(arr,gCurSld,fEnd);

-	GoToSld( gSldStack[ii].mList[0].mSldHref );

-}

-function PopSldList() {

-	if (gSldStack[gSldStack.length-1].fEndShow)

-		EndShow()

-	else {

-	gCurSld = gSldStack[gSldStack.length-1].mCurSld;

-	gSldStack[gSldStack.length-1] = null;

-	gSldStack.length--;

-	var sldList = gSldStack[gSldStack.length-1];

-	GoToSld( sldList.mList[gCurSld - 1].mSldHref );

-	}

-}

-var custShowList=new Array();

-function ImgBtn( oId,bId,w,action )

-{

-	var t=this

-	t.Perform    = _IBP

-	t.SetActive  = _IBSetA

-	t.SetInactive= _IBSetI

-	t.SetPressed = _IBSetP

-	t.SetDisabled= _IBSetD

-	t.Enabled    = _IBSetE

-	t.ChangeIcon = null

-	t.UserAction = action

-	t.ChgState   = _IBUI

-	t.mObjId   = oId

-	t.mBorderId= bId

-	t.mWidth   = w

-	t.mIsOn    = t.mCurState = 0

-}

-function _IBSetA()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetI()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetP()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gShadowClr,gHiliteClr,2 )

-		obj.style.posLeft+=1; obj.style.posTop+=1

-	}

-}

-function _IBSetD()

-{

-	obj=this.ChgState( gFaceClr,gFaceClr,0 )

-	obj.style.posTop=0

-}

-function _IBSetE( state )

-{

-	var t=this

-	GetObj( t.mBorderId ).style.visibility="visible"

-	if( state != t.mIsOn ) {

-		t.mIsOn=state

-		if( state )

-			t.SetInactive()

-		else

-			t.SetDisabled()

-	}

-}

-function _IBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-		if( t.ChangeIcon ) {

-			obj=GetObj(t.mObjId)

-			if( t.ChangeIcon() )

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth

-			else

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth

-		}

-		t.SetActive()

-	}

-}

-function _IBUI( clr1,clr2,nextState )

-{

-	var t=this

-	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )

-	obj=GetObj( t.mObjId )

-	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop

-	t.mCurState=nextState

-	return obj

-}

-function TxtBtn( oId,oeId,action,chkState )

-{

-	var t=this

-	t.Perform    = _TBP

-	t.SetActive  = _TBSetA

-	t.SetInactive= _TBSetI

-	t.SetPressed = _TBSetP

-	t.SetDisabled= _TBSetD

-	t.SetEnabled = _TBSetE

-	t.GetState   = chkState

-	t.UserAction = action

-	t.ChgState   = _TBUI

-	t.mObjId      = oId

-	t.m_elementsId= oeId

-	t.mIsOn       = 1

-}

-function _TBSetA()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gHiliteClr,gShadowClr,0,0 )

-}

-function _TBSetI()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-}

-function _TBSetP()

-{

-	if( this.mIsOn )

-		this.ChgState( gShadowClr,gHiliteClr,1,1 )

-}

-function _TBSetD()

-{

-	this.ChgState( gFaceClr,gFaceClr,0,0 )

-	this.mIsOn = 0

-}

-function _TBSetE()

-{

-	var t=this

-	if( !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-	else

-		t.ChgState( gShadowClr,gHiliteClr,1,1 )

-	t.mIsOn = 1

-}

-function _TBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-        if( !t.GetState )

-            return

-		if( t.GetState() )

-			t.SetPressed()

-		else

-			t.SetActive()

-	}

-}

-function _TBUI( clr1,clr2,lOffset,tOffset )

-{

-	SetBorder( GetObj( this.mObjId ),clr1,clr2 )

-	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )

-}

-function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }

-function SetBorder( obj, upperLeft, lowerRight )

-{

-	s=obj.style;

-	s.borderStyle      = "solid"

-	s.borderWidth      = 1

-	s.borderLeftColor  = s.borderTopColor = upperLeft

-	s.borderBottomColor= s.borderRightColor = lowerRight

-}

-function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }

-function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }

-function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }

-function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }

-function BtnOnUp()

-{

-	b=GetBtnObj()

-	if( b != null )

-		b.Perform()

-	else

-		Upd()

-}

-function GetNtsState(){ return parent.gNtsOpen }

-function GetOtlState(){ return parent.gOtlOpen }

-function GetOtlTxtState(){ return parent.gOtlTxtExp }

-function NtsBtnSetFlag( fVal )

-{

-	s=document.all.item( this.m_flagId ).style

-	s.display="none"

-	if( fVal )

-		s.display=""

-	else

-		s.display="none"

-}

-function _BSetA_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetActive() }

-function _BSetI_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetInactive() }

-var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"

-var gBtnArr = new Array()

-gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_otlElem"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_nts"] = new TxtBtn( "nb_nts","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )

-gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )

-gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )

-gBtnArr["nb_sldshwBorder"] = new TxtBtn( "nb_sldshw","nb_sldshwBorder",parent.FullScreen,null )

-gBtnArr["nb_sldshwBorder"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwBorder"].SetInactive = _BSetI_Border;

-gBtnArr["nb_sldshwText"] = new TxtBtn( "nb_sldshw","nb_sldshwText",parent.FullScreen,null )

-gBtnArr["nb_sldshwText"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwText"].SetInactive = _BSetI_Border;

-gBtnArr["nb_voice"]  = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )

-gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )

-gBtnArr["nb_nts"].m_flagId= "notes_flag"

-gBtnArr["nb_nts"].SetFlag = NtsBtnSetFlag

-gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState

-var sNext="Next",sPrev="Previous",sEnd="End Show",sFont="Arial",sArrow="Arrow",sFreeform="Freeform",sRect="Rectangle",sOval="Oval"

-function ShowMenu()

-{

-	BuildMenu();

-	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

-	m = PPTSld.document.all.item("ctxtmenu")

-	m.style.pixelLeft=x

-	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )

-		m.style.pixelLeft=x-m.scrollWidth

-	m.style.pixelTop=y

-	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )

-		m.style.pixelTop=y-m.scrollHeight

-	m.style.display=""

-}

-function _CM()

-{

-	if( !parent.IsFullScrMode() ) return;

-	if(!PPTSld.event.ctrlKey) {

-		ShowMenu()

-		return false

-	} else

-		HideMenu()

-}

-function BuildMenu()

-{

-	if( PPTSld.document.all.item("ctxtmenu") ) return

-	var mObj=CreateItem( PPTSld.document.body )

-	mObj.id="ctxtmenu"

-	mObj.style.visibility="hidden"

-	var s=mObj.style

-	s.position="absolute"

-	s.cursor="default"

-	s.width="120px"

-	SetCMBorder(mObj,"menu","black")

-	var iObj=CreateItem( mObj )

-	SetCMBorder( iObj, "threedhighlight","threedshadow" )

-	iObj.style.padding=2

-	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )

-	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )

-	CreateSeparator( iObj )

-	CreateMenuItem( iObj,sEnd,M_End,M_True )

-	mObj.style.visibility="visible"

-}

-function Cancel() { window.event.cancelBubble=true; window.event.returnValue=false }

-function Highlight() { ChangeClr("activecaption","threedhighlight") }

-function Deselect() { ChangeClr("threedface","menutext") }

-function Perform()

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() )

-		e.Action()

-	else

-		PPTSld.event.cancelBubble=true

-}

-function ChangeClr( bg,clr )

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() ) {

-		e.style.backgroundColor=bg

-		e.style.color=clr

-	}

-}

-function M_HasPrevSld() { return( parent.HasPrevSld() ) }

-function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }

-function M_GoPrevSld() { if( gIsEndShow ) { history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }

-function M_True() { return true }

-function M_End() { window.close( self ) }

-function CreateMenuItem( node,text,action,eval )

-{

-	var e=CreateItem( node )

-	e.type="menuitem"

-	e.Action=action

-	e.IsActive=eval

-	e.innerHTML=text

-	if( !e.IsActive() )

-		e.style.color="threedshadow"

-	e.onclick=Perform

-	e.onmouseover=Highlight

-	e.onmouseout=Deselect

-	s=e.style;

-	s.fontFamily=sFont

-	s.fontSize="9pt"

-	s.paddingLeft=2

-}

-function CreateSeparator( node )

-{

-	var sObj=CreateItem( node )

-	SetCMBorder(sObj,"menu","menu")

-	var s=sObj.style

-	s.borderTopColor="threedshadow"

-	s.borderBottomColor="threedhighlight"

-	s.height=1

-	s.fontSize="0px"

-}

-function CreateItem( node )

-{

-	var elem=PPTSld.document.createElement("DIV")

-	node.insertBefore( elem )

-	return elem

-}

-function SetCMBorder( o,ltClr,rbClr )

-{

-	var s=o.style

-	s.backgroundColor="menu"

-	s.borderStyle="solid"

-	s.borderWidth=1

-	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr

-}

diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0115.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0115.htm
deleted file mode 100644
index 2288d8d..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0115.htm
+++ /dev/null
@@ -1,114 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Thank you!">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:white;}
-.CT
-	{color:white;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="154"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master05.xml">
- <p:shaperange href="master05.xml#_x0000_s5121"/><![if !ppt]><p:shaperange
-  href="master05.xml#_x0000_s5124"/>
- <div v:shape="_x0000_s5124" class=O style='text-align:right;mso-char-wrap:
- 0;mso-kinsoku-overflow:0;position:absolute;top:95.5%;left:78.08%;width:18.16%;
- height:2.25%'><span style='font-size:56%'>© 2002 IBM Corporation</span></div>
- <div v:shape="_x0000_s5125">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-line-spacing:"98 20 0";mso-margin-left-alt:216;
- position:absolute;top:91.75%;left:22.28%;width:51.87%;height:3.0%'><span
- style='mso-hansi-font-family:Arial;font-size:72%'>Confidential<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Date<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Other Information, if necessary</span></div>
- </div>
- <p:shaperange href="master05.xml#_x0000_s5126"/><![if !vml]><img border=0
- v:shapes="_x0000_s5126" src="master05_image005.jpg" style='position:absolute;
- top:77.5%;left:0%;width:100.0%;height:22.5%'><![endif]><p:shaperange
-  href="master05.xml#_x0000_s5127"/>
- <div v:shape="_x0000_s5127" class=O style='position:absolute;top:94.0%;
- left:77.71%;width:21.53%;height:3.25%'><span style='font-size:78%;mso-field-code:
- meta16'>21</span><span style='font-size:78%;mso-special-format:lastCR;
- display:none'>&#13;</span></div>
- <p:shaperange href="master05.xml#_x0000_s5128"/>
- <div v:shape="_x0000_s5128" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:92.5%;left:1.49%;width:66.47%;height:2.75%'><span
- style='font-family:Arial;mso-hansi-font-family:Arial;font-size:67%'>© 2006 by
- IBM; made available under the EPL v1.0 |<span style='mso-spacerun:yes'> 
- </span>Wednesday, June 7</span></div>
- <p:shaperange href="master05.xml#_x0000_s5129"/><![if !vml]><img border=0
- v:shapes="_x0000_s5129" src="master05_image006.jpg" style='position:absolute;
- top:0%;left:0%;width:34.45%;height:20.0%'><![endif]><![endif]><p:shaperange
-  href="master05.xml#_x0000_m5122"/><v:shape id="_x0000_s157700" type="#_x0000_m5122"
-  style='position:absolute;left:.5pt;top:156.625pt;width:455.875pt;height:115.75pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="centerTitle"/></v:shape><p:shaperange
-  href="master05.xml#_x0000_m5123"/><v:shape id="_x0000_s157701" type="#_x0000_m5123"
-  style='position:absolute;left:153.5pt;top:279.375pt;width:7in;height:109pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="subTitle" position="1"/></v:shape>
- <div v:shape="_x0000_s157700" class=CT style='text-align:center;position:absolute;
- top:29.5%;left:1.12%;width:61.42%;height:6.0%'>Thank you!</div>
- <div v:shape="_x0000_s157701" class=CB style='position:absolute;top:52.75%;
- left:22.28%;width:68.16%;height:7.75%'><span style='font-size:180%'>Q&amp;A</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0134.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0134.htm
deleted file mode 100644
index 82a2acc..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0134.htm
+++ /dev/null
@@ -1,152 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Agenda">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="179"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span
- style='font-family:Arial;mso-hansi-font-family:Arial;font-size:67%'>© 2006 by
- IBM; made available under the EPL v1.0 |<span style='mso-spacerun:yes'> 
- </span>Wednesday, June 7</span></div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O style='position:absolute;top:94.0%;
- left:77.71%;width:21.53%;height:3.25%'><span style='font-size:78%;mso-field-code:
- meta16'>2</span><span style='font-size:78%;mso-special-format:lastCR;
- display:none'>&#13;</span></div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s183298"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s183299" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s183298" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Agenda</div>
- <div v:shape="_x0000_s183299" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>Features&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>Non-Code Aspects&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>APIs&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>Tool Usability&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>Architectural Issues&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>End-of-Life&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>Bugzilla&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>Standards&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>UI Usability&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>Schedule&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>Process&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>Communities&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>IP Issues&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>Project Plan&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:77.0%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>Release Review Version</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0139.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0139.htm
deleted file mode 100644
index bed49b7..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0139.htm
+++ /dev/null
@@ -1,118 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: UML2 2.0 Release Review">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:white;}
-.CT
-	{color:white;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="184"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master05.xml">
- <p:shaperange href="master05.xml#_x0000_s5121"/><![if !ppt]><p:shaperange
-  href="master05.xml#_x0000_s5124"/>
- <div v:shape="_x0000_s5124" class=O style='text-align:right;mso-char-wrap:
- 0;mso-kinsoku-overflow:0;position:absolute;top:95.5%;left:78.08%;width:18.16%;
- height:2.25%'><span style='font-size:56%'>© 2002 IBM Corporation</span></div>
- <div v:shape="_x0000_s5125">
- <div class=O1 style='mso-margin-left-alt:468'></div>
- <div class=O2 style='mso-margin-left-alt:720'></div>
- <div class=O3 style='mso-margin-left-alt:1008'></div>
- <div class=O4 style='mso-margin-left-alt:1296'></div>
- <div class=O style='mso-line-spacing:"98 20 0";mso-margin-left-alt:216;
- position:absolute;top:91.75%;left:22.28%;width:51.87%;height:3.0%'><span
- style='mso-hansi-font-family:Arial;font-size:72%'>Confidential<span
- style='mso-spacerun:yes'>  </span>|<span style='mso-spacerun:yes'> 
- </span>Date<span style='mso-spacerun:yes'>  </span>|<span
- style='mso-spacerun:yes'>  </span>Other Information, if necessary</span></div>
- </div>
- <p:shaperange href="master05.xml#_x0000_s5126"/><![if !vml]><img border=0
- v:shapes="_x0000_s5126" src="master05_image005.jpg" style='position:absolute;
- top:77.5%;left:0%;width:100.0%;height:22.5%'><![endif]><p:shaperange
-  href="master05.xml#_x0000_s5127"/>
- <div v:shape="_x0000_s5127" class=O style='position:absolute;top:94.0%;
- left:77.71%;width:21.53%;height:3.25%'><span style='font-size:78%;mso-field-code:
- meta16'>1</span><span style='font-size:78%;mso-special-format:lastCR;
- display:none'>&#13;</span></div>
- <p:shaperange href="master05.xml#_x0000_s5128"/>
- <div v:shape="_x0000_s5128" class=O style='mso-char-wrap:0;mso-kinsoku-overflow:
- 0;position:absolute;top:92.5%;left:1.49%;width:66.47%;height:2.75%'><span
- style='font-family:Arial;mso-hansi-font-family:Arial;font-size:67%'>© 2006 by
- IBM; made available under the EPL v1.0 |<span style='mso-spacerun:yes'> 
- </span>Wednesday, June 7</span></div>
- <p:shaperange href="master05.xml#_x0000_s5129"/><![if !vml]><img border=0
- v:shapes="_x0000_s5129" src="master05_image006.jpg" style='position:absolute;
- top:0%;left:0%;width:34.45%;height:20.0%'><![endif]><![endif]><p:shaperange
-  href="master05.xml#_x0000_m5122"/><v:shape id="_x0000_s188420" type="#_x0000_m5122"
-  style='position:absolute;left:30.75pt;top:152.375pt;width:626.375pt;height:115.75pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="centerTitle"/></v:shape><p:shaperange
-  href="master05.xml#_x0000_m5123"/><v:shape id="_x0000_s188421" type="#_x0000_m5123"
-  style='position:absolute;left:153.5pt;top:279.375pt;width:7in;height:109pt'
-  o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="subTitle" position="1"/></v:shape>
- <div v:shape="_x0000_s188420" class=CT style='position:absolute;top:28.75%;
- left:5.24%;width:85.2%;height:6.0%'>UML2 2.0 Release Review</div>
- <div v:shape="_x0000_s188421" class=CB>
- <div style='position:absolute;top:52.75%;left:22.28%;width:68.16%;height:4.5%'>Kenn
- Hussey&#13;</div>
- <div style='position:absolute;top:57.0%;left:22.28%;width:68.16%;height:4.5%'>UML2
- Project Lead</div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0140.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0140.htm
deleted file mode 100644
index 07a84f0..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0140.htm
+++ /dev/null
@@ -1,158 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: APIs">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="188"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>8</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s192514"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s192515" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s192514" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>APIs</div>
- <div v:shape="_x0000_s192515" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>The APIs in this
- release are <i><p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dev_process/eclipse-quality.php"/><a
- href="http://www.eclipse.org/projects/dev_process/eclipse-quality.php"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Eclipse Quality</a></i>&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Internal APIs marked as
- such&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>More convenience
- operations&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Improved factory
- methods&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>New utilities available</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Certify that the APIs in
-  this release are <i>Eclipse Quality</i>. The project's Architecture Council
-  representative will personally certify that the requirements for quality have
-  been met and/or discuss any deficiences.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b>
-  Eclipse members build commercial tools on top of the extensible frameworks
-  and thus the quality of the APIs is extremely important.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0141.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0141.htm
deleted file mode 100644
index 77ca3e4..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0141.htm
+++ /dev/null
@@ -1,159 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Architectural Issues">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="190"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>10</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s194562"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s194563" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s194562" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Architectural Issues</div>
- <div v:shape="_x0000_s194563">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Improved
- architectural quality&#13;</span></div>
- <div class=B1 style='position:absolute;top:31.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Less
- redundancy&#13;</span></div>
- <div class=B1 style='position:absolute;top:36.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Smaller,
- cleaner metadata&#13;</span></div>
- <div class=B1 style='position:absolute;top:41.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>More
- efficient support for derived unions&#13;</span></div>
- <div class=B style='position:absolute;top:45.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:49.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Generic
- features contributed to EMF&#13;</span></div>
- <div class=B1 style='position:absolute;top:54.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Virtual
- feature delegation&#13;</span></div>
- <div class=B1 style='position:absolute;top:59.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Package
- literals&#13;</span></div>
- <div class=B1 style='position:absolute;top:64.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>FlatEObjectImpl</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the architectural
-  quality of the release. Discuss the <i>intrinsic nature of being extensible</i>
-  embodied by this project. Discuss issues such as unresolved overlap with
-  other projects, unpaid &quot;merge debt&quot; from incorporating various
-  components, and so on.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason: </i></b>Eclipse
-  members build commercial tools on top of the extensible frameworks and thus
-  the quality of the architecture is important.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0142.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0142.htm
deleted file mode 100644
index 4fe8626..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0142.htm
+++ /dev/null
@@ -1,159 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: End-of-Life">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="192"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>11</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s196610"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s196611" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s196610" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>End-of-Life</div>
- <div v:shape="_x0000_s196611">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>User
- features&#13;</span></div>
- <div class=B1 style='position:absolute;top:31.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>UML2
- editor (*.uml2) replaced with UML editor (*.uml)&#13;</span></div>
- <div class=B1 style='position:absolute;top:36.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Ecore2XML
- example retired&#13;</span></div>
- <div class=B style='position:absolute;top:40.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:44.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>APIs&#13;</span></div>
- <div class=B1><span style='position:absolute;top:49.75%;left:21.34%;
- width:70.22%;height:3.5%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Legacy
- 1.x API (org.eclipse.uml2.*) replaced with 2.0 API </span><span
- style='position:absolute;top:53.25%;left:21.34%;width:70.22%;height:3.5%'>(org.eclipse.uml2.uml.*)
- &#13;</span></div>
- <div class=B1 style='position:absolute;top:58.25%;left:18.35%;width:77.71%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.85%;width:95.9%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.02%'>§</span>Factory
- methods replaced with overloads offering more options&#13;</span></div>
- <div class=B1 style='position:absolute;top:63.25%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Some
- profile/stereotype methods renamed&#13;</span></div>
- <div class=B1><span style='position:absolute;top:68.25%;left:21.34%;
- width:70.22%;height:3.5%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Subset/superset
- lists deprecated (merged into combined </span><span style='position:absolute;
- top:71.75%;left:21.34%;width:70.22%;height:3.5%'>implementations)</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the features (APIs
-  and any significant user features) from previous releases that are being
-  end-of-life'd in this release. End of life includes both deprecation and
-  actual removal.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> The
-  community builds products that rely on features and so they need to know when
-  these features are changing.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0143.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0143.htm
deleted file mode 100644
index 0f08c6d..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0143.htm
+++ /dev/null
@@ -1,216 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Bugzilla">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="194"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>12</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s198658"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s198659" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s198658" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Bugzilla</div>
- <div v:shape="_x0000_s198659" class=B>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>158 bugs opened&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:30.0%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:33.75%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>151 bugs
- resolved/closed&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:37.25%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:41.0%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>6 bugs deferred&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:44.5%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:48.25%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>12 new bugs&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:51.75%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:55.25%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>1 P1 bug outstanding (<p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=87260" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>87260</a>)
- – plan to resolve by GA&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:59.0%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:62.5%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>1 P2 bug outstanding (<p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>77413</a>)
- – plan to resolve by GA&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:66.25%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:69.75%;left:13.1%;
- width:87.45%;height:4.0%'><span style='position:absolute;top:0%;left:2.99%;
- width:97.0%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.09%;font-family:Wingdings'>§</span>2 P3 bugs outstanding (<p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=143357"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=143357" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>143357</a>,
- <p:onmouseclick hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85177" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>85177</a>)
- – plan to resolve by GA&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:73.5%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div style='mso-line-spacing:"90 0 0";position:absolute;top:77.0%;left:13.1%;
- width:78.46%;height:4.0%'><span style='position:absolute;top:0%;left:3.34%;
- width:96.89%;height:100.0%'><span style='mso-special-format:bullet;position:
- absolute;left:-3.44%;font-family:Wingdings'>§</span>2 P4 bugs outstanding (<p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80308" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>80308</a>,
- <p:onmouseclick hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80315" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>80315</a>)</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the bugzilla
-  situation. How many bug records (defects and enhancements) have been
-  opened/closed/deferred/new, etc? How many P1, P2, ..., bug records are
-  outstanding?</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b>
-  Summaries of the bugzilla records offer a glimpse into the project
-  productivity. They also offer an estimate of the outstanding risk. And the
-  summary is used to alert the community to known issues.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0144.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0144.htm
deleted file mode 100644
index b52b5b1..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0144.htm
+++ /dev/null
@@ -1,134 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Standards">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="196"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>13</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s200706"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s200707" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s200706" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Standards</div>
- <div v:shape="_x0000_s200707" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:88.2%;height:4.0%'><span class=BB
- style='position:absolute;left:-2.97%'>§</span>2.0 release based on convenience
- document ptc-06-04-02 of UML </span><span style='position:absolute;top:30.75%;
- left:15.73%;width:76.02%;height:4.0%'>2.1 specification&#13;</span>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>OMG to finalize
- specification soon</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the standards
-  compliance of this release. If the features are based on defined, pending, or
-  ad-hoc standards, what is the state of those standards and what is the state
-  of the support for those standards in this release.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason: </i></b>Eclipse
-  is about building frameworks and tools based on standards, so we need to make
-  sure that we are conforming to the appropriate standards.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0145.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0145.htm
deleted file mode 100644
index c4dce88..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0145.htm
+++ /dev/null
@@ -1,147 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Schedule">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="198"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>15</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s202754"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s202755" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s202754" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Schedule</div>
- <div v:shape="_x0000_s202755" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>M1 met on November
- 10&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>M2 slipped from
- December 22 to January 5&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>M3 slipped from<span
- style='mso-spacerun:yes'>  </span>to February 23 to March 2&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>M4 slipped from April 6
- to April 13</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Discuss the initial schedule
-  and any changes to the schedule over the course of the release, i.e., what
-  the project team achieved. Discuss whether milestones were met or slipped.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> The
-  community relies on consistent schedules from Eclipse so that projects and
-  products can plan for the correct dependencies.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0146.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0146.htm
deleted file mode 100644
index bfeee31..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0146.htm
+++ /dev/null
@@ -1,165 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Process">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="200"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>16</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s204802"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s204803" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s204802" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Process</div>
- <div v:shape="_x0000_s204803" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:83.33%;height:4.0%'><span class=BB
- style='position:absolute;left:-3.14%'>§</span>This release has been developed
- using open, transparent, and </span><span style='position:absolute;top:30.75%;
- left:15.73%;width:76.02%;height:4.0%'>inclusive processes&#13;</span>
- <div style='position:absolute;top:34.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>This release has
- followed its charter principles&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:46.75%;left:15.73%;width:87.26%;height:
- 4.0%'><span class=BB style='position:absolute;left:-3.0%'>§</span>The UML2
- project makes appropriate use of Bugzilla, mailing lists </span><span
- style='position:absolute;top:50.75%;left:15.73%;width:83.33%;height:4.0%'>(<p:onmouseclick
-  hyperlinktype="url" href="mailto:mdt-uml2.dev@eclipse.org"/><a
- href="mailto:mdt-uml2.dev@eclipse.org" target="_blank"
- onclick="window.event.cancelBubble=true;">mdt-uml2.dev@eclipse.org</a>),
- newsgroups (<p:onmouseclick hyperlinktype="url"
-  href="news://news.eclipse.org/eclipse.tools.uml2"/><a
- href="news://news.eclipse.org/eclipse.tools.uml2" target="_blank"
- onclick="window.event.cancelBubble=true;">eclipse.tools.uml2</a>), and </span><span
- style='position:absolute;top:54.75%;left:15.73%;width:76.02%;height:4.0%'>conference
- calls&#13;</span>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <span style='position:absolute;top:62.75%;left:15.73%;width:88.95%;height:
- 4.0%'><span class=BB style='position:absolute;left:-2.94%'>§</span>There were
- no committer elections/removals during the 2.0 release </span><span
- style='position:absolute;top:66.75%;left:15.73%;width:81.46%;height:4.0%'>cycle,
- although contributions were made by a new contributor&#13;</span>
- <div style='position:absolute;top:70.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the project's
-  conformance to the Eclipse Development Process. Has this release been
-  developed using open, transparent, and inclusive processes?&nbsp; Has this
-  release followed its charter principles?&nbsp; Consider the use of bugzilla,
-  the mailing lists, the newsgroups, conference calls, committer
-  elections/removals, etc.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> It is
-  important for Eclipse projects to build a community around the project, not
-  just deliver code for a project. This review item is about the process of
-  building the community.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0147.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0147.htm
deleted file mode 100644
index e60f49e..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0147.htm
+++ /dev/null
@@ -1,157 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Communities">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="202"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>17</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s206850"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s206851" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s206850" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Communities</div>
- <div v:shape="_x0000_s206851" class=B>
- <div style='position:absolute;top:26.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Increased interaction
- in Bugzilla and on newsgroup&#13;</span></div>
- <div style='position:absolute;top:30.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:34.75%;left:13.1%;width:85.76%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.05%;width:96.94%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.15%'>§</span>UML2 represented at <i>EclipseCon
- 2006</i> (short talk, code camp)&#13;</span></div>
- <div style='position:absolute;top:38.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:42.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Continued coordination
- with EMF tools project&#13;</span></div>
- <div style='position:absolute;top:46.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:50.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>Orientation with new
- Modeling top level project&#13;</span></div>
- <div style='position:absolute;top:54.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div style='position:absolute;top:58.75%;left:13.1%;width:78.46%;height:4.0%'><span
- style='position:absolute;top:0%;left:3.34%;width:96.89%;height:100.0%'><span
- class=BB style='position:absolute;left:-3.44%'>§</span>UML2 is among the most
- active projects at Eclipse</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the project's
-  development of its three communities. Consider the interactions on bugzilla,
-  the mailing lists, the newsgroups, public conference calls, blogs, PR
-  activities, code camps, conference tutorials, coordinating with other Eclipse
-  projects and other open source projects (Apache, ObjectWeb, etc), ...</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> It is
-  important for Eclipse projects to build a community around the project, not
-  just deliver code for a project. This review item is about the success of
-  building a community.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0148.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0148.htm
deleted file mode 100644
index dd10db6..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0148.htm
+++ /dev/null
@@ -1,304 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: IP Issues">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="204"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>18</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s208898"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s208899" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s208898" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>IP Issues</div>
- <div v:shape="_x0000_s208899">
- <div class=B style='mso-line-spacing:"80 0 0";position:absolute;top:26.25%;
- left:13.1%;width:78.46%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.34%;width:96.89%;height:100.0%'><span style='font-size:89%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span><span style='font-size:89%'>The UML2 project
- leadership verifies that:&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15"'><span style='position:absolute;
- top:29.75%;left:21.34%;width:76.96%;height:3.25%'><span style='font-size:88%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.89%;font-family:
- Wingdings'>§</span></span><span style='font-size:88%'>the about files and use
- licenses are in place as per the </span><span style='font-size:88%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/legal/guidetolegaldoc.php"/><a
- href="http://www.eclipse.org/legal/guidetolegaldoc.php" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Guidelines
- to Legal </a></span></span><span style='position:absolute;top:32.25%;
- left:21.34%;width:70.22%;height:3.25%'><span style='font-size:88%'><p:onmouseclick
-  hyperlinktype="url" href="http://www.eclipse.org/legal/guidetolegaldoc.php"/><a
- href="http://www.eclipse.org/legal/guidetolegaldoc.php" target="_blank"
- onclick="window.event.cancelBubble=true;">Documentation</a></span><span
- style='font-size:88%;display:none'>&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15"'><span style='position:absolute;
- top:36.0%;left:21.34%;width:79.21%;height:3.25%'><span style='font-size:88%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.78%;font-family:
- Wingdings'>§</span></span><span style='font-size:88%'>all contributions (code,
- documentation, images, etc) have been committed by </span></span><span
- style='position:absolute;top:38.5%;left:21.34%;width:76.02%;height:3.25%'><span
- style='font-size:88%'>individuals who are either Members of the Foundation, or
- have signed the </span></span><span style='position:absolute;top:41.0%;
- left:21.34%;width:83.52%;height:3.25%'><span style='font-size:88%'>appropriate
- Committer Agreement; in either case, these are individuals who have </span></span><span
- style='position:absolute;top:43.5%;left:21.34%;width:70.22%;height:3.25%'><span
- style='font-size:88%'>signed, and are abiding by, the Eclipse IP Policy&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:47.25%;
- left:18.35%;width:83.33%;height:3.25%'><span style='position:absolute;
- top:0%;left:3.59%;width:96.4%;height:100.0%'><span style='font-size:88%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.72%;font-family:
- Wingdings'>§</span></span><span style='font-size:88%'>all significant
- contributions have been reviewed by the Foundation's legal staff&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15"'><span style='position:absolute;
- top:51.0%;left:21.34%;width:78.83%;height:3.25%'><span style='font-size:88%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.8%;font-family:
- Wingdings'>§</span></span><span style='font-size:88%'>that all non-committer
- code contributions, including third-party libraries, have </span></span><span
- style='position:absolute;top:53.5%;left:21.34%;width:79.4%;height:3.25%'><span
- style='font-size:88%'>been documented in the release and reviewed by the
- Foundation's legal staff&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:57.25%;
- left:18.35%;width:73.4%;height:3.25%'><span style='position:absolute;
- top:0%;left:4.08%;width:95.66%;height:100.0%'><span style='font-size:88%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.26%;font-family:
- Wingdings'>§</span></span><span style='font-size:88%'>all contribution
- questionnaires have been completed&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:61.0%;
- left:18.35%;width:73.4%;height:3.25%'><span style='position:absolute;
- top:0%;left:4.08%;width:95.66%;height:100.0%'><span style='font-size:88%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.26%;font-family:
- Wingdings'>§</span></span><span style='font-size:88%'>the &quot;provider&quot;
- field of each plug-in is set to &quot;eclipse.org“&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15";position:absolute;top:64.5%;
- left:18.35%;width:73.4%;height:3.25%'><span style='position:absolute;
- top:0%;left:4.08%;width:95.66%;height:100.0%'><span style='font-size:88%'><span
- style='mso-special-format:bullet;position:absolute;left:-4.26%;font-family:
- Wingdings'>§</span></span><span style='font-size:88%'>the
- &quot;copyright&quot; field of each plug-in is set to the copyright owner&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15"'><span style='position:absolute;
- top:68.25%;left:21.34%;width:80.89%;height:3.25%'><span style='font-size:88%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.7%;font-family:
- Wingdings'>§</span></span><span style='font-size:88%'>that any third-party
- logos or trademarks included in the distribution (icons, help </span></span><span
- style='position:absolute;top:70.75%;left:21.34%;width:70.22%;height:3.25%'><span
- style='font-size:88%'>file logos, etc) have been licensed under the EPL&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 25 15"'><span style='position:absolute;
- top:74.5%;left:21.34%;width:84.08%;height:3.25%'><span style='font-size:88%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.56%;font-family:
- Wingdings'>§</span></span><span style='font-size:88%'>that any fonts or
- similar third-party images included in the distribution (e.g. in PDF </span></span><span
- style='position:absolute;top:77.0%;left:21.34%;width:70.22%;height:3.25%'><span
- style='font-size:88%'>or EPS files) have been licensed under the EPL</span></span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width=20 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=2><font face=Arial size=1>As per the Eclipse IP Policy,
-  these steps must be done:</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=2><font face=Arial size=1>The project leadership
-  verifies that:</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=2></td>
-  <td align=left colspan=1><font face=Arial size=1>... that the about files and
-  use licenses are in place as per the Guidelines to Legal Documentation.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=2></td>
-  <td align=left colspan=1><font face=Arial size=1>... all contributions (code,
-  documentation, images, etc) has been committed by individuals who are either
-  Members of the Foundation, or have signed the appropriate Committer
-  Agreement. In either case, these are individuals who have signed, and are
-  abiding by, the Eclipse IP Policy. (see below)</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=2></td>
-  <td align=left colspan=1><font face=Arial size=1>... that all significant
-  contributions have been reviewed by the Foundation's legal staff. (see below)</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=2></td>
-  <td align=left colspan=1><font face=Arial size=1>... that all non-committer
-  code contributions, including third-party libraries, have been documented in
-  the release and reviewed by the Foundation's legal staff (see below)</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=2></td>
-  <td align=left colspan=1><font face=Arial size=1>... that all contribution
-  questionnaires have been completed (see below)</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=2></td>
-  <td align=left colspan=1><font face=Arial size=1>... the &quot;provider&quot;
-  field of each plug-in is set to &quot;eclipse.org&quot;</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=2></td>
-  <td align=left colspan=1><font face=Arial size=1>... the
-  &quot;copyright&quot; field of each plug-in is set to the copyright owner.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=2></td>
-  <td align=left colspan=1><font face=Arial size=1>... that any third-party
-  logos or trademarks included in the distribution (icons, help file logos,
-  etc) have been licensed under the EPL.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=2></td>
-  <td align=left colspan=1><font face=Arial size=1>... that any fonts or
-  similar third-party images included in the distribution (e.g. in PDF or EPS
-  files) have been licensed under the EPL.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=2><font face=Arial size=1>The PMC provides a Project
-  Log that enumerates:</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=2></td>
-  <td align=left colspan=1><font face=Arial size=1>every piece of third party
-  software including information on the license</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=2></td>
-  <td align=left colspan=1><font face=Arial size=1>every major contribution</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=2></td>
-  <td align=left colspan=1><font face=Arial size=1>the name of every
-  contributor including non-committer contributions via bug fixes with bug #'s</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=2></td>
-  <td align=left colspan=1><font face=Arial size=1>the About files which
-  contain any non-standard terms (e.g., a reference to a license other than the
-  EPL, etc)</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=2><font face=Arial size=1>The EMO will validate for
-  (a) and (b) that contribution questionnaires have been properly submitted and
-  EMO approvals have been completed.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=2><font face=Arial size=1>A frozen copy of the
-  reviewed-and-approved-by-Eclipse-legal Project Log is part of the Release
-  Review documentation. It can be included in the slides or as a separate
-  document.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0149.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0149.htm
deleted file mode 100644
index c8c7320..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0149.htm
+++ /dev/null
@@ -1,117 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Project Plan">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="206"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>19</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s210946"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s210947" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s210946" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Project Plan</div>
- <div v:shape="_x0000_s210947" class=B style='position:absolute;top:26.75%;
- left:13.1%;width:78.46%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.34%;width:96.89%;height:100.0%'><span class=BB style='position:
- absolute;left:-3.44%'>§</span>Draft 2.1 plan not yet available</span></div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>If there is a Project Plan
-  (full or even a draft) for the next release, the final issue to cover in the
-  Release Review is the unveiling of the new plan.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0150.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0150.htm
deleted file mode 100644
index 3bf741e..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0150.htm
+++ /dev/null
@@ -1,204 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Non-Code Aspects">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="209"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>6</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s214018"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s214019" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s214018" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Non-Code Aspects</div>
- <div v:shape="_x0000_s214019">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:90.07%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.91%;width:97.08%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.99%'>§</span>Documentation
- available at http://www.eclipse.org/modeling/mdt/docs.php?project=uml2&#13;</span></div>
- <div class=B1 style='position:absolute;top:31.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span><p:onmouseclick
-  hyperlinktype="url" location="6"
-  href="http://dev.eclipse.org/viewcvs/indextools.cgi/~checkout~/uml2-home/faq.html"/><a
- href="http://dev.eclipse.org/viewcvs/indextools.cgi/~checkout~/uml2-home/faq.html#6"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>FAQ</a>&#13;</span></div>
- <div class=B1 style='position:absolute;top:36.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Javadoc
- (for <p:onmouseclick hyperlinktype="url"
-  href="http://download.eclipse.org/tools/uml2/1.0.0/javadoc/"/><a
- href="http://download.eclipse.org/tools/uml2/1.0.0/javadoc/" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>1.0</a>, <p:onmouseclick
-  hyperlinktype="url"
-  href="http://download.eclipse.org/tools/uml2/1.0.1/javadoc/"/><a
- href="http://download.eclipse.org/tools/uml2/1.0.1/javadoc/" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>1.0.1</a>,
- <p:onmouseclick hyperlinktype="url"
-  href="http://download.eclipse.org/tools/uml2/1.0.2/javadoc/"/><a
- href="http://download.eclipse.org/tools/uml2/1.0.2/javadoc/" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>1.0.2</a>,
- <p:onmouseclick hyperlinktype="url"
-  href="http://download.eclipse.org/tools/uml2/1.0.3/javadoc/"/><a
- href="http://download.eclipse.org/tools/uml2/1.0.3/javadoc/" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>1.0.3</a>,
- <p:onmouseclick hyperlinktype="url"
-  href="http://download.eclipse.org/tools/uml2/1.1.0/javadoc/"/><a
- href="http://download.eclipse.org/tools/uml2/1.1.0/javadoc/" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>1.1</a>, <p:onmouseclick
-  hyperlinktype="url"
-  href="http://download.eclipse.org/tools/uml2/2.0.0/javadoc/"/><a
- href="http://download.eclipse.org/tools/uml2/2.0.0/javadoc/" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>2.0</a>)&#13;</span></div>
- <div class=B1 style='position:absolute;top:41.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>UML2
- 2.0 Plan and Migration Guide&#13;</span></div>
- <div class=B1 style='position:absolute;top:46.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Link
- to OMGÂ’s <p:onmouseclick hyperlinktype="url" href="http://www.omg.org/uml"/><a
- href="http://www.omg.org/uml" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>UML</a><span
- style='font-family:Arial;mso-hansi-font-family:Arial'><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/uml"/><a
- href="http://www.omg.org/uml" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>™</a></span><p:onmouseclick
-  hyperlinktype="url" href="http://www.omg.org/uml"/><a
- href="http://www.omg.org/uml" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'><span
- style='mso-spacerun:yes'> </span>Resource Page</a>&#13;</span></div>
- <div class=B1 style='position:absolute;top:51.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Link
- to <p:onmouseclick hyperlinktype="url"
-  href="http://www.eclipse.org/projects/dashboard/dashboard_detail.php?project=tools.uml2"/><a
- href="http://www.eclipse.org/projects/dashboard/dashboard_detail.php?project=tools.uml2"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>UML2 Project Dashboard</a>&#13;</span></div>
- <div class=B style='position:absolute;top:55.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:59.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Localization/externalization&#13;</span></div>
- <div class=B1><span style='position:absolute;top:64.75%;left:21.34%;
- width:70.22%;height:3.5%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>NL
- packs for 1. x available at </span><span style='position:absolute;top:68.25%;
- left:21.34%;width:71.91%;height:3.5%'>http://www.eclipse.org/modeling/mdt/downloads/?project=uml2#uml2&#13;</span></div>
- <div class=B1 style='position:absolute;top:73.25%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>NL
- packs for 2.0 to be made available</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the state of the
-  non-code aspects of the release including: user documentation,
-  localization/externalization, examples, tutorials, articles, and so on. Have
-  the existing artifacts been updated? Are there new artifacts? Have the
-  obsolete ones been retired or at least marked as pertaining only to older
-  material?</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> The
-  non-code aspects are essential for the wide-spread adoption of the release.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0151.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0151.htm
deleted file mode 100644
index c33cd6e..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0151.htm
+++ /dev/null
@@ -1,147 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Non-Code Aspects (Continued)">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="211"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>7</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s216066"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s216067" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s216066" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Non-Code Aspects (Continued)</div>
- <div v:shape="_x0000_s216067">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:91.01%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.88%;width:97.32%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.95%'>§</span>Examples
- available as part of <b>org.eclipse.uml2.examples</b> feature&#13;</span></div>
- <div class=B1 style='position:absolute;top:31.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Actions
- to convert models to metamodels, model libraries&#13;</span></div>
- <div class=B1 style='position:absolute;top:36.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Actions
- to generate metamodels, libraries, profiles&#13;</span></div>
- <div class=B1 style='position:absolute;top:41.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Actions
- to externalize labels, keywords&#13;</span></div>
- <div class=B1 style='position:absolute;top:46.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Actions
- to convert between Ecore and UML formats&#13;</span></div>
- <div class=B style='position:absolute;top:50.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:54.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Articles&#13;</span></div>
- <div class=B1 style='position:absolute;top:59.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Getting_Started_with_UML2/article.html"/><a
- href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Getting_Started_with_UML2/article.html"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Getting Started with UML2</a><span
- style='mso-spacerun:yes'> </span>(needs to be updated)&#13;</span></div>
- <div class=B1 style='position:absolute;top:64.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span><p:onmouseclick
-  hyperlinktype="url"
-  href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Introduction_to_UML2_Profiles/article.html"/><a
- href="http://www.eclipse.org/modeling/mdt/uml2/docs/articles/Introduction_to_UML2_Profiles/article.html"
- target="_blank" onclick="window.event.cancelBubble=true;" style='position:
- relative'>Introduction to UML2 Profiles</a><span
- style='mso-spacerun:yes'> </span>(needs to be updated)&#13;</span></div>
- <div class=B1 style='position:absolute;top:69.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>Others
- (TBD) – see bug <p:onmouseclick hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=77413" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>77413</a><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0152.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0152.htm
deleted file mode 100644
index 8bd1349..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0152.htm
+++ /dev/null
@@ -1,136 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Features (Continued)">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="212"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>4</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s217090"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s217091" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s217090" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Features (Continued)</div>
- <div v:shape="_x0000_s217091">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Major
- features (continued)&#13;</span></div>
- <div class=B1><span style='position:absolute;top:31.75%;left:21.34%;
- width:76.96%;height:3.5%'><span class=B1B style='position:absolute;left:-3.89%'>§</span><b><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=105191" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>UML2 2.0
- Migration</a></b><b>.</b> Provide a mechanism to migrate resources </span><span
- style='position:absolute;top:35.25%;left:21.34%;width:70.22%;height:3.5%'>based
- on the UML2 1.x schema to 2.0.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:40.25%;left:21.34%;
- width:81.27%;height:3.5%'><span class=B1B style='position:absolute;left:-3.68%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85176" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Reduced
- Memory Footprint / Improved Performance</a></b><b>.</b> Reduce the </span><span
- style='position:absolute;top:43.75%;left:21.34%;width:73.59%;height:3.5%'>memory
- footprint of UML models. Improve performance of key </span><span
- style='position:absolute;top:47.5%;left:21.34%;width:70.22%;height:3.5%'>operations
- such as model load, save, traversal, etc..&#13;</span></div>
- <div class=B1><span style='position:absolute;top:52.5%;left:21.34%;width:77.34%;
- height:3.5%'><span class=B1B style='position:absolute;left:-3.87%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=85179" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Improved
- Convenience Methods</a></b><b>.</b> Provide improved factory and </span><span
- style='position:absolute;top:56.0%;left:21.34%;width:79.02%;height:3.5%'>convenience
- methods. For example, factory methods that accept a </span><span
- style='position:absolute;top:59.5%;left:21.34%;width:77.34%;height:3.5%'>name
- as an argument (for named element creation), and retrieval </span><span
- style='position:absolute;top:63.0%;left:21.34%;width:83.14%;height:3.5%'>methods
- that accept arguments indicating whether name comparisons </span><span
- style='position:absolute;top:66.75%;left:21.34%;width:82.02%;height:3.5%'>should
- be case-sensitive and whether elements should be created on </span><span
- style='position:absolute;top:70.25%;left:21.34%;width:77.52%;height:3.5%'>demand.
- Ensure that metadata exists for custom operations. Also </span><span
- style='position:absolute;top:73.75%;left:21.34%;width:70.78%;height:3.5%'>provide
- query methods for retrieving the reverse of one-way </span><span
- style='position:absolute;top:77.25%;left:21.34%;width:70.22%;height:3.5%'>references.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0153.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0153.htm
deleted file mode 100644
index b82aa22..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0153.htm
+++ /dev/null
@@ -1,183 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Features">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="213"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>3</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s218114"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s218115" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s218114" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Features</div>
- <div v:shape="_x0000_s218115">
- <div class=B><span style='position:absolute;top:26.75%;left:15.73%;width:76.02%;
- height:4.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>2.0
- Plan available at </span><span style='position:absolute;top:30.75%;left:15.73%;
- width:90.44%;height:4.0%'>http://www.eclipse.org/modeling/mdt/uml2/docs/plans/uml2_project_plan_2_0.html&#13;</span></div>
- <div class=B style='position:absolute;top:34.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B style='position:absolute;top:38.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.44%'>§</span>Major
- features&#13;</span></div>
- <div class=B1><span style='position:absolute;top:43.75%;left:21.34%;
- width:77.9%;height:3.5%'><span class=B1B style='position:absolute;left:-3.84%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>UML</a></b><span
- style='font-family:Arial;mso-hansi-font-family:Arial'><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>™</a></b></span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80305" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'><span
- style='mso-spacerun:yes'> </span>2.1 Conformance</a></b><b>.</b> Implement the
- revised package merge </span><span style='position:absolute;top:47.25%;
- left:21.34%;width:83.14%;height:3.5%'>algorithm and regenerate the code using
- a source model based on the </span><span style='position:absolute;top:50.75%;
- left:21.34%;width:83.7%;height:3.5%'>finalized UML<span style='font-family:
- Arial;mso-hansi-font-family:Arial'>™</span> 2.1 Superstructure specification
- (compliance level L3). </span><span style='position:absolute;top:54.5%;
- left:21.34%;width:80.71%;height:3.5%'>Update UML2 resources (libraries,
- metamodels, profiles), examples, </span><span style='position:absolute;
- top:58.0%;left:21.34%;width:81.64%;height:3.5%'>and EMF generator extensions
- as necessary. Enhance the generator </span><span style='position:absolute;
- top:61.5%;left:21.34%;width:83.89%;height:3.5%'>extensions (developed in UML2
- 1.1) to facilitate code generation for an </span><span style='position:absolute;
- top:65.0%;left:21.34%;width:70.22%;height:3.5%'>arbitrary compliance
- level.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:70.0%;left:21.34%;width:76.4%;
- height:3.5%'><span class=B1B style='position:absolute;left:-3.92%'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>UML</a></b><span
- style='font-family:Arial;mso-hansi-font-family:Arial'><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>™</a></b></span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80306" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'><span
- style='mso-spacerun:yes'> </span>2.1 Interchange</a></b><b>.</b> Provide
- support for importing/exporting </span><span style='position:absolute;
- top:73.75%;left:21.34%;width:84.08%;height:3.5%'>resources based on the
- official OMG XMI representation of UML<span style='font-family:Arial;
- mso-hansi-font-family:Arial'>™</span> 2.1.</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the major features
-  of this release as well as any other features that have generated significant
-  discussion amongst the community during the development cycle. Compare the
-  features against the Roadmap to understand the project's conformance or divergence
-  (note: compare against the Project Plan section as the forward looking
-  sections apply to the next release). References to existing New &amp;
-  Noteworthy documentation is a useful addition to this summary.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b><i> </i>The
-  community will use this release and the ecosystem will build products on top
-  of this release, and both need to know what features were included or
-  excluded.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0156.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0156.htm
deleted file mode 100644
index 098ee47..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0156.htm
+++ /dev/null
@@ -1,155 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Tool Usability">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="217"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>9</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s222210"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s222211" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s222210" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Tool Usability</div>
- <div v:shape="_x0000_s222211">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:84.45%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.1%;width:97.11%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.19%'>§</span>The
- usability of the UML editor has been improved as follows:&#13;</span></div>
- <div class=B1 style='position:absolute;top:31.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>new
- icons introduced to aid in recognition of concepts&#13;</span></div>
- <div class=B1 style='position:absolute;top:36.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>labels
- enhanced to include keywords&#13;</span></div>
- <div class=B1 style='position:absolute;top:41.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>support
- added for display of stereotype icons&#13;</span></div>
- <div class=B1 style='position:absolute;top:46.75%;left:18.35%;width:79.58%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.76%;width:96.23%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.91%'>§</span>display
- of stereotype applications refactored under base element&#13;</span></div>
- <div class=B1 style='position:absolute;top:51.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>properties
- organized into categories in Properties view&#13;</span></div>
- <div class=B1 style='position:absolute;top:56.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span style='visibility:hidden'><span class=B1B
- style='position:absolute;left:-4.26%'>§</span></span>&#13;</span></div>
- <div class=B><span style='position:absolute;top:60.75%;left:15.73%;width:84.45%;
- height:4.0%'><span class=BB style='position:absolute;left:-3.1%'>§</span>Import/export
- wizards were added/updated to round-trip models </span><span style='position:
- absolute;top:64.75%;left:15.73%;width:76.02%;height:4.0%'>between Ecore and
- UML</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the usability of
-  the tools. Usability in this sense is about using the tools to solve
-  development problems, not the more academic sense of UI evaluation/testing.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b>Reason:</b> Without
-  usable tools, the project will not attract the user community necessary to
-  enable the ecosystem.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0157.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0157.htm
deleted file mode 100644
index 1568ac1..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0157.htm
+++ /dev/null
@@ -1,150 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: UI Usability">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="219"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>14</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s224258"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s224259" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s224258" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>UI Usability</div>
- <div v:shape="_x0000_s224259">
- <div class=B style='position:absolute;top:26.75%;left:13.1%;width:85.58%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.06%;width:96.93%;
- height:100.0%'><span class=BB style='position:absolute;left:-3.16%'>§</span>UML2
- tools use Eclipse platform APIs to provide accessible UI&#13;</span></div>
- <div class=B1 style='position:absolute;top:31.75%;left:18.35%;width:73.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:4.08%;width:95.66%;
- height:100.0%'><span class=B1B style='position:absolute;left:-4.26%'>§</span>No
- outstanding accessibility bugs&#13;</span></div>
- <div class=B style='position:absolute;top:35.75%;left:13.1%;width:78.46%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.34%;width:96.89%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-3.44%'>§</span></span>&#13;</span></div>
- <div class=B><span style='position:absolute;top:39.75%;left:15.73%;width:88.38%;
- height:4.0%'><span class=BB style='position:absolute;left:-2.96%'>§</span>All
- text is externalized, and has been translated into 14 languages, </span><span
- style='position:absolute;top:43.75%;left:15.73%;width:76.02%;height:4.0%'>including
- BiDi languages&#13;</span></div>
- <div class=B1><span style='position:absolute;top:48.75%;left:21.34%;
- width:79.21%;height:3.5%'><span class=B1B style='position:absolute;left:-3.78%'>§</span>Brazilian
- Portuguese, French, German, Spanish, Italian, Japanese, </span><span
- style='position:absolute;top:52.25%;left:21.34%;width:82.39%;height:3.5%'>Korean,
- Simplified Chinese, Traditional Chinese, Russian, Hungarian, </span><span
- style='position:absolute;top:55.75%;left:21.34%;width:70.22%;height:3.5%'>Czech,
- Polish, Arabic&#13;</span></div>
- <div class=B1 style='position:absolute;top:60.75%;left:18.35%;width:79.58%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.76%;width:96.0%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.92%'>§</span>Translation
- verification testing in progress, to complete mid-June</span></div>
- </div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>Summarize the user interface
-  usability of the tools include section 508 compliance, language pack
-  conformance (does the code support multiple languages), etc..</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b>Reason:</b> The user
-  community is larger than just mouse-wielding, English-speaking, computer
-  jockeys. We need to support that larger community.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0158.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0158.htm
deleted file mode 100644
index abcea61..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0158.htm
+++ /dev/null
@@ -1,144 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Features (continued)">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="221"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>5</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s226306"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s226307" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s226306" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Features (continued)</div>
- <div v:shape="_x0000_s226307">
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:26.5%;
- left:13.1%;width:78.46%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.34%;width:96.89%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.44%;font-family:Wingdings'>§</span>Major
- features (continued)&#13;</span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:31.0%;left:21.34%;width:76.21%;height:3.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.93%;font-family:Wingdings'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80312" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Resource
- Fragments</a></b><b>.</b> Provide support for segregation of UML2 </span><span
- style='position:absolute;top:34.25%;left:21.34%;width:83.7%;height:3.5%'>resources
- into 'fragments' (e.g. *.fragment.uml2) with packages as root </span><span
- style='position:absolute;top:37.5%;left:21.34%;width:70.22%;height:3.5%'>elements.&#13;</span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:42.0%;left:21.34%;width:73.03%;height:3.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-4.1%;font-family:Wingdings'>§</span><b><p:onmouseclick
-  hyperlinktype="url" href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=80313" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>Derived
- Features</a></b><b>.</b> Make derived features changeable (where </span><span
- style='position:absolute;top:45.25%;left:21.34%;width:81.08%;height:3.5%'>appropriate)
- and improve support for unions, subsets, and supersets </span><span
- style='position:absolute;top:48.5%;left:21.34%;width:70.22%;height:3.5%'>(where
- possible).&#13;</span></div>
- <div class=B1 style='mso-line-spacing:"90 25 15"'><span style='position:absolute;
- top:53.25%;left:21.34%;width:76.02%;height:3.5%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.94%;font-family:Wingdings'>§</span><b><p:onmouseclick
-  hyperlinktype="url"
-  href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=122863"/><a
- href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=122863" target="_blank"
- onclick="window.event.cancelBubble=true;" style='position:relative'>UML Ecore
- Importer / Exporter</a></b><b>.</b> Provide an exporter that takes </span><span
- style='position:absolute;top:56.5%;left:21.34%;width:78.83%;height:3.5%'>advantage
- of the new exporter framework in EMF to convert Ecore </span><span
- style='position:absolute;top:59.75%;left:21.34%;width:82.95%;height:3.5%'>models
- to UML (*.uml) models, in addition to an importer that converts </span><span
- style='position:absolute;top:62.75%;left:21.34%;width:70.22%;height:3.5%'>UML
- models to Ecore.&#13;</span></div>
- <div class=B style='mso-line-spacing:"90 0 0";position:absolute;top:66.5%;
- left:13.1%;width:78.46%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.34%;width:96.89%;height:100.0%'><span style='visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-3.44%;font-family:
- Wingdings'>§</span></span>&#13;</span></div>
- <div class=B style='mso-line-spacing:"90 0 0"'><span style='position:absolute;
- top:70.25%;left:15.73%;width:76.02%;height:4.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.44%;font-family:Wingdings'>§</span>2.0
- release notes available at </span><span style='position:absolute;top:73.75%;
- left:15.73%;width:89.32%;height:4.0%'>http://www.eclipse.org/modeling/mdt/news/release-notes.php?project=uml2&amp;version=2.0.0</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0159.htm b/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0159.htm
deleted file mode 100644
index 8f871c4..0000000
--- a/uml2/docs/presentations/UML2_2.0_Release_Review_files/slide0159.htm
+++ /dev/null
@@ -1,125 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File href="../UML2_2.0_Release_Review.htm">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>UML2 2.0 Release Review</title>
-<meta name=Description content="6/9/2006: Release Review Version">
-<link rel=Stylesheet href="master04_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="223"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:#322C72;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#000000,#FFFFFF,#CCCCFF,#808080,#7889FB,#DFFF66,#C0C0C0,#D18213"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s4097"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s4100"/><![if !vml]><img border=0
- v:shapes="_x0000_s4100" src="master04_image007.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4101"/>
- <div v:shape="_x0000_s4101" class=O>
- <div style='mso-char-wrap:0;mso-kinsoku-overflow:0;position:absolute;
- top:95.0%;left:2.62%;width:65.35%;height:2.75%'><span style='font-family:Arial;
- mso-hansi-font-family:Arial;font-size:67%'>© 2006 by IBM; made available under
- the EPL v1.0 |<span style='mso-spacerun:yes'>  </span>Wednesday, June 7</span></div>
- </div>
- <p:shaperange href="master04.xml#_x0000_s4102"/><![if !vml]><img border=0
- v:shapes="_x0000_s4102" src="master04_image008.jpg" style='position:absolute;
- top:0%;left:79.96%;width:20.03%;height:13.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s4103"/>
- <div v:shape="_x0000_s4103" class=O>
- <div style='position:absolute;top:94.0%;left:77.71%;width:21.53%;height:3.25%'><span
- style='font-size:78%;mso-field-code:meta16'>20</span><span style='font-size:
- 78%;mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m4098"/><v:shape id="_x0000_s228354"
-  type="#_x0000_m4098" style='position:absolute;left:12.125pt;top:68.625pt;
-  width:649.25pt;height:39.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <v:imagedata preservegray="f" grayscale="f" bilevel="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m4099"/><v:shape id="_x0000_s228355" type="#_x0000_m4099"
-  style='position:absolute;left:87.625pt;top:139.875pt;width:578.625pt;
-  height:307.25pt' o:userdrawn="f">
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s228354" class=T style='position:absolute;top:13.25%;
- left:2.62%;width:88.38%;height:6.0%'>Release Review Version</div>
- <div v:shape="_x0000_s228355" class=B><span style='position:absolute;
- top:26.75%;left:15.73%;width:87.45%;height:4.0%'><span class=BB
- style='position:absolute;left:-2.99%'>§</span>This presentation is based on
- Release Review version 032, dated </span><span style='position:absolute;
- top:30.75%;left:15.73%;width:76.02%;height:4.0%'>January 15, 2006</span></div>
-</p:slide></div>
-
-<![if !ppt]>
-
-<div id=NotesObj style='display:none'>
-
-<table style='color:white' border=0 width="100%">
- <tr>
-  <td width=5 nowrap></td>
-  <td width="100%"></td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3>The slides should include
-  reference to the version of this document the Review is based on.</font><br>
-  </td>
- </tr>
- <tr>
-  <td colspan=1></td>
-  <td align=left colspan=1><font face=Arial size=3><b><i>Reason:</i></b> The
-  guidelines are continually evolving and a reader in the future will want to
-  know what version of the guidelines were in place when the Release Review was
-  completed.</font><br>
-  </td>
- </tr>
-</table>
-
-</div>
-
-<![endif]>
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html
deleted file mode 100644
index d5765a5..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html
+++ /dev/null
@@ -1,84 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link rel=File-List
-href="EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/filelist.xml">
-<link rel=Preview
-href="EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/preview.wmf">
-<link rel=Edit-Time-Data
-href="EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/editdata.mso">
-<title>New Features Of UML2</title>
-<!--[if gte mso 9]><xml>
- <o:DocumentProperties>
-  <o:Author>James Bruck</o:Author>
-  <o:LastAuthor>jbruck</o:LastAuthor>
-  <o:Revision>254</o:Revision>
-  <o:TotalTime>7048</o:TotalTime>
-  <o:Created>2007-12-12T17:59:30Z</o:Created>
-  <o:LastSaved>2008-04-09T20:17:00Z</o:LastSaved>
-  <o:Words>1898</o:Words>
-  <o:PresentationFormat>On-screen Show</o:PresentationFormat>
-  <o:Company>IBM</o:Company>
-  <o:Bytes>521271</o:Bytes>
-  <o:Paragraphs>451</o:Paragraphs>
-  <o:Slides>55</o:Slides>
-  <o:Version>10.6830</o:Version>
- </o:DocumentProperties>
- <o:OfficeDocumentSettings>
-  <o:PixelsPerInch>80</o:PixelsPerInch>
- </o:OfficeDocumentSettings>
-</xml><![endif]-->
-<link rel=Presentation-XML
-href="EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/pres.xml">
-<meta name=Description
-content="4/9/2008: Creating Robust Scalable DSLs with UML ">
-<meta http-equiv=expires content=0>
-<![if !ppt]><script>
-<!--
-	var ver = 0, appVer = navigator.appVersion, msie = appVer.indexOf( "MSIE " )
-	var msieWin31 = (appVer.indexOf( "Windows 3.1" ) >= 0), isMac = (appVer.indexOf("Macintosh") >= 0)
-	if( msie >= 0 )
-		ver = parseFloat( appVer.substring( msie+5, appVer.indexOf ( ";", msie ) ) )
-	else
-		ver = parseInt( appVer )
-	browserSupported=0
-	if( !isMac && ver >= 4 && msie >= 0 ) {
-		browserSupported=1
-		window.location.replace( 'EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/frame.html'+document.location.hash )
-	}
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-<script><!--
-
-if( browserSupported )
-	document.writeln('<div style="visibility:hidden">');
-
-//--></script><font face=Arial size=2><b>
-
-<p>This presentation contains content that your browser may not be able to show
-properly. This presentation was optimized for more recent versions of Microsoft
-Internet Explorer.</p>
-
-<p>If you would like to proceed anyway, click <a
-href="EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/frame.html">here</a>.</p>
-
-</b></font><script><!--
-
-if( browserSupported )
-	document.writeln('</div>');
-
-//--></script>
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/buttons.gif b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/buttons.gif
deleted file mode 100644
index 1f2c73c..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/buttons.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/editdata.mso b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/editdata.mso
deleted file mode 100644
index e523219..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/editdata.mso
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/filelist.xml b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/filelist.xml
deleted file mode 100644
index 95fb5e4..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/filelist.xml
+++ /dev/null
@@ -1,133 +0,0 @@
-<xml xmlns:o="urn:schemas-microsoft-com:office:office">
- <o:File HRef="master03.html"/>
- <o:File HRef="master03.xml"/>
- <o:File HRef="preview.wmf"/>
- <o:File HRef="master03_image001.jpg"/>
- <o:File HRef="master03_image002.jpg"/>
- <o:File HRef="editdata.mso"/>
- <o:File HRef="master04.html"/>
- <o:File HRef="master04.xml"/>
- <o:File HRef="master02.html"/>
- <o:File HRef="pres.xml"/>
- <o:File HRef="slide0001.html"/>
- <o:File HRef="master04_image003.jpg"/>
- <o:File HRef="master04_image004.jpg"/>
- <o:File HRef="slide0060.html"/>
- <o:File HRef="master03_image005.jpg"/>
- <o:File HRef="master03_image006.jpg"/>
- <o:File HRef="slide0061.html"/>
- <o:File HRef="slide0091.html"/>
- <o:File HRef="slide0092.html"/>
- <o:File HRef="slide0093.html"/>
- <o:File HRef="slide0136.html"/>
- <o:File HRef="slide0136_image007.png"/>
- <o:File HRef="slide0136_image008.jpg"/>
- <o:File HRef="slide0137.html"/>
- <o:File HRef="slide0137_image009.png"/>
- <o:File HRef="slide0137_image010.jpg"/>
- <o:File HRef="slide0138.html"/>
- <o:File HRef="slide0095.html"/>
- <o:File HRef="slide0133.html"/>
- <o:File HRef="slide0067.html"/>
- <o:File HRef="slide0125.html"/>
- <o:File HRef="slide0125_image011.png"/>
- <o:File HRef="slide0125_image012.jpg"/>
- <o:File HRef="slide0097.html"/>
- <o:File HRef="slide0123.html"/>
- <o:File HRef="slide0124.html"/>
- <o:File HRef="slide0124_image013.png"/>
- <o:File HRef="slide0124_image014.jpg"/>
- <o:File HRef="slide0139.html"/>
- <o:File HRef="slide0139_image015.png"/>
- <o:File HRef="slide0139_image016.jpg"/>
- <o:File HRef="slide0131.html"/>
- <o:File HRef="slide0068.html"/>
- <o:File HRef="slide0098.html"/>
- <o:File HRef="slide0132.html"/>
- <o:File HRef="slide0072.html"/>
- <o:File HRef="slide0099.html"/>
- <o:File HRef="slide0100.html"/>
- <o:File HRef="slide0080.html"/>
- <o:File HRef="slide0118.html"/>
- <o:File HRef="slide0119.html"/>
- <o:File HRef="slide0081.html"/>
- <o:File HRef="slide0120.html"/>
- <o:File HRef="slide0121.html"/>
- <o:File HRef="slide0121_image017.png"/>
- <o:File HRef="slide0121_image018.jpg"/>
- <o:File HRef="slide0082.html"/>
- <o:File HRef="slide0122.html"/>
- <o:File HRef="slide0117.html"/>
- <o:File HRef="slide0117_image019.png"/>
- <o:File HRef="slide0117_image020.jpg"/>
- <o:File HRef="slide0101.html"/>
- <o:File HRef="slide0128.html"/>
- <o:File HRef="slide0128_image021.png"/>
- <o:File HRef="slide0128_image022.jpg"/>
- <o:File HRef="slide0140.html"/>
- <o:File HRef="slide0140_image023.png"/>
- <o:File HRef="slide0140_image024.jpg"/>
- <o:File HRef="slide0102.html"/>
- <o:File HRef="slide0108.html"/>
- <o:File HRef="slide0115.html"/>
- <o:File HRef="slide0115_image025.png"/>
- <o:File HRef="slide0115_image026.jpg"/>
- <o:File HRef="slide0116.html"/>
- <o:File HRef="slide0116_image027.png"/>
- <o:File HRef="slide0116_image028.jpg"/>
- <o:File HRef="slide0116_image029.png"/>
- <o:File HRef="slide0116_image030.jpg"/>
- <o:File HRef="slide0116_image031.gif"/>
- <o:File HRef="slide0086.html"/>
- <o:File HRef="slide0135.html"/>
- <o:File HRef="slide0135_image032.png"/>
- <o:File HRef="slide0135_image033.jpg"/>
- <o:File HRef="slide0087.html"/>
- <o:File HRef="slide0087_image034.png"/>
- <o:File HRef="slide0087_image035.jpg"/>
- <o:File HRef="slide0088.html"/>
- <o:File HRef="slide0088_image036.png"/>
- <o:File HRef="slide0088_image037.jpg"/>
- <o:File HRef="slide0109.html"/>
- <o:File HRef="slide0109_image038.png"/>
- <o:File HRef="slide0109_image039.jpg"/>
- <o:File HRef="slide0110.html"/>
- <o:File HRef="slide0110_image040.png"/>
- <o:File HRef="slide0110_image041.jpg"/>
- <o:File HRef="slide0104.html"/>
- <o:File HRef="slide0106.html"/>
- <o:File HRef="slide0106_image042.png"/>
- <o:File HRef="slide0106_image043.jpg"/>
- <o:File HRef="slide0129.html"/>
- <o:File HRef="slide0129_image044.png"/>
- <o:File HRef="slide0129_image045.jpg"/>
- <o:File HRef="slide0129_image046.gif"/>
- <o:File HRef="slide0129_image047.png"/>
- <o:File HRef="slide0129_image048.jpg"/>
- <o:File HRef="slide0141.html"/>
- <o:File HRef="slide0141_image049.png"/>
- <o:File HRef="slide0141_image050.jpg"/>
- <o:File HRef="slide0130.html"/>
- <o:File HRef="slide0130_image051.png"/>
- <o:File HRef="slide0130_image052.jpg"/>
- <o:File HRef="slide0130_image053.png"/>
- <o:File HRef="slide0130_image054.jpg"/>
- <o:File HRef="slide0130_image055.gif"/>
- <o:File HRef="slide0130_image056.png"/>
- <o:File HRef="slide0130_image057.jpg"/>
- <o:File HRef="slide0130_image058.gif"/>
- <o:File HRef="slide0103.html"/>
- <o:File HRef="slide0069.html"/>
- <o:File HRef="slide0057.html"/>
- <o:File HRef="slide0059.html"/>
- <o:File HRef="master01.html"/>
- <o:File HRef="master03_stylesheet.css"/>
- <o:File HRef="script.js"/>
- <o:MainFile
-  HRef="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html"/>
- <o:File HRef="fullscreen.html"/>
- <o:File HRef="buttons.gif"/>
- <o:File HRef="frame.html"/>
- <o:File HRef="outline.html"/>
- <o:File HRef="filelist.xml"/>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/frame.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/frame.html
deleted file mode 100644
index ed21e65..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/frame.html
+++ /dev/null
@@ -1,38 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<title>New Features Of UML2</title>
-<![if !ppt]><script src=script.js></script><script>
-<!--
-var gNavLoaded = gOtlNavLoaded = gOtlLoaded = false;
-function Load()
-{
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(str) PPTSld.location.replace(escape(str));
-}
-//-->
-</script>
-<![endif]>
-</head>
-
-
-<frameset rows="*,25" border=0>
- <frameset cols="25%,*" onload="Load()" id=PPTHorizAdjust framespacing=1 frameborder=1>
-  <frame src=outline.html title="Outline" name=PPTOtl>
-  <frame src=slide0001.html title="Slide" name=PPTSld>
- </frameset>
- <frameset cols="25%,*" framespacing=1>
-  <frame src=outline.html title="Outline
-Navigation Bar" name=PPTOtlNav scrolling=no noresize>
-  <frame src=outline.html title="Slide
-Navigation Bar" name=PPTNav scrolling=no noresize>
- </frameset>
-</frameset>
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/fullscreen.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/fullscreen.html
deleted file mode 100644
index 7a82f54..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/fullscreen.html
+++ /dev/null
@@ -1,30 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<script src=script.js></script><script><!--
-var SCREEN_MODE   = "FullScreen";
-function Load() {
-	str=unescape(document.location.hash),idx=str.indexOf('#')
-	if(idx>=0) str=str.substr(1);
-	if(!str) str = "slide0001.html";
-	PPTSld.location.replace(MHTMLPrefix+escape(str));
-}
-function Unload() {
-	if ( document.body.PPTSldFrameset != null )
-		document.body.PPTSldFrameset.frames[1].document.body.resume();
-}
-//-->
-</script>
-</head>
-
-<frameset rows="*" frameborder=0 onload="Load()" onunload="Unload()">
- <frame name=PPTSld>
-</frameset>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master01.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master01.html
deleted file mode 100644
index 0b0fad8..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master01.html
+++ /dev/null
@@ -1,171 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="5"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s5121" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s5122" style='position:absolute;left:0;
- top:0;width:239pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.57556mm,1.2878mm,2.57556mm,1.2878mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s5122" style='tab-interval:1.0138in'>
-
-<div class=O1 style='mso-margin-left-alt:292;mso-text-indent-alt:292'></div>
-
-<div class=O2 style='mso-margin-left-alt:584;mso-text-indent-alt:584'></div>
-
-<div class=O3 style='mso-margin-left-alt:876;mso-text-indent-alt:876'></div>
-
-<div class=O4 style='mso-margin-left-alt:1168;mso-text-indent-alt:1168'></div>
-
-<div class=O><span style='font-size:50%;mso-field-code:meta14'>‹header›</span><span
-style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s5123" style='position:absolute;left:312.5pt;top:0;
- width:239pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.57556mm,1.2878mm,2.57556mm,1.2878mm"/>
- <p:placeholder type="dateTime" position="1"/></v:shapetype>
-
-<div v:shape="_x0000_s5123" style='tab-interval:1.0138in'>
-
-<div class=O1 style='mso-margin-left-alt:292;mso-text-indent-alt:292'></div>
-
-<div class=O2 style='mso-margin-left-alt:584;mso-text-indent-alt:584'></div>
-
-<div class=O3 style='mso-margin-left-alt:876;mso-text-indent-alt:876'></div>
-
-<div class=O4 style='mso-margin-left-alt:1168;mso-text-indent-alt:1168'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:50%;
-mso-field-code:meta0'>‹date/time›</span><span style='font-size:50%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s5124" style='position:absolute;left:94.125pt;top:54.5pt;
- width:363.25pt;height:272.375pt;v-text-anchor:middle' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe">
- <v:fill o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter"/>
- <v:shadow obscured="t"/>
- <v:path gradientshapeok="t" fillok="f" o:connecttype="rect"/>
- <o:lock v:ext="edit" text="t"/>
- <p:placeholder type="slideImage" position="2"/></v:shapetype><v:shapetype
- id="_x0000_s5125" style='position:absolute;left:73.5pt;top:345pt;width:404.5pt;
- height:326.75pt' coordsize="21600,21600" o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe"
- filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.57556mm,1.2878mm,2.57556mm,1.2878mm"/>
- <p:placeholder type="body" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s5125">
-
-<div class=N>Click to edit Master text styles&#13;</div>
-
-<div class=N1>Second level&#13;</div>
-
-<div class=N2>Third level&#13;</div>
-
-<div class=N3>Fourth level&#13;</div>
-
-<div class=N4>Fifth level</div>
-
-</div>
-
-<v:shapetype id="_x0000_s5126" style='position:absolute;left:0;top:690pt;
- width:239pt;height:36.25pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.57556mm,1.2878mm,2.57556mm,1.2878mm"/>
- <p:placeholder type="footer" position="4" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s5126" style='tab-interval:1.0138in'>
-
-<div class=O1 style='mso-margin-left-alt:292;mso-text-indent-alt:292'></div>
-
-<div class=O2 style='mso-margin-left-alt:584;mso-text-indent-alt:584'></div>
-
-<div class=O3 style='mso-margin-left-alt:876;mso-text-indent-alt:876'></div>
-
-<div class=O4 style='mso-margin-left-alt:1168;mso-text-indent-alt:1168'></div>
-
-<div class=O><span style='font-size:50%;mso-field-code:meta15'>‹footer›</span><span
-style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s5127" style='position:absolute;left:312.5pt;top:690pt;
- width:239pt;height:36.25pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.57556mm,1.2878mm,2.57556mm,1.2878mm"/>
- <p:placeholder type="slideNumber" position="5" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s5127" style='tab-interval:1.0138in'>
-
-<div class=O1 style='mso-margin-left-alt:292;mso-text-indent-alt:292'></div>
-
-<div class=O2 style='mso-margin-left-alt:584;mso-text-indent-alt:584'></div>
-
-<div class=O3 style='mso-margin-left-alt:876;mso-text-indent-alt:876'></div>
-
-<div class=O4 style='mso-margin-left-alt:1168;mso-text-indent-alt:1168'></div>
-
-<div class=O style='text-align:right'><span style='font-size:50%;mso-field-code:
-meta16'>‹#›</span><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master02.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master02.html
deleted file mode 100644
index 83a8cbf..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master02.html
+++ /dev/null
@@ -1,138 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="3"/>
-</o:shapelayout>
-</head>
-
-<body>
-<p:colorscheme
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/><v:background
- id="_x0000_s3073" o:bwmode="white" fillcolor="white [0]">
- <v:fill color2="#339 [5]"/>
-</v:background><v:shapetype id="_x0000_s3074" style='position:absolute;left:0;
- top:0;width:239pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.57556mm,1.2878mm,2.57556mm,1.2878mm"/>
- <p:placeholder type="header" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s3074" style='tab-interval:1.0138in'>
-
-<div class=O1 style='mso-margin-left-alt:292;mso-text-indent-alt:292'></div>
-
-<div class=O2 style='mso-margin-left-alt:584;mso-text-indent-alt:584'></div>
-
-<div class=O3 style='mso-margin-left-alt:876;mso-text-indent-alt:876'></div>
-
-<div class=O4 style='mso-margin-left-alt:1168;mso-text-indent-alt:1168'></div>
-
-<div class=O><span style='font-size:50%;mso-field-code:meta14'>‹header›</span><span
-style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s3075" style='position:absolute;left:312.5pt;top:0;
- width:239pt;height:36.375pt' coordsize="21600,21600" o:master="" o:spt="1"
- path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
- strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.57556mm,1.2878mm,2.57556mm,1.2878mm"/>
- <p:placeholder type="dateTime" position="1" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s3075" style='tab-interval:1.0138in'>
-
-<div class=O1 style='mso-margin-left-alt:292;mso-text-indent-alt:292'></div>
-
-<div class=O2 style='mso-margin-left-alt:584;mso-text-indent-alt:584'></div>
-
-<div class=O3 style='mso-margin-left-alt:876;mso-text-indent-alt:876'></div>
-
-<div class=O4 style='mso-margin-left-alt:1168;mso-text-indent-alt:1168'></div>
-
-<div class=O style='text-align:right'><span lang=EN-US style='font-size:50%;
-mso-field-code:meta0'>‹date/time›</span><span style='font-size:50%;mso-special-format:
-lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s3076" style='position:absolute;left:0;top:690pt;
- width:239pt;height:36.25pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.57556mm,1.2878mm,2.57556mm,1.2878mm"/>
- <p:placeholder type="footer" position="2" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s3076" style='tab-interval:1.0138in'>
-
-<div class=O1 style='mso-margin-left-alt:292;mso-text-indent-alt:292'></div>
-
-<div class=O2 style='mso-margin-left-alt:584;mso-text-indent-alt:584'></div>
-
-<div class=O3 style='mso-margin-left-alt:876;mso-text-indent-alt:876'></div>
-
-<div class=O4 style='mso-margin-left-alt:1168;mso-text-indent-alt:1168'></div>
-
-<div class=O><span style='font-size:50%;mso-field-code:meta15'>‹footer›</span><span
-style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-<v:shapetype id="_x0000_s3077" style='position:absolute;left:312.5pt;top:690pt;
- width:239pt;height:36.25pt;v-text-anchor:bottom' coordsize="21600,21600"
- o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
- stroked="f" strokecolor="black [1]">
- <v:fill color2="white [0]" o:detectmouseclick="t"/>
- <v:stroke joinstyle="miter" o:forcedash="t"/>
- <v:path gradientshapeok="t" o:connecttype="rect"/>
- <o:lock v:ext="edit" grouping="t"/>
- <v:textbox inset="2.57556mm,1.2878mm,2.57556mm,1.2878mm"/>
- <p:placeholder type="slideNumber" position="3" size="quarter"/></v:shapetype>
-
-<div v:shape="_x0000_s3077" style='tab-interval:1.0138in'>
-
-<div class=O1 style='mso-margin-left-alt:292;mso-text-indent-alt:292'></div>
-
-<div class=O2 style='mso-margin-left-alt:584;mso-text-indent-alt:584'></div>
-
-<div class=O3 style='mso-margin-left-alt:876;mso-text-indent-alt:876'></div>
-
-<div class=O4 style='mso-margin-left-alt:1168;mso-text-indent-alt:1168'></div>
-
-<div class=O style='text-align:right'><span style='font-size:50%;mso-field-code:
-meta16'>‹#›</span><span style='font-size:50%;mso-special-format:lastCR'>&#13;</span></div>
-
-</div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03.html
deleted file mode 100644
index 7730657..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03.html
+++ /dev/null
@@ -1,57 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m1026" class=T>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m1027" style='tab-stops:.4427in'>
-
-<div class=B>Click to edit Master text styles&#13;</div>
-
-<div class=B1>Second level&#13;</div>
-
-<div class=B2>Third level&#13;</div>
-
-<div class=B3>Fourth level&#13;</div>
-
-<div class=B4>Fifth level</div>
-
-</div>
-
-<div v:shape="_x0000_s1033" class=O><span style='mso-bidi-font-family:Arial;
-font-size:42%'><span style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
-style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
-42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'>  </span>Tutorial
-| Copyright © IBM Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All
-rights reserved. </span></div>
-
-<div v:shape="_x0000_s1035" class=O style='mso-line-spacing:"100 50 0";
-mso-char-wrap:1;mso-kinsoku-overflow:1'><span lang=EN-US style='mso-bidi-font-family:
-Arial;font-size:42%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>‹#›</b></span><span
-lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
-EN-US;mso-special-format:lastCR'><b>&#13;</b></span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03.xml b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03.xml
deleted file mode 100644
index ab5aae9..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03.xml
+++ /dev/null
@@ -1,76 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="1"/>
- </o:shapelayout><p:colorscheme
-  colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/>
- <v:background id="_x0000_s1025" o:bwmode="white" fillcolor="white [0]">
-  <v:fill color2="#339 [5]"/>
- </v:background><p:shaperange id="_x0000_s1032">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s1032" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master03_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_m1026">
-  <v:shapetype id="_x0000_m1026" style='position:absolute;left:54pt;top:84pt;
-   width:612pt;height:42pt;v-text-anchor:middle' coordsize="21600,21600"
-   o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f"
-   fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="title"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m1027">
-  <v:shapetype id="_x0000_m1027" style='position:absolute;left:54pt;top:138pt;
-   width:612pt;height:342pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
-   stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="body" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s1031">
-  <v:shape id="_x0000_s1031" type="#_x0000_t75" style='position:absolute;
-   left:14.75pt;top:0;width:262.125pt;height:76pt' o:userdrawn="t">
-   <v:imagedata src="master03_image002.jpg" o:title="eclipsecon_2008"
-    croptop="8573f" cropbottom="8252f"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s1033">
-  <v:rect id="_x0000_s1033" style='position:absolute;left:114pt;top:509.875pt;
-   width:606pt;height:19.25pt' o:bwmode="black" o:userdrawn="t" filled="f"
-   fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]"/>
-   <v:shadow color="gray [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-   <p:tag name="___PPTMac11" type="binary" datasize="284" dataoffset="5"/>
-  </v:rect><v:rect id="_x0000_s1035" style='position:absolute;left:0;top:514.75pt;
-   width:79.25pt;height:25.25pt' o:bwmode="black" filled="f" fillcolor="#bbe0e3 [4]"
-   stroked="f" strokecolor="black [1]">
-   <v:shadow color="gray [2]"/>
-  </v:rect></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_image001.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_image001.jpg
deleted file mode 100644
index 6218aec..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_image001.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_image002.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_image002.jpg
deleted file mode 100644
index 6ebe300..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_image002.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_image005.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_image005.jpg
deleted file mode 100644
index df11cf0..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_image005.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_image006.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_image006.jpg
deleted file mode 100644
index 3caadfb..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_image006.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_stylesheet.css b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_stylesheet.css
deleted file mode 100644
index 029ada9..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master03_stylesheet.css
+++ /dev/null
@@ -1,470 +0,0 @@
-body
-	{width:534px;
-	height:400px;}
-.TB
-	{mso-special-format:nobullet•;}
-.T
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#2F2672;
-	font-size:133%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.BB
-	{mso-special-format:bullet•;}
-.B
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:114%;
-	mso-margin-left-alt:109;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B1B
-	{mso-special-format:bulletw;
-	font-family:Wingdings;}
-.B1
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:95%;
-	mso-margin-left-alt:395;
-	mso-text-indent-alt:252;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B2B
-	{mso-special-format:bullet§;
-	font-family:Wingdings;}
-.B2
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:85%;
-	mso-margin-left-alt:613;
-	mso-text-indent-alt:504;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B3B
-	{mso-special-format:bullet\F0AA;
-	font-family:Wingdings;}
-.B3
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:76%;
-	mso-margin-left-alt:826;
-	mso-text-indent-alt:685;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.B4B
-	{mso-special-format:bullet\F0AB;
-	font-family:Wingdings;}
-.B4
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:76%;
-	mso-margin-left-alt:1081;
-	mso-text-indent-alt:935;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.NB
-	{mso-special-format:nobullet•;}
-.N
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N1B
-	{mso-special-format:nobullet•;}
-.N1
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N2B
-	{mso-special-format:nobullet•;}
-.N2
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N3B
-	{mso-special-format:nobullet•;}
-.N3
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.N4N
-	{mso-special-format:nobullet•;}
-.N4
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:57%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.OB
-	{mso-special-format:nobullet•;}
-.O
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:114%;}
-.O1B
-	{mso-special-format:nobullet•;}
-.O1
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:114%;}
-.O2B
-	{mso-special-format:nobullet•;}
-.O2
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:114%;}
-.O3B
-	{mso-special-format:nobullet•;}
-.O3
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:114%;}
-.O4B
-	{mso-special-format:nobullet•;}
-.O4
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:114%;}
-.CBB
-	{mso-special-format:nobullet•;}
-.CB
-	{text-align:center;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:114%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB1B
-	{mso-special-format:nobulletw;
-	font-family:Wingdings;}
-.CB1
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:95%;
-	mso-margin-left-alt:252;
-	mso-text-indent-alt:252;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB2B
-	{mso-special-format:nobullet§;
-	font-family:Wingdings;}
-.CB2
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:85%;
-	mso-margin-left-alt:504;
-	mso-text-indent-alt:504;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB3B
-	{mso-special-format:nobullet\F0AA;
-	font-family:Wingdings;}
-.CB3
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:76%;
-	mso-margin-left-alt:685;
-	mso-text-indent-alt:685;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CB4B
-	{mso-special-format:nobullet\F0AB;
-	font-family:Wingdings;}
-.CB4
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:76%;
-	mso-margin-left-alt:935;
-	mso-text-indent-alt:935;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.CTB
-	{mso-special-format:nobullet•;}
-.CT
-	{text-align:left;
-	font-family:Arial;
-	mso-bidi-font-family:Arial;
-	mso-hansi-font-family:Arial;
-	color:#2F2672;
-	font-size:133%;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HBB
-	{mso-special-format:bullet•;}
-.HB
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:95%;
-	mso-margin-left-alt:109;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB1B
-	{mso-special-format:bulletw;
-	font-family:Wingdings;}
-.HB1
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	color:black;
-	mso-color-index:1;
-	font-size:85%;
-	mso-margin-left-alt:395;
-	mso-text-indent-alt:252;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB2B
-	{mso-special-format:bullet§;
-	font-family:Wingdings;}
-.HB2
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:76%;
-	mso-margin-left-alt:613;
-	mso-text-indent-alt:504;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB3B
-	{mso-special-format:bullet\F0AA;
-	font-family:Wingdings;}
-.HB3
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:826;
-	mso-text-indent-alt:685;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.HB4B
-	{mso-special-format:bullet\F0AB;
-	font-family:Wingdings;}
-.HB4
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:1081;
-	mso-text-indent-alt:935;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QBB
-	{mso-special-format:bullet•;}
-.QB
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:85%;
-	mso-margin-left-alt:109;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB1B
-	{mso-special-format:bulletw;
-	font-family:Wingdings;}
-.QB1
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:76%;
-	mso-margin-left-alt:395;
-	mso-text-indent-alt:252;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB2B
-	{mso-special-format:bullet§;
-	font-family:Wingdings;}
-.QB2
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:613;
-	mso-text-indent-alt:504;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB3B
-	{mso-special-format:bullet\F0AA;
-	font-family:Wingdings;}
-.QB3
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:826;
-	mso-text-indent-alt:685;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.QB4B
-	{mso-special-format:bullet\F0AB;
-	font-family:Wingdings;}
-.QB4
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:57%;
-	mso-margin-left-alt:1081;
-	mso-text-indent-alt:935;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.TblB
-	{mso-special-format:nobullet•;}
-.Tbl
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:95%;
-	mso-margin-left-alt:109;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl1B
-	{mso-special-format:nobulletw;
-	font-family:Wingdings;}
-.Tbl1
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:85%;
-	mso-margin-left-alt:395;
-	mso-text-indent-alt:252;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl2B
-	{mso-special-format:nobullet§;
-	font-family:Wingdings;}
-.Tbl2
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:76%;
-	mso-margin-left-alt:613;
-	mso-text-indent-alt:504;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl3B
-	{mso-special-format:nobullet\F0AA;
-	font-family:Wingdings;}
-.Tbl3
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:826;
-	mso-text-indent-alt:685;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.Tbl4B
-	{mso-special-format:nobullet\F0AB;
-	font-family:Wingdings;}
-.Tbl4
-	{font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-size:66%;
-	mso-margin-left-alt:1081;
-	mso-text-indent-alt:935;
-	mso-char-wrap:1;
-	mso-kinsoku-overflow:1;}
-.defaultB
-	{mso-special-format:nobullet•;}
-.default
-	{text-align:left;
-	font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-ascii-font-family:Arial;
-	mso-fareast-font-family:"\FF2D\FF33 \FF30\30B4\30B7\30C3\30AF";
-	mso-hansi-font-family:Arial;
-	font-weight:normal;
-	font-style:normal;
-	text-decoration:none;
-	text-shadow:none;
-	text-effect:none;
-	mso-fareast-hint:no;
-	layout-flow:horizontal;
-	color:black;
-	mso-color-index:1;
-	font-size:114%;
-	mso-text-raise:0%;
-	mso-line-spacing:"100 0 0";
-	mso-margin-left-alt:0;
-	mso-text-indent-alt:0;
-	mso-char-wrap:0;
-	mso-kinsoku-overflow:0;
-	direction:ltr;
-	mso-word-wrap:1;
-	mso-vertical-align-special:baseline;
-	mso-ansi-language:EN-US;}
-a:link
-	{color:#009999 !important;}
-a:active
-	{color:#333399 !important;}
-a:visited
-	{color:#99CC00 !important;}
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master04.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master04.html
deleted file mode 100644
index 4c17c13..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master04.html
+++ /dev/null
@@ -1,42 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]><script src=script.js></script><script>
-<!--
-	parent.location.href=document.all.item("Main-File").href
-//-->
-</script>
-<![endif]>
-</head>
-
-<body>
-
-<div v:shape="_x0000_m24579" class=CT>Click to edit Master title style</div>
-
-<div v:shape="_x0000_m24580" class=CB style='tab-stops:.4427in'>Click to edit
-Master subtitle style</div>
-
-<div v:shape="_x0000_s24584" class=O style='mso-char-wrap:1;mso-kinsoku-overflow:
-1'><span style='mso-bidi-font-family:Arial;font-size:58%'>170</span></div>
-
-<div v:shape="_x0000_s24585" class=O><span lang=EN-US style='font-size:50%;
-mso-ansi-language:EN-US'>Copyright © IBM Corp., 2007-2008. </span><span
-style='mso-bidi-font-family:Arial;font-size:50%'>|<span
-style='mso-spacerun:yes'>  </span>March-17-2008<span style='mso-spacerun:yes'> 
-</span>|</span></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master04.xml b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master04.xml
deleted file mode 100644
index 26d0bce..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master04.xml
+++ /dev/null
@@ -1,85 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <o:shapelayout v:ext="edit">
-  <o:idmap v:ext="edit" data="24"/>
- </o:shapelayout><p:colorscheme
-  colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/>
- <v:background id="_x0000_s24577" o:bwmode="white" fillcolor="white [0]">
-  <v:fill color2="#339 [5]"/>
- </v:background><p:shaperange id="_x0000_s24578">
-  <v:shapetype id="_x0000_t75" coordsize="21600,21600" o:spt="75"
-   o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
-   <v:stroke joinstyle="miter"/>
-   <v:formulas>
-    <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-    <v:f eqn="sum @0 1 0"/>
-    <v:f eqn="sum 0 0 @1"/>
-    <v:f eqn="prod @2 1 2"/>
-    <v:f eqn="prod @3 21600 pixelWidth"/>
-    <v:f eqn="prod @3 21600 pixelHeight"/>
-    <v:f eqn="sum @0 0 1"/>
-    <v:f eqn="prod @6 1 2"/>
-    <v:f eqn="prod @7 21600 pixelWidth"/>
-    <v:f eqn="sum @8 21600 0"/>
-    <v:f eqn="prod @7 21600 pixelHeight"/>
-    <v:f eqn="sum @10 21600 0"/>
-   </v:formulas>
-   <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" aspectratio="t"/>
-  </v:shapetype><v:shape id="_x0000_s24578" type="#_x0000_t75" style='position:absolute;
-   left:0;top:495pt;width:10in;height:45pt' o:userdrawn="t">
-   <v:imagedata src="master03_image001.jpg" o:title="light4"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_m24579">
-  <v:shapetype id="_x0000_m24579" style='position:absolute;left:54pt;top:126pt;
-   width:612pt;height:90pt;v-text-anchor:middle' coordsize="21600,21600"
-   o:master="" o:spt="1" path="m,l,21600r21600,l21600,xe" filled="f"
-   fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="centerTitle"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_m24580">
-  <v:shapetype id="_x0000_m24580" style='position:absolute;left:108pt;top:270pt;
-   width:7in;height:138pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
-   stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="subTitle" position="1"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s24581">
-  <v:shape id="_x0000_s24581" type="#_x0000_t75" style='position:absolute;
-   left:14.75pt;top:0;width:262.125pt;height:76pt' o:userdrawn="t">
-   <v:imagedata src="master03_image002.jpg" o:title="eclipsecon_2008"
-    croptop="8573f" cropbottom="8252f"/>
-  </v:shape></p:shaperange>
- <p:shaperange id="_x0000_s24584">
-  <v:shapetype id="_x0000_s24584" style='position:absolute;left:542pt;top:19pt;
-   width:168pt;height:37.5pt' coordsize="21600,21600" o:master="" o:spt="1"
-   path="m,l,21600r21600,l21600,xe" filled="f" fillcolor="#bbe0e3 [4]"
-   stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]" o:detectmouseclick="t"/>
-   <v:stroke joinstyle="miter" o:forcedash="t"/>
-   <v:shadow color="gray [2]"/>
-   <v:path gradientshapeok="t" o:connecttype="rect"/>
-   <o:lock v:ext="edit" grouping="t"/>
-   <p:placeholder type="slideNumber" position="4" size="quarter"/>
-   <p:tag name="___PPTMac11" type="binary" datasize="284" dataoffset="6"/>
-  </v:shapetype></p:shaperange>
- <p:shaperange id="_x0000_s24585">
-  <v:rect id="_x0000_s24585" style='position:absolute;left:3.625pt;top:508.375pt;
-   width:716.5pt;height:21.625pt' o:bwmode="black" o:userdrawn="t" filled="f"
-   fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-   <v:fill color2="white [0]"/>
-   <v:shadow color="gray [2]"/>
-   <v:textbox style='mso-fit-shape-to-text:t'/>
-   <p:tag name="___PPTMac11" type="binary" datasize="284" dataoffset="7"/>
-  </v:rect></p:shaperange>
-</xml>
\ No newline at end of file
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master04_image003.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master04_image003.jpg
deleted file mode 100644
index df11cf0..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master04_image003.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master04_image004.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master04_image004.jpg
deleted file mode 100644
index 3caadfb..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/master04_image004.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/outline.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/outline.html
deleted file mode 100644
index 3be418f..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/outline.html
+++ /dev/null
@@ -1,1533 +0,0 @@
-<html>
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<meta name=Robots content=NoIndex>
-<script src=script.js></script><script><!--
-if( !(IsWin("PPTOtl")||IsWin("PPTNav")||IsWin("PPTOtlNav")) )
-{
-	obj = GetObj("Main-File")
-	parent.location.href=obj.href
-}
-var gOtlHiliteClr="#ffffff",gOtlNormalClr="#000000",gOtlActiveClr="#ffff00",gSelected="",gTxtState=false,gChildEntryTable=new Array()
-function Load()
-{
-	if( IsWin("PPTOtl" ) ){ LoadOtl(); parent.gOtlLoaded=true; return }
-	if( g_supportsPPTHTML ) {
-		if( IsWin("PPTNav" ) ){ LoadNav("NavObj",UpdNav); parent.gNavLoaded=true; return }
-		if( IsWin("PPTOtlNav" ) ){ LoadNav("OtlNavObj",UpdOtlNav); parent.gOtlNavLoaded=true; return }
-	}
-}
-function Upd(){ if( IsWin("PPTNav") ) LoadNav("NavObj",UpdNav) }
-function LoadNav( oId,UpdFunc )
-{
-	document.ondragstart=CancelDrag
-	document.onselectstart=CancelDrag
-	document.body.style.margin=2
-	UpdFunc()
-	obj=document.all.item(oId)
-	obj.style.display="block"
-	obj.style.visibility="visible"
-	document.bgColor="threedface"
-	if( parent.frames["PPTNts"] )
-		notesBtn.style.display = ""
-	if( parent.gHasNarration )
-		nb_voiceBorder.style.display = ""
-}
-function LoadOtl()
-{
-	var otl=GetObj("OtlObj")
-	otl.style.display="block"
-	otl.style.visibility="visible"
-	if( gOtlActiveClr == "" ) gOtlActiveClr=document.linkColor
-	if( gOtlHiliteClr == "" ) gOtlHiliteClr=document.fgColor
-	if( gOtlNormalClr == "" )
-		gOtlNormalClr=document.bgColor
-	else
-		document.bgColor=gOtlNormalClr
-	InitArray()
-	if( ObjExists( parent.gCurSld ) ) {
-		ChangeState( parent.gCurSld,gOtlNormalClr,gOtlHiliteClr )
-		gSelected=parent.gCurSld
-	}
-	else gSelected = -1
-	UpdOtl()
-}
-function UpdOtl(){ UpdIdx(parent.gCurSld) }
-function UpdIdx( idx )
-{
-	if( gSelected != idx ) {
-		if( gSelected > 0 )
-			ChangeState( gSelected,gOtlHiliteClr,gOtlNormalClr )
-		if( ObjExists( idx ) ) {
-			gSelected = idx
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-		}
-		else gSelected = -1
-	}
-	if( gTxtState != parent.gOtlTxtExp ) {
-		state = "block"
-		if( !parent.gOtlTxtExp )
-			state="none"
-		for(ii=0; ii<gChildEntryTable.length; ii++) {
-			obj=gChildEntryTable[ii];
-			if( obj.id == null ) continue;
-			if( obj.id.indexOf("PPTC") >= 0 )
-				obj.style.display=state;
-		}
-		gTxtState=parent.gOtlTxtExp
-		if( ObjExists( gSelected ) )
-			ChangeState( gSelected,gOtlNormalClr,gOtlHiliteClr )
-	}
-}
-function InitArray()
-{
-	count=0
-	var list=GetTags(document,"DIV");
-	for(ii=0; ii<list.length; ii++) {
-		obj=list.item(ii)
-		if( obj.id == null ) continue
-		if( obj.id.indexOf("PPTC") >= 0 )
-			gChildEntryTable[count++]=obj
-	}
-}
-function ChangeState( idx,fgColor,bgColor )
-{
-	obj=GetObj("PPTL"+idx)
-	obj.style.color=fgColor
-	obj=GetObj("PPTP"+idx)
-	obj.style.backgroundColor=bgColor
-}
-function ChgClr( o,clr ){ if( o.id != "PPTL"+gSelected ) o.style.color=clr }
-function Over( src ){ ChgClr(GetLink(src),gOtlActiveClr) }
-function Out( src ){ ChgClr(GetLink(src),gOtlHiliteClr) }
-function Follow(src){ window.location.href = GetLink(src).href; }
-function ObjExists( ii ) { obj=GetObj("PPTP"+ii ); return( obj ) }
-function GoToSld( href ){ UpdIdx(parent.GetSldNum(href)); parent.GoToSld( href ) }
-function CancelDrag(){ window.event.cancelBubble=true;window.event.returnValue=false}
-function GetLink(src)
-{
-   if(src.tagName=="A") return src
-   else return GetTags(src,"A").item(0)
-}
-function UpdNav()
-{
-	txt = "<center>";
-	if( parent.GetHrefObj( parent.gCurSld ).mOrigVis == 1 )
-		txt += "Slide " + parent.GetCurSldNum() + " of " + parent.GetNumSlds()
-	else
-		txt += "Hidden Slide"
-	txt += "</center>";
-	nav_text.innerHTML = txt;
-	if( !parent.HasPrevSld() )
-		gBtnArr["nb_prev"].Enabled(0)
-	else
-		gBtnArr["nb_prev"].Enabled(1)
-	if( !parent.HasNextSld() )
-		gBtnArr["nb_next"].Enabled(0)
-	else
-		gBtnArr["nb_next"].Enabled(1)
-	gBtnArr["nb_nts"].SetEnabled()
-	gBtnArr["nb_nts"].SetFlag( parent.gHasNts )
-	gBtnArr["nb_sldshw"].Enabled(1)
-	gBtnArr["nb_voice"].Enabled(1)
-}
-function UpdOtlNav()
-{
-	gBtnArr["nb_otl"].SetEnabled();
-	if( parent.gOtlOpen )
-		gBtnArr["nb_otlTxt"].Enabled( true );
-	else
-		document.all.item("nb_otlTxtBorder").style.visibility = "hidden";
-}
-
-//--></script>
-<style>
-<!--.PTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;
-	padding-left:2px;
-	font-weight:bold;}
-.CTxt
-	{position:relative;
-	width:100%;
-	margin-top:5px;}
-a
-	{color:white;
-	text-decoration:none;}
-ul
-	{color:white;
-	margin-bottom:0px;
-	margin-left:20px;}
-.sldNum
-	{margin-top:5px;
-	color:white;}
-.button
-	{position:absolute;
-	width:32px;
-	height:20px;
-	border-style:solid;
-	border-width:1px;
-	border-color:threedface;}
--->
-</style>
-</head>
-
-<body onload="Load()" style='margin:2px'>
-
-<div id=NavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-<table id="notesBtn" style='position:absolute;display:none;width:70px' align=left cellpadding=0
- cellspacing=0>
- <td nowrap>
- <div id="nb_ntsElem" align=center style='position:relative;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt'><img src="notes_flag.gif"
- border=0 id="notes_flag" style='display:none'><span
-style='mso-spacerun:yes'>  </span>Notes</div>
- <div title="Show/Hide Notes" id="nb_nts" style='position:absolute;top:0%;
- left:0%;width:100%;height:100%'></div>
- </td>
-</table>
-
-<table style='position:relative;width:70px' align=right cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_sldshwText" title="Full
-Screen Slide Show" align=center style='position:relative;margin-left:20px;padding:3px;
- font-family:Arial;color:buttontext;font-size:9pt;cursor:default'>Slide
-Show</div>
- <div id="nb_sldshwBorder" title="Full Screen Slide Show" style='position:absolute;top:0%;left:0%;width:100%;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_sldshw" style='position:relative;left:-254px'></div>
- </div>
- </td>
- <td>
- <div id="nb_voiceBorder" style='display:none;position:absolute;top:0;left:-40px;
- width:20px;height:20px'>
- <div style='position:absolute;clip:rect(0px, 18px, 18px, 0px)'><img
- src="buttons.gif" id="nb_voice" title="Pause/Play Narration" style='position:
- relative;left:-290px'></div>
- </div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td nowrap>
- <div id="nb_prevBorder" class=button style='left:-30px'>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_prev" title="Previous Slide" style='position:relative;
- left:0px'></div>
- </div>
- <span id="nav_text" style='position:relative;top:3px;width:100px;font-family:
- Arial;color:buttontext;font-size:9pt'></span>
- <div id="nb_nextBorder" class=button>
- <div style='position:absolute;clip:rect(0px, 30px, 18px, 0px)'><img
- src="buttons.gif" id="nb_next" title="Next Slide" style='position:relative;
- left:-90px'></div>
- </div>
- </td>
-</table>
-</div>
-
-<div id=OtlNavObj onload="Load()" onmouseover="BtnOnOver()"
-onmousedown="BtnOnDown()" onmouseout="BtnOnOut()" onmouseup="BtnOnUp()"
-onkeypress="_KPH()" style='display:none;visibility:hidden'>
-
-<table style='position:relative;width:70px' align=left cellpadding=0 cellspacing=0>
- <td nowrap><div title="Show/Hide
-Outline" id="nb_otl"
- style='position:absolute;top:0%;left:0%;width:100%;height:100%;cursor:default'>
- <div id="nb_otlElem" align=center style='position:relative;padding:3px;font-family:Arial;
- color:buttontext;font-size:9pt'>Outline</div></div>
- </td>
-</table>
-
-<table style='position:relative' align=center cellpadding=0 cellspacing=0>
- <td>
- <div style='position:absolute;left:-18px;width:24px;height:20px;border-style:
- solid;border-width:1px;border-color:threedface' id="nb_otlTxtBorder">
- <div style='position:absolute;clip:rect(0px, 22px, 18px, 0px)'><img
- src=buttons.gif id="nb_otlTxt" title="Expand/Collapse Outline"
- style='position:relative;left:-157px'></div>
- </div>
- </td>
-</table>
-
-</div>
-
-<div id=OtlObj style='display:none;visibility:hidden;'>
-
-
-<table width="100%" style='font-family:Arial;font-size:9pt'>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>1</font></div>
-  </td>
-  <td width="100%">
-  <div id=PPTP1 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0001.html');" id=PPTL1>Creating Robust
-  Scalable DSLs with UML</a></font></div>
-  <div id=PPTC1 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Tutorial</li>
-   <li>(172)</li>
-   <br>
-   <br>
-   <li>James Bruck,</li>
-   <li>Christian Damus</li>
-   <li>IBM Rational Software</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>2</font></div>
-  </td>
-  <td>
-  <div id=PPTP2 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0060.html');" id=PPTL2>Agenda</a></font></div>
-  <div id=PPTC2 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduction</li>
-   <li>Exploring Extension Mechanisms</li>
-   <ul>
-    <li>Featherweight</li>
-    <li>Lightweight</li>
-    <li>Middleweight</li>
-    <li>Heavyweight</li>
-   </ul>
-   <li>Advanced Concepts</li>
-   <ul>
-    <li>Subsetting</li>
-    <li>Derived Unions</li>
-    <li>Redefinition</li>
-   </ul>
-   <li>Meta-model Decomposition</li>
-   <ul>
-    <li>Package Merge</li>
-    <li>Language Units</li>
-    <li>Compliance Levels</li>
-   </ul>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>3</font></div>
-  </td>
-  <td>
-  <div id=PPTP3 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0061.html');" id=PPTL3>Introduction – What is
-  a DSL?</a></font></div>
-  <div id=PPTC3 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>DSL stands for “Domain Specific Language”.</li>
-   <br>
-   <br>
-   <li>A DSL is created specifically to solve problems in a particular domain.</li>
-   <ul>
-    <li>A language designed to be useful for a specific task.</li>
-    <br>
-    <br>
-   </ul>
-   <li>UML® is a general purpose modeling language.</li>
-   <ul>
-    <li>Large and very expressive.</li>
-    <li>UML 1.x was sometimes criticized for being too large, UML 2.x adds even
-        more concepts.</li>
-    <ul>
-     <br>
-     <br>
-    </ul>
-   </ul>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>4</font></div>
-  </td>
-  <td>
-  <div id=PPTP4 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0091.html');" id=PPTL4>Introduction – Why
-  extend UML?</a></font></div>
-  <div id=PPTC4 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>A common end-goal of those wishing to extend UML is to leverage existing
-       tools and conventions defined by UML while making modeling easier for
-       the end user.</li>
-   <br>
-   <br>
-   <ul>
-    <li>Give a terminology that is adapted to a particular domain.</li>
-    <li>Give a different notation for already existing symbols</li>
-    <li>Add semantics that do not exist in the meta-model.</li>
-    <li>Add constraints that restrict the way you use the meta-model.</li>
-    <li>Add information that can be used when transforming a model to another
-        model or code.</li>
-    <ul>
-     <br>
-     <br>
-    </ul>
-   </ul>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>5</font></div>
-  </td>
-  <td>
-  <div id=PPTP5 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0092.html');" id=PPTL5>Introduction –
-  Understanding the Options</a></font></div>
-  <div id=PPTC5 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Need to know:</li>
-   <ul>
-    <li>The types of customizations you wish to create.</li>
-    <ul>
-     <li>Add/remove behavior</li>
-     <li>Add/remove properties</li>
-     <li>Add/remove constraints</li>
-    </ul>
-    <li>How the extended meta-model is intended to be used.</li>
-    <ul>
-     <li>How will end user create instances of new meta-types and meta-types
-         from the extended meta-model.</li>
-    </ul>
-    <li>How much overlap exists between new domain and extended domain.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>6</font></div>
-  </td>
-  <td>
-  <div id=PPTP6 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0093.html');" id=PPTL6>Agenda</a></font></div>
-  <div id=PPTC6 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduction</li>
-   <li>Exploring Extension Mechanisms</li>
-   <ul>
-    <li>Featherweight</li>
-    <li>Lightweight</li>
-    <li>Middleweight</li>
-    <li>Heavyweight</li>
-   </ul>
-   <li>Advanced Concepts</li>
-   <ul>
-    <li>Subsets</li>
-    <li>Derived Unions</li>
-    <li>Redefinition</li>
-   </ul>
-   <li>Meta-model Decomposition</li>
-   <ul>
-    <li>Package Merge</li>
-    <li>Language Units</li>
-    <li>Compliance Levels</li>
-   </ul>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>7</font></div>
-  </td>
-  <td>
-  <div id=PPTP7 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0136.html');" id=PPTL7>Exploring Extension
-  Mechanisms - Featherweight</a></font></div>
-  <div id=PPTC7 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>8</font></div>
-  </td>
-  <td>
-  <div id=PPTP8 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0137.html');" id=PPTL8>Exploring Extension
-  Mechanisms - Featherweight</a></font></div>
-  <div id=PPTC8 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>9</font></div>
-  </td>
-  <td>
-  <div id=PPTP9 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0138.html');" id=PPTL9>Exploring Extension
-  Mechanisms - Featherweight</a></font></div>
-  <div id=PPTC9 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>10</font></div>
-  </td>
-  <td>
-  <div id=PPTP10 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0095.html');" id=PPTL10>Exploring Extension
-  Mechanisms - Featherweight</a></font></div>
-  <div id=PPTC10 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>11</font></div>
-  </td>
-  <td>
-  <div id=PPTP11 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0133.html');" id=PPTL11>Agenda</a></font></div>
-  <div id=PPTC11 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduction</li>
-   <li>Exploring Extension Mechanisms</li>
-   <ul>
-    <li>Featherweight</li>
-    <li>Lightweight</li>
-    <li>Middleweight</li>
-    <li>Heavyweight</li>
-   </ul>
-   <li>Advanced Concepts</li>
-   <ul>
-    <li>Subsets</li>
-    <li>Derived Unions</li>
-    <li>Redefinition</li>
-   </ul>
-   <li>Meta-model Decomposition</li>
-   <ul>
-    <li>Package Merge</li>
-    <li>Language Units</li>
-    <li>Compliance Levels</li>
-   </ul>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>12</font></div>
-  </td>
-  <td>
-  <div id=PPTP12 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0067.html');" id=PPTL12>Exploring Extension
-  Mechanisms - Lightweight</a></font></div>
-  <div id=PPTC12 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>A profile defines a limited extension to a reference meta-model.</li>
-   <br>
-   <br>
-   <li>Primary extension construct is the Stereotype.</li>
-   <br>
-   <br>
-   <li>Stereotypes can be used to add:</li>
-   <ul>
-    <li>Keywords</li>
-    <li>Constraints</li>
-    <li>Images</li>
-    <li>Properties</li>
-    <li>Behavior</li>
-    <br>
-    <br>
-   </ul>
-   <li>Profile applications can be used to restrict the meta-types that can be
-       used in the profiled package.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>13</font></div>
-  </td>
-  <td>
-  <div id=PPTP13 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0125.html');" id=PPTL13>Exploring Extension
-  Mechanisms - Lightweight</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>14</font></div>
-  </td>
-  <td>
-  <div id=PPTP14 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0097.html');" id=PPTL14>Exploring Extension
-  Mechanisms - Lightweight</a></font></div>
-  <div id=PPTC14 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>15</font></div>
-  </td>
-  <td>
-  <div id=PPTP15 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0123.html');" id=PPTL15>Exercise 1 –
-  Lightweight Extension</a></font></div>
-  <div id=PPTC15 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Objectives:</li>
-   <ul>
-    <li>Learning how to describe domain specific constructs with a profile.</li>
-    <li>Explore Static Profile Definition.</li>
-    <ul>
-     <li>Generate Java™ API for the profile.</li>
-     <li>Register the generated profile to make it available at run-time.</li>
-    </ul>
-    <li>Work with your profile.</li>
-    <ul>
-     <li>Apply and use the profile in a UML model.</li>
-    </ul>
-    <br>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>16</font></div>
-  </td>
-  <td>
-  <div id=PPTP16 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0124.html');" id=PPTL16>Exercise 1 –<span
-  style='mso-spacerun:yes'>  </span>Lightweight Extension</a></font></div>
-  <div id=PPTC16 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <ul>
-    <br>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>17</font></div>
-  </td>
-  <td>
-  <div id=PPTP17 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0139.html');" id=PPTL17>Exercise 1 –<span
-  style='mso-spacerun:yes'>  </span>Lightweight Extension</a></font></div>
-  <div id=PPTC17 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <ul>
-    <br>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>18</font></div>
-  </td>
-  <td>
-  <div id=PPTP18 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0131.html');" id=PPTL18>Agenda</a></font></div>
-  <div id=PPTC18 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduction</li>
-   <li>Exploring Extension Mechanisms</li>
-   <ul>
-    <li>Featherweight</li>
-    <li>Lightweight</li>
-    <li>Middleweight</li>
-    <li>Heavyweight</li>
-   </ul>
-   <li>Advanced Concepts</li>
-   <ul>
-    <li>Subsets</li>
-    <li>Derived Unions</li>
-    <li>Redefinition</li>
-   </ul>
-   <li>Meta-model Decomposition</li>
-   <ul>
-    <li>Package Merge</li>
-    <li>Language Units</li>
-    <li>Compliance Levels</li>
-   </ul>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>19</font></div>
-  </td>
-  <td>
-  <div id=PPTP19 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0068.html');" id=PPTL19>Exploring Extension
-  Mechanisms - Middleweight</a></font></div>
-  <div id=PPTC19 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Extension by specialization of UML meta-classes.</li>
-   <ul>
-    <li>Extend by	specializing types within UML.metamodel.uml (the merged UML
-        meta-model)</li>
-    <br>
-    <br>
-   </ul>
-   <li>Creating dependencies on a specific version of UML.</li>
-   <br>
-   <br>
-   <li>Implementation classes in the specialized meta-model reference internal
-       UML implementation classes (compiler warnings)</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>20</font></div>
-  </td>
-  <td>
-  <div id=PPTP20 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0098.html');" id=PPTL20>Exploring Extension
-  Mechanisms - Middleweight</a></font></div>
-  <div id=PPTC20 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>21</font></div>
-  </td>
-  <td>
-  <div id=PPTP21 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0132.html');" id=PPTL21>Agenda</a></font></div>
-  <div id=PPTC21 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduction</li>
-   <li>Exploring Extension Mechanisms</li>
-   <ul>
-    <li>Featherweight</li>
-    <li>Lightweight</li>
-    <li>Middleweight</li>
-    <li>Heavyweight</li>
-   </ul>
-   <li>Advanced Concepts</li>
-   <ul>
-    <li>Subsets</li>
-    <li>Derived Unions</li>
-    <li>Redefinition</li>
-   </ul>
-   <li>Meta-model Decomposition</li>
-   <ul>
-    <li>Package Merge</li>
-    <li>Language Units</li>
-    <li>Compliance Levels</li>
-   </ul>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>22</font></div>
-  </td>
-  <td>
-  <div id=PPTP22 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0072.html');" id=PPTL22>Exploring Extension
-  Mechanisms – Heavyweight</a></font></div>
-  <div id=PPTC22 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Reuse by copy instead of reuse by extension as middleweight.</li>
-   <br>
-   <br>
-   <li>Heavyweight extensions involve 2 steps</li>
-   <ul>
-    <li>Select the language units you wish to extend and merge.</li>
-    <li>Add your own domain specific types.</li>
-    <br>
-    <br>
-   </ul>
-   <li>Merging packages forms the basis for constructing UML itself.</li>
-   <br>
-   <br>
-   <li>Have access to all concepts used to create UML</li>
-   <ul>
-    <li>Subset</li>
-    <li>Redefinition</li>
-    <li>Derived unions</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>23</font></div>
-  </td>
-  <td>
-  <div id=PPTP23 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0099.html');" id=PPTL23>Exploring Extension
-  Mechanisms – Heavyweight</a></font></div>
-  <div id=PPTC23 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>24</font></div>
-  </td>
-  <td>
-  <div id=PPTP24 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0100.html');" id=PPTL24>Agenda</a></font></div>
-  <div id=PPTC24 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduction</li>
-   <li>Exploring Extension Mechanisms</li>
-   <ul>
-    <li>Featherweight</li>
-    <li>Lightweight</li>
-    <li>Middleweight</li>
-    <li>Heavyweight</li>
-   </ul>
-   <li>Deciding which Technique to Use</li>
-   <li>Advanced Concepts</li>
-   <ul>
-    <li>Subsets</li>
-    <li>Derived Unions</li>
-    <li>Redefinition</li>
-   </ul>
-   <li>Meta-model Decomposition</li>
-   <ul>
-    <li>Package Merge</li>
-    <li>Language Units</li>
-    <li>Compliance Levels</li>
-   </ul>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>25</font></div>
-  </td>
-  <td>
-  <div id=PPTP25 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0080.html');" id=PPTL25>Advanced Concepts –
-  Subsets</a></font></div>
-  <div id=PPTC25 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>26</font></div>
-  </td>
-  <td>
-  <div id=PPTP26 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0118.html');" id=PPTL26>Advanced Concepts –
-  Subsets - Derived</a></font></div>
-  <div id=PPTC26 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>27</font></div>
-  </td>
-  <td>
-  <div id=PPTP27 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0119.html');" id=PPTL27>Advanced Concepts –
-  Subsets – Non-Derived</a></font></div>
-  <div id=PPTC27 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>28</font></div>
-  </td>
-  <td>
-  <div id=PPTP28 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0081.html');" id=PPTL28>Advanced Concepts –
-  Derived unions</a></font></div>
-  <div id=PPTC28 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>29</font></div>
-  </td>
-  <td>
-  <div id=PPTP29 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0120.html');" id=PPTL29>Advanced Concepts –
-  Derived unions</a></font></div>
-  <div id=PPTC29 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>30</font></div>
-  </td>
-  <td>
-  <div id=PPTP30 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0121.html');" id=PPTL30>Derived unions:
-  Example</a></font></div>
-  <div id=PPTC30 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>31</font></div>
-  </td>
-  <td>
-  <div id=PPTP31 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0082.html');" id=PPTL31>Advanced Concepts –
-  Redefinition</a></font></div>
-  <div id=PPTC31 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>32</font></div>
-  </td>
-  <td>
-  <div id=PPTP32 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0122.html');" id=PPTL32>Advanced Concepts –
-  Redefinition</a></font></div>
-  <div id=PPTC32 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>33</font></div>
-  </td>
-  <td>
-  <div id=PPTP33 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0117.html');" id=PPTL33>Advanced Concepts –
-  Redefinition: Example</a></font></div>
-  <div id=PPTC33 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>34</font></div>
-  </td>
-  <td>
-  <div id=PPTP34 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0101.html');" id=PPTL34>Exercise 2 – Creating
-  Middleweight Extension</a></font></div>
-  <div id=PPTC34 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Objectives:</li>
-   <ul>
-    <li>Explore subsets.</li>
-    <li>Explore extending UML using specialization.</li>
-    <li>Explore code generator options.</li>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>35</font></div>
-  </td>
-  <td>
-  <div id=PPTP35 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0128.html');" id=PPTL35>Exercise 2 – Creating
-  Middleweight Extension</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>36</font></div>
-  </td>
-  <td>
-  <div id=PPTP36 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0140.html');" id=PPTL36>Exercise 2 – Creating
-  Middleweight Extension</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>37</font></div>
-  </td>
-  <td>
-  <div id=PPTP37 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0102.html');" id=PPTL37>Agenda</a></font></div>
-  <div id=PPTC37 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduction</li>
-   <li>Exploring Extension Mechanisms</li>
-   <ul>
-    <li>Featherweight</li>
-    <li>Lightweight</li>
-    <li>Middleweight</li>
-    <li>Heavyweight</li>
-   </ul>
-   <li>Deciding which Technique to Use</li>
-   <li>Advanced Concepts</li>
-   <ul>
-    <li>Subsetting</li>
-    <li>Derived Unions</li>
-    <li>Redefinition</li>
-   </ul>
-   <li>Meta-model Decomposition</li>
-   <ul>
-    <li>Package Merge</li>
-    <li>Language Units</li>
-    <li>Compliance Levels</li>
-   </ul>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>38</font></div>
-  </td>
-  <td>
-  <div id=PPTP38 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0108.html');" id=PPTL38>Package Merge</a></font></div>
-  <div id=PPTC38 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>A directed relationship between two packages which indicates that the
-       contents are to be combined.</li>
-   <br>
-   <br>
-   <li>This mechanism should be used when elements defined in different
-       packages are intended to represent the same concept.</li>
-   <br>
-   <br>
-   <li>By selecting which increments to merge, it is possible to obtain a
-       custom definition of a concept.</li>
-   <br>
-   <br>
-   <li>Package merge allows modeling concepts defined in one package to be
-       extended with new features.</li>
-   <br>
-   <br>
-   <li>UML itself is a merge of a large number of packages.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>39</font></div>
-  </td>
-  <td>
-  <div id=PPTP39 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0115.html');" id=PPTL39>Package Merge</a></font></div>
-  <div id=PPTC39 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Package merge allows modeling concepts defined at one level to be
-       extended with new features.</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>40</font></div>
-  </td>
-  <td>
-  <div id=PPTP40 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0116.html');" id=PPTL40>Package Merge -
-  Example</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>41</font></div>
-  </td>
-  <td>
-  <div id=PPTP41 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0086.html');" id=PPTL41>Language Units</a></font></div>
-  <div id=PPTC41 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>42</font></div>
-  </td>
-  <td>
-  <div id=PPTP42 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0135.html');" id=PPTL42>Language Units and
-  Compliance Levels</a></font></div>
-  <div id=PPTC42 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>43</font></div>
-  </td>
-  <td>
-  <div id=PPTP43 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0087.html');" id=PPTL43>Compliance Levels – L0</a></font></div>
-  <div id=PPTC43 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>44</font></div>
-  </td>
-  <td>
-  <div id=PPTP44 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0088.html');" id=PPTL44>Compliance Levels – L1</a></font></div>
-  <div id=PPTC44 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>45</font></div>
-  </td>
-  <td>
-  <div id=PPTP45 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0109.html');" id=PPTL45>Compliance Levels – L2</a></font></div>
-  <div id=PPTC45 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>46</font></div>
-  </td>
-  <td>
-  <div id=PPTP46 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0110.html');" id=PPTL46>Compliance Levels – L3</a></font></div>
-  <div id=PPTC46 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>47</font></div>
-  </td>
-  <td>
-  <div id=PPTP47 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0104.html');" id=PPTL47>Exercise 3 – Creating
-  Heavyweight Extension</a></font></div>
-  <div id=PPTC47 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Objectives:</li>
-   <ul>
-    <li>Explore Package Merge.</li>
-    <li>Explore working with your extension (generating an editor).</li>
-    <br>
-    <br>
-   </ul>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>48</font></div>
-  </td>
-  <td>
-  <div id=PPTP48 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0106.html');" id=PPTL48>Exercise 3 – Creating
-  Heavyweight Extension</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>49</font></div>
-  </td>
-  <td>
-  <div id=PPTP49 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0129.html');" id=PPTL49>Exercise 3 – Creating
-  Heavyweight Extension</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>50</font></div>
-  </td>
-  <td>
-  <div id=PPTP50 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0141.html');" id=PPTL50>Exercise 3 – Creating
-  Heavyweight Extension</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>51</font></div>
-  </td>
-  <td>
-  <div id=PPTP51 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0130.html');" id=PPTL51>Exercise 3 – Creating
-  Heavyweight Extension</a></font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>52</font></div>
-  </td>
-  <td>
-  <div id=PPTP52 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0103.html');" id=PPTL52>Agenda</a></font></div>
-  <div id=PPTC52 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Introduction</li>
-   <li>Exploring Extension Mechanisms</li>
-   <ul>
-    <li>Featherweight</li>
-    <li>Lightweight</li>
-    <li>Middleweight</li>
-    <li>Heavyweight</li>
-   </ul>
-   <li>Deciding which Technique to Use</li>
-   <li>Advanced Concepts</li>
-   <ul>
-    <li>Subsets</li>
-    <li>Derived Unions</li>
-    <li>Redefinition</li>
-   </ul>
-   <li>Meta-model Decomposition</li>
-   <ul>
-    <li>Package Merge</li>
-    <li>Language Units</li>
-    <li>Compliance Levels</li>
-   </ul>
-   <li>Summary</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>53</font></div>
-  </td>
-  <td>
-  <div id=PPTP53 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0069.html');" id=PPTL53>Summary</a></font></div>
-  <div id=PPTC53 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Four basic techniques.</li>
-   <ul>
-    <li>Flyweight</li>
-    <li>Lightweight</li>
-    <li>Middleweight</li>
-    <li>Heavyweight</li>
-   </ul>
-   <li>Favor “lightweight” extension (use of profiles).</li>
-   <ul>
-    <li>A practical solution for most applications.</li>
-    <br>
-    <br>
-   </ul>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>54</font></div>
-  </td>
-  <td>
-  <div id=PPTP54 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0057.html');" id=PPTL54>&quot;Thank You!&quot;</a></font></div>
-  <div id=PPTC54 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <li>Thank You!</li>
-  </ul>
-  </font></div>
-  </td>
- </tr>
- <tr onmouseover="Over(this)" onmouseout="Out(this)" onclick="Follow(this)"
-  style='cursor:hand'>
-  <td align=right valign=top>
-  <div class=sldNum><font size=2>55</font></div>
-  </td>
-  <td>
-  <div id=PPTP55 class=PTxt><font size=2><a
-  href="javascript:GoToSld('slide0059.html');" id=PPTL55>Legal Notices</a></font></div>
-  <div id=PPTC55 class=CTxt style='display:none'><font size=2>
-  <ul>
-   <br>
-   <li>Copyright © IBM Corp., 2007-2008.<span style='mso-spacerun:yes'> 
-       </span>All rights reserved.<span style='mso-spacerun:yes'> 
-       </span>Source code in this presentation is made available under the EPL,
-       v1.0; remainder of the presentation is licensed under Creative Commons
-       Att. Nc Nd 2.5 license.</li>
-   <br>
-   <br>
-   <li>IBM and the IBM logo are trademarks or registered trademarks of IBM
-       Corporation in the United States, other countries, or both.</li>
-   <br>
-   <br>
-   <li>Rational and the Rational logo are trademarks or registered trademarks
-       of International Business Corporation in the United States, other
-       countries, or both.</li>
-   <br>
-   <br>
-   <li>UML, Unified Modeling Language, and MOF are trademarks or registered
-       trademarks of Object Management Group, Inc.</li>
-   <br>
-   <br>
-   <li>Java and all Java-based trademarks, among others, are trademarks or
-       registered trademarks of Sun Microsystems in the United States, other
-       countries, or both</li>
-   <br>
-   <br>
-   <li>Eclipse and the Eclipse logo are trademarks of the Eclipse Foundation,
-       Inc.</li>
-   <br>
-   <br>
-   <li>Other company, product, and service names may be trademarks or service
-       marks of others.</li>
-   <br>
-   <br>
-   <li>THE INFORMATION DISCUSSED IN THIS PRESENTATION IS PROVIDED FOR
-       INFORMATIONAL PURPOSES ONLY.<span style='mso-spacerun:yes'> 
-       </span>WHILE EFFORTS WERE MADE TO VERIFY THE COMPLETENESS AND ACCURACY
-       OF THE INFORMATION, IT IS PROVIDED “AS IS” WITHOUT WARRANTY OF ANY KIND,
-       EXPRESS OR IMPLIED, AND IBM SHALL NOT BE RESPONSIBLE FOR ANY DAMAGES
-       ARISING OUT OF THE USE OF, OR OTHERWISE RELATED TO, SUCH
-       INFORMATION.<span style='mso-spacerun:yes'>  </span>ANY INFORMATION
-       CONCERNING IBMÂ’S PRODUCT PLANS OR STRATEGY IS SUBJECT TO CHANGE BY IBM
-       WITHOUT NOTICE.</li>
-   <br>
-   <br>
-   <br>
-  </ul>
-  </font></div>
-  </td>
- </tr>
-</table>
-
-
-
-</div>
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/pres.xml b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/pres.xml
deleted file mode 100644
index 9ce27f2..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/pres.xml
+++ /dev/null
@@ -1,174 +0,0 @@
-<xml xmlns:v="urn:schemas-microsoft-com:vml"
- xmlns:o="urn:schemas-microsoft-com:office:office"
- xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
- xmlns:oa="urn:schemas-microsoft-com:office:activation">
- <p:presentation sizeof="screen" notessizex="4412" notessizey="5810"
-  gridspacingx="49152" gridspacingy="49152">
-  <p:master id="3" slidesn="748A66,DD262D00" type="main" href="master03.html"
-   xmlhref="master03.xml" template="Blank Presentation" layout="title_body"
-   slots="title,body,dateTime,footer,slideNumber">
-   <p:schemes>
-    <p:colorscheme
-     colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"/>
-    <p:colorscheme
-     colors="#FFFFFF,#000000,#969696,#000000,#FBDF53,#FF9966,#CC3300,#996600"/>
-    <p:colorscheme
-     colors="#FFFFFF,#000000,#808080,#000000,#99CCFF,#CCCCFF,#3333CC,#AF67FF"/>
-    <p:colorscheme
-     colors="#DEF6F1,#000000,#969696,#000000,#FFFFFF,#8DC6FF,#0066CC,#00A800"/>
-    <p:colorscheme
-     colors="#FFFFD9,#000000,#777777,#000000,#FFFFF7,#33CCCC,#FF5050,#FF9900"/>
-    <p:colorscheme
-     colors="#008080,#FFFFFF,#005A58,#FFFF99,#006462,#6D6FC7,#00FFFF,#00FF00"/>
-    <p:colorscheme
-     colors="#800000,#FFFFFF,#5C1F00,#DFD293,#713E39,#BE7960,#FFFF99,#D3A219"/>
-    <p:colorscheme
-     colors="#000099,#FFFFFF,#003366,#CCFFFF,#3366CC,#00B000,#66CCFF,#FFE701"/>
-    <p:colorscheme
-     colors="#000000,#FFFFFF,#336699,#E3EBF1,#003399,#468A4B,#66CCFF,#F0E500"/>
-    <p:colorscheme
-     colors="#686B5D,#FFFFFF,#777777,#D1D1CB,#909082,#809EA8,#FFCC66,#E9DCB9"/>
-    <p:colorscheme
-     colors="#666699,#FFFFFF,#3E3E5C,#FFFFFF,#60597B,#6666FF,#99CCFF,#FFFF99"/>
-    <p:colorscheme
-     colors="#523E26,#FFFFFF,#2D2015,#DFC08D,#8C7B70,#8F5F2F,#CCB400,#8C9EA0"/>
-   </p:schemes>
-  </p:master>
-  <p:master id="4" slidesn="748A69,165F9C80" type="title" href="master04.html"
-   xmlhref="master04.xml" layout="title_subtitle"
-   slots="centerTitle,subTitle,dateTime,footer,slideNumber"/>
-  <p:master id="1" slidesn="748A67,72C1BC80" type="notes" href="master01.html"
-   layout="notes" slots="header,dateTime,slideImage,body,footer,slideNumber"/>
-  <p:master id="2" slidesn="748A67,70F7F900" type="handout" href="master02.html"
-   layout="handout" slots="header,dateTime,footer,slideNumber"/>
-  <p:slide id="1" slidesn="748A66,DDBEC380" href="slide0001.html"
-   masterhref="master04.html" layout="title_subtitle"
-   slots="centerTitle,subTitle"/>
-  <p:slide id="60" slidesn="748A68,DEF0F000" href="slide0060.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="61" slidesn="748A68,DEF0F000" href="slide0061.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="91" slidesn="748A68,DEF0F000" href="slide0091.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="92" slidesn="748A68,DEF0F000" href="slide0092.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="93" slidesn="748A68,DEF0F000" href="slide0093.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="136" slidesn="748A68,DEF0F000" href="slide0136.html"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="137" slidesn="748A68,DEF0F000" href="slide0137.html"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="138" slidesn="748A68,DEF0F000" href="slide0138.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="95" slidesn="748A68,DEF0F000" href="slide0095.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="133" slidesn="748A68,DEF0F000" href="slide0133.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="67" slidesn="748A68,DEF0F000" href="slide0067.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="125" slidesn="748A68,DEF0F000" href="slide0125.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="97" slidesn="748A68,DEF0F000" href="slide0097.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="123" slidesn="1C87195,48A7DF0" href="slide0123.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="124" slidesn="1C87195,48A7DF0" href="slide0124.html"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="139" slidesn="1C87195,48A7DF0" href="slide0139.html"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="131" slidesn="748A68,DEF0F000" href="slide0131.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="68" slidesn="748A68,DEF0F000" href="slide0068.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="98" slidesn="748A68,DEF0F000" href="slide0098.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="132" slidesn="748A68,DEF0F000" href="slide0132.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="72" slidesn="748A68,DEF0F000" href="slide0072.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="99" slidesn="748A68,DEF0F000" href="slide0099.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="100" slidesn="748A68,DEF0F000" href="slide0100.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="80" slidesn="748A68,DEF0F000" href="slide0080.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="118" slidesn="748A68,DEF0F000" href="slide0118.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="119" slidesn="748A68,DEF0F000" href="slide0119.html"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="81" slidesn="748A68,DEF0F000" href="slide0081.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="120" slidesn="748A68,DEF0F000" href="slide0120.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="121" slidesn="748A68,DEF0F000" href="slide0121.html"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="82" slidesn="748A68,DEF0F000" href="slide0082.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="122" slidesn="748A68,DEF0F000" href="slide0122.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="117" slidesn="748A68,DEF0F000" href="slide0117.html"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="101" slidesn="1C87195,48A7DF0" href="slide0101.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="128" slidesn="1C87195,48A7DF0" href="slide0128.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="140" slidesn="1C87195,48A7DF0" href="slide0140.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="102" slidesn="748A68,DEF0F000" href="slide0102.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="108" slidesn="1C87195,48A7DF0" href="slide0108.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="115" slidesn="1C87195,48A7DF0" href="slide0115.html"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="116" slidesn="1C87195,48A7DF0" href="slide0116.html"
-   layout="column_2_rows" slots="title,body,object,object"/>
-  <p:slide id="86" slidesn="748A68,DEF0F000" href="slide0086.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="135" slidesn="748A68,DEF0F000" href="slide0135.html"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="87" slidesn="748A68,DEF0F000" href="slide0087.html"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="88" slidesn="748A68,DEF0F000" href="slide0088.html"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="109" slidesn="748A68,DEF0F000" href="slide0109.html"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="110" slidesn="748A68,DEF0F000" href="slide0110.html"
-   layout="2_columns" slots="title,body,object"/>
-  <p:slide id="104" slidesn="1C87195,48A7DF0" href="slide0104.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="106" slidesn="1C87195,48A7DF0" href="slide0106.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="129" slidesn="1C87195,48A7DF0" href="slide0129.html"
-   layout="2_columns" slots="title,object,object"/>
-  <p:slide id="141" slidesn="1C87195,48A7DF0" href="slide0141.html"
-   layout="title_body" slots="title,object"/>
-  <p:slide id="130" slidesn="1C87195,48A7DF0" href="slide0130.html"
-   layout="column_2_rows" slots="title,object,object,object"/>
-  <p:slide id="103" slidesn="748A68,DEF0F000" href="slide0103.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="69" slidesn="748A68,DEF0F000" href="slide0069.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="57" slidesn="748A68,DEF0F000" href="slide0057.html"
-   layout="title_body" slots="title,body"/>
-  <p:slide id="59" slidesn="748A68,DEF0F000" href="slide0059.html"
-   layout="title_body" slots="title,body"/>
-  <p:viewstate type="slideView" slidehref="slide0061.html" scale="100"
-   restoredleft="156" restoredtop="887" manualadjustleft="t" manualadjusttop="t"
-   hideoutlineicons="t"/>
-  <p:tag name="___PPT2001" type="binary" datasize="68" dataoffset="8"/>
-  <p:tag name="___PPTMac11" type="binary" datasize="1674" dataoffset="9"/>
-  <p:kinsoku language="Japanese" level="levelOne"/>
-  <p:font name="Arial" charset="0" type="4"/>
-  <p:font name="MS Pゴシック" charset="128" type="6" family="34"/>
-  <p:font name="Wingdings" charset="2" type="6" family="2"/>
-  <p:font name="Times" charset="0" type="4" family="80"/>
-  <p:headersfooters formatid="0" noheader="t"/>
-  <p:pptdocumentsettings framecolors="WhiteTextOnBlack" hideslideanimation="t"
-   browsersupport="v4"/>
-  <p:htmlpublishsettings browsersupport="v4"
-   href="C:\UMLDevelopment\EclipseCon2008\TUTORIAL\EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html"
-   hidespeakernote="t" noloadinbrowser="t"/>
- </p:presentation>
- <o:shapedefaults v:ext="edit" spidmax="229386">
-  <o:colormenu v:ext="edit" shadowcolor="black"/>
- </o:shapedefaults></xml>
\ No newline at end of file
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/preview.wmf b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/preview.wmf
deleted file mode 100644
index 0636a5f..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/preview.wmf
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/script.js b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/script.js
deleted file mode 100644
index 2a79f70..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/script.js
+++ /dev/null
@@ -1,833 +0,0 @@
-function LoadSld()

-{

-	var sld=GetObj("SlideObj")

-	if( !g_supportsPPTHTML ) {

-		sld.style.visibility="visible"

-		return

-	}

-	if( MakeNotesVis() ) return

-	runAnimations = _InitAnimations();

-	if( IsWin("PPTSld") )

-		parent.SldUpdated(GetSldId())

-	g_origSz=parseInt(SlideObj.style.fontSize)

-	g_origH=sld.style.posHeight

-	g_origW=sld.style.posWidth

-	g_scaleHyperlinks=(document.all.tags("AREA").length>0)

-	if( g_scaleHyperlinks )

-		InitHLinkArray()

-	if( g_scaleInFrame||(IsWin("PPTSld") && parent.IsFullScrMode() ) )

-		document.body.scroll="no"

-	_RSW()

-	if( IsWin("PPTSld") && parent.IsFullScrMode() )

-		FullScrInit();

-	

-	MakeSldVis();

-	ChkAutoAdv()

-

-	if( runAnimations )

-	{

-		if( document.all("NSPlay") )

-			document.all("NSPlay").autoStart = false;

-		if( sld.filters && sld.filters.revealtrans )

-			setTimeout( "document.body.start()", sld.filters.revealtrans.duration * 1000 );

-		else

-			document.body.start();

-	}

-}

-function MakeSldVis()

-{

-	var fTrans=g_showAnimation && SldHasTrans()

-	if( fTrans )

-	{

-		if( g_bgSound ) {

-			idx=g_bgSound.indexOf(",");

-			pptSound.src=g_bgSound.substr( 0, idx );

-			pptSound.loop= -(parseInt(g_bgSound.substr(idx+1)));

-		}

-		SlideObj.filters.revealtrans.Apply()

-    }

-	SlideObj.style.visibility="visible"

-	if( fTrans )

-		SlideObj.filters.revealtrans.Play()

-}

-function MakeNotesVis()

-{

-	if( !IsNts() ) return false

-	SlideObj.style.display="none"

-	nObj = document.all.item("NotesObj")

-	parent.SetHasNts(0)

-	if( nObj ) {

-		nObj.style.display=""

-		parent.SetHasNts(1)

-	}

-	return 1

-}

-function ChkAutoAdv()

-{

-	if(SldHasTrans())

-		SlideObj.onfilterchange=AutoAdv

-	else

-		AutoAdv()

-}

-function AutoAdv()

-{

-	if(!IsWin("PPTSld") || !gUseSldTimings )return

-	var sld=GetCurSld()

-	if( (sld.mAdvDelay>0) && !parent.IsFramesMode() )

-		setTimeout("parent.GoToNextSld()",sld.mAdvDelay)

-}

-function GetObj(id)

-{

-	if(g_supportsPPTHTML) return document.all(id);

-	else return document.getElementById(id);

-}

-function SldHasTrans() { return SlideObj.style.getAttribute("filter")!="" }

-function GetSldId() { return sId=location.href.substring(location.href.lastIndexOf('/')+1) }

-function HideMenu() { if( frames["PPTSld"] && PPTSld.document.all.item("ctxtmenu") && PPTSld.ctxtmenu.style.display!="none" ) { PPTSld.ctxtmenu.style.display='none'; return true } return false }

-function IsWin( name ) { return window.name == name }

-function IsNts() { return IsWin("PPTNts") }

-function IsSldOrNts() { return( IsWin("PPTSld")||IsWin("PPTNts") ) }

-function SupportsPPTAnimation() { return( navigator.platform == "Win32" && navigator.appVersion.indexOf("Windows")>0 ) }

-function SupportsPPTHTML()

-{

-	var appVer=navigator.appVersion, msie=appVer.indexOf("MSIE "), ver=0

-	if( msie >= 0 )

-		ver=parseFloat( appVer.substring( msie+5, appVer.indexOf(";",msie) ) )

-	else

-		ver=parseInt(appVer)

-	return( ver >= 4 && msie >= 0 )

-}

-function _RSW()

-{

-	if( !g_supportsPPTHTML || IsNts() ||

-	  ( !g_scaleInFrame && (!IsWin("PPTSld") || !parent.IsFullScrMode()) ) )

-		return

-        var padding=0;

-        if( IsWin("PPTSld") && parent.IsFramesMode() ) padding=6

-	cltWidth=document.body.clientWidth-padding

-	cltHeight=document.body.clientHeight-padding

-	factor=(1.0*cltWidth)/g_origW

-	if( cltHeight < g_origH*factor )

-		factor=(1.0*cltHeight)/g_origH

-	newSize = g_origSz * factor

-	if( newSize < 1 ) newSize=1

-	s=SlideObj.style

-	s.fontSize=newSize+"px"

-	s.posWidth=g_origW*factor

-	s.posHeight=g_origH*factor

-	s.posLeft=(cltWidth-s.posWidth+padding)/2

-	s.posTop=(cltHeight-s.posHeight+padding)/2

-	if( g_scaleHyperlinks )

-		ScaleHyperlinks( factor )

-}

-function _InitAnimations()

-{

-	animRuntimeInstalled = ''+document.body.localTime != 'undefined';

-	isFullScreen = (window.name == "PPTSld") && !parent.IsFramesMode();

-	g_animUseRuntime = g_showAnimation && animRuntimeInstalled && !(isFullScreen && parent.IsSldVisited());

-	if( g_animUseRuntime ) {

-		collSeq = document.all.tags("seq");

-		if( collSeq != null ) {

-			for(ii=0;ii<collSeq.length;ii++) {

-				if( collSeq[ii].getAttribute( "p:nodeType" ) == "mainSeq" ) {

-					g_animMainSequence = collSeq[ii];

-					break;

-				}

-			}

-		}

-		if( g_animItemsToHide ) {

-			for(jj = 0; jj < g_animItemsToHide.length; jj++) {

-				if( hideObj = GetObj(g_animItemsToHide[jj]) )

-					hideObj.runtimeStyle.visibility="hidden";

-			}

-		}

-		if( g_animInteractiveItems ){

-			for(jj = 0; jj < g_animInteractiveItems.length; jj++) {

-				if( triggerObj = GetObj(g_animInteractiveItems[jj]) )

-					triggerObj.runtimeStyle.cursor="hand";

-			}

-		}

-		if( gUseSldTimings && ''+g_animSlideTime != 'undefined' ) {

-			adjustedTime = document.body.calculateAutoAdvanceTimes( g_animSlideTime, g_animEffectTimings );

-			if( IsWin("PPTSld") && adjustedTime != g_animSlideTime ) {

-			   var sld = GetCurSld();

-			   sld.mAdvDelay = adjustedTime * 1000;

-			}

-		}

-	}

-	return g_animUseRuntime;

-}

-gSldJump = 0, gSldJumpTrack = 0, gSldJumpIdx = "";

-function _KPH()

-{

-	if( IsNts() ) return;

-	if( !parent.IsFramesMode() && event.keyCode == 27 && !HideMenu() )

-		parent.window.close( self );

-	else if( event.keyCode == 32 ) {

-		if( window.name == "PPTSld" )

-			parent.PPTSld.DocumentOnClick();

-		else

-			parent.GoToNextSld();

-	}

-	CatchNumKeys( parent, event );

-}

-function CatchNumKeys( win, event ) {

-	if( win.IsFullScrMode() && (48<=event.keyCode) && (event.keyCode<=57) ) {

-		gSldJump = 1;

-		gSldJumpIdx += (event.keyCode-48).toString();

-	}

-	if( win.IsFullScrMode() && gSldJump && event.keyCode == 13 ) {

-		var numSlds = parent.GetSldList().mList.length

-		if ( gSldJumpIdx > numSlds )

-			gSldJumpIdx = numSlds;

-		if ( gSldJumpIdx >= 0 ) {

-			if ( gSldJumpIdx == 0 )

-				gSldJumpIdx = 1;

-			var jumpTo = parseInt(gSldJumpIdx);

-			gSldJump = 0; gSldJumpIdx = "";

-			win.GoToSld( parent.GetSldList().mList[jumpTo-1].mSldHref )

-		}

-	}

-}

-function _KDH()

-{

-	if( event.keyCode == 8 ) {

-		event.returnValue = 0;

-		parent.GoToPrevSld();

-	}

-}

-function DocumentOnClick()

-{

-	if( IsNts() || parent.HideMenu() ) return;

-	if( ( g_allowAdvOnClick && !parent.IsFramesMode() ) ||

-	    (event && (event.keyCode==32) ) )

-		parent.GoToNextSld();

-}

-

-var g_supportsPPTHTML = SupportsPPTHTML(), g_scaleInFrame = 1, gId="", g_bgSound="",

-    g_scaleHyperlinks = false, g_allowAdvOnClick = 1, g_showInBrowser = 0, gLoopCont = 0, gUseSldTimings = 1;

-var g_showAnimation = g_supportsPPTHTML && SupportsPPTAnimation() && ( (window.name=="PPTSld" && !parent.IsFramesMode()) || g_showInBrowser );var g_animManager = null;

-var g_animUseRuntime = false;

-var g_animItemsToHide, g_animInteractiveItems, g_animSlideTime;

-var g_animMainSequence = null;

-var ENDSHOW_MESG="End of slide show, click to exit.", SCREEN_MODE="Frames", gIsEndShow=0, NUM_VIS_SLDS=55, SCRIPT_HREF="script.js", FULLSCR_HREF="fullscreen.html";

-var gCurSld = gPrevSld = 1, g_offset = 0, gNtsOpen = gHasNts = gOtlTxtExp = 0, gHasNarration = 0, gOtlOpen = true

-window.gPPTHTML=SupportsPPTHTML()

-var gMainDoc=new Array(new hrefList("slide0001.html",1,-1,1),new hrefList("slide0060.html",1,-1,1),new hrefList("slide0061.html",1,-1,1),new hrefList("slide0091.html",1,-1,1),new hrefList("slide0092.html",1,-1,1),new hrefList("slide0093.html",1,-1,1),new hrefList("slide0136.html",1,-1,1),new hrefList("slide0137.html",1,-1,1),new hrefList("slide0138.html",1,-1,1),new hrefList("slide0095.html",1,-1,1),new hrefList("slide0133.html",1,-1,1),new hrefList("slide0067.html",1,-1,1),new hrefList("slide0125.html",1,-1,1),new hrefList("slide0097.html",1,-1,1),new hrefList("slide0123.html",1,-1,1),new hrefList("slide0124.html",1,-1,1),new hrefList("slide0139.html",1,-1,1),new hrefList("slide0131.html",1,-1,1),new hrefList("slide0068.html",1,-1,1),new hrefList("slide0098.html",1,-1,1),new hrefList("slide0132.html",1,-1,1),new hrefList("slide0072.html",1,-1,1),new hrefList("slide0099.html",1,-1,1),new hrefList("slide0100.html",1,-1,1),new hrefList("slide0080.html",1,-1,1),new hrefList("slide0118.html",1,-1,1),new hrefList("slide0119.html",1,-1,1),new hrefList("slide0081.html",1,-1,1),new hrefList("slide0120.html",1,-1,1),new hrefList("slide0121.html",1,-1,1),new hrefList("slide0082.html",1,-1,1),new hrefList("slide0122.html",1,-1,1),new hrefList("slide0117.html",1,-1,1),new hrefList("slide0101.html",1,-1,1),new hrefList("slide0128.html",1,-1,1),new hrefList("slide0140.html",1,-1,1),new hrefList("slide0102.html",1,-1,1),new hrefList("slide0108.html",1,-1,1),new hrefList("slide0115.html",1,-1,1),new hrefList("slide0116.html",1,-1,1),new hrefList("slide0086.html",1,-1,1),new hrefList("slide0135.html",1,-1,1),new hrefList("slide0087.html",1,-1,1),new hrefList("slide0088.html",1,-1,1),new hrefList("slide0109.html",1,-1,1),new hrefList("slide0110.html",1,-1,1),new hrefList("slide0104.html",1,-1,1),new hrefList("slide0106.html",1,-1,1),new hrefList("slide0129.html",1,-1,1),new hrefList("slide0141.html",1,-1,1),new hrefList("slide0130.html",1,-1,1),new hrefList("slide0103.html",1,-1,1),new hrefList("slide0069.html",1,-1,1),new hrefList("slide0057.html",1,-1,1),new hrefList("slide0059.html",1,-1,1));

-function FullScrInit()

-{

-	g_allowAdvOnClick = GetCurSld().mAdvOnClk

-	document.body.style.backgroundColor="black"

-	document.oncontextmenu=parent._CM;

-	document.onkeydown = _KDH;

-	document.ondragstart=Cancel

-	document.onselectstart=Cancel

-	self.focus()

-}

-function Redirect( frmId )

-{

-	var str=document.location.hash,idx=str.indexOf('#'), sId=GetSldId()

-	if(idx>=0) str=str.substr(1);

-	if( window.name != frmId && ( sId != str) ) {

-		obj = GetObj("Main-File")

-		window.location.href=obj.href+"#"+sId

-		return 1

-	}

-	return 0

-}

-var MHTMLPrefix = CalculateMHTMLPrefix();

-function CalculateMHTMLPrefix()

-{

-	if ( document.location.protocol == 'mhtml:') {

-		href=new String(document.location.href)

-		Start=href.indexOf('!')+1

-		End=href.lastIndexOf('/')+1

-		if (End < Start)

-			return href.substring(0, Start)

-		else

-		return href.substring(0, End)

-	}

-	return '';

-}

-function GetTags(base,tag)

-{

-	if(g_supportsPPTHTML) return base.all.tags(tag);

-	else return base.getElementsByTagName(tag);

-}

-function UpdNtsPane(){ if(frames["PPTNts"]) PPTNts.location.replace( MHTMLPrefix+GetHrefObj( gCurSld ).mNtsHref ) }

-function UpdNavPane( sldIndex ){ if(gNavLoaded) PPTNav.UpdNav() }

-function UpdOtNavPane(){ if(gOtlNavLoaded) PPTOtlNav.UpdOtlNav() }

-function UpdOtlPane(){ if(gOtlLoaded) PPTOtl.UpdOtl() }

-function SetHasNts( fVal )

-{

-	if( gHasNts != fVal ) {

-		gHasNts=fVal

-		UpdNavPane()

-	}

-}

-function ToggleOtlText()

-{

-	gOtlTxtExp=!gOtlTxtExp

-	UpdOtlPane()

-}

-function ToggleOtlPane()

-{

-	frmset=document.all("PPTHorizAdjust")

-	frm=document.all("PPTOtl")

-	if( gOtlOpen )

-		frmset.cols="*,100%"

-	else

-		frmset.cols="25%,*"

-	gOtlOpen=!gOtlOpen

-	frm.noResize=!frm.noResize

-	UpdOtNavPane()

-}

-function ToggleNtsPane()

-{

-	frmset=document.all("PPTVertAdjust")

-	frm=document.all("PPTNts")

-	if( gNtsOpen )

-		frmset.rows="100%,*"

-	else

-		frmset.rows="*,20%"

-	gNtsOpen=!gNtsOpen

-	UpdNtsPane()

-}

-function ClearMedia()

-{

-	if (PPTSld.pptSound) PPTSld.pptSound.loop = 0;

-}

-function FullScreen()

-{

-	if ( PPTSld.g_animUseRuntime )

-		PPTSld.document.body.pause();

-	ClearMedia();

-	var href = ( document.location.protocol == 'mhtml:') ? FULLSCR_HREF : FULLSCR_HREF+"#"+GetHrefObj(gCurSld).mSldHref;

-	if(PPTNav.event.ctrlKey) {

-		var w = (window.screen.availWidth * 1.0) / 2.0

-		var h = w * (PPTSld.g_origH * 1.0) / PPTSld.g_origW

-		win = window.open( MHTMLPrefix+href,null,"toolbar=0,resizable=1,top=0,left=0," + "width="+ w + ",height=" + h );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-	else

-	{

-		win = window.open( MHTMLPrefix+href,null,"fullscreen=yes" );

-		if( PPTSld.g_animUseRuntime )

-			win.document.body.PPTSldFrameset=window;

-	}

-}

-function ToggleVNarration()

-{

-	rObj=PPTSld.document.all("NSPlay")

-	if( rObj && !PPTSld.g_animUseRuntime ) {

-		if( (rObj.playState == 1)||(rObj.playState == 0) )

-			rObj.Play()

-		else if( rObj.playState == 2 )

-			rObj.Pause()

-		else

-			return;

-	}

-	else if( PPTSld.g_animUseRuntime )

-	{

-		narObj = PPTSld.document.all("narrationID")

-		if( narObj )

-			narObj.togglePause()

-	}

-}

-function GetCurSldNum()

-{

-	obj=GetHrefObj(gCurSld)

-	if( obj.mOrigVis == 1 )

-		return obj.mSldIdx

-	else

-		return gCurSld

-}

-function GetNumSlds()

-{

-	if( GetHrefObj(gCurSld).mOrigVis == 1 )

-		return GetSldList().mNumVisSlds;

-	else

-		return GetSldList().mList.length

-}

-function GetSldNum( href )

-{

-	for(ii=0; ii<GetSldList().mList.length; ii++) {

-		if ( GetSldList().mList[ii].mSldHref == href )

-			return ii+1

-	}

-	return 1

-}

-function GetHrefObj( sldIdx ){ return GetSldList().mList[sldIdx-1] }

-function IsFramesMode(){ return ( SCREEN_MODE == "Frames" ) }

-function IsFullScrMode(){ return ( SCREEN_MODE == "FullScreen" ) }

-function GoToNextSld()

-{

-	ii=gCurSld + 1

-	if( GetHrefObj( ii-1 ).mOrigVis == 0 ) {

-		if( ii<=GetSldList().mList.length ) {

-			obj=GetHrefObj(ii)

-			obj.mVis=1

-			GoToSldNum(ii)

-			return

-		}

-	}

-	else {

-		obj=GetHrefObj( ii )

-		while ( obj && ( obj.mOrigVis == 0 ) )

-			obj=GetHrefObj(++ii)

-		if( obj && obj.mOrigVis ) {

-			GoToSldNum(ii)

-			return

-		}

-	}

-	if( gSldStack.length > 1 )

-		PopSldList();

-	else if( !IsFramesMode() ) {

-                if( gLoopCont )

-			GoToFirst()

-                else

-			EndShow()

-	}

-}

-function GoToPrevSld()

-{

-	ii=gCurSld-1

-	if( ii > 0 ) {

-		obj=GetHrefObj(ii)

-		while ( obj && ( obj.mVis == 0 ) && ( ii>0 ) )

-			obj=GetHrefObj(--ii)

-        if( ii == 0 ) ii=1

-		GoToSldNum(ii)

-	}

-}

-function GoToFirst(){ GoToSld( GetHrefObj(1).mSldHref ) }

-function GoToLast()

-{

-	ii=GetSldList().mList.length

-	if( ii != gCurSld )

-		GoToSld( GetHrefObj(ii).mSldHref )

-}

-function GoToSldNum( num )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	obj = GetHrefObj( num )

-	obj.mVis=1

-	gPrevSld=gCurSld

-	gCurSld = num;

-	PPTSld.location.replace(MHTMLPrefix+obj.mSldHref)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function GoToSld( href )

-{

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	GetHrefObj( GetSldNum(href) ).mVis=1

-	PPTSld.location.replace(MHTMLPrefix+href)

-}

-function SldUpdated( id )

-{

-	if( id == GetHrefObj(gCurSld).mSldHref ) return

-	gPrevSld=gCurSld

-	gCurSld=GetSldNum(id)

-	if( IsFramesMode() ) {

-		UpdNavPane(); UpdOtlPane(); UpdNtsPane()

-	}

-}

-function PrevSldViewed(){ GoToSld( GetHrefObj(gPrevSld).mSldHref ) }

-function HasPrevSld() { return ( gIsEndShow || ( gCurSld != 1 && GetHrefObj( gCurSld-1 ).mVis == 1 )||( GetCurSldNum() > 1 ) ) }

-function HasNextSld() { return (GetCurSldNum() != GetNumSlds()) }

-function CloseWindow() {

-	if( HideMenu() ) return;

-	var event = PPTSld.event;

-	if( !IsFramesMode() && event && (event.keyCode==27 || event.keyCode==32 || event.type=="click" ) )

-		window.close( self );

-	CatchNumKeys( self, event );

-}

-function Unload() { gIsEndShow=0; }

-function SetupEndShow() {

-	gIsEndShow=1;

-	PPTSld.document.body.scroll="no";

-	PPTSld.document.onkeypress=CloseWindow;

-	PPTSld.document.onclick=CloseWindow;

-	PPTSld.document.oncontextmenu=_CM;

-}

-function EndShow()

-{

-	if( IsFramesMode() ) return

-	if( PPTSld.event ) PPTSld.event.cancelBubble=true

-	doc=PPTSld.document

-	doc.open()

-	doc.writeln('<html><body bgcolor=black onload=parent.SetupEndShow() onunload=parent.Unload()><center><p><font face=Tahoma color=white size=2><br><b>' + ENDSHOW_MESG + '</b></font></p></center></body></html>')

-	doc.close()

-}

-function SetSldVisited(){ GetSldList().mList[gCurSld-1].mVisited=true }

-function IsSldVisited(){ return GetSldList().mList[gCurSld-1].mVisited }

-function hrefList( sldHref, visible, advDelay, advClk )

-{

-	this.mSldHref= this.mNtsHref = sldHref

-	this.mOrigVis= this.mVis = visible

-	this.mVisited= false

-	this.mAdvDelay= advDelay

-	this.mAdvOnClk= advClk

-}

-function SldList(arr,curSld,fEnd)

-{

-	this.mCurSld = curSld;

-	this.mList = new Array();

-	var idx = 1;

-	for(ii=0;ii<arr.length;ii++) {

-		this.mList[ii] = new hrefList( arr[ii].mSldHref, arr[ii].mOrigVis, arr[ii].mAdvDelay, arr[ii].mAdvOnClk );

-		if( arr[ii].mOrigVis )

-			this.mList[ii].mSldIdx = idx++;

-	}

-	this.mNumVisSlds = idx-1;

-	this.fEndShow = fEnd;

-}

-function GetSldList() {	return gSldStack[gSldStack.length-1] }

-function GetCurSld() { return parent.GetSldList().mList[parent.gCurSld - 1] }

-gSldStack = new Array();

-gSldStack[0] = new SldList(gMainDoc,gCurSld,1)

-function ViewCustomShow(idx,fEnd)

-{

-	if( !IsFullScrMode() ) return;

-	var sldList = new Array();

-	var custShow = custShowList[idx-1];

-	var jj = 0;

-	for( ii=0;ii<custShow.length;ii++ ) {

-		if( custShow[ii] <= gMainDoc.length )

-			sldList[jj++] = gMainDoc[custShow[ii]-1];

-	}

-	if (sldList.length > 0) {

-	PushSldList(sldList,fEnd);

-	gCurSld = 1;

-	}

-	else

-		if( PPTSld.event ) PPTSld.event.cancelBubble=true

-}

-function PushSldList(arr,fEnd) {

-	var ii = gSldStack.length;

-	gSldStack[ii] = new SldList(arr,gCurSld,fEnd);

-	GoToSld( gSldStack[ii].mList[0].mSldHref );

-}

-function PopSldList() {

-	if (gSldStack[gSldStack.length-1].fEndShow)

-		EndShow()

-	else {

-	gCurSld = gSldStack[gSldStack.length-1].mCurSld;

-	gSldStack[gSldStack.length-1] = null;

-	gSldStack.length--;

-	var sldList = gSldStack[gSldStack.length-1];

-	GoToSld( sldList.mList[gCurSld - 1].mSldHref );

-	}

-}

-var custShowList=new Array();

-function ImgBtn( oId,bId,w,action )

-{

-	var t=this

-	t.Perform    = _IBP

-	t.SetActive  = _IBSetA

-	t.SetInactive= _IBSetI

-	t.SetPressed = _IBSetP

-	t.SetDisabled= _IBSetD

-	t.Enabled    = _IBSetE

-	t.ChangeIcon = null

-	t.UserAction = action

-	t.ChgState   = _IBUI

-	t.mObjId   = oId

-	t.mBorderId= bId

-	t.mWidth   = w

-	t.mIsOn    = t.mCurState = 0

-}

-function _IBSetA()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gHiliteClr,gShadowClr,2 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetI()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gFaceClr,gFaceClr,1 )

-		obj.style.posTop=0

-	}

-}

-function _IBSetP()

-{

-	if( this.mIsOn ) {

-		obj=this.ChgState( gShadowClr,gHiliteClr,2 )

-		obj.style.posLeft+=1; obj.style.posTop+=1

-	}

-}

-function _IBSetD()

-{

-	obj=this.ChgState( gFaceClr,gFaceClr,0 )

-	obj.style.posTop=0

-}

-function _IBSetE( state )

-{

-	var t=this

-	GetObj( t.mBorderId ).style.visibility="visible"

-	if( state != t.mIsOn ) {

-		t.mIsOn=state

-		if( state )

-			t.SetInactive()

-		else

-			t.SetDisabled()

-	}

-}

-function _IBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-		if( t.ChangeIcon ) {

-			obj=GetObj(t.mObjId)

-			if( t.ChangeIcon() )

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-4)*t.mWidth

-			else

-				obj.style.posLeft=obj.style.posLeft+(t.mCurState-0)*t.mWidth

-		}

-		t.SetActive()

-	}

-}

-function _IBUI( clr1,clr2,nextState )

-{

-	var t=this

-	SetBorder( GetObj( t.mBorderId ),clr1,clr2 )

-	obj=GetObj( t.mObjId )

-	obj.style.posLeft=obj.style.posLeft+(t.mCurState-nextState)*t.mWidth-obj.style.posTop

-	t.mCurState=nextState

-	return obj

-}

-function TxtBtn( oId,oeId,action,chkState )

-{

-	var t=this

-	t.Perform    = _TBP

-	t.SetActive  = _TBSetA

-	t.SetInactive= _TBSetI

-	t.SetPressed = _TBSetP

-	t.SetDisabled= _TBSetD

-	t.SetEnabled = _TBSetE

-	t.GetState   = chkState

-	t.UserAction = action

-	t.ChgState   = _TBUI

-	t.mObjId      = oId

-	t.m_elementsId= oeId

-	t.mIsOn       = 1

-}

-function _TBSetA()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gHiliteClr,gShadowClr,0,0 )

-}

-function _TBSetI()

-{

-	var t=this

-	if( t.mIsOn && !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-}

-function _TBSetP()

-{

-	if( this.mIsOn )

-		this.ChgState( gShadowClr,gHiliteClr,1,1 )

-}

-function _TBSetD()

-{

-	this.ChgState( gFaceClr,gFaceClr,0,0 )

-	this.mIsOn = 0

-}

-function _TBSetE()

-{

-	var t=this

-	if( !t.GetState() )

-		t.ChgState( gFaceClr,gFaceClr,0,0 )

-	else

-		t.ChgState( gShadowClr,gHiliteClr,1,1 )

-	t.mIsOn = 1

-}

-function _TBP()

-{

-	var t=this

-	if( t.mIsOn ) {

-		if( t.UserAction != null )

-			t.UserAction()

-        if( !t.GetState )

-            return

-		if( t.GetState() )

-			t.SetPressed()

-		else

-			t.SetActive()

-	}

-}

-function _TBUI( clr1,clr2,lOffset,tOffset )

-{

-	SetBorder( GetObj( this.mObjId ),clr1,clr2 )

-	Offset( GetObj( this.m_elementsId ),lOffset,tOffset )

-}

-function Offset( obj, top, left ){ obj.style.top=top; obj.style.left=left }

-function SetBorder( obj, upperLeft, lowerRight )

-{

-	s=obj.style;

-	s.borderStyle      = "solid"

-	s.borderWidth      = 1

-	s.borderLeftColor  = s.borderTopColor = upperLeft

-	s.borderBottomColor= s.borderRightColor = lowerRight

-}

-function GetBtnObj(){ return gBtnArr[window.event.srcElement.id] }

-function BtnOnOver(){ b=GetBtnObj(); if( b != null ) b.SetActive() }

-function BtnOnDown(){ b=GetBtnObj(); if( b != null ) b.SetPressed() }

-function BtnOnOut(){ b=GetBtnObj(); if( b != null ) b.SetInactive() }

-function BtnOnUp()

-{

-	b=GetBtnObj()

-	if( b != null )

-		b.Perform()

-	else

-		Upd()

-}

-function GetNtsState(){ return parent.gNtsOpen }

-function GetOtlState(){ return parent.gOtlOpen }

-function GetOtlTxtState(){ return parent.gOtlTxtExp }

-function NtsBtnSetFlag( fVal )

-{

-	s=document.all.item( this.m_flagId ).style

-	s.display="none"

-	if( fVal )

-		s.display=""

-	else

-		s.display="none"

-}

-function _BSetA_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetActive() }

-function _BSetI_Border(){ b = gBtnArr[this.mObjId]; if( b != null ) b.SetInactive() }

-var gHiliteClr="THREEDHIGHLIGHT",gShadowClr="THREEDSHADOW",gFaceClr="THREEDFACE"

-var gBtnArr = new Array()

-gBtnArr["nb_otl"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_otlElem"] = new TxtBtn( "nb_otl","nb_otlElem",parent.ToggleOtlPane,GetOtlState )

-gBtnArr["nb_nts"] = new TxtBtn( "nb_nts","nb_ntsElem",parent.ToggleNtsPane,GetNtsState )

-gBtnArr["nb_prev"]= new ImgBtn( "nb_prev","nb_prevBorder",30,parent.GoToPrevSld )

-gBtnArr["nb_next"]= new ImgBtn( "nb_next","nb_nextBorder",30,parent.GoToNextSld )

-gBtnArr["nb_sldshw"]= new ImgBtn( "nb_sldshw","nb_sldshwBorder",18,parent.FullScreen )

-gBtnArr["nb_sldshwBorder"] = new TxtBtn( "nb_sldshw","nb_sldshwBorder",parent.FullScreen,null )

-gBtnArr["nb_sldshwBorder"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwBorder"].SetInactive = _BSetI_Border;

-gBtnArr["nb_sldshwText"] = new TxtBtn( "nb_sldshw","nb_sldshwText",parent.FullScreen,null )

-gBtnArr["nb_sldshwText"].SetActive = _BSetA_Border;

-gBtnArr["nb_sldshwText"].SetInactive = _BSetI_Border;

-gBtnArr["nb_voice"]  = new ImgBtn( "nb_voice","nb_voiceBorder",18,parent.ToggleVNarration )

-gBtnArr["nb_otlTxt"]= new ImgBtn( "nb_otlTxt","nb_otlTxtBorder",23,parent.ToggleOtlText )

-gBtnArr["nb_nts"].m_flagId= "notes_flag"

-gBtnArr["nb_nts"].SetFlag = NtsBtnSetFlag

-gBtnArr["nb_otlTxt"].ChangeIcon= GetOtlTxtState

-var sNext="Next",sPrev="Previous",sEnd="End Show",sFont="Arial",sArrow="Arrow",sFreeform="Freeform",sRect="Rectangle",sOval="Oval"

-function ShowMenu()

-{

-	BuildMenu();

-	var doc=PPTSld.document.body,x=PPTSld.event.clientX+doc.scrollLeft,y=PPTSld.event.clientY+doc.scrollTop

-	m = PPTSld.document.all.item("ctxtmenu")

-	m.style.pixelLeft=x

-	if( (x+m.scrollWidth > doc.clientWidth)&&(x-m.scrollWidth > 0) )

-		m.style.pixelLeft=x-m.scrollWidth

-	m.style.pixelTop=y

-	if( (y+m.scrollHeight > doc.clientHeight)&&(y-m.scrollHeight > 0) )

-		m.style.pixelTop=y-m.scrollHeight

-	m.style.display=""

-}

-function _CM()

-{

-	if( !parent.IsFullScrMode() ) return;

-	if(!PPTSld.event.ctrlKey) {

-		ShowMenu()

-		return false

-	} else

-		HideMenu()

-}

-function BuildMenu()

-{

-	if( PPTSld.document.all.item("ctxtmenu") ) return

-	var mObj=CreateItem( PPTSld.document.body )

-	mObj.id="ctxtmenu"

-	mObj.style.visibility="hidden"

-	var s=mObj.style

-	s.position="absolute"

-	s.cursor="default"

-	s.width="120px"

-	SetCMBorder(mObj,"menu","black")

-	var iObj=CreateItem( mObj )

-	SetCMBorder( iObj, "threedhighlight","threedshadow" )

-	iObj.style.padding=2

-	CreateMenuItem( iObj,sNext,M_GoNextSld,M_True )

-	CreateMenuItem( iObj,sPrev,M_GoPrevSld,M_HasPrevSld )

-	CreateSeparator( iObj )

-	CreateMenuItem( iObj,sEnd,M_End,M_True )

-	mObj.style.visibility="visible"

-}

-function Cancel() { window.event.cancelBubble=true; window.event.returnValue=false }

-function Highlight() { ChangeClr("activecaption","threedhighlight") }

-function Deselect() { ChangeClr("threedface","menutext") }

-function Perform()

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() )

-		e.Action()

-	else

-		PPTSld.event.cancelBubble=true

-}

-function ChangeClr( bg,clr )

-{

-	e=PPTSld.event.srcElement

-	if( e.type=="menuitem" && e.IsActive() ) {

-		e.style.backgroundColor=bg

-		e.style.color=clr

-	}

-}

-function M_HasPrevSld() { return( parent.HasPrevSld() ) }

-function M_GoNextSld() { if( gIsEndShow ) M_End(); else GoToNextSld() }

-function M_GoPrevSld() { if( gIsEndShow ) { history.back(); PPTSld.event.cancelBubble=true; } else GoToPrevSld() }

-function M_True() { return true }

-function M_End() { window.close( self ) }

-function CreateMenuItem( node,text,action,eval )

-{

-	var e=CreateItem( node )

-	e.type="menuitem"

-	e.Action=action

-	e.IsActive=eval

-	e.innerHTML=text

-	if( !e.IsActive() )

-		e.style.color="threedshadow"

-	e.onclick=Perform

-	e.onmouseover=Highlight

-	e.onmouseout=Deselect

-	s=e.style;

-	s.fontFamily=sFont

-	s.fontSize="9pt"

-	s.paddingLeft=2

-}

-function CreateSeparator( node )

-{

-	var sObj=CreateItem( node )

-	SetCMBorder(sObj,"menu","menu")

-	var s=sObj.style

-	s.borderTopColor="threedshadow"

-	s.borderBottomColor="threedhighlight"

-	s.height=1

-	s.fontSize="0px"

-}

-function CreateItem( node )

-{

-	var elem=PPTSld.document.createElement("DIV")

-	node.insertBefore( elem )

-	return elem

-}

-function SetCMBorder( o,ltClr,rbClr )

-{

-	var s=o.style

-	s.backgroundColor="menu"

-	s.borderStyle="solid"

-	s.borderWidth=1

-	s.borderColor=ltClr+" "+rbClr+" "+rbClr+" "+ltClr

-}

diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0001.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0001.html
deleted file mode 100644
index c0d6a9e..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0001.html
+++ /dev/null
@@ -1,110 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Creating Robust Scalable DSLs with UML ">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style>
-.CB
-	{color:black;}
-.CT
-	{color:#2F2672;}
-</style>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="2"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master04.xml">
- <p:shaperange href="master04.xml#_x0000_s24577"/><![if !ppt]><p:shaperange
-  href="master04.xml#_x0000_s24578"/><![if !vml]><img border=0
- v:shapes="_x0000_s24578" src="master04_image003.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s24581"/><![if !vml]><img border=0
- v:shapes="_x0000_s24581" src="master04_image004.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master04.xml#_x0000_s24585"/>
- <div v:shape="_x0000_s24585" class=O style='position:absolute;top:95.0%;
- left:1.49%;width:97.75%;height:2.75%'><span lang=EN-US style='font-size:50%;
- mso-ansi-language:EN-US'>Copyright © IBM Corp., 2007-2008. </span><span
- style='mso-bidi-font-family:Arial;font-size:50%'>|<span
- style='mso-spacerun:yes'>  </span>March-17-2008<span
- style='mso-spacerun:yes'>  </span>|</span></div>
- <![endif]><p:shaperange href="master04.xml#_x0000_m24579"/><v:shape id="_x0000_s2050"
-  type="#_x0000_m24579" style='position:absolute;left:54pt;top:126pt;width:612pt;
-  height:90pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <p:placeholder type="centerTitle"/></v:shape><p:shaperange
-  href="master04.xml#_x0000_m24580"/><v:shape id="_x0000_s2051" type="#_x0000_m24580"
-  style='position:absolute;left:108pt;top:270pt;width:7in;height:168pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <p:placeholder type="subTitle" position="1"/></v:shape>
- <div v:shape="_x0000_s2050" class=CT style='position:absolute;top:29.0%;
- left:8.42%;width:86.7%;height:6.0%'>Creating Robust Scalable DSLs with UML </div>
- <div v:shape="_x0000_s2051" class=CB style='tab-stops:.4427in'>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:50.5%;left:15.91%;
- width:68.16%;height:4.5%'><span lang=EN-US style='font-size:83%;mso-ansi-language:
- EN-US'>Tutorial&#13;</span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:55.5%;left:15.91%;
- width:68.16%;height:4.5%'><span lang=EN-US style='font-size:83%;mso-ansi-language:
- EN-US'>(172)&#13;</span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:60.25%;
- left:15.91%;width:68.16%;height:4.5%'><span lang=EN-US style='font-size:83%;
- mso-ansi-language:EN-US;display:none'>&#13;</span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:65.25%;
- left:15.91%;width:68.16%;height:4.5%'><span lang=EN-US style='font-size:83%;
- mso-ansi-language:EN-US'>James Bruck,&#13;</span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:70.0%;left:15.91%;
- width:68.16%;height:4.5%'><span lang=EN-US style='font-size:83%;mso-ansi-language:
- EN-US'>Christian Damus&#13;</span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:75.0%;left:15.91%;
- width:68.16%;height:4.5%'><span lang=EN-US style='font-size:83%;mso-ansi-language:
- EN-US'>IBM Rational Software</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0057.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0057.html
deleted file mode 100644
index 1257f20..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0057.html
+++ /dev/null
@@ -1,96 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="71"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>54</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s72706"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s72707" type="#_x0000_m1027"
-  style='position:absolute;left:222pt;top:240pt;width:204pt;height:54pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s72707" class=B style='position:absolute;top:45.5%;
- left:31.83%;width:30.89%;height:7.75%;tab-stops:.4427in'><span
- style='mso-special-format:nobullet;display:none'>•</span><span
- style='font-size:150%'>Thank You!</span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0059.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0059.html
deleted file mode 100644
index ef8dbb6..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0059.html
+++ /dev/null
@@ -1,217 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Legal Notices">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="98"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>55</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s100354"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s100355" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s100354" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Legal Notices</div>
- <div v:shape="_x0000_s100355" class=B style='tab-stops:.4427in'>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:26.0%;left:8.42%;
- width:83.14%;height:2.25%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:42%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0"'><span style='position:absolute;
- top:28.25%;left:10.48%;width:94.19%;height:2.25%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.18%'>•</span></span><span
- lang=EN-US style='font-size:42%;mso-ansi-language:EN-US'>Copyright © IBM
- Corp., 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights
- reserved.<span style='mso-spacerun:yes'>  </span>Source code in this
- presentation is made available under the EPL, v1.0; </span></span><span
- style='position:absolute;top:30.0%;left:10.48%;width:81.27%;height:2.25%'><span
- lang=EN-US style='font-size:42%;mso-ansi-language:EN-US'>remainder of the
- presentation is licensed under Creative Commons Att. Nc Nd 2.5 license.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:32.25%;
- left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:34.5%;left:8.42%;
- width:95.88%;height:2.25%'><span style='position:absolute;top:0%;left:2.14%;
- width:98.04%;height:100.0%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.19%'>•</span></span><span
- style='font-size:42%'>IBM and the IBM logo are trademarks or registered
- trademarks of IBM Corporation in the United States, other countries, or
- both.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:36.75%;
- left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0"'><span style='position:absolute;
- top:39.0%;left:10.48%;width:95.5%;height:2.25%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.15%'>•</span></span><span
- style='font-size:42%'>Rational and the Rational logo are trademarks or
- registered trademarks of International Business Corporation in the United
- States, </span></span><span style='position:absolute;top:40.75%;left:10.48%;
- width:81.27%;height:2.25%'><span style='font-size:42%'>other countries, or
- both.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:43.0%;left:8.42%;
- width:83.14%;height:2.25%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:42%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:45.0%;left:8.42%;
- width:90.44%;height:2.25%'><span style='position:absolute;top:0%;left:2.27%;
- width:97.92%;height:100.0%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.32%'>•</span></span><span
- style='font-size:42%'>UML, Unified Modeling Language, and MOF are trademarks
- or registered trademarks of Object Management Group, Inc.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:47.25%;
- left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0"'><span style='position:absolute;
- top:49.5%;left:10.48%;width:94.19%;height:2.25%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.18%'>•</span></span><span
- style='font-size:42%'>Java and all Java-based trademarks, among others, are
- trademarks or registered trademarks of Sun Microsystems in the United </span></span><span
- style='position:absolute;top:51.25%;left:10.48%;width:81.27%;height:2.25%'><span
- style='font-size:42%'>States, other countries, or both&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:53.5%;left:8.42%;
- width:83.14%;height:2.25%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:42%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:55.75%;
- left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%'>Eclipse and the Eclipse logo are trademarks of the
- Eclipse Foundation, Inc.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:58.0%;left:8.42%;
- width:83.14%;height:2.25%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:42%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:60.25%;
- left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%'>Other company, product, and service names may be
- trademarks or service marks of others.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:62.5%;left:8.42%;
- width:83.14%;height:2.25%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:42%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0"'><span style='position:absolute;
- top:64.75%;left:10.48%;width:96.25%;height:2.25%'><span style='font-size:42%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.14%'>•</span></span><span
- style='font-size:42%'>THE INFORMATION DISCUSSED IN THIS PRESENTATION IS
- PROVIDED FOR INFORMATIONAL PURPOSES ONLY.<span style='mso-spacerun:yes'> 
- </span>WHILE </span></span><span style='position:absolute;top:66.5%;
- left:10.48%;width:95.13%;height:2.25%'><span style='font-size:42%'>EFFORTS
- WERE MADE TO VERIFY THE COMPLETENESS AND ACCURACY OF THE INFORMATION, IT IS
- PROVIDED “AS </span></span><span style='position:absolute;top:68.25%;
- left:10.48%;width:90.63%;height:2.25%'><span style='font-size:42%'>IS” WITHOUT
- WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, AND IBM SHALL NOT BE RESPONSIBLE FOR
- ANY </span></span><span style='position:absolute;top:70.0%;left:10.48%;
- width:92.5%;height:2.25%'><span style='font-size:42%'>DAMAGES ARISING OUT OF
- THE USE OF, OR OTHERWISE RELATED TO, SUCH INFORMATION.<span
- style='mso-spacerun:yes'>  </span>ANY INFORMATION </span></span><span
- style='position:absolute;top:71.75%;left:10.48%;width:85.39%;height:2.25%'><span
- style='font-size:42%'>CONCERNING IBMÂ’S PRODUCT PLANS OR STRATEGY IS SUBJECT TO
- CHANGE BY IBM WITHOUT NOTICE.&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:74.0%;left:8.42%;
- width:83.14%;height:2.25%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:42%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:42%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:76.25%;
- left:8.42%;width:83.14%;height:2.25%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:42%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:42%;mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0060.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0060.html
deleted file mode 100644
index 984b61e..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0060.html
+++ /dev/null
@@ -1,183 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Agenda">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="114"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O style='position:absolute;top:95.25%;
- left:16.85%;width:82.39%;height:2.25%'><span style='mso-bidi-font-family:Arial;
- font-size:42%'><span style='mso-spacerun:yes'> </span>Creating Robust Scalable
- </span><span style='font-size:42%'>DSLs with UML</span><span lang=EN-US
- style='font-size:42%;mso-ansi-language:EN-US'> |<span
- style='mso-spacerun:yes'>  </span>Tutorial | Copyright © IBM Corp.,
- 2007-2008.<span style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- <div v:shape="_x0000_s1035" class=O style='mso-line-spacing:"100 50 0";
- mso-char-wrap:1;mso-kinsoku-overflow:1;position:absolute;top:96.25%;
- left:.93%;width:9.17%;height:2.25%'><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-field-code:meta16'><b>2</b></span><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s116738"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s116739" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s116738" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Agenda</div>
- <div v:shape="_x0000_s116739" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:26.0%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'><b>Introduction&#13;</b></span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:31.0%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Exploring Extension
- Mechanisms&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:35.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Featherweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:39.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Lightweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:43.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Middleweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:47.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Heavyweight&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:51.0%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Advanced
- Concepts&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:55.5%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Subsetting&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:59.5%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Derived Unions&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:63.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Redefinition&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:67.25%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Meta-model
- Decomposition&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:71.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Package Merge&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:75.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Language Units&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:79.5%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Compliance Levels&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:83.5%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Summary</span><span
- style='font-size:75%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0061.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0061.html
deleted file mode 100644
index 04e6c30..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0061.html
+++ /dev/null
@@ -1,150 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Introduction – What is a DSL?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="115"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>3</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s117762"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s117763" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s117762" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Introduction – What is a DSL?</div>
- <div v:shape="_x0000_s117763" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>DSL stands for “Domain Specific
- Language”.&#13;</span></span></div>
- <div class=B style='position:absolute;top:32.25%;left:8.42%;width:83.14%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:58%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span lang=EN-US
- style='font-size:58%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B><span style='position:absolute;top:36.5%;left:10.48%;width:90.82%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.26%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>A DSL is created specifically to
- solve problems in a </span></span><span style='position:absolute;top:42.0%;
- left:10.48%;width:81.27%;height:5.25%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>particular domain.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:48.5%;left:12.92%;width:79.96%;
- height:6.0%'><span style='position:absolute;top:0%;left:3.04%;width:96.95%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.14%;
- top:.36em'>w</span><span lang=EN-US style='mso-ansi-language:EN-US'>A language
- designed to be useful for a specific task</span><span lang=EN-US
- style='font-size:140%;mso-ansi-language:EN-US'>.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:55.25%;left:12.92%;width:78.83%;
- height:3.25%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:70%;visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.19%'>w</span></span><span lang=EN-US
- style='font-size:70%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:59.5%;left:8.42%;width:86.89%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.37%;width:97.84%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.42%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>UML® is a general purpose modeling
- language.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:65.75%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Large and very expressive.&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:71.0%;left:15.35%;width:87.07%;
- height:4.5%'><span class=B1B style='position:absolute;left:-2.79%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>UML 1.x was sometimes criticized
- for being too large, UML </span></span><span style='position:absolute;
- top:75.5%;left:15.35%;width:76.21%;height:4.5%'><span lang=EN-US
- style='mso-ansi-language:EN-US'>2.x adds even more concepts.&#13;</span></span></div>
- <div class=B2 style='position:absolute;top:80.75%;left:17.22%;width:74.34%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.51%;width:97.48%;
- height:100.0%'><span style='font-size:111%;visibility:hidden'><span class=B2B
- style='position:absolute;left:-2.58%'>§</span></span><span lang=EN-US
- style='font-size:111%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:86.0%;left:8.42%;width:83.14%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:75%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='font-size:
- 75%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0067.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0067.html
deleted file mode 100644
index e36f2ab..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0067.html
+++ /dev/null
@@ -1,174 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exploring Extension Mechanisms - Lightweight">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="121"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>12</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s123906"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s123907" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:618pt;height:5in'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s123906" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:96.81%;height:6.0%'>Exploring Extension Mechanisms -
- Lightweight</div>
- <div v:shape="_x0000_s123907" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:26.0%;left:10.48%;width:88.95%;height:5.25%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.31%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>A profile defines a limited extension to a
- reference </span></span><span style='position:absolute;top:30.75%;left:10.48%;
- width:82.02%;height:5.25%'><span lang=EN-US style='mso-ansi-language:EN-US'>meta-model.&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:36.25%;
- left:8.42%;width:84.08%;height:3.25%'><span style='position:absolute;
- top:0%;left:2.44%;width:97.55%;height:100.0%'><span style='font-size:58%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.51%'>•</span></span><span lang=EN-US style='font-size:58%;mso-ansi-language:
- EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:40.25%;
- left:8.42%;width:84.08%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.44%;width:97.55%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.51%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Primary extension construct is the
- Stereotype.&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:45.75%;
- left:8.42%;width:84.08%;height:3.25%'><span style='position:absolute;
- top:0%;left:2.44%;width:97.55%;height:100.0%'><span style='font-size:58%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.51%'>•</span></span><span lang=EN-US style='font-size:58%;mso-ansi-language:
- EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:49.5%;
- left:8.42%;width:84.08%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.44%;width:97.55%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.51%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Stereotypes can be used to add:&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:55.0%;
- left:12.92%;width:79.58%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.05%;width:96.94%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.15%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:90%;mso-ansi-language:
- EN-US'>Keywords&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:59.5%;
- left:12.92%;width:79.58%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.05%;width:96.94%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.15%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:90%;mso-ansi-language:
- EN-US'>Constraints&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:64.0%;
- left:12.92%;width:79.58%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.05%;width:96.94%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.15%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:90%;mso-ansi-language:
- EN-US'>Images&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:68.25%;
- left:12.92%;width:79.58%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.05%;width:96.94%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.15%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:90%;mso-ansi-language:
- EN-US'>Properties &#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:72.75%;
- left:12.92%;width:79.58%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.05%;width:96.94%;height:100.0%'><span style='font-size:90%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.15%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:90%;mso-ansi-language:
- EN-US'>Behavior&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:77.25%;
- left:12.92%;width:79.58%;height:4.0%'><span style='position:absolute;
- top:0%;left:3.05%;width:96.94%;height:100.0%'><span style='font-size:90%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-3.15%;font-family:Wingdings'>w</span></span><span lang=EN-US
- style='font-size:90%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:81.75%;left:10.48%;width:97.56%;height:4.5%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.11%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Profile applications
- can be used to restrict the meta-types that can </span></span><span
- style='position:absolute;top:85.75%;left:10.48%;width:82.02%;height:4.5%'><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>be used in the
- profiled package.</span><span style='font-size:83%;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0068.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0068.html
deleted file mode 100644
index 471c2f2..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0068.html
+++ /dev/null
@@ -1,134 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exploring Extension Mechanisms - Middleweight">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="122"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>19</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s124930"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s124931" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:9in;height:306pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s124930" class=T style='position:absolute;top:17.0%;
- left:8.42%;width:86.14%;height:5.25%'><span style='font-size:86%'>Exploring
- Extension Mechanisms - Middleweight</span></div>
- <div v:shape="_x0000_s124931" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:8.42%;width:89.88%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.29%;width:97.91%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.34%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Extension by specialization of UML
- meta-classes.&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:32.75%;left:15.35%;
- width:89.88%;height:4.5%'><span class=B1B style='position:absolute;left:-2.7%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Extend by<span style='mso-tab-count:
- 1;width:.88%'> </span>specializing types within </span><span lang=EN-US
- style='mso-ansi-language:EN-US'><i>UML.metamodel.uml</i></span><span
- lang=EN-US style='mso-ansi-language:EN-US'> (the </span></span><span
- style='position:absolute;top:37.25%;left:15.35%;width:81.27%;height:4.5%'><span
- lang=EN-US style='mso-ansi-language:EN-US'>merged UML meta-model)&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:42.0%;left:12.92%;width:83.7%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.9%;width:97.09%;
- height:100.0%'><span style='font-size:70%;visibility:hidden'><span class=B1B
- style='position:absolute;left:-2.99%'>w</span></span><span lang=EN-US
- style='font-size:70%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:46.5%;left:8.42%;width:95.69%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.15%;width:98.04%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.19%'>•</span>Creating
- dependencies on a specific version of UML.&#13;</span></div>
- <div class=B style='position:absolute;top:52.25%;left:8.42%;width:88.2%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.33%;width:97.87%;
- height:100.0%'><span style='font-size:58%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.38%'>•</span></span><span style='font-size:
- 58%;display:none'>&#13;</span></span></div>
- <div class=B><span style='position:absolute;top:56.5%;left:10.48%;width:96.06%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.14%'>•</span>Implementation
- classes in the specialized meta-model </span><span style='position:absolute;
- top:61.75%;left:10.48%;width:101.31%;height:5.25%'>reference internal UML
- implementation classes (compiler </span><span style='position:absolute;
- top:67.25%;left:10.48%;width:86.32%;height:5.25%'>warnings)<span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0069.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0069.html
deleted file mode 100644
index aaad752..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0069.html
+++ /dev/null
@@ -1,137 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Summary">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="123"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>53</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s125954"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s125955" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s125954" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Summary</div>
- <div v:shape="_x0000_s125955" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Four basic techniques.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.75%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Flyweight&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:38.0%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Lightweight&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:43.25%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Middleweight&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:48.75%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Heavyweight&#13;</span></span></div>
- <div class=B style='position:absolute;top:54.25%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Favor “lightweight” extension (use
- of profiles).&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:60.25%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>A practical solution for most
- applications.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:65.75%;left:12.92%;width:78.83%;
- height:4.5%'><span style='mso-special-format:nobullet;display:none;font-family:
- Wingdings'>w</span><span lang=EN-US style='mso-ansi-language:EN-US;display:
- none'>&#13;</span></div>
- <div class=B style='position:absolute;top:71.25%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0072.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0072.html
deleted file mode 100644
index 5227fe0..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0072.html
+++ /dev/null
@@ -1,164 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exploring Extension Mechanisms – Heavyweight">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="126"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>22</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s129026"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s129027" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s129026" class=T style='position:absolute;top:17.0%;
- left:8.42%;width:86.51%;height:5.25%'><span style='font-size:86%'>Exploring
- Extension Mechanisms – Heavyweight</span></div>
- <div v:shape="_x0000_s129027" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:8.42%;width:94.19%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.18%;width:97.81%;
- height:100.0%'><span style='font-size:83%'><span class=BB style='position:
- absolute;left:-2.23%'>•</span></span><span lang=EN-US style='font-size:83%;
- mso-ansi-language:EN-US'>Reuse by copy instead of reuse by extension as
- middleweight.&#13;</span></span></div>
- <div class=B style='position:absolute;top:31.75%;left:8.42%;width:83.14%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:83%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span lang=EN-US
- style='font-size:83%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:37.25%;left:8.42%;width:83.14%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:83%'><span class=BB style='position:
- absolute;left:-2.53%'>•</span></span><span lang=EN-US style='font-size:83%;
- mso-ansi-language:EN-US'>Heavyweight extensions involve 2 steps&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:42.25%;left:12.92%;width:78.83%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:90%'><span class=B1B style='position:
- absolute;left:-3.19%'>w</span></span><span lang=EN-US style='font-size:90%;
- mso-ansi-language:EN-US'>Select the language units you wish to extend and
- merge.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:47.25%;left:12.92%;width:78.83%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:90%'><span class=B1B style='position:
- absolute;left:-3.19%'>w</span></span><span lang=EN-US style='font-size:90%;
- mso-ansi-language:EN-US'>Add your own domain specific types.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:52.0%;left:12.92%;width:78.83%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:90%;visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.19%'>w</span></span><span lang=EN-US
- style='font-size:90%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:57.0%;left:8.42%;width:93.07%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.21%;width:97.98%;
- height:100.0%'><span style='font-size:83%'><span class=BB style='position:
- absolute;left:-2.25%'>•</span></span><span lang=EN-US style='font-size:83%;
- mso-ansi-language:EN-US'>Merging packages forms the basis for constructing UML
- itself.&#13;</span></span></div>
- <div class=B style='position:absolute;top:62.25%;left:8.42%;width:83.14%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:83%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span lang=EN-US
- style='font-size:83%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:67.5%;left:8.42%;width:83.14%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:83%'><span class=BB style='position:
- absolute;left:-2.53%'>•</span></span><span lang=EN-US style='font-size:83%;
- mso-ansi-language:EN-US'>Have access to all concepts used to create UML &#13;</span></span></div>
- <div class=B1 style='position:absolute;top:72.75%;left:12.92%;width:78.83%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:90%'><span class=B1B style='position:
- absolute;left:-3.19%'>w</span></span><span lang=EN-US style='font-size:90%;
- mso-ansi-language:EN-US'>Subset&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:77.5%;left:12.92%;width:78.83%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:90%'><span class=B1B style='position:
- absolute;left:-3.19%'>w</span></span><span lang=EN-US style='font-size:90%;
- mso-ansi-language:EN-US'>Redefinition&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:82.5%;left:12.92%;width:78.83%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:90%'><span class=B1B style='position:
- absolute;left:-3.19%'>w</span></span><span lang=EN-US style='font-size:90%;
- mso-ansi-language:EN-US'>Derived unions</span><span style='font-size:90%;
- mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0080.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0080.html
deleted file mode 100644
index 2eb5e14..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0080.html
+++ /dev/null
@@ -1,148 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Advanced Concepts – Subsets">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="136"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>25</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s139266"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s139267" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s139268"
-  style='position:absolute;left:66pt;top:138pt;width:642pt;height:342pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s139266" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Advanced Concepts – Subsets</div>
- <div v:shape="_x0000_s139267" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s139268" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:10.11%;width:87.26%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.14%;width:97.85%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.19%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Comes in 2 flavors&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.75%;left:14.6%;width:82.95%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.93%;width:97.06%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.02%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Derived subsets&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:38.0%;left:14.6%;width:82.95%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.93%;width:97.06%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.02%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Non-derived subsets&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:43.0%;left:14.6%;width:82.95%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.93%;width:97.06%;
- height:100.0%'><span style='font-size:70%;visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.02%'>w</span></span><span lang=EN-US
- style='font-size:70%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B><span style='position:absolute;top:47.25%;left:11.98%;width:93.44%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.0%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>UML2 includes a customized EMF code
- generator to </span></span><span style='position:absolute;top:52.5%;
- left:11.98%;width:85.39%;height:5.25%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>handle subsets. &#13;</span></span></div>
- <div class=B1 style='position:absolute;top:58.75%;left:14.6%;width:82.95%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.93%;width:97.06%;
- height:100.0%'><span style='visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.02%'>w</span></span><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0081.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0081.html
deleted file mode 100644
index 5bc47b7..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0081.html
+++ /dev/null
@@ -1,156 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Advanced Concepts – Derived unions">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="137"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>28</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s140290"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s140291" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s140292"
-  style='position:absolute;left:66pt;top:150pt;width:612pt;height:342pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s140290" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Advanced Concepts – Derived unions</div>
- <div v:shape="_x0000_s140291" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s140292" class=B style='tab-stops:.4427in'><span
- style='position:absolute;top:28.75%;left:11.98%;width:89.88%;height:5.25%'><span
- class=BB style='position:absolute;left:-2.08%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Indicate that a property is the union of one
- or more </span></span><span style='position:absolute;top:34.0%;left:11.98%;
- width:81.27%;height:5.25%'><span lang=EN-US style='mso-ansi-language:EN-US'>collections
- (or scalar).&#13;</span></span>
- <div style='position:absolute;top:40.5%;left:10.11%;width:83.14%;height:5.25%'><span
- style='mso-special-format:nobullet;display:none'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US;display:none'>&#13;</span></div>
- <span style='position:absolute;top:46.75%;left:11.98%;width:93.44%;height:
- 5.25%'><span class=BB style='position:absolute;left:-2.0%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Typically applied to properties on
- abstract types high </span></span><span style='position:absolute;top:52.25%;
- left:11.98%;width:81.27%;height:5.25%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>up in the inheritance hierarchy.&#13;</span></span>
- <div style='position:absolute;top:58.5%;left:10.11%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.25%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.3%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:65.0%;left:11.98%;width:83.7%;height:5.25%'><span
- class=BB style='position:absolute;left:-2.23%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Concrete types make a derived union useful by </span></span><span
- style='position:absolute;top:70.25%;left:11.98%;width:81.27%;height:5.25%'><span
- lang=EN-US style='mso-ansi-language:EN-US'>contributing subsets.&#13;</span></span>
- <div style='position:absolute;top:76.75%;left:10.11%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.25%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.3%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:83.0%;left:10.11%;width:83.52%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.24%;width:97.75%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.29%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Derived unions are read only and derived (</span><span
- lang=EN-US style='font-family:Wingdings;mso-ansi-language:EN-US;mso-char-type:
- symbol'>J</span><span lang=EN-US style='mso-ansi-language:EN-US'>)</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>.</span><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0082.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0082.html
deleted file mode 100644
index 02b567a..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0082.html
+++ /dev/null
@@ -1,157 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Advanced Concepts – Redefinition">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="138"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>31</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s141314"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s141315" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s141316"
-  style='position:absolute;left:66pt;top:150pt;width:612pt;height:342pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s141314" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Advanced Concepts – Redefinition</div>
- <div v:shape="_x0000_s141315" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s141316" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:28.75%;left:10.11%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.25%;width:97.74%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.3%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Redefinition replaces an existing
- property.&#13;</span></span></div>
- <div style='position:absolute;top:35.0%;left:10.11%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.25%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.3%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:41.5%;left:11.98%;width:83.89%;height:5.25%'><span
- class=BB style='position:absolute;left:-2.23%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Redefinition only makes sense in the context
- of </span></span><span style='position:absolute;top:46.75%;left:11.98%;
- width:81.27%;height:5.25%'><span lang=EN-US style='mso-ansi-language:EN-US'>specialization.&#13;</span></span>
- <div style='position:absolute;top:53.25%;left:10.11%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.25%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.3%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:59.5%;left:10.11%;width:89.88%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.08%;width:97.91%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.12%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>May be used to change the definition of a
- feature.&#13;</span></span></div>
- <div style='position:absolute;top:66.0%;left:10.11%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.25%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.3%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:72.5%;left:11.98%;width:90.82%;height:5.25%'><span
- class=BB style='position:absolute;left:-2.06%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>The detailed semantics of redefinition vary
- for each </span></span><span style='position:absolute;top:77.75%;left:11.98%;
- width:81.27%;height:5.25%'><span lang=EN-US style='mso-ansi-language:EN-US'>specialization
- of RedefinableElement in UML.&#13;</span></span>
- <div style='position:absolute;top:84.0%;left:10.11%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.25%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.3%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0086.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0086.html
deleted file mode 100644
index 44b71e7..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0086.html
+++ /dev/null
@@ -1,159 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Language Units">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="142"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>41</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s145410"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s145411" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s145412"
-  style='position:absolute;left:60pt;top:132pt;width:630pt;height:342pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s145410" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Language Units</div>
- <div v:shape="_x0000_s145411" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s145412" class=B style='tab-stops:.4427in'><span
- style='position:absolute;top:25.5%;left:11.23%;width:83.7%;height:5.25%'><span
- class=BB style='position:absolute;left:-2.23%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'><span style='mso-spacerun:yes'> </span>In
- order to deal with the problem of language </span></span><span
- style='position:absolute;top:30.75%;left:11.23%;width:91.19%;height:5.25%'><span
- lang=EN-US style='mso-ansi-language:EN-US'>complexity, UML 2.0 was modularized
- in a way that </span></span><span style='position:absolute;top:36.0%;
- left:11.23%;width:83.7%;height:5.25%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>allows selective use of </span><span lang=EN-US style='mso-ansi-language:
- EN-US'><i>language units</i></span><span lang=EN-US style='mso-ansi-language:
- EN-US'>. &#13;</span></span>
- <div style='position:absolute;top:42.0%;left:9.36%;width:85.58%;height:3.25%'><span
- style='position:absolute;top:0%;left:2.18%;width:97.81%;height:100.0%'><span
- style='font-size:58%;visibility:hidden'><span class=BB style='position:absolute;
- left:-2.23%'>•</span></span><span lang=EN-US style='font-size:58%;mso-ansi-language:
- EN-US;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:46.25%;left:11.23%;width:98.12%;height:
- 5.25%'><span class=BB style='position:absolute;left:-1.9%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>The modeling concepts in UML are
- also partitioned into </span></span><span style='position:absolute;top:51.5%;
- left:11.23%;width:91.94%;height:5.25%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>layers of capability referred to as compliance levels.&#13;</span></span>
- <div style='position:absolute;top:57.25%;left:9.36%;width:85.58%;height:3.25%'><span
- style='position:absolute;top:0%;left:2.18%;width:97.81%;height:100.0%'><span
- style='font-size:58%;visibility:hidden'><span class=BB style='position:absolute;
- left:-2.23%'>•</span></span><span lang=EN-US style='font-size:58%;mso-ansi-language:
- EN-US;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:61.5%;left:11.23%;width:93.44%;height:5.25%'><span
- class=BB style='position:absolute;left:-2.0%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>UML itself is ultimately merged into a single
- package </span></span><span style='position:absolute;top:67.0%;left:11.23%;
- width:95.31%;height:5.25%'><span lang=EN-US style='mso-ansi-language:EN-US'>which
- defines a shared namespace for all compliance </span></span><span
- style='position:absolute;top:72.25%;left:11.23%;width:83.7%;height:5.25%'><span
- lang=EN-US style='mso-ansi-language:EN-US'>levels.&#13;</span></span>
- <div style='position:absolute;top:78.75%;left:9.36%;width:85.58%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.18%;width:97.81%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.23%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0087.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0087.html
deleted file mode 100644
index ea56c51..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0087.html
+++ /dev/null
@@ -1,155 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Compliance Levels – L0">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="143"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>43</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s146434"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s146435" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:300pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape><v:rect id="_x0000_s146436"
-  style='position:absolute;left:66pt;top:138pt;width:624pt;height:96pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s146434" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Compliance Levels – L0</div>
- <div v:shape="_x0000_s146435" class=HB style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:31.75%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:37.25%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:42.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s146436" class=B style='tab-stops:.4427in'><span
- style='position:absolute;top:26.5%;left:11.98%;width:98.68%;height:5.25%'><span
- class=BB style='position:absolute;left:-1.89%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Represents a common denominator that can serve
- as a </span></span><span style='position:absolute;top:31.75%;left:11.98%;
- width:82.95%;height:5.25%'><span lang=EN-US style='mso-ansi-language:EN-US'>basis
- for interoperability.&#13;</span></span>
- <div style='position:absolute;top:38.25%;left:10.11%;width:84.83%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.2%;width:97.79%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.25%'>•</span>The core of EMOF.</span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s146437"
-  type="#_x0000_m1027" style='position:absolute;left:204pt;top:246pt;width:4in;
-  height:223.875pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0087_image034.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s146437" src="slide0087_image035.jpg"
- style='position:absolute;top:45.5%;left:28.27%;width:40.07%;height:41.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0087_image034.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0087_image034.png
deleted file mode 100644
index 403bab9..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0087_image034.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0087_image035.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0087_image035.jpg
deleted file mode 100644
index 78114d0..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0087_image035.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0088.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0088.html
deleted file mode 100644
index 2005125..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0088.html
+++ /dev/null
@@ -1,156 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Compliance Levels – L1">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="144"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>44</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s147458"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s147459" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:300pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape><v:rect id="_x0000_s147460"
-  style='position:absolute;left:66pt;top:150pt;width:612pt;height:1in'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s147458" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Compliance Levels – L1</div>
- <div v:shape="_x0000_s147459" class=HB style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:31.75%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:37.25%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:42.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s147460" class=B style='tab-stops:.4427in'><span
- style='position:absolute;top:28.75%;left:11.98%;width:85.2%;height:5.25%'><span
- class=BB style='position:absolute;left:-2.19%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Adds language units for use cases,
- interactions, </span></span><span style='position:absolute;top:34.0%;
- left:11.98%;width:81.27%;height:5.25%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>structures, actions, and activities. &#13;</span></span>
- <div style='position:absolute;top:40.5%;left:10.11%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.25%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.3%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s147461"
-  type="#_x0000_m1027" style='position:absolute;left:186pt;top:228pt;width:378pt;
-  height:254.25pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0088_image036.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s147461" src="slide0088_image037.jpg"
- style='position:absolute;top:42.25%;left:25.84%;width:52.43%;height:47.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0088_image036.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0088_image036.png
deleted file mode 100644
index 547157b..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0088_image036.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0088_image037.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0088_image037.jpg
deleted file mode 100644
index b5c1475..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0088_image037.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0091.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0091.html
deleted file mode 100644
index 788e66c..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0091.html
+++ /dev/null
@@ -1,163 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Introduction – Why extend UML?">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="150"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>4</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s153602"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s153603" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s153602" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Introduction – Why extend UML?</div>
- <div v:shape="_x0000_s153603" style='tab-stops:.4427in'>
- <div class=B><span style='position:absolute;top:26.5%;left:10.48%;width:97.0%;
- height:5.25%'><span class=BB style='position:absolute;left:-2.12%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>A common end-goal of those wishing
- to extend UML is </span></span><span style='position:absolute;top:31.75%;
- left:10.48%;width:94.19%;height:5.25%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>to leverage existing tools and conventions defined by </span></span><span
- style='position:absolute;top:37.25%;left:10.48%;width:92.5%;height:5.25%'><span
- lang=EN-US style='mso-ansi-language:EN-US'>UML while making modeling easier
- for the end user.&#13;</span></span></div>
- <div class=B style='position:absolute;top:43.0%;left:8.42%;width:83.14%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:58%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span lang=EN-US
- style='font-size:58%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:46.75%;left:12.92%;width:78.83%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:70%'><span class=B1B style='position:
- absolute;left:-3.19%;top:.13em'>w</span></span><span lang=EN-US
- style='font-size:70%;mso-ansi-language:EN-US'>Give a </span><span lang=EN-US
- style='font-size:80%;mso-ansi-language:EN-US'><b>terminology</b></span><span
- lang=EN-US style='font-size:70%;mso-ansi-language:EN-US'> that is adapted to a
- particular domain.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:51.25%;left:12.92%;width:78.83%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:70%'><span class=B1B style='position:
- absolute;left:-3.19%;top:.13em'>w</span></span><span lang=EN-US
- style='font-size:70%;mso-ansi-language:EN-US'>Give a different </span><span
- lang=EN-US style='font-size:80%;mso-ansi-language:EN-US'><b>notation</b></span><span
- lang=EN-US style='font-size:70%;mso-ansi-language:EN-US'> for already existing
- symbols&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:55.5%;left:12.92%;width:78.83%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:70%'><span class=B1B style='position:
- absolute;left:-3.19%;top:.13em'>w</span></span><span lang=EN-US
- style='font-size:70%;mso-ansi-language:EN-US'>Add </span><span lang=EN-US
- style='font-size:80%;mso-ansi-language:EN-US'><b>semantics</b></span><span
- lang=EN-US style='font-size:70%;mso-ansi-language:EN-US'> that do not exist in
- the meta-model.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:59.75%;left:12.92%;width:78.83%;
- height:3.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:70%'><span class=B1B style='position:
- absolute;left:-3.19%;top:.13em'>w</span></span><span lang=EN-US
- style='font-size:70%;mso-ansi-language:EN-US'>Add </span><span lang=EN-US
- style='font-size:80%;mso-ansi-language:EN-US'><b>constraints</b></span><span
- lang=EN-US style='font-size:70%;mso-ansi-language:EN-US'> that restrict the
- way you use the meta-model.&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:64.0%;left:15.35%;width:87.26%;
- height:3.5%'><span style='font-size:70%'><span class=B1B style='position:absolute;
- left:-2.78%;top:.13em'>w</span></span><span lang=EN-US style='font-size:70%;
- mso-ansi-language:EN-US'>Add information that can be used when </span><span
- lang=EN-US style='font-size:80%;mso-ansi-language:EN-US'><b>transforming</b></span><span
- lang=EN-US style='font-size:70%;mso-ansi-language:EN-US'> a model to another
- model or </span></span><span style='position:absolute;top:67.5%;left:15.35%;
- width:76.21%;height:3.25%'><span lang=EN-US style='font-size:70%;mso-ansi-language:
- EN-US'>code.&#13;</span></span></div>
- <div class=B2 style='position:absolute;top:71.25%;left:17.22%;width:74.34%;
- height:2.75%'><span style='position:absolute;top:0%;left:2.51%;width:97.48%;
- height:100.0%'><span style='font-size:67%;visibility:hidden'><span class=B2B
- style='position:absolute;left:-2.58%'>§</span></span><span lang=EN-US
- style='font-size:67%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:74.5%;left:8.42%;width:83.14%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span style='font-size:58%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.53%'>•</span></span><span style='font-size:
- 58%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0092.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0092.html
deleted file mode 100644
index 0aa66f0..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0092.html
+++ /dev/null
@@ -1,132 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Introduction – Understanding the Options">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="151"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>5</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s154626"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s154627" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s154626" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:85.39%;height:6.0%'>Introduction – Understanding the Options</div>
- <div v:shape="_x0000_s154627" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span>Need
- to know:&#13;</span></div>
- <div class=B1 style='position:absolute;top:32.75%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span>The
- types of customizations you wish to create.&#13;</span></div>
- <div class=B2 style='position:absolute;top:38.0%;left:17.22%;width:74.34%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.51%;width:97.48%;
- height:100.0%'><span class=B2B style='position:absolute;left:-2.58%'>§</span>Add/remove
- behavior&#13;</span></div>
- <div class=B2 style='position:absolute;top:42.75%;left:17.22%;width:74.34%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.51%;width:97.48%;
- height:100.0%'><span class=B2B style='position:absolute;left:-2.58%'>§</span>Add/remove
- properties&#13;</span></div>
- <div class=B2 style='position:absolute;top:47.5%;left:17.22%;width:74.34%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.51%;width:97.48%;
- height:100.0%'><span class=B2B style='position:absolute;left:-2.58%'>§</span>Add/remove
- constraints&#13;</span></div>
- <div class=B1 style='position:absolute;top:52.5%;left:12.92%;width:82.39%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.95%;width:97.04%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.04%'>w</span>How
- the extended meta-model is intended to be used.&#13;</span></div>
- <div class=B2><span style='position:absolute;top:57.75%;left:19.1%;width:85.95%;
- height:4.0%'><span class=B2B style='position:absolute;left:-2.17%'>§</span>How
- will end user create instances of new meta-types and meta-</span><span
- style='position:absolute;top:61.75%;left:19.1%;width:72.47%;height:4.0%'>types
- from the extended meta-model.&#13;</span></div>
- <div class=B1><span style='position:absolute;top:66.5%;left:15.35%;width:90.82%;
- height:4.5%'><span class=B1B style='position:absolute;left:-2.68%'>w</span>How
- much overlap exists between new domain and extended </span><span
- style='position:absolute;top:71.0%;left:15.35%;width:76.21%;height:4.5%'>domain.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0093.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0093.html
deleted file mode 100644
index 33bb1c0..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0093.html
+++ /dev/null
@@ -1,187 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Agenda">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="152"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>6</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s155650"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s155651" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s155650" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Agenda</div>
- <div v:shape="_x0000_s155651" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:26.0%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Introduction&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:31.0%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'><b>Exploring
- Extension Mechanisms&#13;</b></span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:35.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Featherweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:39.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Lightweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:43.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Middleweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:47.5%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Heavyweight&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:51.5%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Advanced
- Concepts&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:56.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Subsets&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:59.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Derived Unions&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:63.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Redefinition&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:67.75%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Meta-model
- Decomposition&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:72.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Package Merge&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:76.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Language Units&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:80.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Compliance Levels&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:84.0%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Summary</span><span
- style='font-size:75%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0095.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0095.html
deleted file mode 100644
index ddf1914..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0095.html
+++ /dev/null
@@ -1,163 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exploring Extension Mechanisms - Featherweight">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="154"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>10</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s157698"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s157699" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s157700"
-  style='position:absolute;left:66pt;top:150pt;width:612pt;height:342pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s157698" class=T style='position:absolute;top:17.0%;
- left:8.42%;width:88.01%;height:5.25%'><span style='font-size:86%'>Exploring
- Extension Mechanisms - Featherweight</span></div>
- <div v:shape="_x0000_s157699" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s157700" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:28.75%;left:10.11%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.25%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.3%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Pro&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:35.0%;left:14.6%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Adding keyword is trivial&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:40.25%;left:14.6%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Great to visually distinguish
- items&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:45.5%;left:14.6%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.19%'>w</span></span><span lang=EN-US
- style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:51.0%;left:10.11%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.25%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.3%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Con&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:57.25%;left:14.6%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Limited functionality&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:62.5%;left:14.6%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Cannot add attributes or
- operations&#13;</span></span></div>
- <div class=B style='position:absolute;top:68.25%;left:10.11%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.25%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.3%'>•</span></span><span lang=EN-US
- style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:74.5%;left:10.11%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.25%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.3%'>•</span></span><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0097.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0097.html
deleted file mode 100644
index d08bfd4..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0097.html
+++ /dev/null
@@ -1,175 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exploring Extension Mechanisms - Lightweight">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="156"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>14</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s159746"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s159747" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s159748"
-  style='position:absolute;left:48pt;top:126pt;width:654pt;height:372pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s159746" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:96.81%;height:6.0%'>Exploring Extension Mechanisms -
- Lightweight</div>
- <div v:shape="_x0000_s159747" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s159748" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:24.25%;left:7.67%;width:88.95%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.1%;width:97.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.15%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Pro&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:30.5%;left:11.98%;width:84.64%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.09%;width:97.12%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.18%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Easy to create and work with.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:35.75%;left:11.98%;width:94.0%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.78%;width:97.21%;
- height:100.0%'><span class=B1B style='position:absolute;left:-2.86%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Well described and documentation in
- the superstructure spec.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:41.0%;left:11.98%;width:84.64%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.09%;width:97.12%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.18%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Standard means to define icons and
- display options.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:46.5%;left:11.98%;width:84.64%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.09%;width:97.12%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.18%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Low implementation cost.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:51.75%;left:11.98%;width:100.37%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.61%;width:97.57%;
- height:100.0%'><span class=B1B style='position:absolute;left:-2.67%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Standard mechanism that
- interoperates with other compliant tools.&#13;</span></span></div>
- <div class=B style='position:absolute;top:57.25%;left:7.67%;width:88.95%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.1%;width:97.89%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.15%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Con&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:63.5%;left:11.98%;width:84.64%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.09%;width:97.12%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.18%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Cannot remove existing
- constraints.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:68.75%;left:11.98%;width:84.64%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.09%;width:97.12%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.18%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Cannot modify existing
- structures.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:74.0%;left:11.98%;width:84.64%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.09%;width:97.12%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.18%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Not a first class extension
- mechanism.&#13;</span></span></div>
- <div class=B2><span style='position:absolute;top:79.25%;left:18.35%;
- width:82.39%;height:4.0%'><span class=B2B style='position:absolute;left:-2.27%'>§</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Cannot use redefinition for example
- since Stereotypes are not </span></span><span style='position:absolute;
- top:83.25%;left:18.35%;width:78.27%;height:4.0%'><span lang=EN-US
- style='mso-ansi-language:EN-US'>specializations of the meta-types they extend.</span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0098.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0098.html
deleted file mode 100644
index 794bde3..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0098.html
+++ /dev/null
@@ -1,172 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exploring Extension Mechanisms - Middleweight">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="157"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>20</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s160770"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s160771" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s160772"
-  style='position:absolute;left:66pt;top:138pt;width:612pt;height:342pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s160770" class=T style='position:absolute;top:17.0%;
- left:8.42%;width:86.14%;height:5.25%'><span style='font-size:86%'>Exploring
- Extension Mechanisms - Middleweight</span></div>
- <div v:shape="_x0000_s160771" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s160772" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:10.11%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.25%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.3%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Pro&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.75%;left:14.6%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>First class extension
- mechanism.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:38.0%;left:14.6%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Easier than heavyweight to create
- initially.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:43.25%;left:14.6%;width:85.01%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.86%;width:97.13%;
- height:100.0%'><span class=B1B style='position:absolute;left:-2.94%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Easy for end user to use
- programmatically than profiles.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:48.75%;left:14.6%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Can add behavior.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:54.0%;left:14.6%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Can add structure.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:59.25%;left:14.6%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Can add constraints.&#13;</span></span></div>
- <div class=B style='position:absolute;top:64.75%;left:10.11%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.25%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.3%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Con&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:71.0%;left:14.6%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Creates dependence on specific
- version of UML.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:76.25%;left:14.6%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Difficult to maintain especially if
- UML changes.&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:81.75%;left:17.04%;
- width:88.01%;height:4.5%'><span class=B1B style='position:absolute;left:-2.76%'>w</span>User
- must know about 2 factories for creating elements, the </span><span
- style='position:absolute;top:86.0%;left:17.04%;width:81.83%;height:4.5%'>UMLFactory
- and the new one defined by the extension.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0099.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0099.html
deleted file mode 100644
index b232241..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0099.html
+++ /dev/null
@@ -1,173 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exploring Extension Mechanisms – Heavyweight">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="158"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>23</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s161794"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s161795" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s161796"
-  style='position:absolute;left:60pt;top:126pt;width:636pt;height:372pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s161794" class=T style='position:absolute;top:17.0%;
- left:8.42%;width:86.51%;height:5.25%'><span style='font-size:86%'>Exploring
- Extension Mechanisms – Heavyweight</span></div>
- <div v:shape="_x0000_s161795" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s161796" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:24.25%;left:9.36%;width:86.51%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.16%;width:97.83%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.21%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Pro&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:30.5%;left:16.1%;width:93.63%;
- height:4.5%'><span class=B1B style='position:absolute;left:-2.6%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Easy for end users to use
- programmatically (only 1 meta-model </span></span><span style='position:absolute;
- top:35.0%;left:16.1%;width:79.58%;height:4.5%'><span lang=EN-US
- style='mso-ansi-language:EN-US'>in the end)&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:40.25%;left:13.67%;width:85.58%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.84%;width:97.15%;
- height:100.0%'><span class=B1B style='position:absolute;left:-2.92%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Ability to override or customize
- operations and behavior.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:45.5%;left:13.67%;width:82.2%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.96%;width:96.81%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.05%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Can add
- behavior/constraints/structure.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:51.0%;left:13.67%;width:82.2%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.96%;width:96.81%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.05%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Isolate yourself from changes to
- UML meta-model.&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:56.25%;left:16.1%;width:91.19%;
- height:4.5%'><span class=B1B style='position:absolute;left:-2.66%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>You can stratify your own
- specialized meta-model for different </span></span><span style='position:absolute;
- top:60.75%;left:16.1%;width:79.58%;height:4.5%'><span lang=EN-US
- style='mso-ansi-language:EN-US'>levels of abstraction and DSL concerns.&#13;</span></span></div>
- <div class=B style='position:absolute;top:66.25%;left:9.36%;width:86.51%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.16%;width:97.83%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.21%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Con&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:72.25%;left:13.67%;width:82.2%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.96%;width:96.81%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.05%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Costly development (more complex
- than profiles).&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:77.75%;left:13.67%;width:82.2%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.96%;width:96.81%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.05%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Difficult to maintain
- (re-merge).&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:83.0%;left:16.1%;width:93.25%;
- height:4.5%'><span class=B1B style='position:absolute;left:-2.61%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Lose interoperability with other
- UML based tools since we have </span></span><span style='position:absolute;
- top:87.5%;left:16.1%;width:79.58%;height:4.5%'><span lang=EN-US
- style='mso-ansi-language:EN-US'>a new meta-model.</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0100.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0100.html
deleted file mode 100644
index 4437dec..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0100.html
+++ /dev/null
@@ -1,193 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Agenda">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="159"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>24</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s162818"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s162819" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s162818" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Agenda</div>
- <div v:shape="_x0000_s162819" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:25.75%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Introduction&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:30.25%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Exploring Extension
- Mechanisms&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:34.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Featherweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:37.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Lightweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:41.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Middleweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:44.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Heavyweight&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:48.5%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Deciding which
- Technique to Use&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:52.5%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'><b>Advanced
- Concepts&#13;</b></span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:56.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Subsets&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:60.5%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Derived Unions&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:64.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Redefinition&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:67.5%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Meta-model
- Decomposition&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:71.5%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Package Merge&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:75.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Language Units&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:78.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Compliance Levels&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:82.25%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Summary</span><span
- style='font-size:75%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0101.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0101.html
deleted file mode 100644
index 78ec9aa..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0101.html
+++ /dev/null
@@ -1,115 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exercise 2 – Creating Middleweight Extension">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="160"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>34</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s163842"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s163843" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s163842" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:95.31%;height:6.0%'>Exercise 2 – Creating Middleweight
- Extension</div>
- <div v:shape="_x0000_s163843" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span>Objectives:&#13;</span></div>
- <div class=B1 style='position:absolute;top:32.75%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span>Explore
- subsets.&#13;</span></div>
- <div class=B1 style='position:absolute;top:38.0%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span>Explore
- extending UML using specialization.&#13;</span></div>
- <div class=B1 style='position:absolute;top:43.25%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span>Explore
- code generator options.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0102.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0102.html
deleted file mode 100644
index 56e9351..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0102.html
+++ /dev/null
@@ -1,193 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Agenda">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="161"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>37</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s164866"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s164867" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s164866" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Agenda</div>
- <div v:shape="_x0000_s164867" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:25.75%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Introduction&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:29.75%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Exploring Extension
- Mechanisms&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:33.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Featherweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:37.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Lightweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:41.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Middleweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:44.5%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Heavyweight&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:48.0%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Deciding which
- Technique to Use&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:52.0%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Advanced
- Concepts&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:56.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Subsetting&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:59.5%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Derived Unions&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:63.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Redefinition&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:66.75%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'><b>Meta-model
- Decomposition&#13;</b></span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:71.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Package Merge&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:74.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Language Units&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:78.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Compliance Levels&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:82.0%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Summary</span><span
- style='font-size:75%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0103.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0103.html
deleted file mode 100644
index 0bfc56b..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0103.html
+++ /dev/null
@@ -1,193 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Agenda">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="162"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>52</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s165890"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s165891" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s165890" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Agenda</div>
- <div v:shape="_x0000_s165891" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:25.75%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Introduction&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:30.25%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Exploring Extension
- Mechanisms&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:34.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Featherweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:37.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Lightweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:41.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Middleweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:44.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Heavyweight&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:48.5%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Deciding which
- Technique to Use&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:52.5%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Advanced
- Concepts&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:56.5%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Subsets&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:60.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Derived Unions&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:63.5%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Redefinition&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:67.25%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Meta-model
- Decomposition&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:71.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Package Merge&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:74.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Language Units&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"80 20 0";position:absolute;top:78.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Compliance Levels&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"80 20 0";position:absolute;top:82.0%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'><b>Summary</b></span><span
- style='font-size:83%;mso-special-format:lastCR;display:none'><b>&#13;</b></span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0104.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0104.html
deleted file mode 100644
index 7fa83cd..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0104.html
+++ /dev/null
@@ -1,114 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exercise 3 – Creating Heavyweight Extension">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="163"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>47</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s166914"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s166915" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s166914" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:94.75%;height:6.0%'>Exercise 3 – Creating Heavyweight
- Extension</div>
- <div v:shape="_x0000_s166915" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span>Objectives:&#13;</span></div>
- <div class=B1 style='position:absolute;top:32.75%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span>Explore
- Package Merge.&#13;</span></div>
- <div class=B1 style='position:absolute;top:38.0%;left:12.92%;width:89.51%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.71%;width:97.28%;
- height:100.0%'><span class=B1B style='position:absolute;left:-2.79%'>w</span>Explore
- working with your extension (generating an editor).&#13;</span></div>
- <div class=B1 style='position:absolute;top:43.25%;left:12.92%;width:78.83%;
- height:4.5%'><span style='mso-special-format:nobullet;display:none;font-family:
- Wingdings'>w</span><span style='mso-special-format:lastCR;display:none'>&#13;</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0106.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0106.html
deleted file mode 100644
index 1b1584f..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0106.html
+++ /dev/null
@@ -1,134 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exercise 3 – Creating Heavyweight Extension">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="165"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>48</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s168962"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s168962" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:94.75%;height:6.0%'>Exercise 3 – Creating Heavyweight
- Extension</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s168968"
-  type="#_x0000_m1027" style='position:absolute;left:96pt;top:198pt;width:533.125pt;
-  height:265.5pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0106_image042.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s168968" src="slide0106_image043.jpg"
- style='position:absolute;top:36.75%;left:13.29%;width:73.97%;height:49.25%'><![endif]><v:rect
-  id="_x0000_s168970" style='position:absolute;left:48pt;top:138pt;width:654pt;
-  height:66pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s168970">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:26.5%;
- left:7.67%;width:88.95%;height:5.25%'><span style='position:absolute;
- top:0%;left:4.21%;width:95.78%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-4.39%'>•</span>Core package of the MyUnit
- library</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0106_image042.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0106_image042.png
deleted file mode 100644
index 26796aa..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0106_image042.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0106_image043.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0106_image043.jpg
deleted file mode 100644
index 16e25c0..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0106_image043.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0108.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0108.html
deleted file mode 100644
index 15a0249..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0108.html
+++ /dev/null
@@ -1,151 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Package Merge">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="167"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>38</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s171010"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s171011" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s171010" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Package Merge</div>
- <div v:shape="_x0000_s171011" class=B style='tab-stops:.4427in'>
- <div style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:26.0%;left:10.48%;width:91.57%;height:4.5%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.24%'>•</span></span><span
- style='font-size:83%'>A directed relationship between two packages which
- indicates </span></span><span style='position:absolute;top:30.0%;left:10.48%;
- width:81.27%;height:4.5%'><span style='font-size:83%'>that the contents are to
- be combined.&#13;</span></span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:35.0%;left:8.42%;
- width:83.14%;height:4.5%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:83%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:40.0%;left:10.48%;width:86.7%;height:4.5%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.37%'>•</span></span><span
- style='font-size:83%'>This mechanism should be used when elements defined in </span></span><span
- style='position:absolute;top:44.0%;left:10.48%;width:93.63%;height:4.5%'><span
- style='font-size:83%'>different packages are intended to represent the same
- concept.&#13;</span></span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:48.75%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:53.75%;left:10.48%;width:95.31%;height:4.5%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.16%'>•</span></span><span
- style='font-size:83%'>By selecting which increments to merge, it is possible
- to obtain a </span></span><span style='position:absolute;top:57.75%;
- left:10.48%;width:81.27%;height:4.5%'><span style='font-size:83%'>custom
- definition of a concept.&#13;</span></span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:62.5%;left:8.42%;
- width:83.14%;height:4.5%'><span style='position:absolute;top:0%;left:2.47%;
- width:97.74%;height:100.0%'><span style='font-size:83%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 20 0"'><span style='position:absolute;
- top:67.5%;left:10.48%;width:84.26%;height:4.5%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.44%'>•</span></span><span
- style='font-size:83%'>Package merge allows modeling concepts defined in one </span></span><span
- style='position:absolute;top:71.5%;left:10.48%;width:81.27%;height:4.5%'><span
- style='font-size:83%'>package to be extended with new features. &#13;</span></span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:76.25%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.53%'>•</span></span><span style='font-size:83%;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"90 20 0";position:absolute;top:81.25%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- style='font-size:83%'>UML itself is a merge of a large number of
- packages.<span style='mso-spacerun:yes'>  </span></span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0109.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0109.html
deleted file mode 100644
index 3cf9363..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0109.html
+++ /dev/null
@@ -1,151 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Compliance Levels – L2">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="170"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>45</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s174082"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s174083" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:300pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape><v:rect id="_x0000_s174084"
-  style='position:absolute;left:66pt;top:132pt;width:612pt;height:1in'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s174082" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Compliance Levels – L2</div>
- <div v:shape="_x0000_s174083" class=HB style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:31.75%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:37.25%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:42.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s174084" class=B style='tab-stops:.4427in'><span
- style='position:absolute;top:25.5%;left:11.98%;width:91.19%;height:5.25%'><span
- class=BB style='position:absolute;left:-2.05%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Adds language units for deployment, state
- machine </span></span><span style='position:absolute;top:30.75%;left:11.98%;
- width:81.27%;height:5.25%'><span lang=EN-US style='mso-ansi-language:EN-US'>modeling
- and profiles. </span><span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s174085"
-  type="#_x0000_m1027" style='position:absolute;left:162pt;top:211.875pt;
-  width:402pt;height:270.375pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0109_image038.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s174085" src="slide0109_image039.jpg"
- style='position:absolute;top:39.25%;left:22.47%;width:55.8%;height:50.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0109_image038.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0109_image038.png
deleted file mode 100644
index 336678b..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0109_image038.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0109_image039.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0109_image039.jpg
deleted file mode 100644
index 87c557f..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0109_image039.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0110.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0110.html
deleted file mode 100644
index dd978f3..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0110.html
+++ /dev/null
@@ -1,160 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Compliance Levels – L3">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="171"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>46</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s175106"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s175107" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:300pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape><v:rect id="_x0000_s175108"
-  style='position:absolute;left:66pt;top:132pt;width:642pt;height:96pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s175106" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Compliance Levels – L3</div>
- <div v:shape="_x0000_s175107" class=HB style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:31.75%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:37.25%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:42.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s175108" class=B style='tab-stops:.4427in'><span
- style='position:absolute;top:25.5%;left:11.98%;width:100.74%;height:5.25%'><span
- class=BB style='position:absolute;left:-1.85%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Adds language units for information flows,
- templates and </span></span><span style='position:absolute;top:30.75%;
- left:11.98%;width:85.39%;height:5.25%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>model packaging.&#13;</span></span>
- <div style='position:absolute;top:37.0%;left:10.11%;width:87.26%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.14%;width:97.85%;height:100.0%'><span
- class=BB style='position:absolute;left:-2.19%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Represents the complete UML. &#13;</span></span></div>
- <div style='position:absolute;top:43.5%;left:10.11%;width:87.26%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.14%;width:97.85%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.19%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s175109"
-  type="#_x0000_m1027" style='position:absolute;left:168pt;top:234pt;width:390pt;
-  height:262.375pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0110_image040.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s175109" src="slide0110_image041.jpg"
- style='position:absolute;top:43.25%;left:23.4%;width:54.11%;height:48.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0110_image040.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0110_image040.png
deleted file mode 100644
index 9c5fefe..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0110_image040.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0110_image041.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0110_image041.jpg
deleted file mode 100644
index b6a30f4..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0110_image041.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0115.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0115.html
deleted file mode 100644
index ce629f0..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0115.html
+++ /dev/null
@@ -1,128 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Package Merge">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="177"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>39</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s181250"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s181251" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:9in;height:78pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s181250" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Package Merge</div>
- <div v:shape="_x0000_s181251" class=HB style='tab-stops:.4427in'><span
- style='position:absolute;top:26.5%;left:10.48%;width:101.49%;height:5.25%'><span
- style='font-size:120%'><span class=HBB style='position:absolute;left:-2.02%'>•</span></span><span
- style='font-size:120%'>Package merge allows modeling concepts defined at one </span></span><span
- style='position:absolute;top:31.75%;left:10.48%;width:86.32%;height:5.25%'><span
- style='font-size:120%'>level to be extended with new features.</span> </span></div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s181254"
-  type="#_x0000_m1027" style='position:absolute;left:114pt;top:3in;width:438pt;
-  height:253.875pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0115_image025.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s181254" src="slide0115_image026.jpg"
- style='position:absolute;top:40.0%;left:15.91%;width:60.86%;height:47.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0115_image025.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0115_image025.png
deleted file mode 100644
index 82b63ad..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0115_image025.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0115_image026.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0115_image026.jpg
deleted file mode 100644
index 3856b70..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0115_image026.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116.html
deleted file mode 100644
index a2cf662..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116.html
+++ /dev/null
@@ -1,149 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Package Merge - Example">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="178"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>40</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s182274"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s182274" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Package Merge - Example</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s182276"
-  type="#_x0000_m1027" style='position:absolute;left:60pt;top:180pt;width:210.5pt;
-  height:225pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0116_image027.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s182276" src="slide0116_image028.jpg"
- style='position:absolute;top:33.25%;left:8.42%;width:29.21%;height:41.75%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s182278" type="#_x0000_m1027"
-  style='position:absolute;left:342pt;top:192pt;width:342pt;height:198.25pt'
-  o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
-  fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0116_image029.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="3" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s182278" src="slide0116_image030.jpg"
- style='position:absolute;top:35.5%;left:47.56%;width:47.56%;height:36.75%'><![endif]><v:line
-  id="_x0000_s182281" style='position:absolute' from="306pt,150pt" to="306pt,450pt"
-  strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0 v:shapes="_x0000_s182281"
- src="slide0116_image031.gif" style='position:absolute;top:27.75%;left:42.5%;
- width:.37%;height:56.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image027.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image027.png
deleted file mode 100644
index 132ed10..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image027.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image028.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image028.jpg
deleted file mode 100644
index 44b5a8c..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image028.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image029.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image029.png
deleted file mode 100644
index ed8e28d..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image029.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image030.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image030.jpg
deleted file mode 100644
index bd5b31c..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image030.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image031.gif b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image031.gif
deleted file mode 100644
index 5f795b0..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0116_image031.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0117.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0117.html
deleted file mode 100644
index d6139be..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0117.html
+++ /dev/null
@@ -1,158 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Advanced Concepts – Redefinition: Example">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="180"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>33</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s184322"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s184323" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:642pt;height:84pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape><v:rect id="_x0000_s184324"
-  style='position:absolute;left:54pt;top:150pt;width:624pt;height:48pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s184322" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:92.69%;height:6.0%'>Advanced Concepts – Redefinition: Example</div>
- <div v:shape="_x0000_s184323" class=HB style='tab-stops:.4427in'>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:25.75%;
- left:8.42%;width:87.26%;height:3.5%'><span style='position:absolute;
- top:0%;left:2.36%;width:97.85%;height:100.0%'><span style='font-size:80%;
- visibility:hidden'><span style='mso-special-format:bullet;position:absolute;
- left:-2.41%'>•</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:29.5%;left:8.42%;
- width:87.26%;height:3.5%'><span style='position:absolute;top:0%;left:2.36%;
- width:97.85%;height:100.0%'><span style='font-size:80%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.41%'>•</span></span><span
- lang=EN-US style='font-size:80%;mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:33.0%;left:8.42%;
- width:87.26%;height:3.5%'><span style='position:absolute;top:0%;left:2.36%;
- width:97.85%;height:100.0%'><span style='font-size:80%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.41%'>•</span></span><span
- lang=EN-US style='font-size:80%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='mso-line-spacing:"80 20 0";position:absolute;top:36.5%;left:8.42%;
- width:87.26%;height:3.5%'><span style='position:absolute;top:0%;left:2.36%;
- width:97.85%;height:100.0%'><span style='font-size:80%;visibility:hidden'><span
- style='mso-special-format:bullet;position:absolute;left:-2.41%'>•</span></span><span
- style='font-size:80%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s184324" class=B style='position:absolute;top:28.75%;
- left:8.42%;width:85.2%;height:5.25%;tab-stops:.4427in'><span style='position:
- absolute;top:0%;left:2.41%;width:97.58%;height:100.0%'><span class=BB
- style='position:absolute;left:-2.47%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'><i>Class::superClass</i></span><span
- lang=EN-US style='mso-ansi-language:EN-US'> redefines </span><span lang=EN-US
- style='mso-ansi-language:EN-US'><i>Classifier::general</i></span><span
- style='mso-special-format:lastCR;display:none'><i>&#13;</i></span></span></div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s184325"
-  type="#_x0000_m1027" style='position:absolute;left:2in;top:198pt;width:456pt;
-  height:284.375pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0117_image019.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s184325" src="slide0117_image020.jpg"
- style='position:absolute;top:36.75%;left:20.03%;width:63.29%;height:52.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0117_image019.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0117_image019.png
deleted file mode 100644
index b5822c3..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0117_image019.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0117_image020.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0117_image020.jpg
deleted file mode 100644
index eb8bb6a..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0117_image020.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0118.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0118.html
deleted file mode 100644
index d8855d3..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0118.html
+++ /dev/null
@@ -1,170 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Advanced Concepts – Subsets - Derived">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="181"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>26</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s185346"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s185347" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s185348"
-  style='position:absolute;left:60pt;top:150pt;width:9in;height:342pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s185346" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:84.45%;height:6.0%'>Advanced Concepts – Subsets - Derived</div>
- <div v:shape="_x0000_s185347" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s185348" style='tab-stops:.4427in'>
- <div class=B><span style='position:absolute;top:28.75%;left:11.23%;width:94.0%;
- height:5.25%'><span class=BB style='position:absolute;left:-1.99%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Values are computed from the values
- of the superset </span></span><span style='position:absolute;top:34.0%;
- left:11.23%;width:86.32%;height:5.25%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>property.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:40.25%;left:13.67%;width:83.7%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.9%;width:97.09%;
- height:100.0%'><span style='font-size:90%'><span class=B1B style='position:
- absolute;left:-2.99%'>w</span></span><span lang=EN-US style='font-size:90%;
- mso-ansi-language:EN-US'>Often read-only.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:44.75%;left:13.67%;width:83.7%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.9%;width:97.09%;
- height:100.0%'><span style='font-size:70%;visibility:hidden'><span class=B1B
- style='position:absolute;left:-2.99%'>w</span></span><span lang=EN-US
- style='font-size:70%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:49.0%;left:9.36%;width:88.2%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.12%;width:97.87%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.16%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Example&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:55.0%;left:16.1%;width:81.27%;
- height:4.0%'><span style='font-size:90%'><span class=B1B style='position:absolute;
- left:-2.99%'>w</span></span><span lang=EN-US style='font-size:90%;mso-ansi-language:
- EN-US'><i>Package::nestedPackage</i></span><span lang=EN-US style='font-size:
- 90%;mso-ansi-language:EN-US'> is a derived subset of </span></span><span
- style='position:absolute;top:59.0%;left:16.1%;width:81.27%;height:4.0%'><span
- lang=EN-US style='font-size:90%;mso-ansi-language:EN-US'><i>Package::packageableElement</i></span><span
- lang=EN-US style='font-size:90%;mso-ansi-language:EN-US'>.&#13;</span></span></div>
- <div class=B style='position:absolute;top:63.75%;left:9.36%;width:88.2%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.12%;width:97.87%;
- height:100.0%'><span style='font-size:58%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.16%'>•</span></span><span lang=EN-US
- style='font-size:58%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B2 style='position:absolute;top:67.5%;left:18.16%;width:90.07%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.07%;width:97.92%;
- height:100.0%'><span style='font-size:89%'><span class=B2B style='position:
- absolute;left:-2.12%'>§</span></span><span lang=EN-US style='font-size:89%;
- mso-ansi-language:EN-US'>Since nested package collection is derived, a user
- cannot add directly to it.&#13;</span></span></div>
- <div class=B style='position:absolute;top:71.75%;left:9.36%;width:88.2%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.12%;width:97.87%;
- height:100.0%'><span style='font-size:58%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.16%'>•</span></span><span lang=EN-US
- style='font-size:58%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B2 style='position:absolute;top:75.5%;left:18.16%;width:79.4%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.35%;width:97.64%;
- height:100.0%'><span style='font-size:89%'><span class=B2B style='position:
- absolute;left:-2.41%'>§</span></span><span lang=EN-US style='font-size:89%;
- mso-ansi-language:EN-US'>Clients must add to the packageableElement
- collection.</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0119.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0119.html
deleted file mode 100644
index c176754..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0119.html
+++ /dev/null
@@ -1,176 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Advanced Concepts – Subsets – Non-Derived">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="182"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>27</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s186370"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s186371" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:300pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape><v:rect id="_x0000_s186372"
-  style='position:absolute;left:60pt;top:138pt;width:618pt;height:354pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s186370" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:95.5%;height:6.0%'>Advanced Concepts – Subsets – Non-Derived</div>
- <div v:shape="_x0000_s186371" class=HB style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:31.75%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:37.25%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:42.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s186372" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:9.36%;width:92.69%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.02%;width:97.77%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.06%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Values are not computed from the
- superset values.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:32.75%;left:13.67%;width:79.58%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.05%;width:96.94%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.15%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Must be writable.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:37.75%;left:13.67%;width:79.58%;
- height:3.25%'><span style='position:absolute;top:0%;left:3.05%;width:96.94%;
- height:100.0%'><span style='font-size:70%;visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.15%'>w</span></span><span lang=EN-US
- style='font-size:70%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:42.0%;left:9.36%;width:84.08%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.22%;width:97.55%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.28%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Example&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:48.0%;left:13.67%;width:79.58%;
- height:4.0%'><span style='position:absolute;top:0%;left:3.05%;width:96.94%;
- height:100.0%'><span style='font-size:90%'><span class=B1B style='position:
- absolute;left:-3.15%'>w</span></span><span lang=EN-US style='font-size:90%;
- mso-ansi-language:EN-US'>Operation::precondition subsets
- Namespace::ownedRule.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:52.5%;left:13.67%;width:79.58%;
- height:3.25%'><span style='position:absolute;top:0%;left:3.05%;width:96.94%;
- height:100.0%'><span style='font-size:70%;visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.15%'>w</span></span><span lang=EN-US
- style='font-size:70%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B2><span style='position:absolute;top:56.5%;left:20.03%;width:73.78%;
- height:3.5%'><span style='font-size:89%'><span class=B2B style='position:absolute;
- left:-2.53%'>§</span></span><span lang=EN-US style='font-size:89%;mso-ansi-language:
- EN-US'>Adding a precondition to some operation means that if you call </span></span><span
- style='position:absolute;top:60.0%;left:20.03%;width:76.02%;height:3.5%'><span
- lang=EN-US style='font-size:89%;mso-ansi-language:EN-US'>Operation::getOwnedRules(),
- that precondition will appear in the </span></span><span style='position:absolute;
- top:63.5%;left:20.03%;width:73.4%;height:3.5%'><span lang=EN-US
- style='font-size:89%;mso-ansi-language:EN-US'>collection.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:67.75%;left:13.67%;width:79.58%;
- height:3.25%'><span style='position:absolute;top:0%;left:3.05%;width:96.94%;
- height:100.0%'><span style='font-size:70%;visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.15%'>w</span></span><span lang=EN-US
- style='font-size:70%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B2><span style='position:absolute;top:71.5%;left:20.03%;width:86.14%;
- height:3.5%'><span style='font-size:89%'><span class=B2B style='position:absolute;
- left:-2.17%'>§</span></span><span style='font-size:89%'>A precondition has a
- “Subset-Superset” implementation meaning that if a </span></span><span
- style='position:absolute;top:75.25%;left:20.03%;width:85.76%;height:3.5%'><span
- style='font-size:89%'>Constraint was added to owned rule collection that it
- would not be added </span></span><span style='position:absolute;top:78.75%;
- left:20.03%;width:85.76%;height:3.5%'><span style='font-size:89%'>to
- precondition list.<span style='mso-spacerun:yes'>   </span>However, adding to
- the precondition collection does </span></span><span style='position:absolute;
- top:82.25%;left:20.03%;width:73.4%;height:3.5%'><span style='font-size:89%'>mean
- that it gets added to the owned rule collection.</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0120.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0120.html
deleted file mode 100644
index 148e715..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0120.html
+++ /dev/null
@@ -1,141 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Advanced Concepts – Derived unions">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="184"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>29</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s188418"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s188419" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s188420"
-  style='position:absolute;left:66pt;top:150pt;width:612pt;height:342pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s188418" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Advanced Concepts – Derived unions</div>
- <div v:shape="_x0000_s188419" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s188420" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:28.75%;left:10.11%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.25%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.3%'>•</span><i>Element::ownedElement</i>
- is a derived union.&#13;</span></div>
- <div class=B style='position:absolute;top:35.0%;left:10.11%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.25%;width:97.74%;
- height:100.0%'><span style='visibility:hidden'><span class=BB
- style='position:absolute;left:-2.3%'>•</span></span>&#13;</span></div>
- <div class=B1><span style='position:absolute;top:41.25%;left:17.04%;
- width:79.02%;height:4.5%'><span class=B1B style='position:absolute;left:-3.08%'>w</span>Element
- contributes <i>Element::ownedComment</i> to that </span><span
- style='position:absolute;top:45.75%;left:17.04%;width:76.21%;height:4.5%'>collection.&#13;</span></div>
- <div class=B1 style='position:absolute;top:51.0%;left:14.6%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.19%'>w</span></span>&#13;</span></div>
- <div class=B1><span style='position:absolute;top:56.5%;left:17.04%;width:90.63%;
- height:4.5%'><span class=B1B style='position:absolute;left:-2.68%'>w</span>Package<i>
- </i>contributes<i> Package::ownedTemplateSignature</i> and </span><span
- style='position:absolute;top:60.75%;left:17.04%;width:76.21%;height:4.5%'><i>Package::profileApplication</i>
- amongst others.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0121.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0121.html
deleted file mode 100644
index a51e5de..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0121.html
+++ /dev/null
@@ -1,142 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Derived unions: Example">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="185"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>30</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s189451"
-  type="#_x0000_m1027" style='position:absolute;left:240pt;top:30.75pt;width:462pt;
-  height:456.25pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0121_image017.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s189451" src="slide0121_image018.jpg"
- style='position:absolute;top:5.75%;left:33.33%;width:64.23%;height:84.5%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s189442" type="#_x0000_m1026"
-  style='position:absolute;left:54pt;top:3in;width:210pt;height:60pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s189443" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:300pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s189442" class=T><span style='position:absolute;
- top:40.5%;left:8.42%;width:28.08%;height:5.25%'><span style='font-size:86%'>Derived
- unions: </span></span><span style='position:absolute;top:45.75%;left:8.42%;
- width:27.34%;height:5.25%'><span style='font-size:86%'>Example</span></span></div>
- <div v:shape="_x0000_s189443" class=HB style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:31.75%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:37.25%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:42.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0121_image017.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0121_image017.png
deleted file mode 100644
index 3d1f929..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0121_image017.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0121_image018.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0121_image018.jpg
deleted file mode 100644
index 0f0dd03..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0121_image018.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0122.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0122.html
deleted file mode 100644
index 3a71f41..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0122.html
+++ /dev/null
@@ -1,138 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Advanced Concepts – Redefinition">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="187"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>32</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s191490"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s191491" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s191492"
-  style='position:absolute;left:66pt;top:150pt;width:612pt;height:198pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s191490" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Advanced Concepts – Redefinition</div>
- <div v:shape="_x0000_s191491" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s191492" class=B style='tab-stops:.4427in'><span
- style='position:absolute;top:28.75%;left:11.98%;width:95.13%;height:5.25%'><span
- class=BB style='position:absolute;left:-1.96%'>•</span><span lang=EN-US
- style='mso-ansi-language:EN-US'>Redefinition can be used to restrict the kinds
- of things </span></span><span style='position:absolute;top:34.0%;left:11.98%;
- width:81.83%;height:5.25%'><span lang=EN-US style='mso-ansi-language:EN-US'>added
- to a collection (like co-variant returns in </span></span><span
- style='position:absolute;top:39.5%;left:11.98%;width:81.27%;height:5.25%'><span
- lang=EN-US style='mso-ansi-language:EN-US'>Java™).&#13;</span></span>
- <div style='position:absolute;top:45.75%;left:10.11%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.25%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.3%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <span style='position:absolute;top:52.25%;left:11.98%;width:88.57%;height:
- 5.25%'><span class=BB style='position:absolute;left:-2.11%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>The name of a property which has
- been redefined </span></span><span style='position:absolute;top:57.5%;
- left:11.98%;width:81.27%;height:5.25%'><span lang=EN-US style='mso-ansi-language:
- EN-US'>does not have to match the one redefining it.</span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0123.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0123.html
deleted file mode 100644
index c5f82d7..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0123.html
+++ /dev/null
@@ -1,130 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Exercise 1 – Lightweight Extension">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="189"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>15</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s193538"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s193539" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:4in'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s193538" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Exercise 1 – Lightweight Extension</div>
- <div v:shape="_x0000_s193539" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:26.5%;left:8.42%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.47%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.53%'>•</span>Objectives:&#13;</span></div>
- <div class=B1><span style='position:absolute;top:32.75%;left:15.35%;
- width:87.07%;height:4.5%'><span class=B1B style='position:absolute;left:-2.79%'>w</span>Learning
- how to describe domain specific constructs with a </span><span
- style='position:absolute;top:37.25%;left:15.35%;width:76.21%;height:4.5%'>profile.&#13;</span></div>
- <div class=B1 style='position:absolute;top:42.5%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span>Explore
- Static Profile Definition.&#13;</span></div>
- <div class=B2 style='position:absolute;top:47.75%;left:17.22%;width:74.34%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.51%;width:97.48%;
- height:100.0%'><span class=B2B style='position:absolute;left:-2.58%'>§</span>Generate
- Java™ API for the profile.&#13;</span></div>
- <div class=B2 style='position:absolute;top:52.5%;left:17.22%;width:84.08%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.22%;width:97.77%;
- height:100.0%'><span class=B2B style='position:absolute;left:-2.27%'>§</span>Register
- the generated profile to make it available at run-time.&#13;</span></div>
- <div class=B1 style='position:absolute;top:57.5%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span class=B1B style='position:absolute;left:-3.19%'>w</span>Work
- with your profile.&#13;</span></div>
- <div class=B2 style='position:absolute;top:62.75%;left:17.22%;width:74.34%;
- height:4.0%'><span style='position:absolute;top:0%;left:2.51%;width:97.48%;
- height:100.0%'><span class=B2B style='position:absolute;left:-2.58%'>§</span>Apply
- and use the profile in a UML model.&#13;</span></div>
- <div class=B1 style='position:absolute;top:67.5%;left:12.92%;width:78.83%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.19%'>w</span></span><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0124.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0124.html
deleted file mode 100644
index 596489c..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0124.html
+++ /dev/null
@@ -1,150 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Exercise 1 –  Lightweight Extension">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="190"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>16</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s194562"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s194563" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:300pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s194562" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Exercise 1 –<span
- style='mso-spacerun:yes'>  </span>Lightweight Extension</div>
- <div v:shape="_x0000_s194563" style='tab-stops:.4427in'>
- <div class=HB style='position:absolute;top:26.5%;left:8.42%;width:39.88%;
- height:4.5%'><span style='position:absolute;top:0%;left:5.16%;width:95.3%;
- height:100.0%'><span style='visibility:hidden'><span class=HBB
- style='position:absolute;left:-5.41%'>•</span></span>&#13;</span></div>
- <div class=HB1 style='position:absolute;top:31.75%;left:12.92%;width:35.39%;
- height:4.0%'><span style='position:absolute;top:0%;left:6.87%;width:93.12%;
- height:100.0%'><span style='visibility:hidden'><span class=HB1B
- style='position:absolute;left:-7.38%'>w</span></span><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s194567"
-  type="#_x0000_m1027" style='position:absolute;left:1in;top:192pt;width:618pt;
-  height:283.25pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0124_image013.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s194567" src="slide0124_image014.jpg"
- style='position:absolute;top:35.5%;left:9.92%;width:85.76%;height:52.5%'><![endif]><v:rect
-  id="_x0000_s194569" style='position:absolute;left:54pt;top:126pt;width:534pt;
-  height:42pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s194569">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:144;position:absolute;top:24.25%;
- left:8.42%;width:72.28%;height:5.25%'><span style='position:absolute;
- top:0%;left:3.62%;width:96.63%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-3.75%'>•</span>Core stereotypes of the MyUnit
- profile.<span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0124_image013.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0124_image013.png
deleted file mode 100644
index a3c70f0..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0124_image013.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0124_image014.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0124_image014.jpg
deleted file mode 100644
index 9c7ae20..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0124_image014.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0125.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0125.html
deleted file mode 100644
index 9e642e2..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0125.html
+++ /dev/null
@@ -1,118 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exploring Extension Mechanisms - Lightweight">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="192"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>13</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s196610"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s196610" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:96.81%;height:6.0%'>Exploring Extension Mechanisms -
- Lightweight</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s196616"
-  type="#_x0000_m1027" style='position:absolute;left:24pt;top:156pt;width:684pt;
-  height:268.625pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0125_image011.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s196616" src="slide0125_image012.jpg"
- style='position:absolute;top:29.0%;left:3.37%;width:94.94%;height:49.75%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0125_image011.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0125_image011.png
deleted file mode 100644
index a7f734a..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0125_image011.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0125_image012.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0125_image012.jpg
deleted file mode 100644
index b400ca4..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0125_image012.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0128.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0128.html
deleted file mode 100644
index 66aa9a9..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0128.html
+++ /dev/null
@@ -1,134 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exercise 2 – Creating Middleweight Extension">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="197"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>35</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s201730"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s201730" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:95.31%;height:6.0%'>Exercise 2 – Creating Middleweight
- Extension</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s201736"
-  type="#_x0000_m1027" style='position:absolute;left:96pt;top:168pt;width:492pt;
-  height:327.75pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0128_image021.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s201736" src="slide0128_image022.jpg"
- style='position:absolute;top:31.0%;left:13.29%;width:68.35%;height:60.75%'><![endif]><v:rect
-  id="_x0000_s201738" style='position:absolute;left:48pt;top:126pt;width:654pt;
-  height:42pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s201738">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:24.25%;
- left:7.67%;width:88.95%;height:5.25%'><span style='position:absolute;
- top:0%;left:4.21%;width:95.78%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-4.39%'>•</span>Core meta-classes of the MyUnit
- meta-model.</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0128_image021.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0128_image021.png
deleted file mode 100644
index 0f6fbef..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0128_image021.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0128_image022.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0128_image022.jpg
deleted file mode 100644
index 8e66a03..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0128_image022.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129.html
deleted file mode 100644
index 2ea889e..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129.html
+++ /dev/null
@@ -1,177 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exercise 3 – Creating Heavyweight Extension">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="201"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>49</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s205826"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s205826" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:94.75%;height:6.0%'>Exercise 3 – Creating Heavyweight
- Extension</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s205834"
-  type="#_x0000_m1027" style='position:absolute;left:36pt;top:258pt;width:300pt;
-  height:192.125pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0129_image044.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s205834" src="slide0129_image045.jpg"
- style='position:absolute;top:47.75%;left:5.05%;width:41.76%;height:35.5%'><![endif]><v:line
-  id="_x0000_s205830" style='position:absolute' from="354pt,186pt" to="354pt,474pt"
-  strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><v:rect id="_x0000_s205831" style='position:absolute;left:66pt;top:168pt;
-  width:252pt;height:36pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect><v:rect id="_x0000_s205832" style='position:absolute;left:378pt;
-  top:168pt;width:318pt;height:36pt' filled="f" fillcolor="#bbe0e3 [4]"
-  stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s205830"
- src="slide0129_image046.gif" style='position:absolute;top:34.5%;left:49.06%;
- width:.37%;height:54.0%'><![endif]>
- <div v:shape="_x0000_s205831">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:32.0%;
- left:10.11%;width:39.32%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>Timing Language Unit</u></div>
- </div>
- <div v:shape="_x0000_s205832">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:32.0%;
- left:53.55%;width:46.06%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>Objectives Language Unit</u></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s205837"
-  type="#_x0000_m1027" style='position:absolute;left:378pt;top:234pt;width:300pt;
-  height:229.125pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0129_image047.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s205837" src="slide0129_image048.jpg"
- style='position:absolute;top:43.25%;left:52.43%;width:41.76%;height:42.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image044.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image044.png
deleted file mode 100644
index 2780ef4..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image044.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image045.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image045.jpg
deleted file mode 100644
index 800009b..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image045.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image046.gif b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image046.gif
deleted file mode 100644
index 075ce3a..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image046.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image047.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image047.png
deleted file mode 100644
index e05d3b3..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image047.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image048.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image048.jpg
deleted file mode 100644
index 0e26451..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0129_image048.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130.html
deleted file mode 100644
index 5c90455..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130.html
+++ /dev/null
@@ -1,210 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exercise 3 – Creating Heavyweight Extension">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="203"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>51</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s207874"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s207874" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:94.75%;height:6.0%'>Exercise 3 – Creating Heavyweight
- Extension</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s207885"
-  type="#_x0000_m1027" style='position:absolute;left:36pt;top:252pt;width:300pt;
-  height:167.375pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0130_image051.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s207885" src="slide0130_image052.jpg"
- style='position:absolute;top:46.75%;left:5.05%;width:41.76%;height:31.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s207888" type="#_x0000_m1027"
-  style='position:absolute;left:408pt;top:192pt;width:246pt;height:188.75pt'
-  o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe" filled="f"
-  fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0130_image053.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s207888" src="slide0130_image054.jpg"
- style='position:absolute;top:35.5%;left:56.74%;width:34.08%;height:35.0%'><![endif]><v:line
-  id="_x0000_s207881" style='position:absolute' from="5in,2in" to="5in,492pt"
-  strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><v:rect id="_x0000_s207882" style='position:absolute;left:48pt;top:2in;
-  width:4in;height:36pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f"
-  strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect><v:rect id="_x0000_s207883" style='position:absolute;left:378pt;
-  top:2in;width:330pt;height:36pt' filled="f" fillcolor="#bbe0e3 [4]"
-  stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect><![if !vml]><img border=0 v:shapes="_x0000_s207881"
- src="slide0130_image055.gif" style='position:absolute;top:26.5%;left:50.0%;
- width:.37%;height:65.0%'><![endif]>
- <div v:shape="_x0000_s207882">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:27.5%;
- left:7.67%;width:42.88%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>Basic Compliance Level</u></div>
- </div>
- <div v:shape="_x0000_s207883">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:27.5%;
- left:53.55%;width:50.37%;height:5.25%'><span style='mso-special-format:nobullet;
- display:none'>•</span><u>Complete Compliance Level</u></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s207890"
-  type="#_x0000_m1027" style='position:absolute;left:414pt;top:390pt;width:264pt;
-  height:103.125pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0130_image056.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="3" size="quarter"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s207890" src="slide0130_image057.jpg"
- style='position:absolute;top:72.25%;left:57.49%;width:36.7%;height:19.0%'><![endif]><v:line
-  id="_x0000_s207892" style='position:absolute' from="5in,384pt" to="702pt,384pt"
-  strokecolor="black [1]">
-  <v:shadow color="gray [2]"/>
- </v:line><![if !vml]><img border=0 v:shapes="_x0000_s207892"
- src="slide0130_image058.gif" style='position:absolute;top:71.0%;left:50.0%;
- width:47.94%;height:.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image051.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image051.png
deleted file mode 100644
index 46eaa69..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image051.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image052.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image052.jpg
deleted file mode 100644
index 8776b07..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image052.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image053.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image053.png
deleted file mode 100644
index fc412c8..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image053.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image054.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image054.jpg
deleted file mode 100644
index 5a05b7b..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image054.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image055.gif b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image055.gif
deleted file mode 100644
index b5e01c1..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image055.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image056.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image056.png
deleted file mode 100644
index c1174eb..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image056.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image057.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image057.jpg
deleted file mode 100644
index a1855d7..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image057.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image058.gif b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image058.gif
deleted file mode 100644
index df1bed3..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0130_image058.gif
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0131.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0131.html
deleted file mode 100644
index 0e7d066..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0131.html
+++ /dev/null
@@ -1,187 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Agenda">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="205"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>18</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s209922"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s209923" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s209922" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Agenda</div>
- <div v:shape="_x0000_s209923" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:26.0%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Introduction&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:31.0%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Exploring Extension
- Mechanisms&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:35.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Featherweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:39.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Lightweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:43.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'><b>Middleweight&#13;</b></span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:47.5%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Heavyweight&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:51.5%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Advanced
- Concepts&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:56.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Subsets&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:59.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Derived Unions&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:63.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Redefinition&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:67.75%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Meta-model
- Decomposition&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:72.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Package Merge&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:76.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Language Units&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:80.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Compliance Levels&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:84.0%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Summary</span><span
- style='font-size:75%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0132.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0132.html
deleted file mode 100644
index 98fe998..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0132.html
+++ /dev/null
@@ -1,188 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Agenda">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="206"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>21</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s210946"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s210947" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s210946" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Agenda</div>
- <div v:shape="_x0000_s210947" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:26.0%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Introduction&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:31.0%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Exploring Extension
- Mechanisms&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:35.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Featherweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:39.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Lightweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:43.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Middleweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:47.5%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'><b>Heavyweight</b></span><span lang=EN-US style='font-size:80%;
- mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:51.5%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Advanced
- Concepts&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:56.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Subsets&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:59.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Derived Unions&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:63.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Redefinition&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:67.75%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Meta-model
- Decomposition&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:72.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Package Merge&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:76.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Language Units&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:80.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Compliance Levels&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:84.0%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Summary</span><span
- style='font-size:75%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0133.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0133.html
deleted file mode 100644
index 981ee4a..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0133.html
+++ /dev/null
@@ -1,187 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Agenda">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="207"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>11</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s211970"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s211971" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape>
- <div v:shape="_x0000_s211970" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Agenda</div>
- <div v:shape="_x0000_s211971" style='tab-stops:.4427in'>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:26.0%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Introduction&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:31.0%;
- left:8.42%;width:83.14%;height:4.5%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:83%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:83%;mso-ansi-language:EN-US'>Exploring Extension
- Mechanisms&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:35.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Featherweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:39.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'><b>Lightweight&#13;</b></span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:43.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Middleweight&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:47.5%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Heavyweight&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:51.5%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Advanced
- Concepts&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:56.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Subsets&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:59.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Derived Unions&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:63.75%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Redefinition&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:67.75%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Meta-model
- Decomposition&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:72.25%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Package Merge&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:76.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Language Units&#13;</span></span></div>
- <div class=B1 style='mso-line-spacing:"90 20 0";position:absolute;top:80.0%;
- left:12.92%;width:78.83%;height:3.5%'><span style='position:absolute;
- top:0%;left:3.08%;width:96.67%;height:100.0%'><span style='font-size:80%'><span
- style='mso-special-format:bullet;position:absolute;left:-3.19%;font-family:
- Wingdings'>w</span></span><span lang=EN-US style='font-size:80%;mso-ansi-language:
- EN-US'>Compliance Levels&#13;</span></span></div>
- <div class=B style='mso-line-spacing:"90 20 0";position:absolute;top:84.0%;
- left:8.42%;width:83.14%;height:4.0%'><span style='position:absolute;
- top:0%;left:2.47%;width:97.74%;height:100.0%'><span style='font-size:75%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='font-size:75%;mso-ansi-language:EN-US'>Summary</span><span
- style='font-size:75%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0135.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0135.html
deleted file mode 100644
index 4e696e5..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0135.html
+++ /dev/null
@@ -1,140 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Language Units and Compliance Levels">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="210"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>42</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s215042"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s215043" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:300pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s215042" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Language Units and Compliance Levels</div>
- <div v:shape="_x0000_s215043" class=HB style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:31.75%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:37.25%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:42.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s215054"
-  type="#_x0000_m1027" style='position:absolute;left:84pt;top:2in;width:540pt;
-  height:321.5pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0135_image032.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s215054" src="slide0135_image033.jpg"
- style='position:absolute;top:26.75%;left:11.61%;width:75.09%;height:59.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0135_image032.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0135_image032.png
deleted file mode 100644
index da5a1b7..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0135_image032.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0135_image033.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0135_image033.jpg
deleted file mode 100644
index 1a45129..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0135_image033.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0136.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0136.html
deleted file mode 100644
index fd6b2d0..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0136.html
+++ /dev/null
@@ -1,185 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exploring Extension Mechanisms - Featherweight">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="212"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>7</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s217090"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s217091" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:300pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape><v:rect id="_x0000_s217092"
-  style='position:absolute;left:60pt;top:132pt;width:588pt;height:228pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s217090" class=T style='position:absolute;top:17.0%;
- left:8.42%;width:88.01%;height:5.25%'><span style='font-size:86%'>Exploring
- Extension Mechanisms - Featherweight</span></div>
- <div v:shape="_x0000_s217091" class=HB style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:31.75%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:37.25%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:42.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s217092" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:25.5%;left:9.36%;width:79.77%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.34%;width:97.65%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.4%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Why use Keywords?&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:31.5%;left:16.1%;width:85.95%;
- height:4.5%'><span class=B1B style='position:absolute;left:-2.83%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>To distinguish a particular concept
- from others sharing the </span></span><span style='position:absolute;
- top:36.0%;left:16.1%;width:73.03%;height:4.5%'><span lang=EN-US
- style='mso-ansi-language:EN-US'>same general graphical form.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:41.25%;left:13.67%;width:75.46%;
- height:4.5%'><span style='position:absolute;top:0%;left:3.22%;width:96.77%;
- height:100.0%'><span style='visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.33%'>w</span></span><span lang=EN-US
- style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:47.0%;left:9.36%;width:79.77%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.34%;width:97.65%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.4%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>For example:&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:53.0%;left:16.1%;width:80.52%;
- height:4.5%'><span class=B1B style='position:absolute;left:-3.02%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'> </span></span><span lang=EN-US style='mso-ansi-language:
- EN-US'><i>uml::Interface</i></span><span lang=EN-US style='mso-ansi-language:
- EN-US'> has a similar appearance to </span><span lang=EN-US style='mso-ansi-language:
- EN-US'><i>uml::Class.<span style='mso-spacerun:yes'>  </span></i></span></span><span
- style='position:absolute;top:57.5%;left:16.1%;width:73.03%;height:4.5%'><span
- lang=EN-US style='mso-ansi-language:EN-US'>The keyword
- &lt;&lt;interface&gt;&gt; is used to distinguish </span></span><span
- style='position:absolute;top:62.0%;left:16.1%;width:73.03%;height:4.5%'><span
- lang=EN-US style='mso-ansi-language:EN-US'>interfaces from other
- classifiers.&#13;</span></span></div>
- <div class=B style='position:absolute;top:67.0%;left:9.36%;width:79.77%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.34%;width:97.65%;
- height:100.0%'><span style='font-size:58%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.4%'>•</span></span><span style='font-size:
- 58%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s217093"
-  type="#_x0000_m1027" style='position:absolute;left:264pt;top:5in;width:2in;
-  height:94.875pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0136_image007.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s217093" src="slide0136_image008.jpg"
- style='position:absolute;top:66.75%;left:36.7%;width:20.03%;height:17.5%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0136_image007.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0136_image007.png
deleted file mode 100644
index 200edaa..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0136_image007.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0136_image008.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0136_image008.jpg
deleted file mode 100644
index 13abb3c..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0136_image008.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0137.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0137.html
deleted file mode 100644
index 0d7fc39..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0137.html
+++ /dev/null
@@ -1,164 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exploring Extension Mechanisms - Featherweight">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="215"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>8</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s220162"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s220163" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:300pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape><v:rect id="_x0000_s220164"
-  style='position:absolute;left:60pt;top:132pt;width:612pt;height:96pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s220162" class=T style='position:absolute;top:17.0%;
- left:8.42%;width:88.01%;height:5.25%'><span style='font-size:86%'>Exploring
- Extension Mechanisms - Featherweight</span></div>
- <div v:shape="_x0000_s220163" class=HB style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:31.75%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:37.25%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:42.5%;left:8.42%;width:39.88%;height:4.5%'><span
- style='position:absolute;top:0%;left:5.16%;width:95.3%;height:100.0%'><span
- style='visibility:hidden'><span class=HBB style='position:absolute;left:-5.41%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s220164" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:25.5%;left:9.36%;width:83.14%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.25%;width:97.74%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.3%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Why use Keywords?&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:31.5%;left:16.1%;width:82.95%;
- height:4.5%'><span class=B1B style='position:absolute;left:-2.93%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>To distinguish a particular kind of
- relationship from other </span></span><span style='position:absolute;
- top:36.0%;left:16.1%;width:76.21%;height:4.5%'><span lang=EN-US
- style='mso-ansi-language:EN-US'>relationships sharing the same graphical
- form.&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:41.0%;left:13.67%;width:78.83%;
- height:2.75%'><span style='position:absolute;top:0%;left:3.08%;width:96.67%;
- height:100.0%'><span style='font-size:60%;visibility:hidden'><span class=B1B
- style='position:absolute;left:-3.19%'>w</span></span><span style='font-size:
- 60%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s220165"
-  type="#_x0000_m1027" style='position:absolute;left:198pt;top:219.5pt;width:270pt;
-  height:253.75pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0137_image009.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s220165" src="slide0137_image010.jpg"
- style='position:absolute;top:40.75%;left:27.52%;width:37.45%;height:47.0%'><![endif]></p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0137_image009.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0137_image009.png
deleted file mode 100644
index d8e507a..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0137_image009.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0137_image010.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0137_image010.jpg
deleted file mode 100644
index c17f2b7..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0137_image010.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0138.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0138.html
deleted file mode 100644
index cdf6a1a..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0138.html
+++ /dev/null
@@ -1,179 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exploring Extension Mechanisms - Featherweight">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="217"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>9</b></span><span lang=EN-US style='mso-bidi-font-family:
- Arial;font-size:42%;mso-ansi-language:EN-US;mso-special-format:lastCR;
- display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s222210"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s222211" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:612pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1"/></v:shape><v:rect id="_x0000_s222212"
-  style='position:absolute;left:60pt;top:132pt;width:9in;height:342pt'
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s222210" class=T style='position:absolute;top:17.0%;
- left:8.42%;width:88.01%;height:5.25%'><span style='font-size:86%'>Exploring
- Extension Mechanisms - Featherweight</span></div>
- <div v:shape="_x0000_s222211" class=B style='tab-stops:.4427in'>
- <div style='position:absolute;top:26.5%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:33.0%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'><b><i>&#13;</i></b></span></span></div>
- <div style='position:absolute;top:39.25%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- lang=EN-US style='mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div style='position:absolute;top:45.75%;left:8.42%;width:83.14%;height:5.25%'><span
- style='position:absolute;top:0%;left:2.47%;width:97.74%;height:100.0%'><span
- style='visibility:hidden'><span class=BB style='position:absolute;left:-2.53%'>•</span></span><span
- style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
- <div v:shape="_x0000_s222212" style='tab-stops:.4427in'>
- <div class=B style='position:absolute;top:25.5%;left:9.36%;width:88.2%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.12%;width:97.87%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.16%'>•</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>Why use Keywords?&#13;</span></span></div>
- <div class=B1><span style='position:absolute;top:31.5%;left:16.1%;width:97.0%;
- height:4.5%'><span class=B1B style='position:absolute;left:-2.5%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>To specify the value of some
- modifier attached to a meta-attribute </span></span><span style='position:
- absolute;top:36.0%;left:16.1%;width:81.27%;height:4.5%'><span lang=EN-US
- style='mso-ansi-language:EN-US'>value.&#13;</span></span></div>
- <div class=B2><span style='position:absolute;top:41.0%;left:20.03%;width:82.2%;
- height:3.25%'><span style='font-size:78%'><span class=B2B style='position:
- absolute;left:-2.27%'>§</span></span><span lang=EN-US style='font-size:78%;
- mso-ansi-language:EN-US'>The keyword &lt;&lt;singleExecution&gt;&gt; appearing
- within an Activity signifies that the </span></span><span style='position:
- absolute;top:44.0%;left:20.03%;width:77.52%;height:3.25%'><span lang=EN-US
- style='font-size:78%;mso-ansi-language:EN-US'>isSingleExecution attribute of
- the Activity is true.&#13;</span></span></div>
- <div class=B2 style='position:absolute;top:47.75%;left:18.16%;width:79.4%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.35%;width:97.64%;
- height:100.0%'><span style='font-size:78%;visibility:hidden'><span class=B2B
- style='position:absolute;left:-2.41%'>§</span></span><span lang=EN-US
- style='font-size:78%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B1 style='position:absolute;top:52.0%;left:13.67%;width:83.7%;
- height:4.5%'><span style='position:absolute;top:0%;left:2.9%;width:97.09%;
- height:100.0%'><span class=B1B style='position:absolute;left:-2.99%'>w</span><span
- lang=EN-US style='mso-ansi-language:EN-US'>To indicate standard stereotype.</span><span
- lang=EN-US style='font-size:80%;mso-ansi-language:EN-US'><span
- style='mso-spacerun:yes'>  </span>&#13;</span></span></div>
- <div class=B2><span style='position:absolute;top:57.0%;left:20.03%;width:85.76%;
- height:3.25%'><span style='font-size:78%'><span class=B2B style='position:
- absolute;left:-2.18%'>§</span></span><span lang=EN-US style='font-size:78%;
- mso-ansi-language:EN-US'>For example the &lt;&lt;modelLibrary&gt;&gt; keyword
- attached to a package identify that the </span></span><span style='position:
- absolute;top:60.0%;left:20.03%;width:87.26%;height:3.25%'><span lang=EN-US
- style='font-size:78%;mso-ansi-language:EN-US'>package contains a set of model
- elements intended to be shared by multiple models.&#13;</span></span></div>
- <div class=B2 style='position:absolute;top:63.75%;left:18.16%;width:79.4%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.35%;width:97.64%;
- height:100.0%'><span style='font-size:78%;visibility:hidden'><span class=B2B
- style='position:absolute;left:-2.41%'>§</span></span><span lang=EN-US
- style='font-size:78%;mso-ansi-language:EN-US;display:none'>&#13;</span></span></div>
- <div class=B style='position:absolute;top:68.0%;left:9.36%;width:88.2%;
- height:5.25%'><span style='position:absolute;top:0%;left:2.12%;width:97.87%;
- height:100.0%'><span class=BB style='position:absolute;left:-2.16%'>•</span>There
- is support in the API:&#13;</span></div>
- <div class=B1 style='position:absolute;top:74.0%;left:13.67%;width:98.68%;
- height:3.5%'><span style='position:absolute;top:0%;left:2.46%;width:97.34%;
- height:100.0%'><span style='font-size:80%'><span class=B1B style='position:
- absolute;left:-2.53%'>w</span></span><span style='font-size:80%'><i>Element::addKeyword(),</i></span><span
- style='font-size:80%'> </span><span style='font-size:80%'><i>Element::removeKeyword(),
- Element::hasKeyword()</i></span><span style='font-size:80%'> etc.&#13;</span></span></div>
- <div class=B style='position:absolute;top:78.0%;left:9.36%;width:88.2%;
- height:3.25%'><span style='position:absolute;top:0%;left:2.12%;width:97.87%;
- height:100.0%'><span style='font-size:58%;visibility:hidden'><span class=BB
- style='position:absolute;left:-2.16%'>•</span></span><span style='font-size:
- 58%;mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0139.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0139.html
deleted file mode 100644
index 8eb1756..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0139.html
+++ /dev/null
@@ -1,155 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description content="4/9/2008: Exercise 1 –  Lightweight Extension">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="220"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>17</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s225282"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape><p:shaperange
-  href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s225283" type="#_x0000_m1027"
-  style='position:absolute;left:54pt;top:138pt;width:300pt;height:342pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="body" position="1" size="half"/></v:shape>
- <div v:shape="_x0000_s225282" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:83.14%;height:6.0%'>Exercise 1 –<span
- style='mso-spacerun:yes'>  </span>Lightweight Extension</div>
- <div v:shape="_x0000_s225283" style='tab-stops:.4427in'>
- <div class=HB style='position:absolute;top:26.5%;left:8.42%;width:39.88%;
- height:4.5%'><span style='position:absolute;top:0%;left:5.16%;width:95.3%;
- height:100.0%'><span style='visibility:hidden'><span class=HBB
- style='position:absolute;left:-5.41%'>•</span></span>&#13;</span></div>
- <div class=HB1 style='position:absolute;top:31.75%;left:12.92%;width:35.39%;
- height:4.0%'><span style='position:absolute;top:0%;left:6.87%;width:93.12%;
- height:100.0%'><span style='visibility:hidden'><span class=HB1B
- style='position:absolute;left:-7.38%'>w</span></span><span style='mso-special-format:
- lastCR;display:none'>&#13;</span></span></div>
- </div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s225286"
-  type="#_x0000_m1027" style='position:absolute;left:174pt;top:228pt;width:396pt;
-  height:250.375pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0139_image015.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="2" size="half"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s225286" src="slide0139_image016.jpg"
- style='position:absolute;top:42.25%;left:24.15%;width:55.05%;height:46.25%'><![endif]><v:rect
-  id="_x0000_s225289" style='position:absolute;left:48pt;top:138pt;width:654pt;
-  height:66pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s225289">
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:108;position:absolute;top:26.5%;
- left:7.67%;width:88.95%;height:5.25%'><span style='position:absolute;
- top:0%;left:2.1%;width:97.89%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-2.15%'>•</span>Timing stereotypes of MyUnit
- profile&#13;</span></div>
- <div class=B1 style='mso-margin-left-alt:432;mso-text-indent-alt:288;
- position:absolute;top:32.75%;left:12.73%;width:84.08%;height:4.5%'><span
- style='position:absolute;top:0%;left:2.89%;width:96.88%;height:100.0%'><span
- style='mso-special-format:bullet;position:absolute;left:-2.98%;font-family:
- Wingdings'>w</span><span style='mso-spacerun:yes'> </span>For performance
- sensitive tests</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0139_image015.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0139_image015.png
deleted file mode 100644
index 673cd3e..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0139_image015.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0139_image016.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0139_image016.jpg
deleted file mode 100644
index d3e673d..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0139_image016.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0140.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0140.html
deleted file mode 100644
index 9468ce1..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0140.html
+++ /dev/null
@@ -1,134 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exercise 2 – Creating Middleweight Extension">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="222"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>36</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s227330"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s227330" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:95.31%;height:6.0%'>Exercise 2 – Creating Middleweight
- Extension</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s227333"
-  type="#_x0000_m1027" style='position:absolute;left:150pt;top:174pt;width:390pt;
-  height:273.75pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0140_image023.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s227333" src="slide0140_image024.jpg"
- style='position:absolute;top:32.25%;left:20.78%;width:54.11%;height:50.75%'><![endif]><v:rect
-  id="_x0000_s227335" style='position:absolute;left:48pt;top:126pt;width:654pt;
-  height:42pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s227335">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:24.25%;
- left:7.67%;width:88.95%;height:5.25%'><span style='position:absolute;
- top:0%;left:4.21%;width:95.78%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-4.39%'>•</span>Timing meta-classes of the
- MyUnit meta-model<span style='mso-special-format:lastCR;display:none'>&#13;</span></span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0140_image023.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0140_image023.png
deleted file mode 100644
index 91d350b..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0140_image023.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0140_image024.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0140_image024.jpg
deleted file mode 100644
index 681ef4f..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0140_image024.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0141.html b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0141.html
deleted file mode 100644
index b37d785..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0141.html
+++ /dev/null
@@ -1,133 +0,0 @@
-<html xmlns:v="urn:schemas-microsoft-com:vml"
-xmlns:o="urn:schemas-microsoft-com:office:office"
-xmlns:p="urn:schemas-microsoft-com:office:powerpoint"
-xmlns:oa="urn:schemas-microsoft-com:office:activation"
-xmlns="http://www.w3.org/TR/REC-html40">
-
-<head>
-<meta http-equiv=Content-Type content="text/html; charset=windows-1252">
-<meta name=ProgId content=PowerPoint.Slide>
-<meta name=Generator content="Microsoft PowerPoint 10">
-<link id=Main-File rel=Main-File
-href="../EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML.html">
-<link rel=Preview href=preview.wmf>
-<!--[if !mso]>
-<style>
-v\:* {behavior:url(#default#VML);}
-o\:* {behavior:url(#default#VML);}
-p\:* {behavior:url(#default#VML);}
-.shape {behavior:url(#default#VML);}
-v\:textbox {display:none;}
-</style>
-<![endif]-->
-<title>New Features Of UML2</title>
-<meta name=Description
-content="4/9/2008: Exercise 3 – Creating Heavyweight Extension">
-<link rel=Stylesheet href="master03_stylesheet.css">
-<![if !ppt]>
-<style media=print>
-<!--.sld
-	{left:0px !important;
-	width:6.0in !important;
-	height:4.5in !important;
-	font-size:107% !important;}
--->
-</style>
-<script src=script.js></script><script><!--
-if( !IsNts() ) Redirect( "PPTSld" );
-//--></script><!--[if vml]><script>g_vml = 1;
-</script><![endif]--><![endif]><o:shapelayout v:ext="edit">
- <o:idmap v:ext="edit" data="223"/>
-</o:shapelayout>
-</head>
-
-<body lang=EN-US style='margin:0px;background-color:black'
-onclick="DocumentOnClick()" onresize="_RSW()" onload="LoadSld()"
-onkeypress="_KPH()">
-
-<div id=SlideObj class=sld style='position:absolute;top:0px;left:0px;
-width:534px;height:400px;font-size:16px;background-color:white;clip:rect(0%, 101%, 101%, 0%);
-visibility:hidden'><p:slide coordsize="720,540"
- colors="#FFFFFF,#000000,#808080,#000000,#BBE0E3,#333399,#009999,#99CC00"
- masterhref="master03.xml">
- <p:shaperange href="master03.xml#_x0000_s1025"/><![if !ppt]><p:shaperange
-  href="master03.xml#_x0000_s1032"/><![if !vml]><img border=0
- v:shapes="_x0000_s1032" src="master03_image005.jpg" style='position:absolute;
- top:91.75%;left:0%;width:100.0%;height:8.25%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1031"/><![if !vml]><img border=0
- v:shapes="_x0000_s1031" src="master03_image006.jpg" style='position:absolute;
- top:0%;left:2.05%;width:36.32%;height:14.0%'><![endif]><p:shaperange
-  href="master03.xml#_x0000_s1033"/>
- <div v:shape="_x0000_s1033" class=O>
- <div style='position:absolute;top:95.25%;left:16.85%;width:82.39%;height:2.25%'><span
- style='mso-bidi-font-family:Arial;font-size:42%'><span
- style='mso-spacerun:yes'> </span>Creating Robust Scalable </span><span
- style='font-size:42%'>DSLs with UML</span><span lang=EN-US style='font-size:
- 42%;mso-ansi-language:EN-US'> |<span style='mso-spacerun:yes'> 
- </span>Tutorial | Copyright © IBM Corp., 2007-2008.<span
- style='mso-spacerun:yes'>  </span>All rights reserved. </span></div>
- </div>
- <div v:shape="_x0000_s1035" class=O>
- <div style='mso-line-spacing:"100 50 0";mso-char-wrap:1;mso-kinsoku-overflow:
- 1;position:absolute;top:96.25%;left:.93%;width:9.17%;height:2.25%'><span
- lang=EN-US style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:
- EN-US;mso-field-code:meta16'><b>50</b></span><span lang=EN-US
- style='mso-bidi-font-family:Arial;font-size:42%;mso-ansi-language:EN-US;
- mso-special-format:lastCR;display:none'><b>&#13;</b></span></div>
- </div>
- <![endif]><p:shaperange href="master03.xml#_x0000_m1026"/><v:shape id="_x0000_s228354"
-  type="#_x0000_m1026" style='position:absolute;left:54pt;top:84pt;width:612pt;
-  height:42pt'>
-  <v:fill o:detectmouseclick="f"/>
-  <v:stroke o:forcedash="f"/>
-  <o:lock v:ext="edit" text="f"/>
-  <p:placeholder type="title"/></v:shape>
- <div v:shape="_x0000_s228354" class=T style='position:absolute;top:16.75%;
- left:8.42%;width:94.75%;height:6.0%'>Exercise 3 – Creating Heavyweight
- Extension</div>
- <p:shaperange href="master03.xml#_x0000_m1027"/><v:shape id="_x0000_s228357"
-  type="#_x0000_m1027" style='position:absolute;left:180pt;top:210pt;width:340.5pt;
-  height:232.5pt' o:spt="75" o:preferrelative="t" path="m@4@5l@4@11@9@11@9@5xe"
-  filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]" o:detectmouseclick="f"/>
-  <v:stroke joinstyle="miter" o:forcedash="f"/>
-  <v:imagedata src="slide0141_image049.png" o:title=""/>
-  <v:shadow on="f" color="gray [2]"/>
-  <v:formulas>
-   <v:f eqn="if lineDrawn pixelLineWidth 0"/>
-   <v:f eqn="sum @0 1 0"/>
-   <v:f eqn="sum 0 0 @1"/>
-   <v:f eqn="prod @2 1 2"/>
-   <v:f eqn="prod @3 21600 pixelWidth"/>
-   <v:f eqn="prod @3 21600 pixelHeight"/>
-   <v:f eqn="sum @0 0 1"/>
-   <v:f eqn="prod @6 1 2"/>
-   <v:f eqn="prod @7 21600 pixelWidth"/>
-   <v:f eqn="sum @8 21600 0"/>
-   <v:f eqn="prod @7 21600 pixelHeight"/>
-   <v:f eqn="sum @10 21600 0"/>
-  </v:formulas>
-  <v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect"/>
-  <o:lock v:ext="edit" aspectratio="t" text="t" grouping="f"/>
-  <p:placeholder type="object" position="1"/></v:shape><![if !vml]><img
- border=0 v:shapes="_x0000_s228357" src="slide0141_image050.jpg"
- style='position:absolute;top:39.0%;left:25.09%;width:47.37%;height:43.0%'><![endif]><v:rect
-  id="_x0000_s228359" style='position:absolute;left:48pt;top:138pt;width:654pt;
-  height:66pt' filled="f" fillcolor="#bbe0e3 [4]" stroked="f" strokecolor="black [1]">
-  <v:fill color2="white [0]"/>
- </v:rect>
- <div v:shape="_x0000_s228359">
- <div class=B1 style='mso-margin-left-alt:468;mso-text-indent-alt:288'></div>
- <div class=B2 style='mso-margin-left-alt:720;mso-text-indent-alt:576'></div>
- <div class=B3 style='mso-margin-left-alt:1008;mso-text-indent-alt:864'></div>
- <div class=B4 style='mso-margin-left-alt:1296;mso-text-indent-alt:1152'></div>
- <div class=B style='mso-margin-left-alt:216;position:absolute;top:26.5%;
- left:7.67%;width:88.95%;height:5.25%'><span style='position:absolute;
- top:0%;left:4.21%;width:95.78%;height:100.0%'><span style='mso-special-format:
- bullet;position:absolute;left:-4.39%'>•</span>Overview of the MyUnit library</span></div>
- </div>
-</p:slide></div>
-
-</body>
-
-</html>
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0141_image049.png b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0141_image049.png
deleted file mode 100644
index b5e27f0..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0141_image049.png
+++ /dev/null
Binary files differ
diff --git a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0141_image050.jpg b/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0141_image050.jpg
deleted file mode 100644
index 32c1cb2..0000000
--- a/uml2/docs/tutorials/EclipseCon2008_Tutorial_Creating_Robust_Scalable_DSL_with_UML_files/slide0141_image050.jpg
+++ /dev/null
Binary files differ
diff --git a/uml2/eclipse-project-ip-log.csv b/uml2/eclipse-project-ip-log.csv
deleted file mode 100644
index 19cc859..0000000
--- a/uml2/eclipse-project-ip-log.csv
+++ /dev/null
@@ -1,73 +0,0 @@
-Section 1 (Committers),,,,
-
-dev.eclise.org Login,,,,
-khussey,,,,
-jbruck,,,,
-
-Section 2 (Developers),,,,
-
-Component,Bug #,Contributor,Size,Committer
-org.eclipse.uml2.uml,80307,James Bruck,607,khussey
-org.eclipse.uml2.uml,80307,James Bruck,561,khussey
-org.eclipse.uml2.uml,80307,James Bruck,141,khussey
-org.eclipse.uml2.uml,80307,James Bruck,119,khussey
-org.eclipse.uml2.uml,80307,James Bruck,108,khussey
-org.eclipse.uml2.uml,80307,James Bruck,122,khussey
-org.eclipse.uml2.uml,139765,James Bruck,39,khussey
-org.eclipse.uml2.uml,140590,James Bruck,65,khussey
-org.eclipse.uml2.uml,141575,James Bruck,20,khussey
-uml2,77413,James Bruck,19642,khussey
-org.eclipse.uml2.uml,144311,James Bruck,49,khussey
-uml2,77413,James Bruck,12144,khussey
-uml2,77413,James Bruck,15359,khussey
-org.eclipse.uml2.uml,152592,James Bruck,1,khussey
-org.eclipse.uml2.uml,157714,James Bruck,153,khussey
-org.eclipse.uml2.uml,157715,James Bruck,53,khussey
-org.eclipse.uml2.uml.ecore.importer,160319,James Bruck,8,khussey
-org.eclipse.uml2.uml,159855,James Bruck,23,khussey
-org.eclipse.uml2.uml.editor,159855,James Bruck,41,khussey
-org.eclipse.uml2.uml.resources,150154,James Bruck,396,khussey
-org.eclipse.uml2.examples.uml.ui,150154,James Bruck,119,khussey
-org.eclipse.uml2.uml.editor,150154,James Bruck,177,khussey
-org.eclipse.uml2.uml,150154,James Bruck,90,khussey
-org.eclipse.uml2.uml,166843,Ed Merks,5,khussey
-org.eclipse.uml2.uml.ecore.importer,160680,James Bruck,596,khussey
-org.eclipse.uml2.uml.ecore.importer,160680,James Bruck,217,khussey
-org.eclipse.uml2.uml,173843,James Bruck,9,khussey
-org.eclipse.uml2.examples.uml.ui,160679,James Bruck,101,khussey
-org.eclipse.uml2.uml,160679,James Bruck,948,khussey
-org.eclipse.uml2.uml.resources,160679,James Bruck,412,khussey
-org.eclipse.uml2.uml,173726,James Bruck,6954,khussey
-org.eclipse.uml2.uml,155535,James Bruck,224,khussey
-org.eclipse.uml2.examples.uml.ui,105199,James Bruck,48,khussey
-org.eclipse.uml2.uml.ecore.exporter,105199,James Bruck,8,khussey
-org.eclipse.uml2.uml.ecore.importer,105199,James Bruck,29,khussey
-org.eclipse.uml2.uml,105199,James Bruck,394,khussey
-org.eclipse.uml2.examples.uml.ui,163556,James Bruck,197,khussey
-org.eclipse.uml2.uml.ecore.exporter,163556,James Bruck,2,khussey
-org.eclipse.uml2.uml.editor,163556,James Bruck,244,khussey
-org.eclipse.uml2.uml.ecore.importer,163556,James Bruck,11,khussey
-org.eclipse.uml2.uml,163556,James Bruck,32,khussey
-org.eclipse.uml2.uml.editor,176996,James Bruck,4,khussey
-org.eclipse.uml2.uml.editor,176995,James Bruck,103,khussey
-org.eclipse.uml2.codegen.ecore,105199,James Bruck,120,khussey
-org.eclipse.uml2.codegen.ecore,160679,Ed Merks,282,khussey
-org.eclipse.uml2.uml.resources,187120,James Bruck,2,khussey
-org.eclipse.uml2.examples.uml.ui,187120,James Bruck,4,khussey
-org.eclipse.uml2.uml,183817,James Bruck,32,khussey
-org.eclipse.uml2.uml.ecore.exporter,183817,James Bruck,48,khussey
-org.eclipse.uml2.uml.ecore.exporter,172503,James Bruck,17,khussey
-org.eclipse.uml2.uml.ecore.importer,172503,James Bruck,9,khussey
-org.eclipse.uml2.uml,178250,James Bruck,144,khussey
-org.eclipse.uml2.uml.ecore.exporter,172503,James Bruck,2,khussey
-org.eclipse.uml2.uml,186917,James Bruck,248,khussey
-org.eclipse.uml2.uml,191053,James Bruck,470,khussey
-org.eclipse.uml2-feature,191053,James Bruck,1,khussey
-org.eclipse.uml2.sdk-feature,191053,James Bruck,1,khussey
-org.eclipse.uml2.common,193276,John Yeung,2,khussey
-org.eclipse.uml2.common,195417,James Bruck,11,khussey
-org.eclipse.uml2.uml,196070,James Bruck,31,khussey
-
-Section 3 (Third Party Software),,,,
-
-Name,Location,License,Usage,
diff --git a/uml2/index.php b/uml2/index.php
deleted file mode 100644
index 1cdecec..0000000
--- a/uml2/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: http://www.eclipse.org/modeling/mdt/?project=uml2"); ?>

diff --git a/uml2/news/release-notes1.0.1.php b/uml2/news/release-notes1.0.1.php
deleted file mode 100644
index 07a8be0..0000000
--- a/uml2/news/release-notes1.0.1.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&version=1.0.1"); ?>
\ No newline at end of file
diff --git a/uml2/news/release-notes1.0.2.php b/uml2/news/release-notes1.0.2.php
deleted file mode 100644
index 4118c1f..0000000
--- a/uml2/news/release-notes1.0.2.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&version=1.0.2"); ?>
\ No newline at end of file
diff --git a/uml2/news/release-notes1.0.3.php b/uml2/news/release-notes1.0.3.php
deleted file mode 100644
index 78671e0..0000000
--- a/uml2/news/release-notes1.0.3.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&version=1.0.3"); ?>
\ No newline at end of file
diff --git a/uml2/news/release-notes1.1.0.php b/uml2/news/release-notes1.1.0.php
deleted file mode 100644
index 825f5fb..0000000
--- a/uml2/news/release-notes1.1.0.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=uml2&version=1.1.0"); ?>
\ No newline at end of file
diff --git a/uml2/project-info/contributors.html b/uml2/project-info/contributors.html
deleted file mode 100644
index 64f83a8..0000000
--- a/uml2/project-info/contributors.html
+++ /dev/null
@@ -1,4 +0,0 @@
-<p>
-  <li>Kenn Hussey</li>
-  <li>James Bruck</li>
-</p>
\ No newline at end of file
diff --git a/uml2/project-info/overview.html b/uml2/project-info/overview.html
deleted file mode 100644
index 1ad5365..0000000
--- a/uml2/project-info/overview.html
+++ /dev/null
@@ -1,15 +0,0 @@
-<p>
-UML2 is an EMF-based implementation of the <a href="http://www.omg.org/technology/documents/modeling_spec_catalog.htm#UML">Unified Modeling Language (UML<sup>TM</sup>) 2.x</a> OMG metamodel for the Eclipse platform.
-</p>
-<p>
-The objectives of the UML2 component are to provide
-<ul>
-  <li>a useable implementation of the UML metamodel to support the development of modeling tools</li>
-  <li>a common XMI schema to facilitate interchange of semantic models</li>
-  <li>test cases as a means of validating the specification</li>
-  <li>validation rules as a means of defining and enforcing levels of compliance</li>
-</ul>
-</p>
-<p>
-For more details on UML2, see the <a href="http://wiki.eclipse.org/MDT-UML2">Wiki</a>.
-</p>
diff --git a/uml2/project-info/plan.xml b/uml2/project-info/plan.xml
deleted file mode 100644
index 54bf17d..0000000
--- a/uml2/project-info/plan.xml
+++ /dev/null
@@ -1,199 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
-<?xml-stylesheet type="text/xsl" href="http://www.eclipse.org/projects/project-plan.xsl"?>
-<plan plan-format="1.0" xmlns="http://www.eclipse.org/project/plan" xmlns:html="http://www.w3.org/1999/xhtml"
-      name="MDT-UML2">
-   <release projectid="modeling.mdt" version="3.0.0"/>
-   <introduction>
-     <html:div>
-<html:p>
-This document lays out the feature and API set for the
-next release of the Eclipse UML2 API (MDT UML2)
-Project, version 3.0.0. This project plan inherits from the Modeling
-Project Plan, which should be referenced when consulting this
-individual project plan.
-</html:p><html:p>
-<html:i><html:b>Note</html:b> that, the next version of the UML2 API will be based on the latest version of the  UML&#174; 2.2
- specification from the OMG<html:sup>TM</html:sup>.  The changes to the specification involve API breaking changes to the UML2 API
-thereby requiring the major version to be increased to <html:b>3.0.0</html:b></html:i>
-</html:p>
-     </html:div>
-   </introduction>
-   <release_deliverables>
-     <html:div>
-The release deliverables have the same form as is found in most Eclipse projects, namely:
-<html:ul>
-<html:li>MDT UML2 source code release, available as versions tagged "R3_0" in the project's CVS repository.</html:li>
-<html:li>MDT UML2 SDK (includes runtime, sources, examples, and documentation) (downloadable and update site).</html:li>
-<html:li>MDT UML2 runtime binary distribution (downloadable and update site).</html:li>
-<html:li>MDT UML2 stand-alone binary distribution (downloadable).</html:li>
-<html:li>MDT UML2 tests (downloadable)</html:li>
-</html:ul>
-     </html:div>
-   </release_deliverables>
-   <release_milestones>
-      <preamble>
-         <html:div>
-Release milestone occurring at roughly 6 week intervals and follow the
-Platform milestone releases by approximately 1 week; that is, until the
-final 3.5 release of the Platform, upon which MDT UML2 and other projects
-will release simultaneously. As MDT UML2 is a dependency of numerous
-other projects, MDT UML2 will deliver its milestones within one week of
-the Eclipse Platform. It is anticipated that MDT UML2 will synchronize its
-milestones with the Galileo milestone schedule.
-         </html:div>
-      </preamble>
-<milestone date="08/13/2008" milestone="M1"></milestone>
-<milestone date="09/24/2008" milestone="M2"></milestone>
-<milestone date="11/05/2008" milestone="M3"></milestone>
-<milestone date="12/17/2008" milestone="M4"></milestone>
-<milestone date="02/03/2009" milestone="M5"></milestone>
-<milestone date="03/16/2009" milestone="M6"><html:div>API freeze</html:div></milestone>
-<milestone date="05/04/2009" milestone="M7"><html:div>Feature Freeze</html:div></milestone>
-<milestone date="05/18/2009" milestone="RC1"></milestone>
-<milestone date="05/25/2009" milestone="RC2"></milestone>
-<milestone date="06/01/2009" milestone="RC3"></milestone>
-<milestone date="06/08/2009" milestone="RC4"></milestone>
-<milestone date="06/15/2009" milestone="RC5"></milestone>
-<milestone date="06/28/2009" milestone="3.0.0"></milestone>
-      <postamble><html:div>
-MDT UML2 will produce maintenance releases to align with the Ganymede SR
-releases, that includes the Eclipse Platform 3.4.1 and 3.4.2 releases.
-MDT UML2 may produce interim maintenance releases in addition to these in
-order to satisfy clients requests.
-<html:ul>
-  <html:li>Friday, September 26, 2008 - MDT UML2 2.2.1 maintenance release (Ganymede Service Release 1)</html:li>
-  <html:li>Friday, February 27, 2009 - MDT UML2 2.2.2 maintenance release (Ganymede Service Release 2)</html:li>
-  <html:li>A list of issues indicated for the 2.2.x maintenance stream can be found in
-      bugzilla, or by using links on maintenance stream build pages.</html:li>
-</html:ul> 
-      </html:div></postamble>
-   </release_milestones>
-   <target_environments>
-     <html:div>
-        In order to remain current, each Eclipse release targets reasonably
-        current versions of the underlying operating environments. The Eclipse
-        Unified Modeling Language (MDT UML2) project depends upon on the
-        Platform and other projects, which are mostly "pure" Java. The 3.5
-        release of the Eclipse Platform Project is written and compiled
-        against version 1.4 of the Java Platform APIs, and targeted to run on
-        version 1.4 of the Java Runtime Environment, Standard Edition. MDT UML2
-        will target the same Java version as EMF, which currently requires
-        Java 5. Eclipse Platform SDK 3.5 will be tested and validated on a
-        number of reference platforms. MDT UML2 will be tested and validated
-        against a subset of those listed for the platform.
-     </html:div>
-     <internationalization>
-          <html:div>
-The Eclipse Platform is designed as the basis
-for internationalized products. The user interface elements provided
-by the Eclipse SDK components, including dialogs and error messages,
-are externalized. The English strings are provided as the default
-resource bundles. As a result, the MDT UML2
-project will provide English strings in its default bundles and be
-localized to a subset of those locales offered by the Platform. This
-plan will be updated to indicate which locales will be provided and
-the time frame for availability.
-          </html:div>
-     </internationalization>
-   </target_environments>
-   <compatibility_with_previous_releases>
-       <html:div>
-Compatibility of Release 3.0: The MDT UML2 project
-will be developed in parallel, and released simultaneously, with the
-following projects. As stated above, each milestone release of the
-MDT UML2 project will be compatible with the
-corresponding milestones for each of these projects, and delivered the
-appropriate offset.
-<html:ul>
-    <html:li>Eclipse Platform SDK version 3.5</html:li>
-    <html:li>Eclipse Modeling Framework (EMF) version 2.5</html:li>
- </html:ul>
-Therefore, the MDT UML2 initial release will be
-compatible with these versions and will publish binary and source
-compatibilities with migration guides on subsequent releases.
-       </html:div>
-   </compatibility_with_previous_releases>
-   <themes_and_priorities>
-     <preamble>
-         <html:div>
-A list of project requirements and agreed upon
-implementation time frames is found in this document. For the
-milestones listed in this document, a set of overall themes is used
-to indicate what major set of functionalities is to be concentrated
-on for each. These themes are presented below, while the requirements
-document and associated Bugzilla entries are left to those wanting
-more detailed information on each.
-         </html:div>
-     </preamble>
-        <theme name="Eclipse 3.5 / EMF 2.5 Compatibility">
-            <description>
-                <html:div>
-The MDT UML2 project will maintain currency with its
-dependencies, in particular advances in the EMF project.
-                </html:div>
-            </description>
-            <committed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Release+Currency&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </committed>
-            <proposed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Release+Currency&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;target_milestone=3.0.0&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </proposed>
-            <deferred
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Release+Currency&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-">
-            </deferred>
-        </theme>
-        
-        
-        <theme name="UML 2.2 Compliance">
-            <description>
-                <html:div>
-As an implementation of the OMG's UML 2.2 specification,
-the MDT UML2 project will maintain currency with the revised 2.2
-specification.
-                </html:div>
-            </description>
-
-           <committed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Compliance&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </committed>
-            <proposed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Compliance&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;target_milestone=3.0.0&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </proposed>
-            <deferred
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Compliance&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-">
-            </deferred>
-           
-        </theme>     
-   
-        <theme name="Community Support">
-            <description>
-                <html:div>
-The UML2 component is committed to supporting the community by addressing issues raised by the community.
-                </html:div>
-            </description>
-                    
-	    <committed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Community+Support&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </committed>
-            <proposed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Community+Support&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;target_milestone=3.0.0&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </proposed>
-            <deferred
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Community+Support&amp;classification=Modeling&amp;product=MDT&amp;component=UML2&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-">
-            </deferred>
-           
-        </theme>     
-  
-
-   </themes_and_priorities>
-   <appendix name="Legal Notices">
-        <html:div>
-<html:ul>
-<html:li>Java is a trademark or a registered trademark of Sun Microsystems, Inc.</html:li>
-<html:li>UML and OMG are trademarks or registered trademark of the Object Management Group<html:sup>TM</html:sup>, Inc.</html:li>
-<html:li>All other products or company names are mentioned for identification purposes only, and
-    may be trademarks or service marks of their respective owners.</html:li>
-</html:ul>
-        </html:div>
-   </appendix>
-</plan>
\ No newline at end of file
diff --git a/uml2/project-info/project-page-paragraph.html b/uml2/project-info/project-page-paragraph.html
deleted file mode 100644
index b36f6b7..0000000
--- a/uml2/project-info/project-page-paragraph.html
+++ /dev/null
@@ -1 +0,0 @@
-<p>UML2 is an EMF-based implementation of the UML<sup>TM</sup> 2.x metamodel for the Eclipse platform.</p>
\ No newline at end of file
diff --git a/uml2tools/.cvsignore b/uml2tools/.cvsignore
deleted file mode 100644
index 81662cc..0000000
--- a/uml2tools/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-downloads
\ No newline at end of file
diff --git a/uml2tools/build/.cvsignore b/uml2tools/build/.cvsignore
deleted file mode 100644
index 79eb93b..0000000
--- a/uml2tools/build/.cvsignore
+++ /dev/null
@@ -1 +0,0 @@
-.htaccess
\ No newline at end of file
diff --git a/uml2tools/build/_common.php b/uml2tools/build/_common.php
deleted file mode 100644
index 80c60e9..0000000
--- a/uml2tools/build/_common.php
+++ /dev/null
@@ -1,27 +0,0 @@
-<?php
-require_once ("../../../includes/buildServer-common.php");
-
-$options = array (
-	"BaseBuilderBranch" => "R35_M7",
-
-	"BranchAndJDK" => array (
-		"emft.eclipse.org=------------,------------",
-		"0.9.0=HEAD,/opt/sun-java2-5.0",
-		"0.7.2=R0_7_0_Maintenance,/opt/sun-java2-5.0",
-		"0.8.1=R0_8_0_Maintenance,/opt/sun-java2-5.0",
-
-
-		"build.eclipse.org=------------,------------",
-		"0.9.0=HEAD,/opt/public/common/ibm-java2-ppc-50",
-		"0.7.2=R0_7_0_Maintenance,/opt/public/common/ibm-java2-ppc-50",
-		"0.8.1=R0_8_0_Maintenance,/opt/public/common/ibm-java2-ppc-50"
-	),
-
-	"Mapfile_Rule_Default" => 1, // 0: "Use Map, No Tagging=use-false" or 1:"Generate Map, No Tagging=gen-false"
-
-	"EmailDefault" => "michael.golubev@borland.com", // prefil email contact box with comma-sep'd list
-
-	"Users" => array ("mgolubev","mgolubev",null) /* build user, eclipse cvs user, IES cvs user */
-);
-
-?>
diff --git a/uml2tools/build/clean.php b/uml2tools/build/clean.php
deleted file mode 100755
index e98dbf0..0000000
--- a/uml2tools/build/clean.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/clean-common.php"); ?>
diff --git a/uml2tools/build/index.php b/uml2tools/build/index.php
deleted file mode 100755
index 912d64d..0000000
--- a/uml2tools/build/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/build-common.php"); ?>
diff --git a/uml2tools/build/promo.php b/uml2tools/build/promo.php
deleted file mode 100755
index 3d5b264..0000000
--- a/uml2tools/build/promo.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php require_once ("_common.php"); require_once ($_SERVER['DOCUMENT_ROOT'] . "/modeling/build/promo-common.php"); ?>
diff --git a/uml2tools/eclipse-project-ip-log.csv b/uml2tools/eclipse-project-ip-log.csv
deleted file mode 100644
index bf833b2..0000000
--- a/uml2tools/eclipse-project-ip-log.csv
+++ /dev/null
@@ -1,43 +0,0 @@
-Section 1 (Committers),,,,
-
-dev.eclise.org Login,,,,
-mgolubev,,,,
-
-Section 2 (Developers),,,,
-
-Component,Bug #,Contributor,Size,Committer
-UML2Tools,162934,richard.gronback@borland.com,36511,mgolubev
-UML2Tools,162944,richard.gronback@borland.com,10098,mgolubev
-UML2Tools,163932,sgribovsky@borland.com,101302,mgolubev
-UML2Tools,164937,sgribovsky@borland.com,88598,mgolubev
-UML2Tools,164937,sgribovsky@borland.com,4273,mgolubev
-UML2Tools,166353,sgribovsky@borland.com,54389,mgolubev
-UML2Tools,167102,sgribovsky@borland.com,131076,mgolubev
-UML2Tools,167840,sgribovsky@borland.com,163946,mgolubev
-UML2Tools,167876,sgribovsky@borland.com,1410,mgolubev
-UML2Tools,167876,sgribovsky@borland.com,1157,mgolubev
-UML2Tools,169977,sgribovsky@borland.com,5032,mgolubev
-UML2Tools,171236,sgribovsky@borland.com,146658,mgolubev
-UML2Tools,161556,tatiana.fesenko@borland.com,710965,mgolubev
-UML2Tools,161873,tatiana.fesenko@borland.com,175918,mgolubev
-UML2Tools,166565,tatiana.fesenko@borland.com,174037,mgolubev
-UML2Tools,166565,tatiana.fesenko@borland.com,130398,mgolubev
-UML2Tools,167464,tatiana.fesenko@borland.com,42235,mgolubev
-UML2Tools,167879,tatiana.fesenko@borland.com,33328,mgolubev
-UML2Tools,171046,tatiana.fesenko@borland.com,589929,mgolubev
-UML2Tools,171235,tatiana.fesenko@borland.com,312772,mgolubev
-UML2Tools,171237,tatiana.fesenko@borland.com,11415,mgolubev
-UML2Tools,171251,tatiana.fesenko@borland.com,289735,mgolubev
-UML2Tools,171256,tatiana.fesenko@borland.com,933992,mgolubev
-UML2Tools,174289,tatiana.fesenko@borland.com,16466,mgolubev
-UML2Tools,176988,tatiana.fesenko@borland.com,4478,mgolubev
-UML2Tools,182109,tatiana.fesenko@borland.com,10614,mgolubev
-UML2Tools,186340,tatiana.fesenko@borland.com,37634,mgolubev
-UML2Tools,188249,tatiana.fesenko@borland.com,2290,mgolubev
-UML2Tools,188254,tatiana.fesenko@borland.com,11721,mgolubev
-UML2Tools,188325,tatiana.fesenko@borland.com,6041,mgolubev
-UML2Tools,167057,Yury.Chernikov@borland.com,157680,mgolubev
-
-Section 3 (Third Party Software),,,,
-
-Name,Location,License,Usage,
diff --git a/uml2tools/index.php b/uml2tools/index.php
deleted file mode 100644
index 86e8ba6..0000000
--- a/uml2tools/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: http://www.eclipse.org/modeling/mdt/?project=uml2tools"); ?>

diff --git a/uml2tools/project-info/contributors.html b/uml2tools/project-info/contributors.html
deleted file mode 100644
index c58ccd0..0000000
--- a/uml2tools/project-info/contributors.html
+++ /dev/null
@@ -1,3 +0,0 @@
-<p>
-  <li>Michael Golubev</li>
-</p>
\ No newline at end of file
diff --git a/uml2tools/project-info/overview.html b/uml2tools/project-info/overview.html
deleted file mode 100644
index 9a5eabc..0000000
--- a/uml2tools/project-info/overview.html
+++ /dev/null
@@ -1,9 +0,0 @@
-<p>
-UML2 Tools is a set of GMF-based editors for viewing and editing UML models; it is focused on (eventual) automatic generation of editors for all UML diagram types.
-</p>
-<p>
-The diagrams that will be initially supported (as part of the first release) include class, component, state machine, and activity diagrams. Please see the project plan(s) for details.
-</p>
-<p>
-For more details on UML2 Tools, see the <a href="http://wiki.eclipse.org/MDT-UML2Tools">Wiki</a>.
-</p>
diff --git a/uml2tools/project-info/plan.xml b/uml2tools/project-info/plan.xml
deleted file mode 100644
index fd05811..0000000
--- a/uml2tools/project-info/plan.xml
+++ /dev/null
@@ -1,165 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
-<?xml-stylesheet type="text/xsl" href="project-plan-render.xsl"?>
-<plan plan-format="1.0" xmlns="http://www.eclipse.org/project/plan" xmlns:html="http://www.w3.org/1999/xhtml"
-      name="UML2Tools">
-   <release projectid="modeling.mdt.uml2tools" version="0.9.0"/>
-   <introduction>
-     <html:div>
-<html:p>
-This document lays out the feature and API set for the
-first release of the UML2 Tools Project, version 0.9.0. This project plan inherits from the Modeling
-Project Plan, which should be referenced when consulting this
-individual project plan.
-</html:p>
-     </html:div>
-   </introduction>
-   <release_deliverables>
-     <html:div>
-The release deliverables have the same form as is found in most Eclipse projects, namely:
-<html:ul>
-<html:li>UML2Tools source code release, available in the project's CVS repository.</html:li>
-<html:li>UML2Tools SDK (includes runtime, sources, codegen and examples) (downloadable and update site).</html:li>
-<html:li>UML2Tools runtime binary distribution (downloadable and update site).</html:li>
-<html:li>UML2Tools samples (downloadable)</html:li>
-</html:ul>
-     </html:div>
-   </release_deliverables>
-   <release_milestones>
-      <preamble>
-         <html:div>
-Release milestone occurring at roughly 6 week intervals and follow the
-Platform milestone releases by approximately 1 week; that is, until the
-final 3.5 release of the Platform, upon which UML2Tools and other projects
-will release simultaneously. As UML2Tools is a dependency of numerous
-other projects, MDT OCL will deliver its milestones within two weeks of
-the Eclipse Platform. It is anticipated that UML2Tools will synchronize its
-milestones with the Galileo milestone schedule.
-         </html:div>
-      </preamble>
-<milestone date="10/03/2008" milestone="M2"></milestone>
-<milestone date="11/14/2008" milestone="M3"></milestone>
-<milestone date="01/05/2009" milestone="M4"></milestone>
-<milestone date="02/10/2009" milestone="M5"></milestone>
-<milestone date="03/19/2009" milestone="M6"><html:div>API freeze</html:div></milestone>
-<milestone date="05/06/2009" milestone="M7"><html:div>Feature Freeze</html:div></milestone>
-<milestone date="05/20/2009" milestone="RC1"></milestone>
-<milestone date="05/27/2009" milestone="RC2"></milestone>
-<milestone date="06/03/2009" milestone="RC3"></milestone>
-<milestone date="06/10/2009" milestone="RC4"></milestone>
-<milestone date="06/17/2009" milestone="RC5"></milestone>
-<milestone date="06/26/2009" milestone="0.9.0"></milestone>
-      <postamble><html:div>
-UML2Tools will produce maintenance releases to align with the Ganymede SR
-releases, that includes the Eclipse Platform 3.4.1 and 3.4.2 releases.
-UML2Tools may produce interim maintenance releases in addition to these in
-order to satisfy clients requests.
-<html:ul>
-  <html:li>Friday, September 26, 2008 - UML2Tools 0.8.2 maintenance release (Ganymede Service Release 1)</html:li>
-  <html:li>Friday, February 27, 2009 - UML2Tools 0.8.3 maintenance release (Ganymede Service Release 2)</html:li>
-</html:ul> 
-      </html:div></postamble>
-   </release_milestones>
-   <target_environments>
-     <html:div>
-        In order to remain current, each Eclipse release targets reasonably
-        current versions of the underlying operating environments. The Eclipse
-        UML2Tools project depends upon on the
-        Platform and other projects, which are mostly "pure" Java<html:sup>TM</html:sup>. The 3.5
-        release of the Eclipse Platform Project is written and compiled
-        against version 1.4 of the Java Platform APIs, and targeted to run on
-        version 1.4 of the Java Runtime Environment, Standard Edition. UML2Tools 
-        will target the same Java version as EMF, EMFT, GMF, OCL and UML2, which currently require
-        Java 5. Eclipse Platform SDK 3.5 will be tested and validated on a
-        number of reference platforms. UML2Tools will be tested and validated
-        against a subset of those listed for the platform.
-     </html:div>
-     <internationalization>
-          <html:div>
-The Eclipse Platform is designed as the basis
-for internationalized products. The user interface elements provided
-by the Eclipse SDK components, including dialogs and error messages,
-are externalized. The English strings are provided as the default
-resource bundles. As a result, the UML2Tools 
-project will provide English strings in its default bundles and be
-localized to a subset of those locales offered by the Platform. This
-plan will be updated to indicate which locales will be provided and
-the time frame for availability.
-          </html:div>
-     </internationalization>
-   </target_environments>
-   <compatibility_with_previous_releases>
-       <html:div>
-Compatibility of Release 0.9.0: The UML2Tools project
-will be developed in parallel, and released simultaneously, with the
-following projects. As stated above, each milestone release of the
-UML2Tools project will be compatible with the
-corresponding milestones for each of these projects, and delivered the
-appropriate offset.
-<html:ul>
-    <html:li>Eclipse Platform SDK version 3.5</html:li>
-    <html:li>Eclipse Modeling Framework (EMF) version 2.5</html:li>
-    <html:li>Model Development Tools (MDT) UML2 version 3.0.0</html:li>
-    <html:li>Model Development Tools (MDT) OCL version 1.3</html:li>
-	<html:li>Eclipse Graphic Modeling Framework version 2.2</html:li>
-</html:ul>
-Therefore, the UML2Tools initial release will be
-compatible with these versions and will publish binary and source
-compatibilities with migration guides on subsequent releases.
-       </html:div>
-   </compatibility_with_previous_releases>
-   <themes_and_priorities>
-     <preamble>
-         <html:div>
-A list of project requirements and agreed upon
-implementation time frames is found in this document. For the
-milestones listed in this document, a set of overall themes is used
-to indicate what major set of functionalities is to be concentrated
-on for each. These themes are presented below, while the requirements
-document and associated Bugzilla entries are left to those wanting
-more detailed information on each.
-         </html:div>
-     </preamble>
-        <theme name="Compliance">
-            <description>
-                <html:div>
-The UML2Tools project will implement the diagram notation addressed by OMG's UML2 2.1.1 specification.
-                </html:div>
-            </description>
-            <committed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Compliance&amp;classification=Modeling&amp;product=MDT&amp;component=UML2Tools&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </committed>
-            <proposed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Compliance&amp;classification=Modeling&amp;product=MDT&amp;component=UML2Tools&amp;target_milestone=1.3.0&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </proposed>
-            <deferred
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Compliance&amp;classification=Modeling&amp;product=MDT&amp;component=UML2Tools&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-">
-            </deferred>
-        </theme>
-        <theme name="Usability">
-            <description>
-                <html:div>
-This theme addresses the need for usability improvements for basic UML2 diagrams generated with GMF.
-                </html:div>
-            </description>
-            <committed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Usability&amp;classification=Modeling&amp;product=MDT&amp;component=UML2Tools&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </committed>
-            <proposed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Usability&amp;classification=Modeling&amp;product=MDT&amp;component=UML2Tools&amp;target_milestone=1.3.0&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo%2B">
-            </proposed>
-            <deferred
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;status_whiteboard_type=substring&amp;status_whiteboard=Usability&amp;classification=Modeling&amp;product=UML2Tools&amp;component=UML2Tools&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-">
-            </deferred>
-        </theme>
-   </themes_and_priorities>
-   <appendix name="Legal Notices">
-        <html:div>
-<html:ul>
-<html:li>Java is a trademark or a registered trademark of Sun Microsystems, Inc.</html:li>
-<html:li>OCL and OMG are trademarks or registered trademark of the Object Management Group<html:sup>TM</html:sup>, Inc.</html:li>
-<html:li>All other products or company names are mentioned for identification purposes only, and
-    may be trademarks or service marks of their respective owners.</html:li>
-</html:ul>
-        </html:div>
-   </appendix>
-</plan>
diff --git a/uml2tools/project-info/project-page-paragraph.html b/uml2tools/project-info/project-page-paragraph.html
deleted file mode 100644
index 4323202..0000000
--- a/uml2tools/project-info/project-page-paragraph.html
+++ /dev/null
@@ -1 +0,0 @@
-<p>UML2 Tools is a set of GMF-based editors for viewing and editing UML models; it is focused on (eventual) automatic generation of editors for all UML diagram types.</p>
\ No newline at end of file
diff --git a/updates/.cvsignore b/updates/.cvsignore
deleted file mode 100644
index 71afd36..0000000
--- a/updates/.cvsignore
+++ /dev/null
@@ -1,3 +0,0 @@
-features
-plugins
-md5s
\ No newline at end of file
diff --git a/updates/index.php b/updates/index.php
deleted file mode 100644
index afe37c4..0000000
--- a/updates/index.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php 
-if ($_SERVER["SERVER_NAME"] != "www.eclipse.org") {
-	header("Location: http://www.eclipse.org/modeling/mdt/updates/");
-}
-require_once ("../../includes/buildServer-common.php");
-require($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/updates-common.php");
-
-$PRS = array(
-	"EMF (XSD)" => "modeling/emf"
-);
-
-function notes()
-{
-	print "<p><i style=\"color:red\"><b>NOTE:</b> For XSD, use the <a href=\"/modeling/emf/updates/\">EMF Update Site</a>.</i></p>\n";
-}
-
-update_manager("MDT", "Eclipse Modeling", $PRS, true);
-?>
diff --git a/updates/interim/site-galileo.xml b/updates/interim/site-galileo.xml
deleted file mode 100644
index a49f387..0000000
--- a/updates/interim/site-galileo.xml
+++ /dev/null
@@ -1,81 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<site pack200="true" digestURL="http://download.eclipse.org/modeling/mdt/updates/interim/" mirrorsURL="http://www.eclipse.org/modeling/download.php?file=/modeling/mdt/updates/interim/site.xml&amp;format=xml">
-	<!-- to track downloads, use absolute paths instead: http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/updates/ ... -->
-
-	<description url="http://download.eclipse.org/modeling/mdt/updates/interim/site.xml">
-	To install these plugins, point Eclipse at this site. 
-	</description>
-
-
-	<!-- UML2 3.0.0 I200904241604 -->
-	<category-def label="MDT UML2 SDK 3.0.0 I200904241604" name="MDT UML2 SDK 3.0.0 I200904241604">
-		<description>
-MDT UML2 SDK 3.0.0 I200904241604: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.doc" version="3.0.0.v200901161500" url="features/org.eclipse.uml2.doc_3.0.0.v200901161500.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0 I200904241604"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples.source" version="3.0.0.v20090407-1910" url="features/org.eclipse.uml2.examples.source_3.0.0.v20090407-1910.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0 I200904241604"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples" version="3.0.0.v20090407-1910" url="features/org.eclipse.uml2.examples_3.0.0.v20090407-1910.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0 I200904241604"/>
-	</feature>
-	<feature id="org.eclipse.uml2.sdk" version="3.0.0.v200904241430" url="features/org.eclipse.uml2.sdk_3.0.0.v200904241430.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0 I200904241604"/>
-	</feature>
-	<feature id="org.eclipse.uml2.source" version="3.0.0.v200904241430" url="features/org.eclipse.uml2.source_3.0.0.v200904241430.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0 I200904241604"/>
-	</feature>
-	<feature id="org.eclipse.uml2" version="3.0.0.v200904241430" url="features/org.eclipse.uml2_3.0.0.v200904241430.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0 I200904241604"/>
-	</feature>
-
-	<!-- OCL 1.3.0 I200905191122 -->
-	<category-def label="MDT OCL SDK 1.3.0 I200905191122" name="MDT OCL SDK 1.3.0 I200905191122">
-		<description>
-MDT OCL SDK 1.3.0 I200905191122: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.emf.ocl.doc" version="1.2.1.v200901271800-108Z7w311_12382911" url="features/org.eclipse.emf.ocl.doc_1.2.1.v200901271800-108Z7w311_12382911.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples.source" version="1.3.0.v200901271800" url="features/org.eclipse.emf.ocl.examples.source_1.3.0.v200901271800.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples" version="1.3.0.v200901271800-378-9oA55V58AP8S55" url="features/org.eclipse.emf.ocl.examples_1.3.0.v200901271800-378-9oA55V58AP8S55.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.sdk" version="1.3.0.v200901271800-7_7B___6USmRNWWYkz-Wqf1qc-vC" url="features/org.eclipse.emf.ocl.sdk_1.3.0.v200901271800-7_7B___6USmRNWWYkz-Wqf1qc-vC.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.source" version="1.1.101.v200901271800-108Z7w311_12382911" url="features/org.eclipse.emf.ocl.source_1.1.101.v200901271800-108Z7w311_12382911.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl" version="1.1.101.v200901271800-108Z7w311_12382911" url="features/org.eclipse.emf.ocl_1.1.101.v200901271800-108Z7w311_12382911.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all.sdk" version="1.3.0.v200901271800-777A8a_0OQQgMTWlJrXh3wnZLFhf" url="features/org.eclipse.ocl.all.sdk_1.3.0.v200901271800-777A8a_0OQQgMTWlJrXh3wnZLFhf.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all" version="1.3.0.v200901271800-438Z7A_AvvCDBkKLDMKSPH2" url="features/org.eclipse.ocl.all_1.3.0.v200901271800-438Z7A_AvvCDBkKLDMKSPH2.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl.doc" version="1.3.0.v200901271800-25-8s733K357G5I33" url="features/org.eclipse.ocl.doc_1.3.0.v200901271800-25-8s733K357G5I33.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl.source" version="1.3.0.v200901271800-36-9oA55U5C6C7I98" url="features/org.eclipse.ocl.source_1.3.0.v200901271800-36-9oA55U5C6C7I98.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml.source" version="2.0.0.v200901271800-2--7w311_13121334" url="features/org.eclipse.ocl.uml.source_2.0.0.v200901271800-2--7w311_13121334.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml" version="2.0.0.v200901271800-2--7w311_13121334" url="features/org.eclipse.ocl.uml_2.0.0.v200901271800-2--7w311_13121334.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl" version="1.3.0.v200901271800-36-9oA55U5C6C7I98" url="features/org.eclipse.ocl_1.3.0.v200901271800-36-9oA55U5C6C7I98.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-
-</site>
diff --git a/updates/interim/site-ganymede.xml b/updates/interim/site-ganymede.xml
deleted file mode 100644
index 4231cdf..0000000
--- a/updates/interim/site-ganymede.xml
+++ /dev/null
@@ -1,165 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<site pack200="true" digestURL="http://download.eclipse.org/modeling/mdt/updates/interim/" mirrorsURL="http://www.eclipse.org/modeling/download.php?file=/modeling/mdt/updates/interim/site.xml&amp;format=xml">
-	<!-- to track downloads, use absolute paths instead: http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/updates/ ... -->
-
-	<description url="http://download.eclipse.org/modeling/mdt/updates/interim/site.xml">
-	To install these plugins, point Eclipse at this site. 
-	</description>
-
-
-	<!-- UML2TOOLS 0.8.0 N200806041931 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931" name="MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.8.0.v200806041931" url="features/org.eclipse.uml2.diagram.source_0.8.0.v200806041931.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.8.0.v200806041931" url="features/org.eclipse.uml2.diagram_0.8.0.v200806041931.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.8.0.v200806041931" url="features/org.eclipse.uml2tools.sdk_0.8.0.v200806041931.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.8.0.v200806041931" url="features/org.eclipse.uml2tools_0.8.0.v200806041931.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931"/>
-	</feature>
-
-	<!-- UML2TOOLS 0.8.0 I200805122110 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110" name="MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.7.100.v200805122110" url="features/org.eclipse.uml2.diagram.source_0.7.100.v200805122110.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.7.100.v200805122110" url="features/org.eclipse.uml2.diagram_0.7.100.v200805122110.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.7.1.v200805122110" url="features/org.eclipse.uml2tools.sdk_0.7.1.v200805122110.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.8.0.v200805122110" url="features/org.eclipse.uml2tools_0.8.0.v200805122110.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110"/>
-	</feature>
-
-	<!-- UML2 2.2.2 M200811061144 -->
-	<category-def label="MDT UML2 SDK 2.2.2 M200811061144" name="MDT UML2 SDK 2.2.2 M200811061144">
-		<description>
-MDT UML2 SDK 2.2.2 M200811061144: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.doc" version="2.2.0.v200805201350" url="features/org.eclipse.uml2.doc_2.2.0.v200805201350.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2 M200811061144"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples.source" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples.source_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2 M200811061144"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2 M200811061144"/>
-	</feature>
-	<feature id="org.eclipse.uml2.sdk" version="2.2.1.v200811051031" url="features/org.eclipse.uml2.sdk_2.2.1.v200811051031.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2 M200811061144"/>
-	</feature>
-	<feature id="org.eclipse.uml2.source" version="2.2.1.v200811051031" url="features/org.eclipse.uml2.source_2.2.1.v200811051031.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2 M200811061144"/>
-	</feature>
-	<feature id="org.eclipse.uml2" version="2.2.1.v200811051031" url="features/org.eclipse.uml2_2.2.1.v200811051031.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2 M200811061144"/>
-	</feature>
-
-	<!-- OCL 1.2.0 I200805131600 -->
-	<category-def label="MDT OCL SDK 1.2.0 I200805131600" name="MDT OCL SDK 1.2.0 I200805131600">
-		<description>
-MDT OCL SDK 1.2.0 I200805131600: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.emf.ocl.doc" version="1.2.0.v200805130238-108Y7w311916241349" url="features/org.eclipse.emf.ocl.doc_1.2.0.v200805130238-108Y7w311916241349.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples.source" version="1.2.0.v200805130238" url="features/org.eclipse.emf.ocl.examples.source_1.2.0.v200805130238.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples" version="1.2.0.v200805130238-35-9oA55S5J8D5ADS" url="features/org.eclipse.emf.ocl.examples_1.2.0.v200805130238-35-9oA55S5J8D5ADS.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.sdk" version="1.2.0.v200805130238-787C_7_5SSkONiTHfxo8TnpDDvCD" url="features/org.eclipse.emf.ocl.sdk_1.2.0.v200805130238-787C_7_5SSkONiTHfxo8TnpDDvCD.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.source" version="1.1.100.v200805130238-108Y7w311916241349" url="features/org.eclipse.emf.ocl.source_1.1.100.v200805130238-108Y7w311916241349.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl" version="1.1.100.v200805130238-108Y7w311916241349" url="features/org.eclipse.emf.ocl_1.1.100.v200805130238-108Y7w311916241349.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all.sdk" version="1.2.0.v200805130238-67_8Y_-NQOdLfTWFhivwhvyXAfdq" url="features/org.eclipse.ocl.all.sdk_1.2.0.v200805130238-67_8Y_-NQOdLfTWFhivwhvyXAfdq.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all" version="1.2.0.v200805130238-348Y7__AuvCDBhJTJRFQNc_" url="features/org.eclipse.ocl.all_1.2.0.v200805130238-348Y7__AuvCDBhJTJRFQNc_.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.doc" version="1.2.0.v200805041323-23-8s733I3C59379I" url="features/org.eclipse.ocl.doc_1.2.0.v200805041323-23-8s733I3C59379I.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.source" version="1.2.0.v200805130238-34-9oA55S5H7G6HBK" url="features/org.eclipse.ocl.source_1.2.0.v200805130238-34-9oA55S5H7G6HBK.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml.source" version="1.2.0.v200805130238-11-7w311916241349" url="features/org.eclipse.ocl.uml.source_1.2.0.v200805130238-11-7w311916241349.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml" version="1.2.0.v200805130238-11-7w311916241349" url="features/org.eclipse.ocl.uml_1.2.0.v200805130238-11-7w311916241349.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl" version="1.2.0.v200805130238-34-9oA55S5H7G6HBK" url="features/org.eclipse.ocl_1.2.0.v200805130238-34-9oA55S5H7G6HBK.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-
-	<!-- OCL 1.2.2 M200809101600 -->
-	<category-def label="MDT OCL SDK 1.2.2 M200809101600" name="MDT OCL SDK 1.2.2 M200809101600">
-		<description>
-MDT OCL SDK 1.2.2 M200809101600: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.emf.ocl.doc" version="1.2.1.v200807161725-108Z7w311918272836" url="features/org.eclipse.emf.ocl.doc_1.2.1.v200807161725-108Z7w311918272836.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.2 M200809101600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples.source" version="1.2.0.v200805130238" url="features/org.eclipse.emf.ocl.examples.source_1.2.0.v200805130238.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.2 M200809101600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples" version="1.2.0.v200805130238-35-9oA55S5J8D5ADS" url="features/org.eclipse.emf.ocl.examples_1.2.0.v200805130238-35-9oA55S5J8D5ADS.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.2 M200809101600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.sdk" version="1.2.2.v200808291106-787C_I_5SYmONrWZj3n6h4s3_vCD" url="features/org.eclipse.emf.ocl.sdk_1.2.2.v200808291106-787C_I_5SYmONrWZj3n6h4s3_vCD.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.2 M200809101600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.source" version="1.1.101.v200808291106-108Z7w3119193_2217" url="features/org.eclipse.emf.ocl.source_1.1.101.v200808291106-108Z7w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.2 M200809101600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl" version="1.1.101.v200808291106-108Z7w3119193_2217" url="features/org.eclipse.emf.ocl_1.1.101.v200808291106-108Z7w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.2 M200809101600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all.sdk" version="1.2.2.v200808291106-67_8h_-NRUdLobpIgbsz0o73WJsc" url="features/org.eclipse.ocl.all.sdk_1.2.2.v200808291106-67_8h_-NRUdLobpIgbsz0o73WJsc.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.2 M200809101600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all" version="1.2.2.v200808291106-348d7__FvvCDBhJcPSOdMQ8" url="features/org.eclipse.ocl.all_1.2.2.v200808291106-348d7__FvvCDBhJcPSOdMQ8.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.2 M200809101600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.doc" version="1.2.1.v200807161725-2308s733I3E5B4B8F" url="features/org.eclipse.ocl.doc_1.2.1.v200807161725-2308s733I3E5B4B8F.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.2 M200809101600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.source" version="1.2.2.v200808291106-3429oA55S5N9A8UED" url="features/org.eclipse.ocl.source_1.2.2.v200808291106-3429oA55S5N9A8UED.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.2 M200809101600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml.source" version="1.2.2.v200808291106-1117w3119193_2217" url="features/org.eclipse.ocl.uml.source_1.2.2.v200808291106-1117w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.2 M200809101600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml" version="1.2.2.v200808291106-1117w3119193_2217" url="features/org.eclipse.ocl.uml_1.2.2.v200808291106-1117w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.2 M200809101600"/>
-	</feature>
-	<feature id="org.eclipse.ocl" version="1.2.2.v200808291106-3429oA55S5N9A8UED" url="features/org.eclipse.ocl_1.2.2.v200808291106-3429oA55S5N9A8UED.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.2 M200809101600"/>
-	</feature>
-
-</site>
diff --git a/updates/interim/site.xml b/updates/interim/site.xml
deleted file mode 100644
index 474e648..0000000
--- a/updates/interim/site.xml
+++ /dev/null
@@ -1,286 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<site pack200="true" digestURL="http://download.eclipse.org/modeling/mdt/updates/interim/" mirrorsURL="http://www.eclipse.org/modeling/download.php?file=/modeling/mdt/updates/interim/site.xml&amp;format=xml">
-	<!-- to track downloads, use absolute paths instead: http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/updates/ ... -->
-
-	<description url="http://download.eclipse.org/modeling/mdt/updates/interim/site.xml">
-	To install these plugins, point Eclipse at this site. 
-	</description>
-
-
-	<!-- UML2TOOLS 0.9.0 I200904061506 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.9.0 I200904061506" name="MDT UML2TOOLS SDK (Incubation) 0.9.0 I200904061506">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.9.0 I200904061506: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.9.0.v200904061506" url="features/org.eclipse.uml2.diagram.source_0.9.0.v200904061506.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0 I200904061506"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.9.0.v200904061506" url="features/org.eclipse.uml2.diagram_0.9.0.v200904061506.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0 I200904061506"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.def.source" version="0.9.0.v200904061506" url="features/org.eclipse.uml2tools.def.source_0.9.0.v200904061506.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0 I200904061506"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.def" version="0.9.0.v200904061506" url="features/org.eclipse.uml2tools.def_0.9.0.v200904061506.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0 I200904061506"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.examples" version="0.8.0.v200904061506" url="features/org.eclipse.uml2tools.examples_0.8.0.v200904061506.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0 I200904061506"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.9.0.v200904061506" url="features/org.eclipse.uml2tools.sdk_0.9.0.v200904061506.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0 I200904061506"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.9.0.v200904061506" url="features/org.eclipse.uml2tools_0.9.0.v200904061506.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0 I200904061506"/>
-	</feature>
-
-	<!-- UML2TOOLS 0.8.0 N200806041931 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931" name="MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.8.0.v200806041931" url="features/org.eclipse.uml2.diagram.source_0.8.0.v200806041931.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.8.0.v200806041931" url="features/org.eclipse.uml2.diagram_0.8.0.v200806041931.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.8.0.v200806041931" url="features/org.eclipse.uml2tools.sdk_0.8.0.v200806041931.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.8.0.v200806041931" url="features/org.eclipse.uml2tools_0.8.0.v200806041931.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 N200806041931"/>
-	</feature>
-
-	<!-- UML2TOOLS 0.8.1 M200807180711 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.8.1 M200807180711" name="MDT UML2TOOLS SDK (Incubation) 0.8.1 M200807180711">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.8.1 M200807180711: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.8.1.v200807180711" url="features/org.eclipse.uml2.diagram.source_0.8.1.v200807180711.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1 M200807180711"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.8.1.v200807180711" url="features/org.eclipse.uml2.diagram_0.8.1.v200807180711.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1 M200807180711"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.examples" version="0.8.0.v200807180711" url="features/org.eclipse.uml2tools.examples_0.8.0.v200807180711.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1 M200807180711"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.8.0.v200807180711" url="features/org.eclipse.uml2tools.sdk_0.8.0.v200807180711.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1 M200807180711"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.8.1.v200807180711" url="features/org.eclipse.uml2tools_0.8.1.v200807180711.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1 M200807180711"/>
-	</feature>
-
-	<!-- UML2TOOLS 0.8.0 I200805122110 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110" name="MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.7.100.v200805122110" url="features/org.eclipse.uml2.diagram.source_0.7.100.v200805122110.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.7.100.v200805122110" url="features/org.eclipse.uml2.diagram_0.7.100.v200805122110.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.7.1.v200805122110" url="features/org.eclipse.uml2tools.sdk_0.7.1.v200805122110.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.8.0.v200805122110" url="features/org.eclipse.uml2tools_0.8.0.v200805122110.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0 I200805122110"/>
-	</feature>
-
-	<!-- UML2 3.0.0 I200904241604 -->
-	<category-def label="MDT UML2 SDK 3.0.0 I200904241604" name="MDT UML2 SDK 3.0.0 I200904241604">
-		<description>
-MDT UML2 SDK 3.0.0 I200904241604: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.doc" version="3.0.0.v200901161500" url="features/org.eclipse.uml2.doc_3.0.0.v200901161500.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0 I200904241604"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples.source" version="3.0.0.v20090407-1910" url="features/org.eclipse.uml2.examples.source_3.0.0.v20090407-1910.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0 I200904241604"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples" version="3.0.0.v20090407-1910" url="features/org.eclipse.uml2.examples_3.0.0.v20090407-1910.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0 I200904241604"/>
-	</feature>
-	<feature id="org.eclipse.uml2.sdk" version="3.0.0.v200904241430" url="features/org.eclipse.uml2.sdk_3.0.0.v200904241430.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0 I200904241604"/>
-	</feature>
-	<feature id="org.eclipse.uml2.source" version="3.0.0.v200904241430" url="features/org.eclipse.uml2.source_3.0.0.v200904241430.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0 I200904241604"/>
-	</feature>
-	<feature id="org.eclipse.uml2" version="3.0.0.v200904241430" url="features/org.eclipse.uml2_3.0.0.v200904241430.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0 I200904241604"/>
-	</feature>
-
-	<!-- UML2 2.2.2 M200811061144 -->
-	<category-def label="MDT UML2 SDK 2.2.2 M200811061144" name="MDT UML2 SDK 2.2.2 M200811061144">
-		<description>
-MDT UML2 SDK 2.2.2 M200811061144: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.doc" version="2.2.0.v200805201350" url="features/org.eclipse.uml2.doc_2.2.0.v200805201350.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2 M200811061144"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples.source" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples.source_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2 M200811061144"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2 M200811061144"/>
-	</feature>
-	<feature id="org.eclipse.uml2.sdk" version="2.2.1.v200811051031" url="features/org.eclipse.uml2.sdk_2.2.1.v200811051031.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2 M200811061144"/>
-	</feature>
-	<feature id="org.eclipse.uml2.source" version="2.2.1.v200811051031" url="features/org.eclipse.uml2.source_2.2.1.v200811051031.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2 M200811061144"/>
-	</feature>
-	<feature id="org.eclipse.uml2" version="2.2.1.v200811051031" url="features/org.eclipse.uml2_2.2.1.v200811051031.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2 M200811061144"/>
-	</feature>
-
-	<!-- OCL 1.3.0 I200905191122 -->
-	<category-def label="MDT OCL SDK 1.3.0 I200905191122" name="MDT OCL SDK 1.3.0 I200905191122">
-		<description>
-MDT OCL SDK 1.3.0 I200905191122: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.emf.ocl.doc" version="1.2.1.v200901271800-108Z7w311_12382911" url="features/org.eclipse.emf.ocl.doc_1.2.1.v200901271800-108Z7w311_12382911.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples.source" version="1.3.0.v200901271800" url="features/org.eclipse.emf.ocl.examples.source_1.3.0.v200901271800.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples" version="1.3.0.v200901271800-378-9oA55V58AP8S55" url="features/org.eclipse.emf.ocl.examples_1.3.0.v200901271800-378-9oA55V58AP8S55.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.sdk" version="1.3.0.v200901271800-7_7B___6USmRNWWYkz-Wqf1qc-vC" url="features/org.eclipse.emf.ocl.sdk_1.3.0.v200901271800-7_7B___6USmRNWWYkz-Wqf1qc-vC.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.source" version="1.1.101.v200901271800-108Z7w311_12382911" url="features/org.eclipse.emf.ocl.source_1.1.101.v200901271800-108Z7w311_12382911.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl" version="1.1.101.v200901271800-108Z7w311_12382911" url="features/org.eclipse.emf.ocl_1.1.101.v200901271800-108Z7w311_12382911.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all.sdk" version="1.3.0.v200901271800-777A8a_0OQQgMTWlJrXh3wnZLFhf" url="features/org.eclipse.ocl.all.sdk_1.3.0.v200901271800-777A8a_0OQQgMTWlJrXh3wnZLFhf.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all" version="1.3.0.v200901271800-438Z7A_AvvCDBkKLDMKSPH2" url="features/org.eclipse.ocl.all_1.3.0.v200901271800-438Z7A_AvvCDBkKLDMKSPH2.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl.doc" version="1.3.0.v200901271800-25-8s733K357G5I33" url="features/org.eclipse.ocl.doc_1.3.0.v200901271800-25-8s733K357G5I33.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl.source" version="1.3.0.v200901271800-36-9oA55U5C6C7I98" url="features/org.eclipse.ocl.source_1.3.0.v200901271800-36-9oA55U5C6C7I98.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml.source" version="2.0.0.v200901271800-2--7w311_13121334" url="features/org.eclipse.ocl.uml.source_2.0.0.v200901271800-2--7w311_13121334.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml" version="2.0.0.v200901271800-2--7w311_13121334" url="features/org.eclipse.ocl.uml_2.0.0.v200901271800-2--7w311_13121334.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-	<feature id="org.eclipse.ocl" version="1.3.0.v200901271800-36-9oA55U5C6C7I98" url="features/org.eclipse.ocl_1.3.0.v200901271800-36-9oA55U5C6C7I98.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0 I200905191122"/>
-	</feature>
-
-	<!-- OCL 1.2.3 M200901070919 -->
-	<category-def label="MDT OCL SDK 1.2.3 M200901070919" name="MDT OCL SDK 1.2.3 M200901070919">
-		<description>
-MDT OCL SDK 1.2.3 M200901070919: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.emf.ocl.doc" version="1.2.1.v200807161725-108Z7w311918272836" url="features/org.eclipse.emf.ocl.doc_1.2.1.v200807161725-108Z7w311918272836.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3 M200901070919"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples.source" version="1.2.0.v200805130238" url="features/org.eclipse.emf.ocl.examples.source_1.2.0.v200805130238.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3 M200901070919"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples" version="1.2.0.v200805130238-35-9oA55S5J8D5ADS" url="features/org.eclipse.emf.ocl.examples_1.2.0.v200805130238-35-9oA55S5J8D5ADS.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3 M200901070919"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.sdk" version="1.2.3.v200810101725-787C_M_5SamOPcTLj0rCh2o4_vCD" url="features/org.eclipse.emf.ocl.sdk_1.2.3.v200810101725-787C_M_5SamOPcTLj0rCh2o4_vCD.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3 M200901070919"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.source" version="1.1.101.v200808291106-108Z7w3119193_2217" url="features/org.eclipse.emf.ocl.source_1.1.101.v200808291106-108Z7w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3 M200901070919"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl" version="1.1.101.v200808291106-108Z7w3119193_2217" url="features/org.eclipse.emf.ocl_1.1.101.v200808291106-108Z7w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3 M200901070919"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all.sdk" version="1.2.3.v200810101725-67_8k_-NRWdNZaZIsiv0nu2bJqYd" url="features/org.eclipse.ocl.all.sdk_1.2.3.v200810101725-67_8k_-NRWdNZaZIsiv0nu2bJqYd.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3 M200901070919"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all" version="1.2.3.v200810101725-348f7__HvvCDBjJNMXObIP8" url="features/org.eclipse.ocl.all_1.2.3.v200810101725-348f7__HvvCDBjJNMXObIP8.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3 M200901070919"/>
-	</feature>
-	<feature id="org.eclipse.ocl.doc" version="1.2.1.v200807161725-2308s733I3E5B4B8F" url="features/org.eclipse.ocl.doc_1.2.1.v200807161725-2308s733I3E5B4B8F.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3 M200901070919"/>
-	</feature>
-	<feature id="org.eclipse.ocl.source" version="1.2.3.v200810101725-3439oA55T5F8H8PAB" url="features/org.eclipse.ocl.source_1.2.3.v200810101725-3439oA55T5F8H8PAB.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3 M200901070919"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml.source" version="1.2.3.v200811021759-1127w311_12182518" url="features/org.eclipse.ocl.uml.source_1.2.3.v200811021759-1127w311_12182518.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3 M200901070919"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml" version="1.2.3.v200811021759-1127w311_12182518" url="features/org.eclipse.ocl.uml_1.2.3.v200811021759-1127w311_12182518.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3 M200901070919"/>
-	</feature>
-	<feature id="org.eclipse.ocl" version="1.2.3.v200810101725-3439oA55T5F8H8PAB" url="features/org.eclipse.ocl_1.2.3.v200810101725-3439oA55T5F8H8PAB.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3 M200901070919"/>
-	</feature>
-
-	<!-- OCL 1.2.0 I200805131600 -->
-	<category-def label="MDT OCL SDK 1.2.0 I200805131600" name="MDT OCL SDK 1.2.0 I200805131600">
-		<description>
-MDT OCL SDK 1.2.0 I200805131600: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.emf.ocl.doc" version="1.2.0.v200805130238-108Y7w311916241349" url="features/org.eclipse.emf.ocl.doc_1.2.0.v200805130238-108Y7w311916241349.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples.source" version="1.2.0.v200805130238" url="features/org.eclipse.emf.ocl.examples.source_1.2.0.v200805130238.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples" version="1.2.0.v200805130238-35-9oA55S5J8D5ADS" url="features/org.eclipse.emf.ocl.examples_1.2.0.v200805130238-35-9oA55S5J8D5ADS.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.sdk" version="1.2.0.v200805130238-787C_7_5SSkONiTHfxo8TnpDDvCD" url="features/org.eclipse.emf.ocl.sdk_1.2.0.v200805130238-787C_7_5SSkONiTHfxo8TnpDDvCD.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.source" version="1.1.100.v200805130238-108Y7w311916241349" url="features/org.eclipse.emf.ocl.source_1.1.100.v200805130238-108Y7w311916241349.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl" version="1.1.100.v200805130238-108Y7w311916241349" url="features/org.eclipse.emf.ocl_1.1.100.v200805130238-108Y7w311916241349.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all.sdk" version="1.2.0.v200805130238-67_8Y_-NQOdLfTWFhivwhvyXAfdq" url="features/org.eclipse.ocl.all.sdk_1.2.0.v200805130238-67_8Y_-NQOdLfTWFhivwhvyXAfdq.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all" version="1.2.0.v200805130238-348Y7__AuvCDBhJTJRFQNc_" url="features/org.eclipse.ocl.all_1.2.0.v200805130238-348Y7__AuvCDBhJTJRFQNc_.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.doc" version="1.2.0.v200805041323-23-8s733I3C59379I" url="features/org.eclipse.ocl.doc_1.2.0.v200805041323-23-8s733I3C59379I.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.source" version="1.2.0.v200805130238-34-9oA55S5H7G6HBK" url="features/org.eclipse.ocl.source_1.2.0.v200805130238-34-9oA55S5H7G6HBK.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml.source" version="1.2.0.v200805130238-11-7w311916241349" url="features/org.eclipse.ocl.uml.source_1.2.0.v200805130238-11-7w311916241349.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml" version="1.2.0.v200805130238-11-7w311916241349" url="features/org.eclipse.ocl.uml_1.2.0.v200805130238-11-7w311916241349.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-	<feature id="org.eclipse.ocl" version="1.2.0.v200805130238-34-9oA55S5H7G6HBK" url="features/org.eclipse.ocl_1.2.0.v200805130238-34-9oA55S5H7G6HBK.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.0 I200805131600"/>
-	</feature>
-
-</site>
diff --git a/updates/milestones/site-galileo.xml b/updates/milestones/site-galileo.xml
deleted file mode 100644
index de997d2..0000000
--- a/updates/milestones/site-galileo.xml
+++ /dev/null
@@ -1,109 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<site pack200="true" digestURL="http://download.eclipse.org/modeling/mdt/updates/milestones/" mirrorsURL="http://www.eclipse.org/modeling/download.php?file=/modeling/mdt/updates/milestones/site.xml&amp;format=xml">
-	<!-- to track downloads, use absolute paths instead: http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/updates/ ... -->
-
-	<description url="http://download.eclipse.org/modeling/mdt/updates/milestones/site.xml">
-	To install these plugins, point Eclipse at this site. 
-	</description>
-
-
-	<!-- UML2TOOLS 0.9.0RC2 S200905280525 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525" name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.9.0.v200905280525" url="features/org.eclipse.uml2.diagram.source_0.9.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.9.0.v200905280525" url="features/org.eclipse.uml2.diagram_0.9.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.def.source" version="0.9.0.v200905280525" url="features/org.eclipse.uml2tools.def.source_0.9.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.def" version="0.9.0.v200905280525" url="features/org.eclipse.uml2tools.def_0.9.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.examples" version="0.8.0.v200905280525" url="features/org.eclipse.uml2tools.examples_0.8.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.9.0.v200905280525" url="features/org.eclipse.uml2tools.sdk_0.9.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.9.0.v200905280525" url="features/org.eclipse.uml2tools_0.9.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-
-	<!-- UML2 3.0.0RC1 S200905191000 -->
-	<category-def label="MDT UML2 SDK 3.0.0RC1 S200905191000" name="MDT UML2 SDK 3.0.0RC1 S200905191000">
-		<description>
-MDT UML2 SDK 3.0.0RC1 S200905191000: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.doc" version="3.0.0.v200905041045" url="features/org.eclipse.uml2.doc_3.0.0.v200905041045.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0RC1 S200905191000"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples.source" version="3.0.0.v200905041045" url="features/org.eclipse.uml2.examples.source_3.0.0.v200905041045.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0RC1 S200905191000"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples" version="3.0.0.v200905041045" url="features/org.eclipse.uml2.examples_3.0.0.v200905041045.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0RC1 S200905191000"/>
-	</feature>
-	<feature id="org.eclipse.uml2.sdk" version="3.0.0.v200905151700" url="features/org.eclipse.uml2.sdk_3.0.0.v200905151700.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0RC1 S200905191000"/>
-	</feature>
-	<feature id="org.eclipse.uml2.source" version="3.0.0.v200905151700" url="features/org.eclipse.uml2.source_3.0.0.v200905151700.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0RC1 S200905191000"/>
-	</feature>
-	<feature id="org.eclipse.uml2" version="3.0.0.v200905151700" url="features/org.eclipse.uml2_3.0.0.v200905151700.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0RC1 S200905191000"/>
-	</feature>
-
-	<!-- OCL 1.3.0RC2 S200905261026 -->
-	<category-def label="MDT OCL SDK 1.3.0RC2 S200905261026" name="MDT OCL SDK 1.3.0RC2 S200905261026">
-		<description>
-MDT OCL SDK 1.3.0RC2 S200905261026: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.emf.ocl.doc" version="1.2.1.v200901271800-208_7w311A12382911" url="features/org.eclipse.emf.ocl.doc_1.2.1.v200901271800-208_7w311A12382911.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples.source" version="1.3.0.v200901271800" url="features/org.eclipse.emf.ocl.examples.source_1.3.0.v200901271800.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples" version="1.3.0.v200901271800-478-9oB55W58BQ8T55" url="features/org.eclipse.emf.ocl.examples_1.3.0.v200901271800-478-9oB55W58BQ8T55.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.sdk" version="1.3.0.v200901271800-7B7CAAABVTmSOXXZkz-Xqf4qc-vD" url="features/org.eclipse.emf.ocl.sdk_1.3.0.v200901271800-7B7CAAABVTmSOXXZkz-Xqf4qc-vD.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.source" version="1.1.101.v200901271800-208_7w311A12382911" url="features/org.eclipse.emf.ocl.source_1.1.101.v200901271800-208_7w311A12382911.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl" version="1.1.101.v200901271800-208_7w311A12382911" url="features/org.eclipse.emf.ocl_1.1.101.v200901271800-208_7w311A12382911.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all.sdk" version="1.3.0.v200901271800-787B8aA3PRRgQUXlKrYh3z-n_MGh" url="features/org.eclipse.ocl.all.sdk_1.3.0.v200901271800-787B8aA3PRRgQUXlKrYh3z-n_MGh.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all" version="1.3.0.v200901271800-538_7EABvvDECkLMENLTQI2" url="features/org.eclipse.ocl.all_1.3.0.v200901271800-538_7EABvvDECkLMENLTQI2.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl.doc" version="1.3.0.v200901271800-35-8s733L357H5J33" url="features/org.eclipse.ocl.doc_1.3.0.v200901271800-35-8s733L357H5J33.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl.source" version="1.3.0.v200901271800-46-9oB55V5D6D7J98" url="features/org.eclipse.ocl.source_1.3.0.v200901271800-46-9oB55V5D6D7J98.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml.source" version="2.0.0.v200901271800-3--7w311A13121334" url="features/org.eclipse.ocl.uml.source_2.0.0.v200901271800-3--7w311A13121334.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml" version="2.0.0.v200901271800-3--7w311A13121334" url="features/org.eclipse.ocl.uml_2.0.0.v200901271800-3--7w311A13121334.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl" version="1.3.0.v200901271800-46-9oB55V5D6D7J98" url="features/org.eclipse.ocl_1.3.0.v200901271800-46-9oB55V5D6D7J98.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-
-</site>
diff --git a/updates/milestones/site-ganymede.xml b/updates/milestones/site-ganymede.xml
deleted file mode 100644
index 84327ee..0000000
--- a/updates/milestones/site-ganymede.xml
+++ /dev/null
@@ -1,147 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<site pack200="true" digestURL="http://download.eclipse.org/modeling/mdt/updates/milestones/" mirrorsURL="http://www.eclipse.org/modeling/download.php?file=/modeling/mdt/updates/milestones/site.xml&amp;format=xml">
-	<!-- to track downloads, use absolute paths instead: http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/updates/ ... -->
-
-	<description url="http://download.eclipse.org/modeling/mdt/updates/milestones/site.xml">
-	To install these plugins, point Eclipse at this site. 
-	</description>
-
-
-	<!-- UML2TOOLS 0.8.0RC4 S200806112132 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132" name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.8.0.v200806112132" url="features/org.eclipse.uml2.diagram.source_0.8.0.v200806112132.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.8.0.v200806112132" url="features/org.eclipse.uml2.diagram_0.8.0.v200806112132.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.examples" version="0.8.0.v200806112132" url="features/org.eclipse.uml2tools.examples_0.8.0.v200806112132.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.8.0.v200806112132" url="features/org.eclipse.uml2tools.sdk_0.8.0.v200806112132.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.8.0.v200806112132" url="features/org.eclipse.uml2tools_0.8.0.v200806112132.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132"/>
-	</feature>
-
-	<!-- UML2 2.2.2RC2a S200902101440 -->
-	<category-def label="MDT UML2 SDK 2.2.2RC2a S200902101440" name="MDT UML2 SDK 2.2.2RC2a S200902101440">
-		<description>
-MDT UML2 SDK 2.2.2RC2a S200902101440: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.doc" version="2.2.0.v200805201350" url="features/org.eclipse.uml2.doc_2.2.0.v200805201350.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2a S200902101440"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples.source" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples.source_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2a S200902101440"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2a S200902101440"/>
-	</feature>
-	<feature id="org.eclipse.uml2.sdk" version="2.2.2.v200902101430" url="features/org.eclipse.uml2.sdk_2.2.2.v200902101430.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2a S200902101440"/>
-	</feature>
-	<feature id="org.eclipse.uml2.source" version="2.2.2.v200902101430" url="features/org.eclipse.uml2.source_2.2.2.v200902101430.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2a S200902101440"/>
-	</feature>
-	<feature id="org.eclipse.uml2" version="2.2.2.v200902101430" url="features/org.eclipse.uml2_2.2.2.v200902101430.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2a S200902101440"/>
-	</feature>
-
-	<!-- OCL 1.2.3RC2 S200902101708 -->
-	<category-def label="MDT OCL SDK 1.2.3RC2 S200902101708" name="MDT OCL SDK 1.2.3RC2 S200902101708">
-		<description>
-MDT OCL SDK 1.2.3RC2 S200902101708: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.emf.ocl.doc" version="1.2.1.v200807161725-108Z7w311918272836" url="features/org.eclipse.emf.ocl.doc_1.2.1.v200807161725-108Z7w311918272836.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples.source" version="1.2.0.v200805130238" url="features/org.eclipse.emf.ocl.examples.source_1.2.0.v200805130238.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples" version="1.2.0.v200805130238-35-9oA55S5J8D5ADS" url="features/org.eclipse.emf.ocl.examples_1.2.0.v200805130238-35-9oA55S5J8D5ADS.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.sdk" version="1.2.3.v200810101725-787C_M_5SamOPcTLj0rCh2o4_vCD" url="features/org.eclipse.emf.ocl.sdk_1.2.3.v200810101725-787C_M_5SamOPcTLj0rCh2o4_vCD.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.source" version="1.1.101.v200808291106-108Z7w3119193_2217" url="features/org.eclipse.emf.ocl.source_1.1.101.v200808291106-108Z7w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl" version="1.1.101.v200808291106-108Z7w3119193_2217" url="features/org.eclipse.emf.ocl_1.1.101.v200808291106-108Z7w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all.sdk" version="1.2.3.v200810101725-67_8k_-NRWdNZaZIsiv0nu2bJqYd" url="features/org.eclipse.ocl.all.sdk_1.2.3.v200810101725-67_8k_-NRWdNZaZIsiv0nu2bJqYd.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all" version="1.2.3.v200810101725-348f7__HvvCDBjJNMXObIP8" url="features/org.eclipse.ocl.all_1.2.3.v200810101725-348f7__HvvCDBjJNMXObIP8.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl.doc" version="1.2.1.v200807161725-2308s733I3E5B4B8F" url="features/org.eclipse.ocl.doc_1.2.1.v200807161725-2308s733I3E5B4B8F.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl.source" version="1.2.3.v200810101725-3439oA55T5F8H8PAB" url="features/org.eclipse.ocl.source_1.2.3.v200810101725-3439oA55T5F8H8PAB.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml.source" version="1.2.3.v200811021759-1127w311_12182518" url="features/org.eclipse.ocl.uml.source_1.2.3.v200811021759-1127w311_12182518.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml" version="1.2.3.v200811021759-1127w311_12182518" url="features/org.eclipse.ocl.uml_1.2.3.v200811021759-1127w311_12182518.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl" version="1.2.3.v200810101725-3439oA55T5F8H8PAB" url="features/org.eclipse.ocl_1.2.3.v200810101725-3439oA55T5F8H8PAB.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-
-	<!-- UML2TOOLS 0.8.0RC3 S200806042045 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.8.0RC3 S200806042045" name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC3 S200806042045">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.8.0RC3 S200806042045: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.8.0.v200806042045" url="features/org.eclipse.uml2.diagram.source_0.8.0.v200806042045.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC3 S200806042045"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.8.0.v200806042045" url="features/org.eclipse.uml2.diagram_0.8.0.v200806042045.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC3 S200806042045"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.8.0.v200806042045" url="features/org.eclipse.uml2tools.sdk_0.8.0.v200806042045.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC3 S200806042045"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.8.0.v200806042045" url="features/org.eclipse.uml2tools_0.8.0.v200806042045.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC3 S200806042045"/>
-	</feature>
-
-	<!-- UML2 2.2.2RC2 S200902101042 -->
-	<category-def label="MDT UML2 SDK 2.2.2RC2 S200902101042" name="MDT UML2 SDK 2.2.2RC2 S200902101042">
-		<description>
-MDT UML2 SDK 2.2.2RC2 S200902101042: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.doc" version="2.2.0.v200805201350" url="features/org.eclipse.uml2.doc_2.2.0.v200805201350.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2 S200902101042"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples.source" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples.source_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2 S200902101042"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2 S200902101042"/>
-	</feature>
-	<feature id="org.eclipse.uml2.sdk" version="2.2.1.v200811051031" url="features/org.eclipse.uml2.sdk_2.2.1.v200811051031.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2 S200902101042"/>
-	</feature>
-	<feature id="org.eclipse.uml2.source" version="2.2.1.v200811051031" url="features/org.eclipse.uml2.source_2.2.1.v200811051031.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2 S200902101042"/>
-	</feature>
-	<feature id="org.eclipse.uml2" version="2.2.1.v200811051031" url="features/org.eclipse.uml2_2.2.1.v200811051031.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2 S200902101042"/>
-	</feature>
-
-</site>
diff --git a/updates/milestones/site.xml b/updates/milestones/site.xml
deleted file mode 100644
index cf1207c..0000000
--- a/updates/milestones/site.xml
+++ /dev/null
@@ -1,202 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<site pack200="true" digestURL="http://download.eclipse.org/modeling/mdt/updates/milestones/" mirrorsURL="http://www.eclipse.org/modeling/download.php?file=/modeling/mdt/updates/milestones/site.xml&amp;format=xml">
-	<!-- to track downloads, use absolute paths instead: http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/updates/ ... -->
-
-	<description url="http://download.eclipse.org/modeling/mdt/updates/milestones/site.xml">
-	To install these plugins, point Eclipse at this site. 
-	</description>
-
-
-	<!-- UML2TOOLS 0.9.0RC2 S200905280525 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525" name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.9.0.v200905280525" url="features/org.eclipse.uml2.diagram.source_0.9.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.9.0.v200905280525" url="features/org.eclipse.uml2.diagram_0.9.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.def.source" version="0.9.0.v200905280525" url="features/org.eclipse.uml2tools.def.source_0.9.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.def" version="0.9.0.v200905280525" url="features/org.eclipse.uml2tools.def_0.9.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.examples" version="0.8.0.v200905280525" url="features/org.eclipse.uml2tools.examples_0.8.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.9.0.v200905280525" url="features/org.eclipse.uml2tools.sdk_0.9.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.9.0.v200905280525" url="features/org.eclipse.uml2tools_0.9.0.v200905280525.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.9.0RC2 S200905280525"/>
-	</feature>
-
-	<!-- UML2TOOLS 0.8.0RC4 S200806112132 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132" name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.8.0.v200806112132" url="features/org.eclipse.uml2.diagram.source_0.8.0.v200806112132.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.8.0.v200806112132" url="features/org.eclipse.uml2.diagram_0.8.0.v200806112132.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.examples" version="0.8.0.v200806112132" url="features/org.eclipse.uml2tools.examples_0.8.0.v200806112132.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.8.0.v200806112132" url="features/org.eclipse.uml2tools.sdk_0.8.0.v200806112132.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.8.0.v200806112132" url="features/org.eclipse.uml2tools_0.8.0.v200806112132.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.0RC4 S200806112132"/>
-	</feature>
-
-	<!-- UML2 3.0.0RC1 S200905191000 -->
-	<category-def label="MDT UML2 SDK 3.0.0RC1 S200905191000" name="MDT UML2 SDK 3.0.0RC1 S200905191000">
-		<description>
-MDT UML2 SDK 3.0.0RC1 S200905191000: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.doc" version="3.0.0.v200905041045" url="features/org.eclipse.uml2.doc_3.0.0.v200905041045.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0RC1 S200905191000"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples.source" version="3.0.0.v200905041045" url="features/org.eclipse.uml2.examples.source_3.0.0.v200905041045.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0RC1 S200905191000"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples" version="3.0.0.v200905041045" url="features/org.eclipse.uml2.examples_3.0.0.v200905041045.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0RC1 S200905191000"/>
-	</feature>
-	<feature id="org.eclipse.uml2.sdk" version="3.0.0.v200905151700" url="features/org.eclipse.uml2.sdk_3.0.0.v200905151700.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0RC1 S200905191000"/>
-	</feature>
-	<feature id="org.eclipse.uml2.source" version="3.0.0.v200905151700" url="features/org.eclipse.uml2.source_3.0.0.v200905151700.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0RC1 S200905191000"/>
-	</feature>
-	<feature id="org.eclipse.uml2" version="3.0.0.v200905151700" url="features/org.eclipse.uml2_3.0.0.v200905151700.jar" patch="false">
-		<category name="MDT UML2 SDK 3.0.0RC1 S200905191000"/>
-	</feature>
-
-	<!-- UML2 2.2.2RC2a S200902101440 -->
-	<category-def label="MDT UML2 SDK 2.2.2RC2a S200902101440" name="MDT UML2 SDK 2.2.2RC2a S200902101440">
-		<description>
-MDT UML2 SDK 2.2.2RC2a S200902101440: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.doc" version="2.2.0.v200805201350" url="features/org.eclipse.uml2.doc_2.2.0.v200805201350.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2a S200902101440"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples.source" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples.source_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2a S200902101440"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2a S200902101440"/>
-	</feature>
-	<feature id="org.eclipse.uml2.sdk" version="2.2.2.v200902101430" url="features/org.eclipse.uml2.sdk_2.2.2.v200902101430.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2a S200902101440"/>
-	</feature>
-	<feature id="org.eclipse.uml2.source" version="2.2.2.v200902101430" url="features/org.eclipse.uml2.source_2.2.2.v200902101430.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2a S200902101440"/>
-	</feature>
-	<feature id="org.eclipse.uml2" version="2.2.2.v200902101430" url="features/org.eclipse.uml2_2.2.2.v200902101430.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2RC2a S200902101440"/>
-	</feature>
-
-	<!-- OCL 1.3.0RC2 S200905261026 -->
-	<category-def label="MDT OCL SDK 1.3.0RC2 S200905261026" name="MDT OCL SDK 1.3.0RC2 S200905261026">
-		<description>
-MDT OCL SDK 1.3.0RC2 S200905261026: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.emf.ocl.doc" version="1.2.1.v200901271800-208_7w311A12382911" url="features/org.eclipse.emf.ocl.doc_1.2.1.v200901271800-208_7w311A12382911.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples.source" version="1.3.0.v200901271800" url="features/org.eclipse.emf.ocl.examples.source_1.3.0.v200901271800.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples" version="1.3.0.v200901271800-478-9oB55W58BQ8T55" url="features/org.eclipse.emf.ocl.examples_1.3.0.v200901271800-478-9oB55W58BQ8T55.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.sdk" version="1.3.0.v200901271800-7B7CAAABVTmSOXXZkz-Xqf4qc-vD" url="features/org.eclipse.emf.ocl.sdk_1.3.0.v200901271800-7B7CAAABVTmSOXXZkz-Xqf4qc-vD.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.source" version="1.1.101.v200901271800-208_7w311A12382911" url="features/org.eclipse.emf.ocl.source_1.1.101.v200901271800-208_7w311A12382911.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl" version="1.1.101.v200901271800-208_7w311A12382911" url="features/org.eclipse.emf.ocl_1.1.101.v200901271800-208_7w311A12382911.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all.sdk" version="1.3.0.v200901271800-787B8aA3PRRgQUXlKrYh3z-n_MGh" url="features/org.eclipse.ocl.all.sdk_1.3.0.v200901271800-787B8aA3PRRgQUXlKrYh3z-n_MGh.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all" version="1.3.0.v200901271800-538_7EABvvDECkLMENLTQI2" url="features/org.eclipse.ocl.all_1.3.0.v200901271800-538_7EABvvDECkLMENLTQI2.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl.doc" version="1.3.0.v200901271800-35-8s733L357H5J33" url="features/org.eclipse.ocl.doc_1.3.0.v200901271800-35-8s733L357H5J33.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl.source" version="1.3.0.v200901271800-46-9oB55V5D6D7J98" url="features/org.eclipse.ocl.source_1.3.0.v200901271800-46-9oB55V5D6D7J98.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml.source" version="2.0.0.v200901271800-3--7w311A13121334" url="features/org.eclipse.ocl.uml.source_2.0.0.v200901271800-3--7w311A13121334.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml" version="2.0.0.v200901271800-3--7w311A13121334" url="features/org.eclipse.ocl.uml_2.0.0.v200901271800-3--7w311A13121334.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-	<feature id="org.eclipse.ocl" version="1.3.0.v200901271800-46-9oB55V5D6D7J98" url="features/org.eclipse.ocl_1.3.0.v200901271800-46-9oB55V5D6D7J98.jar" patch="false">
-		<category name="MDT OCL SDK 1.3.0RC2 S200905261026"/>
-	</feature>
-
-	<!-- OCL 1.2.3RC2 S200902101708 -->
-	<category-def label="MDT OCL SDK 1.2.3RC2 S200902101708" name="MDT OCL SDK 1.2.3RC2 S200902101708">
-		<description>
-MDT OCL SDK 1.2.3RC2 S200902101708: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.emf.ocl.doc" version="1.2.1.v200807161725-108Z7w311918272836" url="features/org.eclipse.emf.ocl.doc_1.2.1.v200807161725-108Z7w311918272836.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples.source" version="1.2.0.v200805130238" url="features/org.eclipse.emf.ocl.examples.source_1.2.0.v200805130238.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples" version="1.2.0.v200805130238-35-9oA55S5J8D5ADS" url="features/org.eclipse.emf.ocl.examples_1.2.0.v200805130238-35-9oA55S5J8D5ADS.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.sdk" version="1.2.3.v200810101725-787C_M_5SamOPcTLj0rCh2o4_vCD" url="features/org.eclipse.emf.ocl.sdk_1.2.3.v200810101725-787C_M_5SamOPcTLj0rCh2o4_vCD.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.source" version="1.1.101.v200808291106-108Z7w3119193_2217" url="features/org.eclipse.emf.ocl.source_1.1.101.v200808291106-108Z7w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl" version="1.1.101.v200808291106-108Z7w3119193_2217" url="features/org.eclipse.emf.ocl_1.1.101.v200808291106-108Z7w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all.sdk" version="1.2.3.v200810101725-67_8k_-NRWdNZaZIsiv0nu2bJqYd" url="features/org.eclipse.ocl.all.sdk_1.2.3.v200810101725-67_8k_-NRWdNZaZIsiv0nu2bJqYd.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all" version="1.2.3.v200810101725-348f7__HvvCDBjJNMXObIP8" url="features/org.eclipse.ocl.all_1.2.3.v200810101725-348f7__HvvCDBjJNMXObIP8.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl.doc" version="1.2.1.v200807161725-2308s733I3E5B4B8F" url="features/org.eclipse.ocl.doc_1.2.1.v200807161725-2308s733I3E5B4B8F.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl.source" version="1.2.3.v200810101725-3439oA55T5F8H8PAB" url="features/org.eclipse.ocl.source_1.2.3.v200810101725-3439oA55T5F8H8PAB.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml.source" version="1.2.3.v200811021759-1127w311_12182518" url="features/org.eclipse.ocl.uml.source_1.2.3.v200811021759-1127w311_12182518.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml" version="1.2.3.v200811021759-1127w311_12182518" url="features/org.eclipse.ocl.uml_1.2.3.v200811021759-1127w311_12182518.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-	<feature id="org.eclipse.ocl" version="1.2.3.v200810101725-3439oA55T5F8H8PAB" url="features/org.eclipse.ocl_1.2.3.v200810101725-3439oA55T5F8H8PAB.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3RC2 S200902101708"/>
-	</feature>
-
-</site>
diff --git a/updates/policy.xml b/updates/policy.xml
deleted file mode 100644
index e70fbe6..0000000
--- a/updates/policy.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<update-policy>
-  <url-map pattern="*" url="http://download.eclipse.org/modeling/mdt/updates/site-interim.xml"/>
-</update-policy>
diff --git a/updates/releases/site-ganymede.xml b/updates/releases/site-ganymede.xml
deleted file mode 100644
index df698ae..0000000
--- a/updates/releases/site-ganymede.xml
+++ /dev/null
@@ -1,103 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<site pack200="true" digestURL="http://download.eclipse.org/modeling/mdt/updates/releases/" mirrorsURL="http://www.eclipse.org/modeling/download.php?file=/modeling/mdt/updates/releases/site.xml&amp;format=xml">
-	<!-- to track downloads, use absolute paths instead: http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/updates/ ... -->
-
-	<description url="http://download.eclipse.org/modeling/mdt/updates/releases/site.xml">
-	To install these plugins, point Eclipse at this site. 
-	</description>
-
-
-	<!-- UML2TOOLS 0.8.1 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.8.1" name="MDT UML2TOOLS SDK (Incubation) 0.8.1">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.8.1: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.8.1.v200809231457" url="features/org.eclipse.uml2.diagram.source_0.8.1.v200809231457.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.8.1.v200809231457" url="features/org.eclipse.uml2.diagram_0.8.1.v200809231457.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.examples" version="0.8.0.v200809231457" url="features/org.eclipse.uml2tools.examples_0.8.0.v200809231457.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.8.0.v200809231457" url="features/org.eclipse.uml2tools.sdk_0.8.0.v200809231457.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.8.1.v200809231457" url="features/org.eclipse.uml2tools_0.8.1.v200809231457.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1"/>
-	</feature>
-
-	<!-- UML2 2.2.2 -->
-	<category-def label="MDT UML2 SDK 2.2.2" name="MDT UML2 SDK 2.2.2">
-		<description>
-MDT UML2 SDK 2.2.2: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.doc" version="2.2.0.v200805201350" url="features/org.eclipse.uml2.doc_2.2.0.v200805201350.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples.source" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples.source_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2.sdk" version="2.2.2.v200902101430" url="features/org.eclipse.uml2.sdk_2.2.2.v200902101430.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2.source" version="2.2.2.v200902101430" url="features/org.eclipse.uml2.source_2.2.2.v200902101430.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2" version="2.2.2.v200902101430" url="features/org.eclipse.uml2_2.2.2.v200902101430.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2"/>
-	</feature>
-
-	<!-- OCL 1.2.3 -->
-	<category-def label="MDT OCL SDK 1.2.3" name="MDT OCL SDK 1.2.3">
-		<description>
-MDT OCL SDK 1.2.3: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.emf.ocl.doc" version="1.2.1.v200807161725-108Z7w311918272836" url="features/org.eclipse.emf.ocl.doc_1.2.1.v200807161725-108Z7w311918272836.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples.source" version="1.2.0.v200805130238" url="features/org.eclipse.emf.ocl.examples.source_1.2.0.v200805130238.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples" version="1.2.0.v200805130238-35-9oA55S5J8D5ADS" url="features/org.eclipse.emf.ocl.examples_1.2.0.v200805130238-35-9oA55S5J8D5ADS.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.sdk" version="1.2.3.v200810101725-787C_M_5SamOPcTLj0rCh2o4_vCD" url="features/org.eclipse.emf.ocl.sdk_1.2.3.v200810101725-787C_M_5SamOPcTLj0rCh2o4_vCD.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.source" version="1.1.101.v200808291106-108Z7w3119193_2217" url="features/org.eclipse.emf.ocl.source_1.1.101.v200808291106-108Z7w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl" version="1.1.101.v200808291106-108Z7w3119193_2217" url="features/org.eclipse.emf.ocl_1.1.101.v200808291106-108Z7w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all.sdk" version="1.2.3.v200810101725-67_8k_-NRWdNZaZIsiv0nu2bJqYd" url="features/org.eclipse.ocl.all.sdk_1.2.3.v200810101725-67_8k_-NRWdNZaZIsiv0nu2bJqYd.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all" version="1.2.3.v200810101725-348f7__HvvCDBjJNMXObIP8" url="features/org.eclipse.ocl.all_1.2.3.v200810101725-348f7__HvvCDBjJNMXObIP8.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl.doc" version="1.2.1.v200807161725-2308s733I3E5B4B8F" url="features/org.eclipse.ocl.doc_1.2.1.v200807161725-2308s733I3E5B4B8F.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl.source" version="1.2.3.v200810101725-3439oA55T5F8H8PAB" url="features/org.eclipse.ocl.source_1.2.3.v200810101725-3439oA55T5F8H8PAB.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml.source" version="1.2.3.v200811021759-1127w311_12182518" url="features/org.eclipse.ocl.uml.source_1.2.3.v200811021759-1127w311_12182518.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml" version="1.2.3.v200811021759-1127w311_12182518" url="features/org.eclipse.ocl.uml_1.2.3.v200811021759-1127w311_12182518.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl" version="1.2.3.v200810101725-3439oA55T5F8H8PAB" url="features/org.eclipse.ocl_1.2.3.v200810101725-3439oA55T5F8H8PAB.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-
-</site>
diff --git a/updates/releases/site.xml b/updates/releases/site.xml
deleted file mode 100644
index 3576e8b..0000000
--- a/updates/releases/site.xml
+++ /dev/null
@@ -1,128 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<site pack200="true" digestURL="http://download.eclipse.org/modeling/mdt/updates/releases/" mirrorsURL="http://www.eclipse.org/modeling/download.php?file=/modeling/mdt/updates/releases/site.xml&amp;format=xml">
-	<!-- to track downloads, use absolute paths instead: http://www.eclipse.org/downloads/download.php?r=1&amp;file=/modeling/mdt/updates/ ... -->
-
-	<description url="http://download.eclipse.org/modeling/mdt/updates/releases/site.xml">
-	To install these plugins, point Eclipse at this site. 
-	</description>
-
-
-	<!-- UML2TOOLS 0.8.1 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.8.1" name="MDT UML2TOOLS SDK (Incubation) 0.8.1">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.8.1: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.8.1.v200809231457" url="features/org.eclipse.uml2.diagram.source_0.8.1.v200809231457.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.8.1.v200809231457" url="features/org.eclipse.uml2.diagram_0.8.1.v200809231457.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.examples" version="0.8.0.v200809231457" url="features/org.eclipse.uml2tools.examples_0.8.0.v200809231457.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.8.0.v200809231457" url="features/org.eclipse.uml2tools.sdk_0.8.0.v200809231457.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.8.1.v200809231457" url="features/org.eclipse.uml2tools_0.8.1.v200809231457.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.8.1"/>
-	</feature>
-
-	<!-- UML2TOOLS 0.7.2 (Incubation) -->
-	<category-def label="MDT UML2TOOLS SDK (Incubation) 0.7.2" name="MDT UML2TOOLS SDK (Incubation) 0.7.2">
-		<description>
-MDT UML2TOOLS SDK (Incubation) 0.7.2: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.diagram.source" version="0.7.101.v200802260712" url="features/org.eclipse.uml2.diagram.source_0.7.101.v200802260712.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.7.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2.diagram" version="0.7.101.v200802260712" url="features/org.eclipse.uml2.diagram_0.7.101.v200802260712.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.7.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.doc" version="0.7.0.v200802260712" url="features/org.eclipse.uml2tools.doc_0.7.0.v200802260712.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.7.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.sdk" version="0.7.1.v200802260712" url="features/org.eclipse.uml2tools.sdk_0.7.1.v200802260712.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.7.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools" version="0.7.101.v200802260712" url="features/org.eclipse.uml2tools_0.7.101.v200802260712.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.7.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2tools.examples" version="0.7.101.v200802260712" url="features/org.eclipse.uml2tools.examples_0.7.101.v200802260712.jar" patch="false">
-		<category name="MDT UML2TOOLS SDK (Incubation) 0.7.2"/>
-	</feature>
-
-	<!-- UML2 2.2.2 -->
-	<category-def label="MDT UML2 SDK 2.2.2" name="MDT UML2 SDK 2.2.2">
-		<description>
-MDT UML2 SDK 2.2.2: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.uml2.doc" version="2.2.0.v200805201350" url="features/org.eclipse.uml2.doc_2.2.0.v200805201350.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples.source" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples.source_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2.examples" version="2.2.0.v200805131030" url="features/org.eclipse.uml2.examples_2.2.0.v200805131030.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2.sdk" version="2.2.2.v200902101430" url="features/org.eclipse.uml2.sdk_2.2.2.v200902101430.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2.source" version="2.2.2.v200902101430" url="features/org.eclipse.uml2.source_2.2.2.v200902101430.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2"/>
-	</feature>
-	<feature id="org.eclipse.uml2" version="2.2.2.v200902101430" url="features/org.eclipse.uml2_2.2.2.v200902101430.jar" patch="false">
-		<category name="MDT UML2 SDK 2.2.2"/>
-	</feature>
-
-	<!-- OCL 1.2.3 -->
-	<category-def label="MDT OCL SDK 1.2.3" name="MDT OCL SDK 1.2.3">
-		<description>
-MDT OCL SDK 1.2.3: contains runtime, source, and documentation.
-		</description>
-	</category-def>
-	<feature id="org.eclipse.emf.ocl.doc" version="1.2.1.v200807161725-108Z7w311918272836" url="features/org.eclipse.emf.ocl.doc_1.2.1.v200807161725-108Z7w311918272836.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples.source" version="1.2.0.v200805130238" url="features/org.eclipse.emf.ocl.examples.source_1.2.0.v200805130238.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.examples" version="1.2.0.v200805130238-35-9oA55S5J8D5ADS" url="features/org.eclipse.emf.ocl.examples_1.2.0.v200805130238-35-9oA55S5J8D5ADS.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.sdk" version="1.2.3.v200810101725-787C_M_5SamOPcTLj0rCh2o4_vCD" url="features/org.eclipse.emf.ocl.sdk_1.2.3.v200810101725-787C_M_5SamOPcTLj0rCh2o4_vCD.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl.source" version="1.1.101.v200808291106-108Z7w3119193_2217" url="features/org.eclipse.emf.ocl.source_1.1.101.v200808291106-108Z7w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.emf.ocl" version="1.1.101.v200808291106-108Z7w3119193_2217" url="features/org.eclipse.emf.ocl_1.1.101.v200808291106-108Z7w3119193_2217.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all.sdk" version="1.2.3.v200810101725-67_8k_-NRWdNZaZIsiv0nu2bJqYd" url="features/org.eclipse.ocl.all.sdk_1.2.3.v200810101725-67_8k_-NRWdNZaZIsiv0nu2bJqYd.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl.all" version="1.2.3.v200810101725-348f7__HvvCDBjJNMXObIP8" url="features/org.eclipse.ocl.all_1.2.3.v200810101725-348f7__HvvCDBjJNMXObIP8.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl.doc" version="1.2.1.v200807161725-2308s733I3E5B4B8F" url="features/org.eclipse.ocl.doc_1.2.1.v200807161725-2308s733I3E5B4B8F.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl.source" version="1.2.3.v200810101725-3439oA55T5F8H8PAB" url="features/org.eclipse.ocl.source_1.2.3.v200810101725-3439oA55T5F8H8PAB.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml.source" version="1.2.3.v200811021759-1127w311_12182518" url="features/org.eclipse.ocl.uml.source_1.2.3.v200811021759-1127w311_12182518.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl.uml" version="1.2.3.v200811021759-1127w311_12182518" url="features/org.eclipse.ocl.uml_1.2.3.v200811021759-1127w311_12182518.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-	<feature id="org.eclipse.ocl" version="1.2.3.v200810101725-3439oA55T5F8H8PAB" url="features/org.eclipse.ocl_1.2.3.v200810101725-3439oA55T5F8H8PAB.jar" patch="false">
-		<category name="MDT OCL SDK 1.2.3"/>
-	</feature>
-
-</site>
diff --git a/updates/site-interim.xml b/updates/site-interim.xml
deleted file mode 100644
index 3572de3..0000000
--- a/updates/site-interim.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<site mirrorsURL="http://www.eclipse.org/downloads/download.php?file=/modeling/mdt/updates/interim/site.xml&amp;format=xml">
-	<description url="http://download.eclipse.org/modeling/mdt/updates/interim/site.xml">
-	This site has moved to http://download.eclipse.org/modeling/mdt/updates/interim/.
-	</description>
-</site>
diff --git a/updates/site.xml b/updates/site.xml
deleted file mode 100644
index 88c412b..0000000
--- a/updates/site.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<site mirrorsURL="http://www.eclipse.org/downloads/download.php?file=/modeling/mdt/updates/releases/site.xml&amp;format=xml">
-	<description url="http://download.eclipse.org/modeling/mdt/updates/releases/site.xml">
-	This site has moved to http://download.eclipse.org/modeling/mdt/updates/releases/.
-	</description>
-</site>
diff --git a/xsd/docs/dev-plans/xsd_project_plan_2.5.html b/xsd/docs/dev-plans/xsd_project_plan_2.5.html
deleted file mode 100644
index 3b28fc9..0000000
--- a/xsd/docs/dev-plans/xsd_project_plan_2.5.html
+++ /dev/null
@@ -1,490 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
-"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-  <head>
-    <meta http-equiv="Content-Type"
-    content="text/html; charset=utf-8" />
-
-    <title>Eclipse XSD - DRAFT 2.5.0 Plans</title>
-
-
-    <link rel="stylesheet" href="http://www.eclipse.org/default_style.css" type="text/css" />
-  </head>
-
-  <body lang="EN-US" xml:lang="EN-US">
-
-   <div class="Section1">
-      <h1>XML Schema Definition (XSD)
-      <br />
-		Draft 2.5.0 Plans</h1> 
-
-      <p>Last revised <tt>$Date: 2008/07/11 18:01:34 $</tt> ( 
-      <img width="12" height="12" src="/modeling/images/green-box.gif"
-      border="0" />
-
-      marks interesting changes over previous plans).
-
-      </p>
-
-      <p>      	
-      <em>Please send comments about this draft
-      plan to the</em>
-      
-      <a href="mailto:mdt-xsd.dev@eclipse.org">mdt-xsd.dev@eclipse.org</a>
-      <em>developer mailing list
-      
-      or
-
-      the</em>
-      <a href="news://news.eclipse.org/eclipse.technology.xsd">eclipse.technology.xsd</a>
-      <em>newsgroup.</em>
-      </p>
-
-      <p>This document lays out the feature and API set for the
-      next feature release, 2.5.0, of the XML Schema Definition (XSD) project.</p>
-
-      <ul type="disc">
-        <li>
-          <a href="#Deliverables">Release deliverables</a>
-        </li>
-
-        <li>
-          <a href="#Milestones">Release milestones</a>
-        </li>
-
-        <li>
-          <a href="#TargetOperatingEnvironments">Target operating
-          environments</a>
-        </li>
-
-        <li>
-          <a href="#Compatibility">Compatibility with previous
-          releases</a>
-        </li>
-
-        <li>
-          <a href="#Themes">Themes / Plan Items</a>
-        </li>
-
-        <li>
-          <a href="#Project">XSD Project</a>
-        </li>
-      </ul>
-
-      <p>Plans do not materialize out of nowhere, nor are they
-      entirely static. To ensure the planning process is
-      transparent and open to the entire Eclipse community, plans
-      are posted in an embryonic form and then revised from time to
-      time throughout the release cycle.</p>
-
-      <p>The first part of the plan deals with the important
-      matters of release deliverables, release milestones, target
-      operating environments, and release-to-release compatibility.
-      These are all things that need to be clear for any release,
-      even if no features were to change.</p>
-
-      <p>The remainder of the plan consists of plan items for the
-      projects under the XSD project. Each
-      plan item covers a feature or API that is to be added, or
-      some aspect that is to be improved. Each plan item has its
-      own entry in the 
-      <a href="http://bugs.eclipse.org/bugs">Eclipse bugzilla</a>
-
-      database, with a title and a concise summary (usually a
-      single paragraph) that explains the work item at a suitably
-      high enough level so that everyone can readily understand
-      what the work item is without having to understand the
-      nitty-gritty detail.</p>
-
-      <p>Not all plan items represent the same amount of work; some
-      may be quite large, others, quite small. Some plan items may
-      involve work that is localized to a single subsystem; others
-      may involve coordinated changes across several projects
-      within the same top-level project; and others may involve
-      coordination with other top-level projects. Although some
-      plan items are for work that is more pressing that others,
-      the plan items appear in no particular order.</p>
-
-      <p>With the previous release as the starting point, this is
-      the plan for how we will enhance and improve it. Fixing bugs,
-      improving test coverage, documentation, examples, performance
-      tuning, usability, etc. are considered routine ongoing
-      maintenance activities and are not included in this plan
-      unless they would also involve a significant change to the
-      API or feature set, or involve a significant amount of work.
-      The intent of the plan is to account for all interesting
-      feature work.</p>
-
-      <h2>
-      <a name="Deliverables">
-      </a>
-
-      Release Deliverables</h2>
-
-      <p>The release deliverables are:</p>
-
-      <ul type="disc">
-        <li>Source code release for XSD is available in the Eclipse.org <a href="http://www.eclipse.org/modeling/">Modeling Project</a>
-        <a href="http://dev.eclipse.org/viewcvs/index.cgi/?root=Modeling_Project">CVS
-        repositories</a> 
-
-        for 
-        <a
-        href="http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.mdt/org.eclipse.xsd/?root=Modeling_Project">
-        XSD</a>. <ul><img width="12" height="12" src="/modeling/images/green-box.gif"
-      border="0" /> <b>NOTE:</b> In addition, source builds have been requested to better support linux distributions and legal code scanning.</ul></li>
-
-        <li>XSD runtime binaries and SDK distributions
-        (downloadable). <ul><img width="12" height="12" src="/modeling/images/green-box.gif"
-      border="0" /> <b>NOTE:</b> <a href="http://wiki.eclipse.org/EMF/EMF_2.5_Simplified_Downloads">This may be changing</a>, but is not yet committed to plan.</ul></li>
-
-        <li>XSD runtime binaries and SDK features on
-        eclipse.org update site (install via Eclipse update
-        manager).</li>
-
-      </ul>
-
-      <h2>
-      <a name="Milestones">
-      </a>
-
-      Release Milestones</h2>
-
-      <p>XSD builds are available weekly as <em>Integration
-      builds</em>. XSD Milestone Releases are <b>one business day</b> after the <a href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_5.html#Milestones">Eclipse Milestone Releases</a>.
-      </p>
-
-      
-      <p>Following the final milestone, release candidates will begin. XSD Release Candidates are planned to be released <b>one business day</b> after each
-       <!--<a href="http://www.eclipse.org/eclipse/development/freeze_plan_3.5.html">--><i style="color:gray">Eclipse Release Candidate</i> (forthcoming) <!--</a>-->.
-      This convergence is required to meet the goals of the <a href="http://www.eclipse.org/projects/ganymede.php">Ganymede Simultaneous Release</a>.</p>
-
-      <p>Scheduled release candidates should end in 2008Q2, and beyond that point, will be produced only as needed, leading up to a release in late 2008Q2.</p>
-
-      <h2>
-      <a name="TargetOperatingEnvironments">
-      </a>
-
-      Target Operating Environments</h2>
-
-      <p>In order to remain current, each release of an Eclipse
-      project targets reasonably current versions of underlying
-      operating environments and other Eclipse projects on which it
-      depends.</p>
-
-      <p>Most of Eclipse is "pure" Java 
-      <sup>TM</sup>
-
-      code and has no direct dependence on the underlying operating
-      system. The chief dependence is on the Eclipse Platform, and
-      on the Java 2 Platform that runs it.</p>
-
-      <p>The XSD 2.5.0 release depends on the
-      following:</p>
-
-      <ul type="disc">
-        <li>Java 2 Platform 5.0</li>
-
-        <li>Eclipse Platform 3.5.0</li>
-
-      </ul>
-
-      <p>The 2.5.0 releases of XSD are designed to run
-      on any configuration supporting the above components.</p>
-
-      <p>The Eclipse Platform runs in a variety of operating
-      environments. Testing is focused on a handful of popular
-      combinations of operating system and Java 2 Platform; these
-      are our 
-      <em>reference platforms</em>.
-
-      Eclipse undoubtedly runs fine in many operating
-      environments beyond the reference platforms we test. However,
-      since we do not systematically test them we cannot vouch for
-      them. Problems encountered when running Eclipse on
-      non-reference platform that cannot be recreated on any
-      reference platform will be given lower priority than problems
-      with running Eclipse on a reference platform.</p>
-
-      <p>See the 
-      <a
-      href="http://www.eclipse.org/eclipse/development/eclipse_project_plan_3_5.html#TargetOperatingEnvironments">
-      Eclipse Project 3.5 plan</a> for a list of reference platforms.</p>
-
-      <h4>Internationalization</h4>
-
-      <p>Eclipse is designed as the basis for internationalized
-      products. The user interface elements provided by the various
-      Eclipse projects, including dialogs and error messages, are
-      externalized. The English strings for XSD are
-      provided as the default resource bundles. Translations are
-      not provided with this release. However, the plug-in fragment
-      mechanism provides the means by which translations into any
-      number of other languages can be incorporated.</p>
-
-      <h2>
-      <a name="Compatibility">
-
-      </a>
-
-      Compatibility with Previous Releases</h2>
-
-      <h3>Compatibility of Release 2.5.0 with 2.4.0</h3>
-
-      <p>XSD 2.5.0 will be compatible with XSD 2.4.0, except in those areas noted in the 
-      <a href="#MigrationGuide">
-        <em>XSD 2.5.0 Migration Guide</em></a>.</p>
-
-      <p>
-      <b>API Contract Compatibility:</b>
-
-      XSD 2.5.0 will be upwards contract-compatible
-      with XSD 2.4.0 except in those areas noted in the
-      
-      <a href="#MigrationGuide">
-        <em>XSD 2.5.0 Migration Guide.</em>
-      </a>
-
-      Programs that use affected APIs and extension points will
-      need to be ported to XSD 2.5.0 APIs. Downward
-      contract compatibility is not supported. There is no
-      guarantee that compliance with XSD 2.5.0 APIs
-      would ensure compliance with XSD 1.x APIs. Refer
-      to 
-      <em>
-        <a
-        href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">
-        Evolving Java-based APIs</a>
-      </em>
-
-      for a discussion of the kinds of API changes that maintain
-      contract compatibility.</p>
-
-      <p>
-
-      <b>Binary (plug-in) Compatibility:</b>
-
-      XSD 2.5.0 will be upwards binary-compatible with
-      XSD 2.4.0 except in those areas noted in the 
-      <a href="#MigrationGuide">
-        <em>XSD 2.5.0 Migration Guide.</em>
-      </a>
-
-      Downward plug-in compatibility is not supported: plug-ins
-      compiled against XSD 2.5.0 will likely be
-      unusable with XSD 1.x. Refer to 
-      <em>
-        <a
-        href="http://wiki.eclipse.org/index.php/Evolving_Java-based_APIs">
-
-        Evolving Java-based APIs</a>
-      </em>
-
-      for a discussion of the kinds of API changes that maintain
-      binary compatibility.</p>
-
-      <p>
-      <b>Source Compatibility:</b>
-
-      Source files written to use XSD 2.4.0 APIs will
-      usually compile and run successfully against XSD
-      2.5.0 APIs, although this cannot be guaranteed. 
-      In some cases, it may be necessary to make minor changes to the
-      source code to disambiguate things like imports or overloaded
-      method invocations. Downward source compatibility is not
-      supported. If source files use new APIs, they will not be
-      usable with earlier versions.</p>
-
-      <p>
-      <b>Workspace Compatibility:</b>
-
-      XSD 2.5.0 will be upwards
-      workspace-compatible with XSD 2.4.0 unless noted.
-      This means that workspaces and projects created by an Eclipse
-      with XSD 2.4.0 installed can be successfully
-      opened by an Eclipse with XSD 2.5.0 installed.
-      This includes both hidden metadata, which is localized to a
-      particular workspace, as well as metadata files found within
-      a workspace project, which may propagate between workspaces
-      via file copying or team repositories. User interface session
-      state may be discarded when a workspace is upgraded. Downward
-      workspace compatibility is not supported. Metadata files
-      created (or overwritten) by the newer version will generally
-      be unusable with older versions.</p>
-
-      <p>
-      <b>Non-compliant usage of API's:</b>
-
-      All non-API methods and classes, and certainly everything in
-      a package with "internal" in its name, are considered
-      implementation details which may vary between operating
-      environment and are subject to change without notice. Client
-      plug-ins that directly depend on anything other than what is
-      specified in the API are inherently unsupportable and receive
-      no guarantees about compatibility within a single release
-      much less with an earlier releases. Refer to 
-      <em>
-        <a
-        href="http://www.eclipse.org/articles/Article-API%20use/eclipse-api-usage-rules.html">
-        How to Use the Eclipse API</a>
-      </em>
-
-      for information about how to write compliant plug-ins.</p>
-      
-      <h3>
-
-      <a name="MigrationGuide">
-      </a>
-
-      XSD 2.5.0 Migration Guide</h3>
-
-      <p>At this time, there are no known issues migrating from
-      2.4.0 to 2.5.0. 
-      Should this change, this document will be
-      revised, or a secondary document will be added documenting
-      any known issues.</p>
-
-      <h2>
-      <a name="Themes">
-
-      </a>
-
-      Themes</h2>
-  <p><img width="12" height="12" src="/modeling/images/green-box.gif"
-      border="0" /> The changes under consideration for the next release of
-      Eclipse XSD address a few major themes: </p>
-
-      <ul>
-        <li>
-        <b>More With Less</b>
-
-        - While supporting past releases is very important, it comes with a price -- less time to develop, and subsequently support, new features. As the development team becomes smaller, there are less hands available to support more releases.</li>
-
-        <li>
-        <b>Release Currency</b>
-
-        - Modeling projects will maintain release currency concurrent with 3.x releases. For XSD 2.5.0, this means 
-        currency with Eclipse 3.5.0 and Java SE 5.0.</li>
-		
-</ul>
-
-<p><img width="12" height="12" src="/modeling/images/green-box.gif"
-      border="0" /> Additionally, the following plan items have been proposed.</p>
-<ul>        
-        <li><b>Investigate XML Schema 1.1</b>
-        - Investigate the future impact of XML Schema 1.1; likely no actual changes will be made until the final approval of the specification. </li>
-
-</ul>
-
-
-      <p>The current status of each plan item is noted:</p>
-
-      <ul type="disc">
-      <li>
-        <b>Plan Item</b>
-
-        items - a <i>Plan Item</i> that we have
-        decided to address for the release. To see all committed items - see <i>"committed"</i> items</li>
-
-        <li>
-        <b>Committed</b>
-
-        items - A committed bug is one that we have
-        decided to address for the release.</li>
-
-        <li>
-        <b>Proposed</b>
-
-        items - A bug item is one that we are
-        considering addressing for the release. Although we are
-        actively investigating it, we are not yet in a position to
-        commit to it, or to say that we won't be able to address
-        it. After due consideration, a proposal will either be
-        committed or deferred.</li>
-
-        <li>
-        <b>Deferred</b>
-
-        items - A reasonable proposal that will not make it in
-        to this release for some reason is marked as deferred with
-        a brief note as to why it was deferred. Deferred plan items
-        may resurface as committed plan items at a later
-        point.</li>
-      </ul>
-
-      <h2>
-      <a name="Project">
-
-      </a>
-
-     XSD Project</h2>
-
-<p>Plan items reflect new features of the XSD project, or
-areas where existing features will be significantly reworked.
-
-<h4><a name="Committed"> </a> Committed Items </h4>
-
-<blockquote>
-<p>Bugzillas with a target milestone set are committed to
-that release. For the most current list of these items, see the
-following links:</p>
-
-<p><b>2.5.0 release:</b></p>
-<p><a 
-	href="https://bugs.eclipse.org/bugs/buglist.cgi?product=MDT&amp;component=XSD&amp;bug_status=NEW&amp;bug_status=REOPENED&amp;bug_status=ASSIGNED&amp;order=bugs.bug_status,bugs.target_milestone,bugs.bug_id&amp;query_format=advanced&amp;field0-0-0=target_milestone&amp;type0-0-0=substring&amp;value0-0-0=2.5">All Open</a> 
-	| <a
-	href="https://bugs.eclipse.org/bugs/buglist.cgi?product=MDT&amp;component=XSD&amp;bug_status=UNCONFIRMED&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;order=bugs.bug_status,bugs.target_milestone,bugs.bug_id&amp;query_format=advanced&amp;field0-0-0=target_milestone&amp;type0-0-0=substring&amp;value0-0-0=2.5">All Resolved</a> 
-	| <a
-  href="https://bugs.eclipse.org/bugs/buglist.cgi?product=MDT&amp;component=XSD&amp;bug_status=NEW&amp;bug_status=REOPENED&amp;bug_status=ASSIGNED&amp;bug_status=UNCONFIRMED&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;order=bugs.bug_status,bugs.target_milestone,bugs.bug_id&amp;query_format=advanced&amp;field0-0-0=target_milestone&amp;type0-0-0=substring&amp;value0-0-0=2.5">All Bugs</a>
-
-  </p>
-
-</blockquote>
-<h4><a name="Proposed"> </a> Proposed Items</h4>
-
-<blockquote>
-<p>Bugzillas without a specific target milestone are
-proposed, but not committed for a particular release. This list also includes Bugzillas that were
-proposed for older releases but have not yet been addressed. For the most
-current list of these items, see the following links:</p>
-
-<p><a 
-	href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=&amp;product=MDT&amp;component=XSD&amp;target_milestone=---&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=&amp;query_based_on=">Open</a> | 
-	<a
-	href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=&amp;product=MDT&amp;component=XSD&amp;target_milestone=---&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">Resolved</a> </p>
-
-	</blockquote>
-
-<h4><a name="Deferred"> </a> Deferred Items</h4>
-
-<blockquote>
-<p>Bugzillas assigned to the non-specific target of 'Future' are
-deferred, and not scheduled for a particular release. For the most
-current list of these items, see the following link:</p>
-
-<p><a 
-	href="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;short_desc_type=allwordssubstr&amp;short_desc=&amp;product=MDT&amp;component=XSD&amp;target_milestone=Future&amp;long_desc_type=allwordssubstr&amp;long_desc=&amp;bug_file_loc_type=allwordssubstr&amp;bug_file_loc=&amp;keywords_type=allwords&amp;keywords=&amp;bug_status=NEW&amp;bug_status=ASSIGNED&amp;bug_status=REOPENED&amp;emailtype1=substring&amp;email1=&amp;emailtype2=substring&amp;email2=&amp;bugidtype=include&amp;bug_id=&amp;votes=&amp;chfieldfrom=&amp;chfieldto=Now&amp;chfieldvalue=&amp;cmdtype=doit&amp;order=Reuse+same+sort+as+last+time&amp;field0-0-0=noop&amp;type0-0-0=noop&amp;value0-0-0=">All Open</a>
- </p>
-</blockquote>
-
-<h4><a name="Plan"> </a> Plan Items </h4>
-
-<blockquote>
-<p>Plan item bugzillas from this and previous releases:</p>
-<p><a 
-	href="https://bugs.eclipse.org/bugs/buglist.cgi?product=MDT&amp;component=XSD&amp;short_desc_type=substring&amp;short_desc=%5BPlan+Item%5D&amp;bug_status=NEW&amp;bug_status=REOPENED&amp;bug_status=ASSIGNED&amp;order=bugs.bug_status,bugs.target_milestone,bugs.bug_id">All Open</a> 
-	| <a
-	href="https://bugs.eclipse.org/bugs/buglist.cgi?product=MDT&amp;component=XSD&amp;short_desc_type=substring&amp;short_desc=%5BPlan+Item%5D&amp;bug_status=UNCONFIRMED&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;order=bugs.bug_status,bugs.target_milestone,bugs.bug_id">All Resolved</a> 
-	| <a
-  href="https://bugs.eclipse.org/bugs/buglist.cgi?product=MDT&amp;component=XSD&amp;short_desc_type=substring&amp;short_desc=%5BPlan+Item%5D&amp;bug_status=NEW&amp;bug_status=REOPENED&amp;bug_status=ASSIGNED&amp;bug_status=UNCONFIRMED&amp;bug_status=RESOLVED&amp;bug_status=VERIFIED&amp;bug_status=CLOSED&amp;order=bugs.bug_status,bugs.target_milestone,bugs.bug_id">All Bugs</a></p>
-
-</blockquote>
-
-
-<p><em> <small>Note that for the links above, you may need to reset your
-browser's <u>bugs.eclipse.org</u> cookie(s) in order to see all the
-appropriate columns.</small> </em></p>
-</div>
-
-</body>
-</html>
\ No newline at end of file
diff --git a/xsd/index.php b/xsd/index.php
deleted file mode 100644
index 780b297..0000000
--- a/xsd/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: http://www.eclipse.org/modeling/mdt/?project=xsd"); ?>

diff --git a/xsd/news/index.php b/xsd/news/index.php
deleted file mode 100755
index 43a1351..0000000
--- a/xsd/news/index.php
+++ /dev/null
@@ -1 +0,0 @@
-<?php header("Location: http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=xsd&version=HEAD"); ?>
\ No newline at end of file
diff --git a/xsd/news/relnotes-extras.php b/xsd/news/relnotes-extras.php
deleted file mode 100644
index 67c3f38..0000000
--- a/xsd/news/relnotes-extras.php
+++ /dev/null
@@ -1,20 +0,0 @@
-<?php
-$additionalSideItems = '
-	<li><a href="http://www.eclipse.org/' . $PR . '/' . $projct . '/news/relnotes2.0.php">2.0.0</a></li>
-	<li><a href="http://www.eclipse.org/' . $PR . '/' . $projct . '/news/relnotes1.x.php">1.x</a></li>
-';
-
-$cannedBugs = array(
-	"2.3.1RC" => array("200421"),
-	"M200709120130" => array("202969", "201876"),
-	"M200709042200" => array(),
-	"M200708301145" => array(),
-	"M200708282230" => array(),
-	"M200708142030" => array("199540", "198803"),
-	"M200708072030" => array(),
-	"M200707312030" => array(),
-	"M200707242120" => array("197693", "99649"),
-	"M200707171853" => array("196408", "192773"),
-	"M200707111516" => array("195975", "195288")
-);
-?>
\ No newline at end of file
diff --git a/xsd/news/relnotes1.x.php b/xsd/news/relnotes1.x.php
deleted file mode 100755
index 931129e..0000000
--- a/xsd/news/relnotes1.x.php
+++ /dev/null
@@ -1,425 +0,0 @@
-<?php
-require_once ("../../../includes/buildServer-common.php");
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon());
-
-ob_start();
-?>
-<div id="midcolumn">
-<h1>Release Notes</h1>
-<div class="homeitem3col">
-
-<h3>What's new in XSD 1.1.1?<a name="xsd">&nbsp;</a></h3>
-
-      <ol>        
-        <li>
-	<b><a name="xsd_111a">Build 20030819_0612SL: Bug Fixes and Improvements</a></b>
-        </li>
-         <p>
-          There are numerous bug fixes and improvements included with this build, the most significant of which is described below.
-          <ul>
-            <li>                
-            The org.eclipse.emf.common.util.URI.java class has been updated to handle resolution of JAR-scheme URIs.  Also, comparison of schemes has been made case-insensitive in all URI operations, including testing equality.
-            </li>
-          </ul>
-         </p>
-
-		<li>
-	<b><a name="xsd_111b">Build 20030909_1427WL: Bug Fixes and Improvements</a></b>
-        </li>
-         <p>
-          There are bug fixes and improvements included with this build, some of which are described below.
-          Where the description is for a bug reported through Bugzilla, the Bugzilla number is included after the description.
-          <ul>
-            <li>
-            0 and 1 are now accepted as valid boolean XML Schema literals.
-            (Bugzilla <a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=41898">41898</a>)
-            </li>
-
-            <li>
-            The MagicXMLSchema.xsd, XMLSchema.xsd files in the 1999 and <nobr>2000\10 </nobr>sub-directories of the
-            <nobr>plugins\org.eclipse.xsd_1.1.1\cache\www.w3.org </nobr>directory have been updated to fix a problem
-            with old namespace schemas; xml.xsd files, with corresponding old namespace names, have been
-            added to those directories as well.  
-            (Bugzilla <a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=41913">41913</a>) 
-            </li>
-
-            <li>
-            The handleAnalysis() method in the org.eclipse.xsd.impl.XSDComplexTypeDefinitionImpl.java class
-            has been updated to handle an empty complex extension of a simple complex type.  For example, it
-            can now handle the following schema:
-
-<pre>
-&lt;?xml version="1.0" encoding="UTF-8"?&gt;
-&lt;xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;
-    &lt;xsd:complexType name="ServiceCategory"&gt;
-        &lt;xsd:simpleContent&gt;
-            &lt;xsd:extension base="xsd:boolean"/&gt;
-        &lt;/xsd:simpleContent&gt;
-    &lt;/xsd:complexType&gt;
-    &lt;xsd:element name="DialARide"&gt;
-        &lt;xsd:complexType&gt;
-            &lt;xsd:complexContent&gt;
-                &lt;xsd:extension base="ServiceCategory"/&gt;
-            &lt;/xsd:complexContent&gt;
-        &lt;/xsd:complexType&gt;
-    &lt;/xsd:element&gt;
-&lt;/xsd:schema&gt;
-</pre>
-
-            </li>
-
-            <li>
-            The version numbers for the plugins in the feature.xml files have been updated to 1.1.1.
-            Additionally, in the feature.xml file for the org.eclipse.xsd feature, the following updates
-            have been made in the requires element:
-
-            <ul>
-              <li>
-              in the import element for the org.eclipse.core.resources plugin, the version has been changed to 2.1.1
-              </li>
-              <li>
-              in the import element for the org.apaches.xerces plugin, the version has been changed to 4.0.13
-              </li>
-              <li>
-              in the import element for the org.eclipse.emf.ecore plugin, the version has been changed to 1.1.1
-              </li>
-            </ul>
-
-            <li>
-            The duplicate value feature has been fixed in the org.eclipse.xsd.ecore.XSD2EcoreBuilder.java class.
-            For example, for a schema like this:
-
-<pre>
-&lt;?xml version = "1.0" encoding = "UTF-8"?&gt;
-&lt;xsd:schema xmlns:xsd = "http://www.w3.org/2001/XMLSchema"&gt;
-
-        &lt;xsd:complexType name = "ServiceCategory"&gt;
-                &lt;xsd:simpleContent&gt;
-                        &lt;xsd:extension base = "xsd:boolean"/&gt;
-                &lt;/xsd:simpleContent&gt;
-        &lt;/xsd:complexType&gt;
-
-        &lt;xsd:element name = "DialARide"&gt;
-                &lt;xsd:complexType&gt;
-                        &lt;xsd:complexContent&gt;
-                                &lt;xsd:extension base = "ServiceCategory"/&gt;
-                        &lt;/xsd:complexContent&gt;
-                &lt;/xsd:complexType&gt;
-        &lt;/xsd:element&gt;
-
-&lt;/xsd:schema&gt;
-</pre>
-
-            The EClass for DialARide previously had a second boolean feature named value1 that is now eliminated.
-            </li>
-          </ul>
-         </p>
-
-        <li>
-	<b><a name="xsd_111c">Build 20031020_1612WL: Bug Fixes and Improvements</a></b>
-        </li>
-         <p>
-          There are bug fixes and improvements included with this build, some of which are described below.
-          Where the description is for a bug reported through Bugzilla, the Bugzilla number is included after the description.
-          <ul>
-            <li>
-            The import of a null namespace no longer generates a warning.
-            (Bugzilla <a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=43171">43171</a>)
-            </li>
-          </ul>
-
-        <li>
-	<b><a name="xsd_111d">Build 20031120_1149WL: Bug Fixes and Improvements</a></b>
-        </li>
-         <p>
-          There are bug fixes and improvements included with this build, some of which are described below.
-          Where the description is for a bug reported through Bugzilla, the Bugzilla number is included after the description.
-          <ul>
-            <li>
-            Support configurable handling of schemaLocation resolution via org.eclipse.xsd.util.XSDSchemaLocationResolver
-            (Bugzilla <a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=46188">46188</a>)
-            </li>
-          </ul>
-
-      </ol>
-</div>
-
-<div class="homeitem3col">
-
-<h3>What's new in XSD 1.1.0?</h3>
-
-      <ol>
-
-        <li>
-	<b><a name="xsd_110a">Build 20030501_0612VL: Bug Fixes and Improvements</a></b>
-
-         <ol type="I">
-			<li><b><a name="xsd_110a_1">New Plugins</a></b>
-          <p>
-           The xsd2ecore plugins (org.eclipse.emf.mapping.xsd2ecore and org.eclipse.emf.mapping.xsd2ecore.editor) have been added.  They illustrate how to use the mapping framework, and the editor can be used to view the mapping produced during XSD to Ecore conversion.  Documentation will be forthcoming soon.
-           
-        </li>
-
-			
-			<li><b><a name="xsd_110a_2">Bugzilla Fixes</a></b>
-
-          There are numerous bug fixes and improvements included with this build, some of which are described below.  Where the description applies to a fix for a bug reported through Bugzilla, the Bugzilla number is included after the description.        
-          <ul>
-            <li>                
-             XSD_ENCODING is now supported as an option for specifying the encoding for XSD resources.
-            </li>
-            <li>
-             The visibility of the isTypeDerivedFrom method in the XSDSchemaQueryTools class has been changed from protected to public.  
-             (Bugzilla <a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=36062">36062</a>)
-            </li>
-            <li>
-             The XSD to Ecore conversion utilities have been moved to org.eclipse.xsd.ecore in the org.eclipse.xsd plugin for more flexible reuse.
-            </li>
-          </ul>
-
-			 </ol>
-
-
-        <li>
-	<b><a name="xsd_110b">Build 20030513_0618VL: Bug Fixes and Improvements</a></b>
-        </li>
-         <p>
-          There are bug fixes and improvements included with this build, some of which are described below.  
-          <ul>
-            <li>                
-             In order to have value objects that implement equals() correctly, values of simple types based on int[] and byte[] in Xerces need to be wrapped.  Therefore, the types:
-              <ul>	
-               <li>
-                 org.eclipse.xsd.types.XSDAnySimpleType.IntSequence and
-               </li>
-               <li>
-                 org.eclipse.xsd.types.XSDAnySimpleType.ByteSequence 
-               </li>
-              </ul>
-              will be used in place of int[] and byte[], respectively.  (Later versions of Xerces have their own wrapper type which we will use when we switch to a newer version.)
-            </li>
-            <li>
-            We have refreshed the cached version of XMLSchema.xsd to the latest version on the web in order to pick up the errata changes to that version.
-            </li>            
-          </ul>
-           
-        <li>
-	<b><a name="xsd_110c">Build 20030519_0521VL: Bug Fixes and Improvements</a></b>
-        </li>
-         <p>
-          There are bug fixes and improvements included with this build, some of which are described below. Where the description applies to a fix for a bug reported through Bugzilla, the Bugzilla number is included after the description. You can link directly to the Bugzilla bug using this number.  
-          <ul>
-            <li>
-             The XSD editor now detects the encoding of your XSD file and sets the encoding of the editor to match. (Bugzilla <a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=37630">37630</a>).
-            <li>
-             The getBadTypeDerivation() method in XSDComplexTypeDefinitionImpl.java  now handles a null base type.
-            </li>
-            <li>
-             XSD now populates the XSDFacet.annotation. (Bugzilla <a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=37673">37673</a>).
-            </li>
-            <li>
-             XSDParser has been upgraded to support a LexicalHandler for creating Comment nodes.
-            </li>
-            <li>
-             XSDMainTest has been upgraded to support -validate for validating a schema from the command line.
-            </li>                        
-          </ul>
-          
-
-        <li>
-	<b><a name="xsd_110d">Build 20030527_0913VL: Bug Fixes and Improvements</a></b>
-        </li>
-         <p>
-          Minor bug fixes and improvements.  
-          
-          
-
-        <li>
-	<b><a name="xsd_110e">Build 20030602_1759VL: Bug Fixes and Improvements</a></b>
-        </li>
-         <p>
-          This build is a refresh of XSD being delivered with the corresponding build of EMF.  
-          
-          
-
-        <li>
-	<b><a name="xsd_110f">Build 20030605_1020SL: Bug Fixes and Improvements</a></b>
-        </li>
-         <p>
-          This build is a refresh of XSD being delivered with the corresponding build of EMF.  
-          
-          
-
-        <li>
-	<b><a name="xsd_110g">Build 20030611_1435VL: Bug Fixes and Improvements</a></b>
-        </li>
-         <p>
-          There are bug fixes and improvements included with this build, some of which are described below. Where the description applies to a fix for a bug reported through Bugzilla, the Bugzilla number is included after the description. You can link directly to the Bugzilla bug using this number.  
-          <ul>
-            <li>
-             The following static methods in the org.eclipse.xsd.impl.XSDSchemaImpl.java class have been made synchronized:  
-             <ul>
-              <li>createMetaSchema(Node node)</li>
-              <li>getGlobalResourceSet()</li>
-              <li>getMagicSchemaForSchema(String namespace)</li>
-              <li>getSchemaForSchema(String namespace)</li>
-              <li>getSchemaInstance(String namespace)</li>
-             </ul>
-            </li>
-
-            <li>
-             Complex type serialization now avoids the potential for introducing a redundant QName prefix.
-            </li>
-
-            <li>
-             The xsd2ecore mapping has been changed to map an XSD ID-type attribute as an ID EAttribute. 
-            </li>
-
-            <li>
-             The xsd2ecore mapping has been updated to handle abstract elements and substitution groups.
-            </li>
-
-            <li>
-             XSD has been updated to recognize schema constraints referenced via include. 
-             (Bugzilla <a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=38779">38779</a>)
-            </li>
-
-            <li>
-             The xsd2ecore editor has been updated to use translated strings for the name and description. 
-             (Bugzilla <a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=38174">38174</a>)
-            </li>                       
-          </ul>
-          
-
-        <li>
-	<b><a name="xsd_110h">Build 20030616_1530VL: Bug Fixes and Improvements</a></b>
-        </li>
-         <p>
-          There are bug fixes and improvements included with this build, some of which are described below. Where the description applies to a fix for a bug reported through Bugzilla, the Bugzilla number is included after the description. You can link directly to the Bugzilla bug using this number.  
-          <ul>
-            <li>
-            The getEClassifier(XSDTypeDefinition xsdTypeDefinition, boolean supportNull) method in the org.eclipse.xsd.ecore.XSDEcoreBuilder.java class has been updated to ensure that an XSD abstract complex type becomes an abstract EClass.
-            </li>
-
-            <li>
-            The doSave(OutputStream os, Map options) method in the org.eclipse.xsd.util.XSDResourceImpl.java class has been updated so that if the schema element is null, the updateElement() method is called on the schema.
-            </li>
-
-            <li>
-            &lt;package prefix=...&gt; elements have been addded to the plugin.xml files for all the EMF and XSD plugins.
-            (Bugzilla <a href="http://bugs.eclipse.org/bugs/show_bug.cgi?id=38225">38225</a>)
-            </li>
-
-            <li>
-            The getBadTypeDerivation(XSDTypeDefinition xsdTypeDefinition, boolean extension, boolean restriction) method in the org.eclipse.xsd.impl.XSDSimpleTypeDefintionImpl.java class has been updated because a simple type needs to be considered to be derived from complex anyType.
-            </li>
-
-            <li>
-            The javadoc in the org.eclipse.xsd.XSDComplexTypeDefinition.java file has been updated for the XSDParticle getSyntheticParticle() method.
-            </li>
-    
-          </ul>
-          
-
-        <li>
-	<b><a name="xsd_110i">Build 20030620_1105VL: Bug Fixes and Improvements</a></b>
-        </li>
-         <p>
-          There are bug fixes and improvements included with this build, some of which are described below.
-          <ul>
-            <li>
-            National Language Support is now available for standalone clients.
-            </li>
-
-          </ul>
-          
-
-      </ol>
-
-</div>
-
-<div class="homeitem3col">
-
-<h3>What's new in XSD 1.0.2?</h3>
-
-      <ol>
-        <li>
-          <b>Bug Fixes...</b>
-          
-        </li>
-        <li>
-          <b>Validation Support</b>
-          <p>
-            A schema can be validated to determine whether it is a fully valid instance according to the 1.0 specification;
-            since this had been working for several months, it isn't really all that new.
-          
-        </li>
-      </ol>
-
-</div>
-
-<div class="homeitem3col">
-
-<h3>What's new in XSD 1.0.1?</h3>
-
-      <ol>
-        <li>
-         <b>Bug Fixes...</b>
-          
-        </li>
-        <li>
-          <b>Documentation Plugin</b>
-          <p>
-            There is now a documentation plugin, org.eclipse.xsd.doc,
-            included in the download. All the XSD documentation is now
-            available from the desktop Help menu. We've put the documentation
-            plugin into the Runtime zip file, so its download size has increased.
-            We're thinking about moving it into the Source zip,
-            or maybe into its own zip file, in the future. If you have an
-            opinion, please feel free to post it to the XSD newsgroup. 
-          
-        </li>
-      </ol>
-</div>
-
-</div>
-<?php
-
-print "<div id=\"rightcolumn\">\n";
-print <<<XML
-	<div class="sideitem">
-	<h6>Search CVS</h6>
-XML;
-print '	<form action="http://www.eclipse.org/' . (isset($PR) ? $PR : "modeling") . '/searchcvs.php" method="get" name="bugform" target="_blank">' . "\n";
-print '
-	<p>
-		<label for="bug">Bug ID: </label><input size="7" type="text" name="q" id="q"/>
-		<input type="submit" value="Go!"/>
-	</p>
-	</form>
-	</div>
-	<div class="sideitem">
-		<h6>Releases</h6>
-		<p>
-			<ul>
-				<li><a href="http://www.eclipse.org/' . $PR . '/news/relnotes.php?project=xsd&amp;version=HEAD">Latest</a></li>
-				<li><a href="http://www.eclipse.org/' . $PR . '/xsd/news/relnotes2.0.php">2.0.0</a></li>
-				<li><a href="http://www.eclipse.org/' . $PR . '/xsd/news/relnotes1.x.php">1.x</a></li>
-			</ul>
-		</p>
-	</div>
-</div>
-';
-	
-$html = ob_get_contents();
-ob_end_clean();
-
-$pageTitle = "Eclipse Modeling - XSD - Release Notes";
-$pageKeywords = "";
-$pageAuthor = "";
-
-$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/modeling/includes/downloads.css"/>' . "\n");
-$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/modeling/includes/relnotes.css"/>' . "\n");
-$App->AddExtraHtmlHeader('<script src="/modeling/includes/toggle.js" type="text/javascript"></script>' . "\n"); //ie doesn't understand self closing script tags, and won't even try to render the page if you use one
-$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
diff --git a/xsd/news/relnotes2.0.php b/xsd/news/relnotes2.0.php
deleted file mode 100755
index 3d47a29..0000000
--- a/xsd/news/relnotes2.0.php
+++ /dev/null
@@ -1,82 +0,0 @@
-<?php
-require_once ("../../../includes/buildServer-common.php");
-require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/app.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/nav.class.php"); require_once($_SERVER['DOCUMENT_ROOT'] . "/eclipse.org-common/system/menu.class.php"); $App = new App(); $Nav = new Nav(); $Menu = new Menu(); include($App->getProjectCommon());
-
-ob_start();
-
-$xsdimg = '';
-?>
-<div id="midcolumn">
-
-<div class="homeitem3col">
-<h3>XSD Release Notes<a name="xsd">&nbsp;</a></h3>
-<ul>
-<li class="release">2.0.0 Release&#160;(35 Bugs)</li>
-<li class="outerli">2.0.0 Release</li><li class="outerli">2.0.0&#160;I200406250129</li><li class="outerli">2.0.0&#160;I200406211000<ul><li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=67934" target="_bugz">67934</a>&#160;BasicEObjectImpl.eDerivedStructuralFeatureID(EStructuralFeature) gives bad result for open content features</li></ul></li><li class="outerli">2.0.0&#160;I200406171028<ul><li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=66860" target="_bugz">66860</a>&#160;Fix EMF editors to avoid new null selection assertion in SelectionChangedEvent in RC2</li></ul></li><li class="outerli">2.0.0&#160;I200406100948 (8 Bugs)<ul><li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=66327" target="_bugz">66327</a>&#160;Use equalsIgnoreCase to match the public ID of the XMLSchema.dtd</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=66232" target="_bugz">66232</a>&#160;Produce unique getAliasName for anonymous union members</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=66185" target="_bugz">66185</a>&#160;Avoid the use of CCombo in the generated wizards.</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=66154" target="_bugz">66154</a>&#160;Support ecore:ignore for facets, XSDAnnotation, &amp;lt;documentation&amp;gt;, and &amp;lt;appinfo&amp;gt;.</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=66102" target="_bugz">66102</a>&#160;Complete the support for validating according to XML Schema simple facets</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=66032" target="_bugz">66032</a>&#160;Add activities to EMF and XSD</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=65703" target="_bugz">65703</a>&#160;'Save' action does'nt work in the XSD Editor</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=65672" target="_bugz">65672</a>&#160;maxLength not permitted in string</li></ul></li><li class="outerli">2.0.0&#160;I200406030436 (4 Bugs)<ul><li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=64864" target="_bugz">64864</a>&#160;overview tree stops responding</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=63916" target="_bugz">63916</a>&#160;NPE during Schema validation</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=62440" target="_bugz">62440</a>&#160;THAI: XSD Editor have problem with Thai characters.</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=62314" target="_bugz">62314</a>&#160;Enhancement to enable dynamic and generated EPackage usage across JVMs</li></ul></li><li class="outerli">2.0.0&#160;I200405200923 (2 Bugs)<ul><li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=62440" target="_bugz">62440</a>&#160;THAI: XSD Editor have problem with Thai characters.</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=62422" target="_bugz">62422</a>&#160;Support generator control over runtime compatibility and Rich Client Platform</li></ul></li><li class="outerli">2.0.0&#160;I200405131028 (2 Bugs)<ul><li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=61736" target="_bugz">61736</a>&#160;Support an ecore:opposite annotation for XSDEcoreBuilder</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=58972" target="_bugz">58972</a>&#160;Provide better default substitution group/abstract element support and provide ecore:featureMap and ecore:mixed for more flexible control</li></ul></li><li class="outerli">2.0.0&#160;I200405060858 (3 Bugs)<ul><li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=61111" target="_bugz">61111</a>&#160;Add the first version of a constraint validation framework</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=60438" target="_bugz">60438</a>&#160;Annotation appinfo corrupts element declaration type</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=58222" target="_bugz">58222</a>&#160;Redefinition of type does not affect indirectly included derived type</li></ul></li><li class="outerli">2.0.0&#160;I200404291310 (2 Bugs)<ul><li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=60438" target="_bugz">60438</a>&#160;Annotation appinfo corrupts element declaration type</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=58222" target="_bugz">58222</a>&#160;Redefinition of type does not affect indirectly included derived type</li></ul></li><li class="outerli">2.0.0&#160;I200404281648<ul><li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=57686" target="_bugz">57686</a>&#160;NullPointerException activating Sample XML Schema Editor from M8</li></ul></li><li class="outerli">2.0.0&#160;I200404080727 (4 Bugs)<ul><li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=56912" target="_bugz">56912</a>&#160;Provide general support for feature map entries in EMF.Edit.</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=56812" target="_bugz">56812</a>&#160;JS: xsd-&amp;gt;ecore converter does not process nillable properly</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=56328" target="_bugz">56328</a>&#160;Ensure that includes/redefines of a cloned included/redefined schema are computed</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=56269" target="_bugz">56269</a>&#160;XSDSchema.validate() does not return and leads to an OutOfMemory Exception</li></ul></li><li class="outerli">2.0.0&#160;I200403250631 (5 Bugs)<ul><li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=54289" target="_bugz">54289</a>&#160;Bad performance for validating XSD with lots of &amp;lt;all&amp;gt;</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=54203" target="_bugz">54203</a>&#160;Types and elements are not visible when an include is added</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=54201" target="_bugz">54201</a>&#160;Change EMF templates to be able to use JETNature for build</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=53776" target="_bugz">53776</a>&#160;Cannot generate XSD for model</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=53421" target="_bugz">53421</a>&#160;Problems not removed after fixing</li></ul></li><li class="outerli">2.0.0&#160;I200403081633</li><li class="outerli">2.0.0&#160;I200402251234SL (2 Bugs)<ul><li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=50222" target="_bugz">50222</a>&#160;The getPropertyDescriptors() method of some of the XSD facet item providers was using the wrong "Value" property.</li>
-<li><?php echo $xsdimg; ?><a href="https://bugs.eclipse.org/bugs/show_bug.cgi?id=49692" target="_bugz">49692</a>&#160;Changed XSD2GenModel to initialize GenModel.modelName to avoid exception when viewing .genmodel file in the IDE.</li></ul></li><li class="outerli">2.0.0&#160;I200401271738SL</li><li class="outerli">2.0.0&#160;I200312190637VL</li><li class="outerli">2.0.0&#160;I200312101532XL</li>
-</ul>
-</div>
-
-</div>
-<?php
-
-print "<div id=\"rightcolumn\">\n";
-print <<<XML
-	<div class="sideitem">
-	<h6>Search CVS</h6>
-XML;
-print '	<form action="http://www.eclipse.org/' . (isset($PR) ? $PR : "modeling") . '/searchcvs.php" method="get" name="bugform" target="_blank">' . "\n";
-print '
-	<p>
-		<label for="bug">Bug ID: </label><input size="7" type="text" name="q" id="q"/>
-		<input type="submit" value="Go!"/>
-	</p>
-	</form>
-	</div>
-	<div class="sideitem">
-		<h6>Releases</h6>
-		<p>
-			<ul>
-				<li><a href="http://www.eclipse.org/' . $PR . '/news/relnotes.php?project=xsd&amp;version=HEAD">Latest</a></li>
-				<li><a href="http://www.eclipse.org/' . $PR . '/xsd/news/relnotes2.0.php">2.0.0</a></li>
-				<li><a href="http://www.eclipse.org/' . $PR . '/xsd/news/relnotes1.x.php">1.x</a></li>
-			</ul>
-		</p>
-	</div>
-</div>
-';
-	
-$html = ob_get_contents();
-ob_end_clean();
-
-$pageTitle = "Eclipse Modeling - XSD - Release Notes";
-$pageKeywords = "";
-$pageAuthor = "";
-
-$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/modeling/includes/downloads.css"/>' . "\n");
-$App->AddExtraHtmlHeader('<link rel="stylesheet" type="text/css" href="/modeling/includes/relnotes.css"/>' . "\n");
-$App->AddExtraHtmlHeader('<script src="/modeling/includes/toggle.js" type="text/javascript"></script>' . "\n"); //ie doesn't understand self closing script tags, and won't even try to render the page if you use one
-$App->generatePage($theme, $Menu, $Nav, $pageAuthor, $pageKeywords, $pageTitle, $html);
-?>
diff --git a/xsd/project-info/contributors.html b/xsd/project-info/contributors.html
deleted file mode 100644
index 9dafe64..0000000
--- a/xsd/project-info/contributors.html
+++ /dev/null
@@ -1,6 +0,0 @@
-<p>
-  <li>Ed Merks</li>
-  <li>Elena Litani</li>
-  <li>Marcelo Paternostro</li>
-  <li>Dave Steinberg</li>
-</p>
diff --git a/xsd/project-info/overview.html b/xsd/project-info/overview.html
deleted file mode 100644
index fd825c6..0000000
--- a/xsd/project-info/overview.html
+++ /dev/null
@@ -1,26 +0,0 @@
-<p>The XML Schema Definition is a reference library that provides an 
-<a href="http://www.eclipse.org/modeling/mdt/javadoc/?project=xsd&page=org/eclipse/xsd/package-summary.html&anchor=details">API</a> for use with any code that
-examines, creates or modifies <a href="http://www.w3.org/TR/XMLSchema-0">W3C XML Schema</a> (standalone or as part of
-other artifacts, such as XForms or WSDL documents).</p>
-
-<p>XSD is a library that provides an 
-<a href="http://www.eclipse.org/modeling/mdt/javadoc/?project=xsd&page=org/eclipse/xsd/package-summary.html&anchor=details">API</a>
-for manipulating the components of an XML
-Schema as described by 
-the <a href="http://www.w3.org/TR/XMLSchema-0">W3C XML Schema</a>
-specifications, as well as an API for
-manipulating the DOM-accessible representation of XML Schema as a series
-of XML documents, and for keeping these representations in agreement as
-schemas are modified.</p>
-<p>The library will include services to serialize
-and deserialize XML Schema documents, and to do integrity checking of
-schemas (for example, not using a maximum value for a simpleType which
-is invalid considering the base type of that simpleType). The project
-goal is to support 100% of the functionality of XML schema
-representation, but not necessarily to provide document against schema
-assessment or validation services, which are normally provided by a
-validating parser,
-such as Apache's <a href="http://xml.apache.org/xerces2-j/">Xerces-J</a>.</p>
-
-<h4>XML Schema Definition</h4>
-<p><img src="/modeling/mdt/images/XMLSchemaDefinitionModel.gif" alt="XML Schema Definition Model"/></p>
diff --git a/xsd/project-info/plan.xml b/xsd/project-info/plan.xml
deleted file mode 100644
index b77cf08..0000000
--- a/xsd/project-info/plan.xml
+++ /dev/null
@@ -1,184 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
-<?xml-stylesheet type="text/xsl" href="http://www.eclipse.org/projects/project-plan.xsl"?>
-<plan plan-format="1.0" xmlns="http://www.eclipse.org/project/plan" xmlns:html="http://www.w3.org/1999/xhtml"
-      name="MDT XSD">
-   <release projectid="modeling.mdt" version="2.5.0"/>
-   <introduction>
-     <div xmlns="http://www.w3.org/1999/xhtml">
-This document lays out the feature and API set for the
-2.5.0 release of the Model Development Tools XML Schema Definition (MDT XSD) project.
-This project plan inherits from the <a href="http://www.eclipse.org/projects/project-plan.php?projectid=modeling.mdt">Modeling Development Tools Project Plan</a>,
-which should be referenced when consulting this individual project plan.
-     </div>
-   </introduction>
-   <release_deliverables>
-     <div xmlns="http://www.w3.org/1999/xhtml">
-The release deliverables have the same form as is found in most Eclipse projects, namely:
-       <ul>
-         <li>
-MDT XSD Core source code release, 
-available as versions tagged with "R2_5" in the project's CVS repository.
-         </li>
-         <li>
-MDT XSD SDK,
-which includes runtime, sources, examples, and documentation,
-and is available as a download or on the update site.
-         </li>
-         <li>
-MDT XSD runtime binary distribution,
-available as a download or on the update site.
-         </li>
-         <li>
-MDT XSD as part of EMF's Core tests
-available as a download.
-         </li>
-       </ul>
-     </div>
-   </release_deliverables>
-   <release_milestones>
-      <preamble>
-         <div xmlns="http://www.w3.org/1999/xhtml">
-Release milestones occur at roughly 6 week intervals 
-and follow the Platform release milestone by the Galileo-established +1 delta interval,
-though all effort will be made to reduce this to +1 business day
-regardless of the size of the established +1 delta interval..
-The final MDT XSD 2.5 release will available simultaneously 
-with the 3.5 release of the Platform and all the other Galileo projects.
-It is anticipated that MDT XSD will synchronize its milestones 
-with any changes to the Galileo milestone schedule.
-         </div>
-      </preamble>
-<milestone date="08/13/2008" milestone="M1"></milestone>
-<milestone date="09/24/2008" milestone="M2"></milestone>
-<milestone date="11/05/2008" milestone="M3"></milestone>
-<milestone date="12/17/2008" milestone="M4"></milestone>
-<milestone date="02/03/2009" milestone="M5"></milestone>
-<milestone date="03/16/2009" milestone="M6"><div xmlns="http://www.w3.org/1999/xhtml">API freeze</div></milestone>
-<milestone date="05/04/2009" milestone="M7"><div xmlns="http://www.w3.org/1999/xhtml">Feature Freeze</div></milestone>
-<milestone date="05/18/2009" milestone="RC1"></milestone>
-<milestone date="05/25/2009" milestone="RC2"></milestone>
-<milestone date="06/01/2009" milestone="RC3"></milestone>
-<milestone date="06/08/2009" milestone="RC4"></milestone>
-<milestone date="06/15/2009" milestone="RC5"></milestone>
-<milestone date="06/28/2009" milestone="2.5.0"></milestone>
-      <postamble>
-        <div xmlns="http://www.w3.org/1999/xhtml">
-XSD MDT will produce maintenance releases to align with the Ganymede Service Releases
-which includes the Eclipse Platform's 3.4.1 and 3.4.2 releases.
-XSD MDT may produce additional interim maintenance releases.  
-Maintenance releases will only be published if they contain new fixes.
-          <ul>
-            <li>
-Monday, August 25, 2008 - MDT XSD 2.4.1 maintenance release
-            </li>
-            <li>
-Friday, September 26, 2008 - MDT XSD 2.4.1 maintenance release for Ganymede Service Release 1.
-            </li>
-            <li>
-Friday, February 27, 2009 - MDT XSD 2.4.2 maintenance release for Ganymede Service Release 2.
-            </li>
-            <li>
-Version numbers are subject to change should there be be any additional maintenance releases.
-A list of the issues addressed for the 2.4.x maintenance stream 
-are available in the <a href="http://www.eclipse.org/modeling/mdt/news/relnotes.php?project=xsd&amp;version=2.4.x">2.4.x release notes</a>.
-            </li>
-          </ul> 
-        </div>
-      </postamble>
-    </release_milestones>
-    <target_environments>
-      <div xmlns="http://www.w3.org/1999/xhtml">
-In order to remain current, 
-each Eclipse release targets reasonably current versions of the underlying operating environments. 
-The MDT XSD depends upon on the Platform, 
-which is mostly "pure" Java™. 
-The 3.5 release of the Eclipse Platform Project 
-is written and compiled against version 1.4 of the Java Platform APIs, 
-and targeted to run on version 1.4 of the Java Runtime Environment, Standard Edition. 
-MDT XSD,
-with its runtime support for generics,
-relies on Java 5. 
-Eclipse Platform SDK 3.5 will be tested and validated on a number of reference platforms. 
-MDT XSD will be tested and validated against a subset of those listed for the platform.
-Given that there is no operating system dependent code in MDT XSD,
-it's expected that MDT XSD will work anywhere the Eclipse Platform does.
-     </div>
-     <internationalization>
-          <div xmlns="http://www.w3.org/1999/xhtml">
-The Eclipse Platform is designed as the basis for internationalized products. 
-The user interface elements provided by the Eclipse SDK components, 
-including dialogs and error messages,
-are externalized. 
-The English strings are provided as the default resource bundles. 
-Similarly, the MDT XSD project will externalize all its user interface elements,
-provide English strings for them in its default bundles, 
-and localize a subset of the locales offered by the Platform. 
-The download page will provide the details as the become available.
-          </div>
-     </internationalization>
-   </target_environments>
-   <compatibility_with_previous_releases>
-       <div xmlns="http://www.w3.org/1999/xhtml">
-Compatibility of Release 2.4: 
-The XSD MDT project will be developed in parallel, 
-and released simultaneously, 
-with the following projects: 
-         <ul>
-           <li>
-Eclipse Platform SDK version 3.5
-Eclipse Modeling Framework Core SDK version 2.5
-           </li>
-        </ul>
-Each milestone version of the MDT XSD project 
-will be compatible with the corresponding milestone for these projects 
-and will be delivered within the appropriate time offset.
-The ultimate MDT XSD release will be compatible with the released version of its dependencies
-and will publish binary and source compatibilities with migration guides on subsequent releases.
-       </div>
-   </compatibility_with_previous_releases>
-   <themes_and_priorities>
-     <preamble>
-         <div xmlns="http://www.w3.org/1999/xhtml">
-A list of project goals and agreed upon implementation time frames is found in this document.
-For the milestones listed in this document, 
-a set of overall themes is used to indicate what major set of functionalities is expected to be the focus of each.
-These themes are presented below, 
-while the goals of the associated Bugzilla entries are available for more detailed information.
-         </div>
-     </preamble>
-        <theme name="Service, Support, and Maintenance">
-            <description>
-                <div xmlns="http://www.w3.org/1999/xhtml">
-The MDT XSD project has a proven track record of quality and reliability.
-Because service and support has and always will take priority over new development work,
-development commitments and schedules are subject to arbitrary change, slippage, or even deferral.
-Be sure to establish direct communication to ensure that any hard commitments 
-are seen as that by the development team itself!
-We expect little o4 no development work for the coming release.
-                </div>
-            </description>
-            <committed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;product=MDT&amp;component=XSD&amp;target_milestone=M1&amp;target_milestone=M2&amp;target_milestone=M3&amp;target_milestone=M4&amp;target_milestone=M5&amp;target_milestone=M6&amp;target_milestone=M7&amp;target_milestone=RC&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-">
-            </committed>
-            <proposed
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;product=MDT&amp;component=XSD&amp;target_milestone=2.5&amp;target_milestone=---&amp;field0-0-0=flagtypes.name&amp;type0-0-0=substring&amp;value0-0-0=galileo&amp;field0-1-0=flagtypes.name&amp;type0-1-0=notsubstring&amp;value0-1-0=galileo-">
-            </proposed>
-            <deferred
-                bugzilla="https://bugs.eclipse.org/bugs/buglist.cgi?query_format=advanced&amp;product=MDT&amp;component=XSD&amp;field0-0-0=flagtypes.name&amp;type0-0-0=equals&amp;value0-0-0=galileo-">
-            </deferred>
-        </theme>
-   </themes_and_priorities>
-   <appendix name="Legal Notices">
-        <div xmlns="http://www.w3.org/1999/xhtml">
-          <ul>
-            <li>
-Java is a trademark or a registered trademark of Sun Microsystems, Inc.
-            </li>
-            <li>
-All other products or company names are mentioned for identification purposes only,
-and may be trademarks or service marks of their respective owners.
-            </li>
-          </ul>
-        </div>
-   </appendix>
-</plan>
diff --git a/xsd/project-info/project-page-paragraph.html b/xsd/project-info/project-page-paragraph.html
deleted file mode 100644
index a2ca5e2..0000000
--- a/xsd/project-info/project-page-paragraph.html
+++ /dev/null
@@ -1 +0,0 @@
-<p>XSD is a library that provides an API for manipulating the components of an XML Schema as described by the W3C XML Schema specifications, as well as an API for manipulating the DOM-accessible representation of XML.</p>
diff --git a/xsd/versionaudit.php b/xsd/versionaudit.php
deleted file mode 100644
index b755594..0000000
--- a/xsd/versionaudit.php
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php
-require_once ("../../includes/buildServer-common.php");
-
-$dirs = array(
-    "HEAD"             => "/opt/public/modeling/searchcvs/cvssrc/mdt-org.eclipse.xsd",
-    "R2_4_maintenance" => "/opt/public/modeling/searchcvs/cvssrc_branches/mdt-org.eclipse.xsd-R2_4_maintenance",
-	"R2_3_maintenance" => "/opt/public/modeling/searchcvs/cvssrc_branches/mdt-org.eclipse.xsd-R2_3_maintenance",
-	"R2_2_maintenance" => "/opt/public/modeling/searchcvs/cvssrc_branches/mdt-org.eclipse.xsd-R2_2_maintenance",
-	"R2_1_maintenance" => "/opt/public/modeling/searchcvs/cvssrc_branches/mdt-org.eclipse.xsd-R2_1_maintenance",
-	"R2_0_maintenance" => "/opt/public/modeling/searchcvs/cvssrc_branches/mdt-org.eclipse.xsd-R2_0_maintenance"
-);
-
-include_once($_SERVER["DOCUMENT_ROOT"] . "/modeling/includes/versionaudit-common.php");
-?>